diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..c32713d9 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,126 @@ +# .dockerignore for registrar. +# There's a lot here, please try to keep it organized. + +### Files that are not needed in the docker file + +/test_root/ +.git* +.github* + +### Editor and IDE artifacts +**/*~ +**/*.swp +**/*.orig +**/nbproject +**/.idea/ +**/.redcar/ +**/codekit-config.json +**/.pycharm_helpers/ +**/_mac/* +**/IntelliLang.xml +**/conda_packages.xml +**/databaseSettings.xml +**/diff.xml +**/debugger.xml +**/editor.xml +**/ide.general.xml +**/inspection/Default.xml +**/other.xml +**/packages.xml +**/web-browsers.xml + +### NFS artifacts +**/.nfs* + +### OS X artifacts +**/*.DS_Store +**/.AppleDouble +**/:2e_* +**/:2e# + +### Internationalization artifacts +**/*.mo +**/*.po +**/*.prob +**/*.dup +!**/django.po +!**/django.mo +!**/djangojs.po +!**/djangojs.mo +conf/locale/en/LC_MESSAGES/*.mo +conf/locale/fake*/LC_MESSAGES/*.po +conf/locale/fake*/LC_MESSAGES/*.mo + +### Testing artifacts +**/.testids/ +**/.noseids +**/nosetests.xml +**/.cache/ +**/.coverage +**/.coverage.* +**/coverage.xml +**/cover/ +**/cover_html/ +**/reports/ +**/jscover.log +**/jscover.log.* +**/.pytest_cache/ +**/pytest_task*.txt +**/.tddium* +common/test/data/test_unicode/static/ +test_root/courses/ +test_root/data/test_bare.git/ +test_root/export_course_repos/ +test_root/paver_logs/ +test_root/uploads/ +**/django-pyfs +**/.tox/ +common/test/db_cache/bok_choy_*.yaml +common/test/data/badges/*.png + +### Installation artifacts +**/*.egg-info +**/.pip_download_cache/ +**/.prereqs_cache +**/.vagrant/ +**/node_modules +**/bin/ + +### Static assets pipeline artifacts +**/*.scssc +common/static/common/js/vendor/ +common/static/common/css/vendor/ +common/static/bundles +**/webpack-stats.json + +### Styling generated from templates +themes/**/css + +### Logging artifacts +**/log/ +**/logs +**/chromedriver.log +**/ghostdriver.log + +### Celery artifacts ### +**/celerybeat-schedule + +### Unknown artifacts +**/database.sqlite +**/courseware/static/js/mathjax/* +**/flushdb.sh +**/build +/src/ +\#*\# +**/.env/ +openedx/core/djangoapps/django_comment_common/comment_client/python +**/autodeploy.properties +**/.ws_migrations_complete +**/dist +**/*.bak + +# Visual Studio Code +**/.vscode + +# Locally generated PII reports +**/pii_report diff --git a/.env b/.env new file mode 100644 index 00000000..892b98e7 --- /dev/null +++ b/.env @@ -0,0 +1,4 @@ +COMPOSE_PATH_SEPARATOR=: +COMPOSE_FILE=docker-compose.yml +# TODO: Make sure this doesn't break existing local development +COMPOSE_PROJECT_NAME=decentralized-registrar-devstack \ No newline at end of file diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 00000000..e7d9e0c1 --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,22 @@ +name: Push Docker Images + +on: + push: + branches: + - master +jobs: + # Push image to GitHub Packages. + # See also https://docs.docker.com/docker-hub/builds/ + push: + runs-on: ubuntu-latest + if: github.event_name == 'push' + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Build and Push docker image + env: + DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} + run : make docker_push diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..74f5e4cb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,55 @@ +FROM ubuntu:xenial as app + +# System requirements. +RUN apt-get update && apt-get upgrade -qy +RUN apt-get install -qy \ + git-core \ + language-pack-en \ + python3.5 \ + python3-pip \ + python3.5-dev \ + libmysqlclient-dev \ + libssl-dev +RUN pip3 install --upgrade pip setuptools +RUN rm -rf /var/lib/apt/lists/* + +# Python is Python3. +RUN ln -s /usr/bin/pip3 /usr/bin/pip +RUN ln -s /usr/bin/python3 /usr/bin/python + +# Use UTF-8. +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 +ENV DJANGO_SETTINGS_MODULE registrar.settings.production + +RUN mkdir -p /edx/app/registrar + +# Expose ports. +EXPOSE 18734 +EXPOSE 18735 + +RUN useradd -m --shell /bin/false app + +# Working directory will be root of repo. +WORKDIR /edx/app/registrar + +# Copy just Python requirements & install them. +COPY requirements/ /edx/app/registrar/requirements/ +COPY Makefile /edx/app/registrar/ +RUN make production-requirements + +# Code is owned by root so it cannot be modified by the application user. +# So we copy it before changing users. +USER app + +# Gunicorn 19 does not log to stdout or stderr by default. Once we are past gunicorn 19, the logging to STDOUT need not be specified. +CMD ["gunicorn", "--workers=2", "--name", "registrar", "-c", "/edx/app/registrar/registrar/docker_gunicorn_configuration.py", "--log-file", "-", "--max-requests=1000", "registrar.wsgi:application"] + +# After the requirements so changes to the code will not bust the image cache +COPY . /edx/app/registrar + +FROM app as newrelic +RUN pip3 install newrelic +CMD ["newrelic-admin", "run-program", "gunicorn", "--workers=2", "--name", "registrar", "-c", "/edx/app/registrar/registrar/docker_gunicorn_configuration.py", "--log-file", "-", "--max-requests=1000", "registrar.wsgi:application"] diff --git a/Makefile b/Makefile index 388392dd..a4b42051 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ TOX='' fake_translations pull_translations push_translations \ detect_changed_source_translations validate_translations api_generated \ validate_api_committed + #TODO: Add docker.build docker.push docker.build.push define BROWSER_PYSCRIPT import os, webbrowser, sys @@ -153,3 +154,66 @@ api_generated: ## generates an expanded verison of api.yaml for consuming tools validate_api_committed: ## check to make sure any api.yaml changes have been committed to the expanded document $(TOX)bash -c "diff .api-generated.yaml <(python scripts/yaml_merge.py api.yaml -)" + + +# Docker commands below + +dev.build: + docker build . --tag openedx/registrar + +dev.push: dev.build + docker push openedx/registrar + +dev.build.push: dev.build dev.push # TODO + +dev.provision: + bash ./provision-catalog.sh + +dev.init: dev.up dev.migrate + +dev.makemigrations: + docker exec -it registrar.app bash -c 'cd /edx/app/registrar && python3 manage.py makemigrations' + +dev.migrate: # Migrates databases. Application and DB server must be up for this to work. + docker exec -it registrar.app bash -c 'cd /edx/app/registrar && make migrate' + +dev.up: # Starts all containers + docker-compose up -d + +dev.up.build: + docker-compose up -d --build + +dev.down: # Kills containers and all of their data that isn't in volumes + docker-compose downing + +dev.destroy: dev.down #Kills containers and destroys volumes. If you get an error after running this, also run: docker volume rm portal-designer_designer_mysql + docker volume rm registrar_mysql + +dev.stop: # Stops containers so they can be restarted + docker-compose stop + +%-shell: ## Run a shell, as root, on the specified service container + docker-compose exec -u 0 $* env TERM=$(TERM) bash + +%-logs: ## View the logs of the specified service container + docker-compose logs -f --tail=500 $* + +attach: + docker attach registrar.app + +docker_build: + docker build . --target app -t "openedx/registrar:latest" + docker build . --target newrelic -t "openedx/registrar:latest-newrelic" + +travis_docker_auth: + echo "$$DOCKER_PASSWORD" | docker login -u "$$DOCKER_USERNAME" --password-stdin + +travis_docker_tag: docker_build + docker build . --target app -t "openedx/registrar:$$TRAVIS_COMMIT" + docker build . --target newrelic -t "openedx/registrar:$$TRAVIS_COMMIT-newrelic" + +travis_docker_push: travis_docker_tag travis_docker_auth ## push to docker hub + docker push "openedx/registrar:latest" + docker push "openedx/registrar:$$TRAVIS_COMMIT" + docker push "openedx/registrar:latest-newrelic" + docker push "openedx/registrar:$$TRAVIS_COMMIT-newrelic" diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..cc237cb8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,149 @@ +version: "3.7" + +services: + + app: + # Uncomment this line to use the official registrar base image + # image: edxops/registrar:devstack + build: + context: "." + image: openedx/registrar + container_name: edx.devstack.registrar + hostname: app.registrar + volumes: + - .:/edx/app/registrar + - ../src:/edx/src:cached + ports: + - "18734:18734" + depends_on: + - discovery + - worker + - lms + - mysql + # Allows attachment to this container using 'docker attach '. + stdin_open: true + tty: true + environment: + CELERY_ALWAYS_EAGER: 'false' + CELERY_BROKER_TRANSPORT: redis + CELERY_BROKER_HOSTNAME: edx.devstack.redis:6379 + CELERY_BROKER_VHOST: 0 + CELERY_BROKER_PASSWORD: password + DJANGO_SETTINGS_MODULE: registrar.settings.devstack + #TODO: enable django debug toolbar + + worker: + # Uncomment this line to use the official catalog base image + # image: edxops/registrar:devstack + build: + context: "." + image: openedx/registrar + #!/usr/bin/env bash + command: bash -c 'cd /edx/app/registrar && celery -A registrar worker -l DEBUG' + container_name: edx.devstack.registrar-worker + depends_on: + - discovery + - lms + - mysql + environment: + CELERY_ALWAYS_EAGER: 'false' + CELERY_BROKER_TRANSPORT: redis + CELERY_BROKER_HOSTNAME: edx.devstack.redis:6379 + CELERY_BROKER_VHOST: 0 + CELERY_BROKER_PASSWORD: password + DJANGO_SETTINGS_MODULE: registrar.settings.devstack + hostname: worker.registrar + ports: + - "18735:18735" + restart: always + # Allows attachment to this container using 'docker attach '. + stdin_open: true + tty: true + volumes: + - .:/edx/app/registrar + + discovery: + container_name: edx.devstack.discovery + hostname: discovery.devstack.edx + depends_on: + - mysql + - elasticsearch + - memcached + stdin_open: true + tty: true + environment: + TEST_ELASTICSEARCH_URL: http://edx.devstack.elasticsearch:9200 + DJANGO_WATCHMAN_TIMEOUT: 30 + image: kdmccormick96/course-discovery:latest + ports: + - "18381:18381" + volumes: + - discovery_assets:/edx/var/discovery/ + + elasticsearch: + container_name: edx.devstack.elasticsearch + hostname: elasticsearch.devstack.edx + image: edxops/elasticsearch:devstack + volumes: + - elasticsearch_data:/usr/share/elasticsearch/data + - elasticsearch_data:/usr/share/elasticsearch/logs + + lms: + container_name: edx.devstack.lms + hostname: lms.devstack.edx + depends_on: + - mysql + - memcached + - mongo + stdin_open: true + tty: true + environment: + NO_INSTALL_PREREQS: 1 + DJANGO_WATCHMAN_TIMEOUT: 30 + image: kdmccormick96/edx-platform:latest + ports: + - "18000:18000" + volumes: + - edxapp_lms_assets:/edx/var/edxapp/staticfiles/ + + memcached: + container_name: edx.devstack.memcached + hostname: memcached.devstack.edx + image: memcached:1.5.10-alpine + + mongo: + # We use WiredTiger in all environments. In development environments we use small files + # to conserve disk space, and disable the journal for a minor performance gain. + # See https://docs.mongodb.com/v3.0/reference/program/mongod/#options for complete details. + command: mongod --smallfiles --nojournal --storageEngine wiredTiger + container_name: edx.devstack.mongo + hostname: mongo.devstack.edx + image: mongo:${MONGO_VERSION:-3.6.17} + volumes: + - mongo_data:/data/db + - ./lms_mongo_dump:/data/dump + + mysql: + command: mysqld --character-set-server=utf8 --collation-server=utf8_general_ci + container_name: edx.devstack.mysql + hostname: mysql.devstack.edx + environment: + MYSQL_ROOT_PASSWORD: "" + MYSQL_ALLOW_EMPTY_PASSWORD: "yes" + image: mysql:5.6 + volumes: + - mysql_data:/var/lib/mysql + + redis: + command: redis-server --requirepass password + container_name: edx.devstack.redis + hostname: redis.devstack.edx + image: redis:2.8 + +volumes: + edxapp_lms_assets: + discovery_assets: + elasticsearch_data: + mysql_data: + mongo_data: + diff --git a/docs/getting_started_with_decentralized_devstack.rst b/docs/getting_started_with_decentralized_devstack.rst new file mode 100644 index 00000000..d58264b1 --- /dev/null +++ b/docs/getting_started_with_decentralized_devstack.rst @@ -0,0 +1,114 @@ +Getting Started +=============== + +If you have not already done so, install create/activate a `virtualenv`_. Unless otherwise stated, assume all terminal code +below is executed within the virtualenv. + +.. _virtualenv: https://virtualenvwrapper.readthedocs.org/en/latest/ + +You will also need to install docker and docker-compose. +Recommended resources for docker: 6 CPUs and 6 GB memory. + +Initialize and Provision +------------------------ + 1. Verify that your virtual environment is active before proceeding + 2. Clone the registrar repo and **cd into that directory** + 3. Run the following to provision a new registrar environment: + + .. code-block:: bash + + $ ./provision.sh + + 4. Run the following to attach to your LMS container: + + .. code-block:: bash + + $ docker attach edx.devstack.lms + +Viewing Registrar +-------------------------- +Once the server is up and running you can view Registrar at http://localhost:18734/login. + +You can login with the username *edx@example.com* and password *edx*. + +Makefile Commands +-------------------- +The `Makefile <../Makefile>`_ includes numerous commands to start the service, but the basic commands are the following: + +Open the shell to the registrar container for manual commands + +.. code-block:: bash + + $ make app-shell + +Open the logs in the registrar container + +.. code-block:: bash + + $ make app-logs + +Advanced Setup Outside Docker +============================= +The following is provided for informational purposes only. You can likely ignore this section. + +Local/Private Settings +---------------------- +When developing locally, it may be useful to have settings overrides that you do not wish to commit to the repository. +If you need such overrides, create a file :file:`registrar/settings/private.py`. This file's values are +read by :file:`registrar/settings/local.py`, but ignored by Git. + +Configure edX OAuth +------------------- +This service relies on the LMS server as the OAuth 2.0 authentication provider. + +Configuring the Registrar service to communicate with other IDAs using OAuth requires registering a new client with the authentication provider (LMS) and updating the Django settings for this project with the generated client credentials. + +A new OAuth 2.0 client can be created when using Devstack by visiting ``http://127.0.0.1:18000/admin/oauth2_provider/application/``. + 1. Click the :guilabel:`Add Application` button. + 2. Leave the user field blank. + 3. Specify the name of this service, ``Registrar service``, as the client name. + 4. Set the :guilabel:`URL` to the root path of this service: ``http://127.0.0.1:8003/``. + 5. Set the :guilabel:`Redirect URL` to the complete endpoint: ``http://127.0.0.1:18150/complete/edx-oauth2/``. + 6. Copy the :guilabel:`Client ID` and :guilabel:`Client Secret` values. They will be used later. + 7. Select :guilabel:`Confidential` as the client type. + 8. Select :guilabel:`Authorization code` as the authorization grant type. + 9. Click :guilabel:`Save`. + +Now that you have the client credentials, you can update your settings (ideally in +:file:`registrar/settings/local.py`). The table below describes the relevant settings. + ++-----------------------------------+----------------------------------+--------------------------------------------------------------------------+ +| Setting | Description | Value | ++===================================+==================================+==========================================================================+ +| SOCIAL_AUTH_EDX_OAUTH2_KEY | SSO OAuth 2.0 client key | (This should be set to the value generated when the client was created.) | ++-----------------------------------+----------------------------------+--------------------------------------------------------------------------+ +| SOCIAL_AUTH_EDX_OAUTH2_SECRET | SSO OAuth 2.0 client secret | (This should be set to the value generated when the client was created.) | ++-----------------------------------+----------------------------------+--------------------------------------------------------------------------+ +| SOCIAL_AUTH_EDX_OAUTH2_URL_ROOT | OAuth 2.0 authentication URL | http://127.0.0.1:18000/oauth2 | ++-----------------------------------+----------------------------------+--------------------------------------------------------------------------+ +| BACKEND_SERVICE_EDX_OAUTH2_KEY | IDA<->IDA OAuth 2.0 client key | (This should be set to the value generated when the client was created.) | ++-----------------------------------+----------------------------------+--------------------------------------------------------------------------+ +| BACKEND_SERVICE_EDX_OAUTH2_SECRET | IDA<->IDA OAuth 2.0 client secret| (This should be set to the value generated when the client was created.) | ++-----------------------------------+----------------------------------+--------------------------------------------------------------------------+ + +Run migrations +-------------- +Local installations use SQLite by default. If you choose to use another database backend, make sure you have updated +your settings and created the database (if necessary). Migrations can be run with `Django's migrate command`_. + +.. code-block:: bash + + $ python manage.py migrate + +.. _Django's migrate command: https://docs.djangoproject.com/en/1.11/ref/django-admin/#django-admin-migrate + +Run the server +-------------- +The server can be run with `Django's runserver command`_. If you opt to run on a different port, make sure you update +OAuth2 client via LMS admin. + +.. code-block:: bash + + $ python manage.py runserver 8003 + +.. _Django's runserver command: https://docs.djangoproject.com/en/1.11/ref/django-admin/#runserver-port-or-address-port diff --git a/manage.py b/manage.py index 933d444b..d3ff5f8f 100755 --- a/manage.py +++ b/manage.py @@ -8,7 +8,7 @@ import sys if __name__ == "__main__": - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "registrar.settings.devstack") + os.environ["DJANGO_SETTINGS_MODULE"] = "registrar.settings.devstack" from django.core.management import execute_from_command_line diff --git a/provision-app.sh b/provision-app.sh new file mode 100755 index 00000000..91e79257 --- /dev/null +++ b/provision-app.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +# Include utilities. +source provisioning-utils.sh + +log_step "app: Bringing up container(s)..." +docker-compose up --build --detach app + +log_step "app: Ensuring MySQL databases and users exist..." +docker-compose exec -T mysql bash -c "mysql -uroot mysql" < provision-mysql-app.sql + +log_step "app: Running migrations..." +service_exec app make migrate + +log_step "app: Creating superuser..." +service_create_edx_user app + +log_step "app: Creating users and API applications for integrating with LMS..." +create_lms_integration_for_service registrar 18734 + +## TODO: Handle https://github.com/edx/enterprise-catalog/blob/master/docs/getting_started.rst#permissions + +## TODO: Do we still need this? It came from edx/devstack:entprise/provision.sh +## If so, the username should be enterprise_catalog_worker, not enterprise_worker. +# log_step "Granting enterprise_worker user in permissions..." +# service_exec_python lms "\ +# from django.contrib.auth import get_user_model; \ +# from django.contrib.auth.models import Permission; \ +# User = get_user_model(); \ +# enterprise_worker = User.objects.get(username='enterprise_worker'); \ +# enterprise_model_permissions = list(Permission.objects.filter(content_type__app_label='enterprise')); \ +# enterprise_worker.user_permissions.add(*enterprise_model_permissions); \ +# enterprise_worker.save(); \ +# " diff --git a/provision-discovery.sh b/provision-discovery.sh new file mode 100755 index 00000000..68dd19b4 --- /dev/null +++ b/provision-discovery.sh @@ -0,0 +1,49 @@ +#!/usr/bin/env bash + +# Include utilities. +source provisioning-utils.sh + +log_step "discovery: Ensuring MySQL databases and users exist..." +docker-compose exec -T mysql bash -c "mysql -uroot mysql" < provision-mysql-discovery.sql + +log_step "discovery: Bringing up container" +docker-compose up -d discovery + +log_step "discovery: Running migrations..." +service_exec_management discovery migrate + +log_step "discovery: Create an edx superuser..." +service_create_edx_user discovery + +log_step "discovery: Creating users and API applications for integrating with LMS..." +create_lms_integration_for_service discovery 18381 + +# TODO: can we handle assets during provisioning? and do we even need it for slim Discovery? +## log "Compiling static assets for Discovery..." +## service_exec discovery make static + +log_step "discovery: Removing files in /edx/var/discovery..." +service_exec discovery rm -rf /edx/var/discovery/* + +log_step "discovery: Creating partner model..." +service_exec_management discovery create_or_update_partner \ + --site-id 1 \ + --site-domain localhost:18381 \ + --code edx \ + --name edX \ + --courses-api-url "http://edx.devstack.lms:18000/api/courses/v1/" \ + --ecommerce-api-url "http://edx.devstack.ecommerce:18130/api/v2/" \ + --organizations-api-url "http://edx.devstack.lms:18000/api/organizations/v0/" \ + --lms-url "http://edx.devstack.lms:18000/" + +## TODO: We need ecom for this, probably. +## Removing for now, but it might block enterprise-catalog usage. +# log_step "discovery: Refreshing course metadata..." +# service_exec_management discovery refresh_course_metadata + +## TODO: This is giving us an error because it can't connect to elasticsearch. +## Removing for now; unclear whether we need it. +# log_step "discovery: Running ./manage.py update_index..." +# service_exec_management discovery update_index --disable-change-limit + +log_message "Done provisioning Discovery." diff --git a/provision-lms.sh b/provision-lms.sh new file mode 100755 index 00000000..d60fea92 --- /dev/null +++ b/provision-lms.sh @@ -0,0 +1,43 @@ +#!/usr/bin/env bash + +# Include utilities. +source provisioning-utils.sh + +log_step "lms: Ensuring MySQL databases and users exist..." +docker-compose exec -T mysql bash -c "mysql -uroot mysql" < provision-mysql-lms.sql + +log_step "lms: Adding default MySQL data from dump..." +docker-compose exec -T mysql /usr/bin/mysql edxapp < provision-mysql-lms-data.sql + +log_step "lms: Making sure MongoDB is ready..." +until docker-compose exec -T mongo bash -c 'mongo --eval "printjson(db.serverStatus())"' &> /dev/null +do + printf "." + sleep 1 +done + +log_step "lms: Creating MongoDB users..." +docker-compose exec -T mongo bash -c "mongo" < provision-mongo.js + +log_step "lms: Adding default MongoDB data..." +service_exec mongo mongorestore --gzip /data/dump + +log_step "lms: Bringing up LMS..." +docker-compose up --detach lms + +# TODO: Make sure this handles squashed migrations idempotently +# (e.g. enterprise/migrations/0001_squashed_0092_auto_20200312_1650.py) +log_step "lms: Running migrations for default database..." +service_exec_management lms migrate + +log_step "lms: Running migrations for courseware student module history (CSMH) database..." +service_exec_management lms migrate --database student_module_history + + +## TODO: can we handle assets during provisioning? and do we even need it for slim LMS? for login, probably... +# log "Fixing missing vendor file by clearing the cache..." +# service_exec lms rm /edx/app/edxapp/edx-platform/.prereqs_cache/Node_prereqs.sha1 +# log "Compiling static assets for LMS..." +# service_exec lms paver update_assets lms + +log_message "Done provisioning LMS." diff --git a/provision-mongo.js b/provision-mongo.js new file mode 100644 index 00000000..61090bfa --- /dev/null +++ b/provision-mongo.js @@ -0,0 +1,37 @@ +conn = new Mongo(); + + +users = [ + { + 'user': 'admin', + 'pwd': 'password', + 'roles': ['root'], + 'database': 'admin' + }, + { + 'user': 'cs_comments_service', + 'pwd': 'password', + 'roles': ['readWrite'], + 'database': 'cs_comments_service' + }, + { + 'user': 'edxapp', + 'pwd': 'password', + 'roles': ['readWrite'], + 'database': 'edxapp' + } +]; + +for (var i = 0; i < users.length; i++) { + var user = users[i]; + var username = user.user; + var db = conn.getDB(user.database); + delete user.database; + + if (db.getUser(username) == null) { + db.createUser(user); + } else { + delete user.user; + db.updateUser(username, user); + } +} diff --git a/provision-mysql-app.sql b/provision-mysql-app.sql new file mode 100644 index 00000000..464930b7 --- /dev/null +++ b/provision-mysql-app.sql @@ -0,0 +1,6 @@ +FLUSH PRIVILEGES; + +CREATE DATABASE IF NOT EXISTS registrar; +GRANT ALL ON registrar.* TO 'registrar001'@'%' IDENTIFIED BY 'password'; + +FLUSH PRIVILEGES; diff --git a/provision-mysql-discovery.sql b/provision-mysql-discovery.sql new file mode 100644 index 00000000..3cf5d201 --- /dev/null +++ b/provision-mysql-discovery.sql @@ -0,0 +1,6 @@ +FLUSH PRIVILEGES; + +CREATE DATABASE IF NOT EXISTS discovery; +GRANT ALL ON discovery.* TO 'discov001'@'%' IDENTIFIED BY 'password'; + +FLUSH PRIVILEGES; diff --git a/provision-mysql-lms-data.sql b/provision-mysql-lms-data.sql new file mode 100644 index 00000000..f69f8e40 --- /dev/null +++ b/provision-mysql-lms-data.sql @@ -0,0 +1,14349 @@ +-- MySQL dump 10.13 Distrib 5.7.30, for Linux (x86_64) +-- +-- Host: edx.devstack.mysql Database: +-- ------------------------------------------------------ +-- Server version 5.6.49 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `announcements_announcement` +-- +CREATE DATABASE IF NOT EXISTS edxapp; +CREATE DATABASE IF NOT EXISTS edxapp_csmh; +GRANT ALL ON edxapp.* TO 'edxapp001'@'%' IDENTIFIED BY 'password'; +GRANT ALL ON edxapp_csmh.* TO 'edxapp001'@'%'; + +DROP TABLE IF EXISTS `announcements_announcement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `announcements_announcement` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `content` varchar(1000) NOT NULL, + `active` tinyint(1) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `announcements_announcement` +-- + +LOCK TABLES `announcements_announcement` WRITE; +/*!40000 ALTER TABLE `announcements_announcement` DISABLE KEYS */; +/*!40000 ALTER TABLE `announcements_announcement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `api_admin_apiaccessconfig` +-- + +DROP TABLE IF EXISTS `api_admin_apiaccessconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `api_admin_apiaccessconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `api_admin_apiaccessconfig` +-- + +LOCK TABLES `api_admin_apiaccessconfig` WRITE; +/*!40000 ALTER TABLE `api_admin_apiaccessconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `api_admin_apiaccessconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `api_admin_apiaccessrequest` +-- + +DROP TABLE IF EXISTS `api_admin_apiaccessrequest`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `api_admin_apiaccessrequest` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `status` varchar(255) NOT NULL, + `website` varchar(200) NOT NULL, + `reason` longtext NOT NULL, + `user_id` int(11) NOT NULL, + `company_address` varchar(255) NOT NULL, + `company_name` varchar(255) NOT NULL, + `contacted` tinyint(1) NOT NULL, + `site_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `api_admin_apiaccessrequest_user_id_eb0cc217_uniq` (`user_id`), + KEY `api_admin_apiaccessrequest_status_f8039aea` (`status`), + KEY `api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id` (`site_id`), + CONSTRAINT `api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`), + CONSTRAINT `api_admin_apiaccessrequest_user_id_eb0cc217_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `api_admin_apiaccessrequest` +-- + +LOCK TABLES `api_admin_apiaccessrequest` WRITE; +/*!40000 ALTER TABLE `api_admin_apiaccessrequest` DISABLE KEYS */; +/*!40000 ALTER TABLE `api_admin_apiaccessrequest` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_assessment` +-- + +DROP TABLE IF EXISTS `assessment_assessment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_assessment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submission_uuid` varchar(128) NOT NULL, + `scored_at` datetime(6) NOT NULL, + `scorer_id` varchar(40) NOT NULL, + `score_type` varchar(2) NOT NULL, + `feedback` longtext NOT NULL, + `rubric_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `assessment_assessment_submission_uuid_cf5817c5` (`submission_uuid`), + KEY `assessment_assessment_scored_at_a1a213d6` (`scored_at`), + KEY `assessment_assessment_scorer_id_ad1a38cb` (`scorer_id`), + KEY `assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id` (`rubric_id`), + CONSTRAINT `assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_assessment` +-- + +LOCK TABLES `assessment_assessment` WRITE; +/*!40000 ALTER TABLE `assessment_assessment` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_assessment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_assessmentfeedback` +-- + +DROP TABLE IF EXISTS `assessment_assessmentfeedback`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_assessmentfeedback` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submission_uuid` varchar(128) NOT NULL, + `feedback_text` longtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `submission_uuid` (`submission_uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_assessmentfeedback` +-- + +LOCK TABLES `assessment_assessmentfeedback` WRITE; +/*!40000 ALTER TABLE `assessment_assessmentfeedback` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_assessmentfeedback` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_assessmentfeedback_assessments` +-- + +DROP TABLE IF EXISTS `assessment_assessmentfeedback_assessments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_assessmentfeedback_assessments` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `assessmentfeedback_id` int(11) NOT NULL, + `assessment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `assessment_assessmentfee_assessmentfeedback_id_as_f8246578_uniq` (`assessmentfeedback_id`,`assessment_id`), + KEY `assessment_assessmen_assessment_id_033f1121_fk_assessmen` (`assessment_id`), + CONSTRAINT `assessment_assessmen_assessment_id_033f1121_fk_assessmen` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`), + CONSTRAINT `assessment_assessmen_assessmentfeedback_i_6634a3b4_fk_assessmen` FOREIGN KEY (`assessmentfeedback_id`) REFERENCES `assessment_assessmentfeedback` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_assessmentfeedback_assessments` +-- + +LOCK TABLES `assessment_assessmentfeedback_assessments` WRITE; +/*!40000 ALTER TABLE `assessment_assessmentfeedback_assessments` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_assessmentfeedback_assessments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_assessmentfeedback_options` +-- + +DROP TABLE IF EXISTS `assessment_assessmentfeedback_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_assessmentfeedback_options` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `assessmentfeedback_id` int(11) NOT NULL, + `assessmentfeedbackoption_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `assessment_assessmentfee_assessmentfeedback_id_as_4e554cc7_uniq` (`assessmentfeedback_id`,`assessmentfeedbackoption_id`), + KEY `assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen` (`assessmentfeedbackoption_id`), + CONSTRAINT `assessment_assessmen_assessmentfeedback_i_004e1bf0_fk_assessmen` FOREIGN KEY (`assessmentfeedback_id`) REFERENCES `assessment_assessmentfeedback` (`id`), + CONSTRAINT `assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen` FOREIGN KEY (`assessmentfeedbackoption_id`) REFERENCES `assessment_assessmentfeedbackoption` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_assessmentfeedback_options` +-- + +LOCK TABLES `assessment_assessmentfeedback_options` WRITE; +/*!40000 ALTER TABLE `assessment_assessmentfeedback_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_assessmentfeedback_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_assessmentfeedbackoption` +-- + +DROP TABLE IF EXISTS `assessment_assessmentfeedbackoption`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_assessmentfeedbackoption` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `text` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `text` (`text`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_assessmentfeedbackoption` +-- + +LOCK TABLES `assessment_assessmentfeedbackoption` WRITE; +/*!40000 ALTER TABLE `assessment_assessmentfeedbackoption` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_assessmentfeedbackoption` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_assessmentpart` +-- + +DROP TABLE IF EXISTS `assessment_assessmentpart`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_assessmentpart` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `feedback` longtext NOT NULL, + `assessment_id` int(11) NOT NULL, + `criterion_id` int(11) NOT NULL, + `option_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `assessment_assessmen_assessment_id_de1999cd_fk_assessmen` (`assessment_id`), + KEY `assessment_assessmen_criterion_id_5bc40925_fk_assessmen` (`criterion_id`), + KEY `assessment_assessmen_option_id_dd35c2c5_fk_assessmen` (`option_id`), + CONSTRAINT `assessment_assessmen_assessment_id_de1999cd_fk_assessmen` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`), + CONSTRAINT `assessment_assessmen_criterion_id_5bc40925_fk_assessmen` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`), + CONSTRAINT `assessment_assessmen_option_id_dd35c2c5_fk_assessmen` FOREIGN KEY (`option_id`) REFERENCES `assessment_criterionoption` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_assessmentpart` +-- + +LOCK TABLES `assessment_assessmentpart` WRITE; +/*!40000 ALTER TABLE `assessment_assessmentpart` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_assessmentpart` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_criterion` +-- + +DROP TABLE IF EXISTS `assessment_criterion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_criterion` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `label` varchar(100) NOT NULL, + `order_num` int(10) unsigned NOT NULL, + `prompt` longtext NOT NULL, + `rubric_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id` (`rubric_id`), + CONSTRAINT `assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_criterion` +-- + +LOCK TABLES `assessment_criterion` WRITE; +/*!40000 ALTER TABLE `assessment_criterion` DISABLE KEYS */; +INSERT INTO `assessment_criterion` VALUES (1,'Content','Content',0,'Did the response describe a meal and did it describe why someone should chose to eat it?',1),(2,'Organization & Clarity','Organization & Clarity',1,'How well did the response use language?',1),(3,'Persuasiveness','Persuasiveness',2,'How well did the response convince you to try the meal that it describes?',1); +/*!40000 ALTER TABLE `assessment_criterion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_criterionoption` +-- + +DROP TABLE IF EXISTS `assessment_criterionoption`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_criterionoption` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `order_num` int(10) unsigned NOT NULL, + `points` int(10) unsigned NOT NULL, + `name` varchar(100) NOT NULL, + `label` varchar(100) NOT NULL, + `explanation` longtext NOT NULL, + `criterion_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `assessment_criterion_criterion_id_53928be7_fk_assessmen` (`criterion_id`), + CONSTRAINT `assessment_criterion_criterion_id_53928be7_fk_assessmen` FOREIGN KEY (`criterion_id`) REFERENCES `assessment_criterion` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_criterionoption` +-- + +LOCK TABLES `assessment_criterionoption` WRITE; +/*!40000 ALTER TABLE `assessment_criterionoption` DISABLE KEYS */; +INSERT INTO `assessment_criterionoption` VALUES (1,0,0,'Off Topic','Off Topic','The essay is off-topic or does not answer all or part of the question.',1),(2,1,5,'No Explanation','No Explanation','A meal is described, but no argument is made to persuade the reader to try it.',1),(3,2,5,'Unclear recommendation','Unclear recommendation','A meal is not described, but an argument is made to persuade the reader to try it.',1),(4,3,10,'Persuasive recommendation','Persuasive recommendation','The essay give a good description of the meal and provides supporting reasons for trying the meal.',1),(5,0,0,'Confusing','Confusing','It is difficult to identify the argument and main idea.',2),(6,1,1,'Basic Structure','Basic Structure','The essay provides a main idea. Additional details are provided, and some support the main idea.',2),(7,2,2,'Clear Structure','Clear Structure','The essay provides a clear main idea supported by specific details.',2),(8,3,3,'Complete Structure','Complete Structure','The essay has a complete structure: an introduction, statement of main idea, supporting details and summary.',2),(9,0,0,'Unconvincing','Unconvincing','The author did not present a persuasive argument, and I have no interest in trying this meal.',3),(10,1,2,'Interesting','Interesting','The author’s argument was somewhat persuarsive. I need more information to consider trying this meal.',3),(11,2,4,'Persuasive','Persuasive','The author’s argument was persuasive, and I will consider trying the meal.',3),(12,3,6,'Inspiring','Inspiring','The author presented an exceptionally strong case and has convinced me to try the meal.',3); +/*!40000 ALTER TABLE `assessment_criterionoption` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_historicalsharedfileupload` +-- + +DROP TABLE IF EXISTS `assessment_historicalsharedfileupload`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_historicalsharedfileupload` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `team_id` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `item_id` varchar(255) NOT NULL, + `owner_id` varchar(255) NOT NULL, + `file_key` varchar(255) NOT NULL, + `description` longtext NOT NULL, + `size` bigint(20) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `name` varchar(255) NOT NULL, + PRIMARY KEY (`history_id`), + KEY `assessment_historica_history_user_id_28fa87d9_fk_auth_user` (`history_user_id`), + KEY `assessment_historicalsharedfileupload_id_34052991` (`id`), + KEY `assessment_historicalsharedfileupload_team_id_e32268e1` (`team_id`), + KEY `assessment_historicalsharedfileupload_course_id_7fd70b9d` (`course_id`), + KEY `assessment_historicalsharedfileupload_item_id_b7bca199` (`item_id`), + KEY `assessment_historicalsharedfileupload_owner_id_09b09e30` (`owner_id`), + KEY `assessment_historicalsharedfileupload_file_key_03fbd3e7` (`file_key`), + CONSTRAINT `assessment_historica_history_user_id_28fa87d9_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_historicalsharedfileupload` +-- + +LOCK TABLES `assessment_historicalsharedfileupload` WRITE; +/*!40000 ALTER TABLE `assessment_historicalsharedfileupload` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_historicalsharedfileupload` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_peerworkflow` +-- + +DROP TABLE IF EXISTS `assessment_peerworkflow`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_peerworkflow` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `student_id` varchar(40) NOT NULL, + `item_id` varchar(128) NOT NULL, + `course_id` varchar(255) NOT NULL, + `submission_uuid` varchar(128) NOT NULL, + `created_at` datetime(6) NOT NULL, + `completed_at` datetime(6) DEFAULT NULL, + `grading_completed_at` datetime(6) DEFAULT NULL, + `cancelled_at` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `submission_uuid` (`submission_uuid`), + KEY `assessment_peerworkflow_student_id_9382ae54` (`student_id`), + KEY `assessment_peerworkflow_item_id_c17d799e` (`item_id`), + KEY `assessment_peerworkflow_course_id_875599e3` (`course_id`), + KEY `assessment_peerworkflow_created_at_b8aaf4a5` (`created_at`), + KEY `assessment_peerworkflow_completed_at_681f19e1` (`completed_at`), + KEY `assessment_peerworkflow_grading_completed_at_33e2560c` (`grading_completed_at`), + KEY `assessment_peerworkflow_cancelled_at_0e258929` (`cancelled_at`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_peerworkflow` +-- + +LOCK TABLES `assessment_peerworkflow` WRITE; +/*!40000 ALTER TABLE `assessment_peerworkflow` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_peerworkflow` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_peerworkflowitem` +-- + +DROP TABLE IF EXISTS `assessment_peerworkflowitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_peerworkflowitem` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submission_uuid` varchar(128) NOT NULL, + `started_at` datetime(6) NOT NULL, + `scored` tinyint(1) NOT NULL, + `assessment_id` int(11) DEFAULT NULL, + `author_id` int(11) NOT NULL, + `scorer_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen` (`assessment_id`), + KEY `assessment_peerworkf_author_id_0e3ed804_fk_assessmen` (`author_id`), + KEY `assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen` (`scorer_id`), + KEY `assessment_peerworkflowitem_submission_uuid_edd446aa` (`submission_uuid`), + KEY `assessment_peerworkflowitem_started_at_8644e7a0` (`started_at`), + CONSTRAINT `assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen` FOREIGN KEY (`assessment_id`) REFERENCES `assessment_assessment` (`id`), + CONSTRAINT `assessment_peerworkf_author_id_0e3ed804_fk_assessmen` FOREIGN KEY (`author_id`) REFERENCES `assessment_peerworkflow` (`id`), + CONSTRAINT `assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen` FOREIGN KEY (`scorer_id`) REFERENCES `assessment_peerworkflow` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_peerworkflowitem` +-- + +LOCK TABLES `assessment_peerworkflowitem` WRITE; +/*!40000 ALTER TABLE `assessment_peerworkflowitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_peerworkflowitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_rubric` +-- + +DROP TABLE IF EXISTS `assessment_rubric`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_rubric` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `content_hash` varchar(40) NOT NULL, + `structure_hash` varchar(40) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `content_hash` (`content_hash`), + KEY `assessment_rubric_structure_hash_fb456373` (`structure_hash`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_rubric` +-- + +LOCK TABLES `assessment_rubric` WRITE; +/*!40000 ALTER TABLE `assessment_rubric` DISABLE KEYS */; +INSERT INTO `assessment_rubric` VALUES (1,'b2783932b715f500b0af5f2e0d80757e54301353','ab95e8c199881793b6999c5efb1a5754fd7417d5'); +/*!40000 ALTER TABLE `assessment_rubric` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_sharedfileupload` +-- + +DROP TABLE IF EXISTS `assessment_sharedfileupload`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_sharedfileupload` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `team_id` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `item_id` varchar(255) NOT NULL, + `owner_id` varchar(255) NOT NULL, + `file_key` varchar(255) NOT NULL, + `description` longtext NOT NULL, + `size` bigint(20) NOT NULL, + `name` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `file_key` (`file_key`), + KEY `assessment_sharedfileupload_team_id_dbdd3cb7` (`team_id`), + KEY `assessment_sharedfileupload_course_id_73edb775` (`course_id`), + KEY `assessment_sharedfileupload_item_id_b471d0c9` (`item_id`), + KEY `assessment_sharedfileupload_owner_id_f4d7fe4f` (`owner_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_sharedfileupload` +-- + +LOCK TABLES `assessment_sharedfileupload` WRITE; +/*!40000 ALTER TABLE `assessment_sharedfileupload` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_sharedfileupload` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_staffworkflow` +-- + +DROP TABLE IF EXISTS `assessment_staffworkflow`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_staffworkflow` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `scorer_id` varchar(40) NOT NULL, + `course_id` varchar(255) NOT NULL, + `item_id` varchar(128) NOT NULL, + `submission_uuid` varchar(128) NOT NULL, + `created_at` datetime(6) NOT NULL, + `grading_completed_at` datetime(6) DEFAULT NULL, + `grading_started_at` datetime(6) DEFAULT NULL, + `cancelled_at` datetime(6) DEFAULT NULL, + `assessment` varchar(128) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `submission_uuid` (`submission_uuid`), + KEY `assessment_staffworkflow_scorer_id_ae799ebc` (`scorer_id`), + KEY `assessment_staffworkflow_course_id_3f18693d` (`course_id`), + KEY `assessment_staffworkflow_item_id_4fa3697b` (`item_id`), + KEY `assessment_staffworkflow_created_at_a253bc02` (`created_at`), + KEY `assessment_staffworkflow_grading_completed_at_acd0199f` (`grading_completed_at`), + KEY `assessment_staffworkflow_grading_started_at_90f99005` (`grading_started_at`), + KEY `assessment_staffworkflow_cancelled_at_bc8f93d5` (`cancelled_at`), + KEY `assessment_staffworkflow_assessment_7c1dcc5d` (`assessment`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_staffworkflow` +-- + +LOCK TABLES `assessment_staffworkflow` WRITE; +/*!40000 ALTER TABLE `assessment_staffworkflow` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_staffworkflow` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_studenttrainingworkflow` +-- + +DROP TABLE IF EXISTS `assessment_studenttrainingworkflow`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_studenttrainingworkflow` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submission_uuid` varchar(128) NOT NULL, + `student_id` varchar(40) NOT NULL, + `item_id` varchar(128) NOT NULL, + `course_id` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `submission_uuid` (`submission_uuid`), + KEY `assessment_studenttrainingworkflow_student_id_ea8fdfa8` (`student_id`), + KEY `assessment_studenttrainingworkflow_item_id_f5812a25` (`item_id`), + KEY `assessment_studenttrainingworkflow_course_id_a14d6cde` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_studenttrainingworkflow` +-- + +LOCK TABLES `assessment_studenttrainingworkflow` WRITE; +/*!40000 ALTER TABLE `assessment_studenttrainingworkflow` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_studenttrainingworkflow` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_studenttrainingworkflowitem` +-- + +DROP TABLE IF EXISTS `assessment_studenttrainingworkflowitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_studenttrainingworkflowitem` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `order_num` int(10) unsigned NOT NULL, + `started_at` datetime(6) NOT NULL, + `completed_at` datetime(6) DEFAULT NULL, + `training_example_id` int(11) NOT NULL, + `workflow_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `assessment_studenttraini_workflow_id_order_num_1ab60238_uniq` (`workflow_id`,`order_num`), + KEY `assessment_studenttr_training_example_id_881dddbd_fk_assessmen` (`training_example_id`), + CONSTRAINT `assessment_studenttr_training_example_id_881dddbd_fk_assessmen` FOREIGN KEY (`training_example_id`) REFERENCES `assessment_trainingexample` (`id`), + CONSTRAINT `assessment_studenttr_workflow_id_a75a9a2e_fk_assessmen` FOREIGN KEY (`workflow_id`) REFERENCES `assessment_studenttrainingworkflow` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_studenttrainingworkflowitem` +-- + +LOCK TABLES `assessment_studenttrainingworkflowitem` WRITE; +/*!40000 ALTER TABLE `assessment_studenttrainingworkflowitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_studenttrainingworkflowitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_teamstaffworkflow` +-- + +DROP TABLE IF EXISTS `assessment_teamstaffworkflow`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_teamstaffworkflow` ( + `staffworkflow_ptr_id` int(11) NOT NULL, + `team_submission_uuid` varchar(128) NOT NULL, + PRIMARY KEY (`staffworkflow_ptr_id`), + UNIQUE KEY `team_submission_uuid` (`team_submission_uuid`), + CONSTRAINT `assessment_teamstaff_staffworkflow_ptr_id_e55a780c_fk_assessmen` FOREIGN KEY (`staffworkflow_ptr_id`) REFERENCES `assessment_staffworkflow` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_teamstaffworkflow` +-- + +LOCK TABLES `assessment_teamstaffworkflow` WRITE; +/*!40000 ALTER TABLE `assessment_teamstaffworkflow` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_teamstaffworkflow` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_trainingexample` +-- + +DROP TABLE IF EXISTS `assessment_trainingexample`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_trainingexample` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `raw_answer` longtext NOT NULL, + `content_hash` varchar(40) NOT NULL, + `rubric_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `content_hash` (`content_hash`), + KEY `assessment_traininge_rubric_id_cfb4afc3_fk_assessmen` (`rubric_id`), + CONSTRAINT `assessment_traininge_rubric_id_cfb4afc3_fk_assessmen` FOREIGN KEY (`rubric_id`) REFERENCES `assessment_rubric` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_trainingexample` +-- + +LOCK TABLES `assessment_trainingexample` WRITE; +/*!40000 ALTER TABLE `assessment_trainingexample` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_trainingexample` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assessment_trainingexample_options_selected` +-- + +DROP TABLE IF EXISTS `assessment_trainingexample_options_selected`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assessment_trainingexample_options_selected` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `trainingexample_id` int(11) NOT NULL, + `criterionoption_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `assessment_trainingexamp_trainingexample_id_crite_4b6b8b90_uniq` (`trainingexample_id`,`criterionoption_id`), + KEY `assessment_traininge_criterionoption_id_de6716f1_fk_assessmen` (`criterionoption_id`), + CONSTRAINT `assessment_traininge_criterionoption_id_de6716f1_fk_assessmen` FOREIGN KEY (`criterionoption_id`) REFERENCES `assessment_criterionoption` (`id`), + CONSTRAINT `assessment_traininge_trainingexample_id_7a04b572_fk_assessmen` FOREIGN KEY (`trainingexample_id`) REFERENCES `assessment_trainingexample` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assessment_trainingexample_options_selected` +-- + +LOCK TABLES `assessment_trainingexample_options_selected` WRITE; +/*!40000 ALTER TABLE `assessment_trainingexample_options_selected` DISABLE KEYS */; +/*!40000 ALTER TABLE `assessment_trainingexample_options_selected` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_accountrecovery` +-- + +DROP TABLE IF EXISTS `auth_accountrecovery`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_accountrecovery` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `secondary_email` varchar(254) NOT NULL, + `user_id` int(11) NOT NULL, + `is_active` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `secondary_email` (`secondary_email`), + UNIQUE KEY `user_id` (`user_id`), + CONSTRAINT `auth_accountrecovery_user_id_0c61e73c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_accountrecovery` +-- + +LOCK TABLES `auth_accountrecovery` WRITE; +/*!40000 ALTER TABLE `auth_accountrecovery` DISABLE KEYS */; +/*!40000 ALTER TABLE `auth_accountrecovery` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_group` +-- + +DROP TABLE IF EXISTS `auth_group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_group` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(150) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_group` +-- + +LOCK TABLES `auth_group` WRITE; +/*!40000 ALTER TABLE `auth_group` DISABLE KEYS */; +INSERT INTO `auth_group` VALUES (1,'API Access Request Approvers'); +/*!40000 ALTER TABLE `auth_group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_group_permissions` +-- + +DROP TABLE IF EXISTS `auth_group_permissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_group_permissions` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `group_id` int(11) NOT NULL, + `permission_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_group_permissions_group_id_permission_id_0cd325b0_uniq` (`group_id`,`permission_id`), + KEY `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` (`permission_id`), + CONSTRAINT `auth_group_permissio_permission_id_84c5c92e_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`), + CONSTRAINT `auth_group_permissions_group_id_b120cbf9_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_group_permissions` +-- + +LOCK TABLES `auth_group_permissions` WRITE; +/*!40000 ALTER TABLE `auth_group_permissions` DISABLE KEYS */; +/*!40000 ALTER TABLE `auth_group_permissions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_permission` +-- + +DROP TABLE IF EXISTS `auth_permission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_permission` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `content_type_id` int(11) NOT NULL, + `codename` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_permission_content_type_id_codename_01ab375a_uniq` (`content_type_id`,`codename`), + CONSTRAINT `auth_permission_content_type_id_2f476e4b_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1626 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_permission` +-- + +LOCK TABLES `auth_permission` WRITE; +/*!40000 ALTER TABLE `auth_permission` DISABLE KEYS */; +INSERT INTO `auth_permission` VALUES (1,'Can add group',2,'add_group'),(2,'Can change group',2,'change_group'),(3,'Can delete group',2,'delete_group'),(4,'Can add user',3,'add_user'),(5,'Can change user',3,'change_user'),(6,'Can delete user',3,'delete_user'),(7,'Can add permission',4,'add_permission'),(8,'Can change permission',4,'change_permission'),(9,'Can delete permission',4,'delete_permission'),(10,'Can add content type',5,'add_contenttype'),(11,'Can change content type',5,'change_contenttype'),(12,'Can delete content type',5,'delete_contenttype'),(13,'Can add redirect',6,'add_redirect'),(14,'Can change redirect',6,'change_redirect'),(15,'Can delete redirect',6,'delete_redirect'),(16,'Can add session',7,'add_session'),(17,'Can change session',7,'change_session'),(18,'Can delete session',7,'delete_session'),(19,'Can add site',8,'add_site'),(20,'Can change site',8,'change_site'),(21,'Can delete site',8,'delete_site'),(22,'Can add saved group result',9,'add_tasksetmeta'),(23,'Can change saved group result',9,'change_tasksetmeta'),(24,'Can delete saved group result',9,'delete_tasksetmeta'),(25,'Can add crontab',10,'add_crontabschedule'),(26,'Can change crontab',10,'change_crontabschedule'),(27,'Can delete crontab',10,'delete_crontabschedule'),(28,'Can add periodic task',11,'add_periodictask'),(29,'Can change periodic task',11,'change_periodictask'),(30,'Can delete periodic task',11,'delete_periodictask'),(31,'Can add task',12,'add_taskstate'),(32,'Can change task',12,'change_taskstate'),(33,'Can delete task',12,'delete_taskstate'),(34,'Can add periodic tasks',13,'add_periodictasks'),(35,'Can change periodic tasks',13,'change_periodictasks'),(36,'Can delete periodic tasks',13,'delete_periodictasks'),(37,'Can add worker',14,'add_workerstate'),(38,'Can change worker',14,'change_workerstate'),(39,'Can delete worker',14,'delete_workerstate'),(40,'Can add interval',15,'add_intervalschedule'),(41,'Can change interval',15,'change_intervalschedule'),(42,'Can delete interval',15,'delete_intervalschedule'),(43,'Can add task state',16,'add_taskmeta'),(44,'Can change task state',16,'change_taskmeta'),(45,'Can delete task state',16,'delete_taskmeta'),(46,'Can add Switch',17,'add_switch'),(47,'Can change Switch',17,'change_switch'),(48,'Can delete Switch',17,'delete_switch'),(49,'Can add Flag',18,'add_flag'),(50,'Can change Flag',18,'change_flag'),(51,'Can delete Flag',18,'delete_flag'),(52,'Can add Sample',19,'add_sample'),(53,'Can change Sample',19,'change_sample'),(54,'Can delete Sample',19,'delete_sample'),(55,'Can add course message',20,'add_coursemessage'),(56,'Can change course message',20,'change_coursemessage'),(57,'Can delete course message',20,'delete_coursemessage'),(58,'Can add global status message',21,'add_globalstatusmessage'),(59,'Can change global status message',21,'change_globalstatusmessage'),(60,'Can delete global status message',21,'delete_globalstatusmessage'),(61,'Can add asset base url config',22,'add_assetbaseurlconfig'),(62,'Can change asset base url config',22,'change_assetbaseurlconfig'),(63,'Can delete asset base url config',22,'delete_assetbaseurlconfig'),(64,'Can add asset excluded extensions config',23,'add_assetexcludedextensionsconfig'),(65,'Can change asset excluded extensions config',23,'change_assetexcludedextensionsconfig'),(66,'Can delete asset excluded extensions config',23,'delete_assetexcludedextensionsconfig'),(67,'Can add course asset cache ttl config',24,'add_courseassetcachettlconfig'),(68,'Can change course asset cache ttl config',24,'change_courseassetcachettlconfig'),(69,'Can delete course asset cache ttl config',24,'delete_courseassetcachettlconfig'),(70,'Can add cdn user agents config',25,'add_cdnuseragentsconfig'),(71,'Can change cdn user agents config',25,'change_cdnuseragentsconfig'),(72,'Can delete cdn user agents config',25,'delete_cdnuseragentsconfig'),(73,'Can add site configuration',26,'add_siteconfiguration'),(74,'Can change site configuration',26,'change_siteconfiguration'),(75,'Can delete site configuration',26,'delete_siteconfiguration'),(76,'Can add site configuration history',27,'add_siteconfigurationhistory'),(77,'Can change site configuration history',27,'change_siteconfigurationhistory'),(78,'Can delete site configuration history',27,'delete_siteconfigurationhistory'),(79,'Can add video transcript enabled flag',28,'add_videotranscriptenabledflag'),(80,'Can change video transcript enabled flag',28,'change_videotranscriptenabledflag'),(81,'Can delete video transcript enabled flag',28,'delete_videotranscriptenabledflag'),(82,'Can add course hls playback enabled flag',29,'add_coursehlsplaybackenabledflag'),(83,'Can change course hls playback enabled flag',29,'change_coursehlsplaybackenabledflag'),(84,'Can delete course hls playback enabled flag',29,'delete_coursehlsplaybackenabledflag'),(85,'Can add video thumbnail setting',30,'add_videothumbnailsetting'),(86,'Can change video thumbnail setting',30,'change_videothumbnailsetting'),(87,'Can delete video thumbnail setting',30,'delete_videothumbnailsetting'),(88,'Can add hls playback enabled flag',31,'add_hlsplaybackenabledflag'),(89,'Can change hls playback enabled flag',31,'change_hlsplaybackenabledflag'),(90,'Can delete hls playback enabled flag',31,'delete_hlsplaybackenabledflag'),(91,'Can add course video transcript enabled flag',32,'add_coursevideotranscriptenabledflag'),(92,'Can change course video transcript enabled flag',32,'change_coursevideotranscriptenabledflag'),(93,'Can delete course video transcript enabled flag',32,'delete_coursevideotranscriptenabledflag'),(94,'Can add migration enqueued course',33,'add_migrationenqueuedcourse'),(95,'Can change migration enqueued course',33,'change_migrationenqueuedcourse'),(96,'Can delete migration enqueued course',33,'delete_migrationenqueuedcourse'),(97,'Can add updated course videos',34,'add_updatedcoursevideos'),(98,'Can change updated course videos',34,'change_updatedcoursevideos'),(99,'Can delete updated course videos',34,'delete_updatedcoursevideos'),(100,'Can add course youtube blocked flag',35,'add_courseyoutubeblockedflag'),(101,'Can change course youtube blocked flag',35,'change_courseyoutubeblockedflag'),(102,'Can delete course youtube blocked flag',35,'delete_courseyoutubeblockedflag'),(103,'Can add transcript migration setting',36,'add_transcriptmigrationsetting'),(104,'Can change transcript migration setting',36,'change_transcriptmigrationsetting'),(105,'Can delete transcript migration setting',36,'delete_transcriptmigrationsetting'),(106,'Can add video pipeline integration',37,'add_videopipelineintegration'),(107,'Can change video pipeline integration',37,'change_videopipelineintegration'),(108,'Can delete video pipeline integration',37,'delete_videopipelineintegration'),(109,'Can add course video uploads enabled by default',38,'add_coursevideouploadsenabledbydefault'),(110,'Can change course video uploads enabled by default',38,'change_coursevideouploadsenabledbydefault'),(111,'Can delete course video uploads enabled by default',38,'delete_coursevideouploadsenabledbydefault'),(112,'Can add video uploads enabled by default',39,'add_videouploadsenabledbydefault'),(113,'Can change video uploads enabled by default',39,'change_videouploadsenabledbydefault'),(114,'Can delete video uploads enabled by default',39,'delete_videouploadsenabledbydefault'),(115,'Can add course dynamic upgrade deadline configuration',40,'add_coursedynamicupgradedeadlineconfiguration'),(116,'Can change course dynamic upgrade deadline configuration',40,'change_coursedynamicupgradedeadlineconfiguration'),(117,'Can delete course dynamic upgrade deadline configuration',40,'delete_coursedynamicupgradedeadlineconfiguration'),(118,'Can add offline computed grade',41,'add_offlinecomputedgrade'),(119,'Can change offline computed grade',41,'change_offlinecomputedgrade'),(120,'Can delete offline computed grade',41,'delete_offlinecomputedgrade'),(121,'Can add x module user state summary field',42,'add_xmoduleuserstatesummaryfield'),(122,'Can change x module user state summary field',42,'change_xmoduleuserstatesummaryfield'),(123,'Can delete x module user state summary field',42,'delete_xmoduleuserstatesummaryfield'),(124,'Can add student field override',43,'add_studentfieldoverride'),(125,'Can change student field override',43,'change_studentfieldoverride'),(126,'Can delete student field override',43,'delete_studentfieldoverride'),(127,'Can add org dynamic upgrade deadline configuration',44,'add_orgdynamicupgradedeadlineconfiguration'),(128,'Can change org dynamic upgrade deadline configuration',44,'change_orgdynamicupgradedeadlineconfiguration'),(129,'Can delete org dynamic upgrade deadline configuration',44,'delete_orgdynamicupgradedeadlineconfiguration'),(130,'Can add student module history',45,'add_studentmodulehistory'),(131,'Can change student module history',45,'change_studentmodulehistory'),(132,'Can delete student module history',45,'delete_studentmodulehistory'),(133,'Can add x module student prefs field',46,'add_xmodulestudentprefsfield'),(134,'Can change x module student prefs field',46,'change_xmodulestudentprefsfield'),(135,'Can delete x module student prefs field',46,'delete_xmodulestudentprefsfield'),(136,'Can add student module',47,'add_studentmodule'),(137,'Can change student module',47,'change_studentmodule'),(138,'Can delete student module',47,'delete_studentmodule'),(139,'Can add dynamic upgrade deadline configuration',48,'add_dynamicupgradedeadlineconfiguration'),(140,'Can change dynamic upgrade deadline configuration',48,'change_dynamicupgradedeadlineconfiguration'),(141,'Can delete dynamic upgrade deadline configuration',48,'delete_dynamicupgradedeadlineconfiguration'),(142,'Can add offline computed grade log',49,'add_offlinecomputedgradelog'),(143,'Can change offline computed grade log',49,'change_offlinecomputedgradelog'),(144,'Can delete offline computed grade log',49,'delete_offlinecomputedgradelog'),(145,'Can add x module student info field',50,'add_xmodulestudentinfofield'),(146,'Can change x module student info field',50,'change_xmodulestudentinfofield'),(147,'Can delete x module student info field',50,'delete_xmodulestudentinfofield'),(148,'Can add student module history extended',51,'add_studentmodulehistoryextended'),(149,'Can change student module history extended',51,'change_studentmodulehistoryextended'),(150,'Can delete student module history extended',51,'delete_studentmodulehistoryextended'),(151,'Can add account recovery configuration',52,'add_accountrecoveryconfiguration'),(152,'Can change account recovery configuration',52,'change_accountrecoveryconfiguration'),(153,'Can delete account recovery configuration',52,'delete_accountrecoveryconfiguration'),(154,'Can add user signup source',53,'add_usersignupsource'),(155,'Can change user signup source',53,'change_usersignupsource'),(156,'Can delete user signup source',53,'delete_usersignupsource'),(157,'Can add pending name change',54,'add_pendingnamechange'),(158,'Can change pending name change',54,'change_pendingnamechange'),(159,'Can delete pending name change',54,'delete_pendingnamechange'),(160,'Can add anonymous user id',55,'add_anonymoususerid'),(161,'Can change anonymous user id',55,'change_anonymoususerid'),(162,'Can delete anonymous user id',55,'delete_anonymoususerid'),(163,'Can add pending secondary email change',56,'add_pendingsecondaryemailchange'),(164,'Can change pending secondary email change',56,'change_pendingsecondaryemailchange'),(165,'Can delete pending secondary email change',56,'delete_pendingsecondaryemailchange'),(166,'Can add logout view configuration',57,'add_logoutviewconfiguration'),(167,'Can change logout view configuration',57,'change_logoutviewconfiguration'),(168,'Can delete logout view configuration',57,'delete_logoutviewconfiguration'),(169,'Can add allowed auth user',58,'add_allowedauthuser'),(170,'Can change allowed auth user',58,'change_allowedauthuser'),(171,'Can delete allowed auth user',58,'delete_allowedauthuser'),(172,'Can add pending email change',59,'add_pendingemailchange'),(173,'Can change pending email change',59,'change_pendingemailchange'),(174,'Can delete pending email change',59,'delete_pendingemailchange'),(175,'Can add user attribute',60,'add_userattribute'),(176,'Can change user attribute',60,'change_userattribute'),(177,'Can delete user attribute',60,'delete_userattribute'),(178,'Can add bulk unenroll configuration',61,'add_bulkunenrollconfiguration'),(179,'Can change bulk unenroll configuration',61,'change_bulkunenrollconfiguration'),(180,'Can delete bulk unenroll configuration',61,'delete_bulkunenrollconfiguration'),(181,'Can add enrollment refund configuration',62,'add_enrollmentrefundconfiguration'),(182,'Can change enrollment refund configuration',62,'change_enrollmentrefundconfiguration'),(183,'Can delete enrollment refund configuration',62,'delete_enrollmentrefundconfiguration'),(184,'Can add entrance exam configuration',63,'add_entranceexamconfiguration'),(185,'Can change entrance exam configuration',63,'change_entranceexamconfiguration'),(186,'Can delete entrance exam configuration',63,'delete_entranceexamconfiguration'),(187,'Can add fbe enrollment exclusion',64,'add_fbeenrollmentexclusion'),(188,'Can change fbe enrollment exclusion',64,'change_fbeenrollmentexclusion'),(189,'Can delete fbe enrollment exclusion',64,'delete_fbeenrollmentexclusion'),(190,'Can add registration cookie configuration',65,'add_registrationcookieconfiguration'),(191,'Can change registration cookie configuration',65,'change_registrationcookieconfiguration'),(192,'Can delete registration cookie configuration',65,'delete_registrationcookieconfiguration'),(193,'Can add social link',66,'add_sociallink'),(194,'Can change social link',66,'change_sociallink'),(195,'Can delete social link',66,'delete_sociallink'),(196,'Can add user profile',67,'add_userprofile'),(197,'Can change user profile',67,'change_userprofile'),(198,'Can delete user profile',67,'delete_userprofile'),(199,'Can deactivate, but NOT delete users',67,'can_deactivate_users'),(200,'Can add registration',68,'add_registration'),(201,'Can change registration',68,'change_registration'),(202,'Can delete registration',68,'delete_registration'),(203,'Can add course enrollment allowed',69,'add_courseenrollmentallowed'),(204,'Can change course enrollment allowed',69,'change_courseenrollmentallowed'),(205,'Can delete course enrollment allowed',69,'delete_courseenrollmentallowed'),(206,'Can add dashboard configuration',70,'add_dashboardconfiguration'),(207,'Can change dashboard configuration',70,'change_dashboardconfiguration'),(208,'Can delete dashboard configuration',70,'delete_dashboardconfiguration'),(209,'Can add account recovery',71,'add_accountrecovery'),(210,'Can change account recovery',71,'change_accountrecovery'),(211,'Can delete account recovery',71,'delete_accountrecovery'),(212,'Can add historical manual enrollment audit',72,'add_historicalmanualenrollmentaudit'),(213,'Can change historical manual enrollment audit',72,'change_historicalmanualenrollmentaudit'),(214,'Can delete historical manual enrollment audit',72,'delete_historicalmanualenrollmentaudit'),(215,'Can add course enrollment',73,'add_courseenrollment'),(216,'Can change course enrollment',73,'change_courseenrollment'),(217,'Can delete course enrollment',73,'delete_courseenrollment'),(218,'Can add Login Failure',74,'add_loginfailures'),(219,'Can change Login Failure',74,'change_loginfailures'),(220,'Can delete Login Failure',74,'delete_loginfailures'),(221,'Can add user standing',75,'add_userstanding'),(222,'Can change user standing',75,'change_userstanding'),(223,'Can delete user standing',75,'delete_userstanding'),(224,'Can add course access role',76,'add_courseaccessrole'),(225,'Can change course access role',76,'change_courseaccessrole'),(226,'Can delete course access role',76,'delete_courseaccessrole'),(227,'Can add course enrollment attribute',77,'add_courseenrollmentattribute'),(228,'Can change course enrollment attribute',77,'change_courseenrollmentattribute'),(229,'Can delete course enrollment attribute',77,'delete_courseenrollmentattribute'),(230,'Can add language proficiency',78,'add_languageproficiency'),(231,'Can change language proficiency',78,'change_languageproficiency'),(232,'Can delete language proficiency',78,'delete_languageproficiency'),(233,'Can add historical course enrollment',79,'add_historicalcourseenrollment'),(234,'Can change historical course enrollment',79,'change_historicalcourseenrollment'),(235,'Can delete historical course enrollment',79,'delete_historicalcourseenrollment'),(236,'Can add manual enrollment audit',80,'add_manualenrollmentaudit'),(237,'Can change manual enrollment audit',80,'change_manualenrollmentaudit'),(238,'Can delete manual enrollment audit',80,'delete_manualenrollmentaudit'),(239,'Can add linked in add to profile configuration',81,'add_linkedinaddtoprofileconfiguration'),(240,'Can change linked in add to profile configuration',81,'change_linkedinaddtoprofileconfiguration'),(241,'Can delete linked in add to profile configuration',81,'delete_linkedinaddtoprofileconfiguration'),(242,'Can add user test group',82,'add_usertestgroup'),(243,'Can change user test group',82,'change_usertestgroup'),(244,'Can delete user test group',82,'delete_usertestgroup'),(245,'Can add rate limit configuration',83,'add_ratelimitconfiguration'),(246,'Can change rate limit configuration',83,'change_ratelimitconfiguration'),(247,'Can delete rate limit configuration',83,'delete_ratelimitconfiguration'),(248,'Can add certificate generation course setting',84,'add_certificategenerationcoursesetting'),(249,'Can change certificate generation course setting',84,'change_certificategenerationcoursesetting'),(250,'Can delete certificate generation course setting',84,'delete_certificategenerationcoursesetting'),(251,'Can add example certificate',85,'add_examplecertificate'),(252,'Can change example certificate',85,'change_examplecertificate'),(253,'Can delete example certificate',85,'delete_examplecertificate'),(254,'Can add historical generated certificate',86,'add_historicalgeneratedcertificate'),(255,'Can change historical generated certificate',86,'change_historicalgeneratedcertificate'),(256,'Can delete historical generated certificate',86,'delete_historicalgeneratedcertificate'),(257,'Can add certificate template asset',87,'add_certificatetemplateasset'),(258,'Can change certificate template asset',87,'change_certificatetemplateasset'),(259,'Can delete certificate template asset',87,'delete_certificatetemplateasset'),(260,'Can add certificate html view configuration',88,'add_certificatehtmlviewconfiguration'),(261,'Can change certificate html view configuration',88,'change_certificatehtmlviewconfiguration'),(262,'Can delete certificate html view configuration',88,'delete_certificatehtmlviewconfiguration'),(263,'Can add certificate whitelist',89,'add_certificatewhitelist'),(264,'Can change certificate whitelist',89,'change_certificatewhitelist'),(265,'Can delete certificate whitelist',89,'delete_certificatewhitelist'),(266,'Can add certificate generation configuration',90,'add_certificategenerationconfiguration'),(267,'Can change certificate generation configuration',90,'change_certificategenerationconfiguration'),(268,'Can delete certificate generation configuration',90,'delete_certificategenerationconfiguration'),(269,'Can add example certificate set',91,'add_examplecertificateset'),(270,'Can change example certificate set',91,'change_examplecertificateset'),(271,'Can delete example certificate set',91,'delete_examplecertificateset'),(272,'Can add certificate template',92,'add_certificatetemplate'),(273,'Can change certificate template',92,'change_certificatetemplate'),(274,'Can delete certificate template',92,'delete_certificatetemplate'),(275,'Can add generated certificate',93,'add_generatedcertificate'),(276,'Can change generated certificate',93,'change_generatedcertificate'),(277,'Can delete generated certificate',93,'delete_generatedcertificate'),(278,'Can add certificate invalidation',94,'add_certificateinvalidation'),(279,'Can change certificate invalidation',94,'change_certificateinvalidation'),(280,'Can delete certificate invalidation',94,'delete_certificateinvalidation'),(281,'Can add certificate generation history',95,'add_certificategenerationhistory'),(282,'Can change certificate generation history',95,'change_certificategenerationhistory'),(283,'Can delete certificate generation history',95,'delete_certificategenerationhistory'),(284,'Can add instructor task',96,'add_instructortask'),(285,'Can change instructor task',96,'change_instructortask'),(286,'Can delete instructor task',96,'delete_instructortask'),(287,'Can add grade report setting',97,'add_gradereportsetting'),(288,'Can change grade report setting',97,'change_gradereportsetting'),(289,'Can delete grade report setting',97,'delete_gradereportsetting'),(290,'Can add cohort membership',98,'add_cohortmembership'),(291,'Can change cohort membership',98,'change_cohortmembership'),(292,'Can delete cohort membership',98,'delete_cohortmembership'),(293,'Can add course cohort',99,'add_coursecohort'),(294,'Can change course cohort',99,'change_coursecohort'),(295,'Can delete course cohort',99,'delete_coursecohort'),(296,'Can add course user group',100,'add_courseusergroup'),(297,'Can change course user group',100,'change_courseusergroup'),(298,'Can delete course user group',100,'delete_courseusergroup'),(299,'Can add unregistered learner cohort assignments',101,'add_unregisteredlearnercohortassignments'),(300,'Can change unregistered learner cohort assignments',101,'change_unregisteredlearnercohortassignments'),(301,'Can delete unregistered learner cohort assignments',101,'delete_unregisteredlearnercohortassignments'),(302,'Can add course cohorts settings',102,'add_coursecohortssettings'),(303,'Can change course cohorts settings',102,'change_coursecohortssettings'),(304,'Can delete course cohorts settings',102,'delete_coursecohortssettings'),(305,'Can add course user group partition group',103,'add_courseusergrouppartitiongroup'),(306,'Can change course user group partition group',103,'change_courseusergrouppartitiongroup'),(307,'Can delete course user group partition group',103,'delete_courseusergrouppartitiongroup'),(308,'Can add optout',104,'add_optout'),(309,'Can change optout',104,'change_optout'),(310,'Can delete optout',104,'delete_optout'),(311,'Can add course email',105,'add_courseemail'),(312,'Can change course email',105,'change_courseemail'),(313,'Can delete course email',105,'delete_courseemail'),(314,'Can add course authorization',106,'add_courseauthorization'),(315,'Can change course authorization',106,'change_courseauthorization'),(316,'Can delete course authorization',106,'delete_courseauthorization'),(317,'Can add course email template',107,'add_courseemailtemplate'),(318,'Can change course email template',107,'change_courseemailtemplate'),(319,'Can delete course email template',107,'delete_courseemailtemplate'),(320,'Can add bulk email flag',108,'add_bulkemailflag'),(321,'Can change bulk email flag',108,'change_bulkemailflag'),(322,'Can delete bulk email flag',108,'delete_bulkemailflag'),(323,'Can add target',109,'add_target'),(324,'Can change target',109,'change_target'),(325,'Can delete target',109,'delete_target'),(326,'Can add course mode target',110,'add_coursemodetarget'),(327,'Can change course mode target',110,'change_coursemodetarget'),(328,'Can delete course mode target',110,'delete_coursemodetarget'),(329,'Can add cohort target',111,'add_cohorttarget'),(330,'Can change cohort target',111,'change_cohorttarget'),(331,'Can delete cohort target',111,'delete_cohorttarget'),(332,'Can add branding api config',112,'add_brandingapiconfig'),(333,'Can change branding api config',112,'change_brandingapiconfig'),(334,'Can delete branding api config',112,'delete_brandingapiconfig'),(335,'Can add branding info config',113,'add_brandinginfoconfig'),(336,'Can change branding info config',113,'change_brandinginfoconfig'),(337,'Can delete branding info config',113,'delete_brandinginfoconfig'),(338,'Can add grant',114,'add_grant'),(339,'Can change grant',114,'change_grant'),(340,'Can delete grant',114,'delete_grant'),(341,'Can add access token',115,'add_accesstoken'),(342,'Can change access token',115,'change_accesstoken'),(343,'Can delete access token',115,'delete_accesstoken'),(344,'Can add application',116,'add_application'),(345,'Can change application',116,'change_application'),(346,'Can delete application',116,'delete_application'),(347,'Can add refresh token',117,'add_refreshtoken'),(348,'Can change refresh token',117,'change_refreshtoken'),(349,'Can delete refresh token',117,'delete_refreshtoken'),(350,'Can add application access',118,'add_applicationaccess'),(351,'Can change application access',118,'change_applicationaccess'),(352,'Can delete application access',118,'delete_applicationaccess'),(353,'Can add restricted application',119,'add_restrictedapplication'),(354,'Can change restricted application',119,'change_restrictedapplication'),(355,'Can delete restricted application',119,'delete_restrictedapplication'),(356,'Can add application organization',120,'add_applicationorganization'),(357,'Can change application organization',120,'change_applicationorganization'),(358,'Can delete application organization',120,'delete_applicationorganization'),(359,'Can add Provider Configuration (LTI)',121,'add_ltiproviderconfig'),(360,'Can change Provider Configuration (LTI)',121,'change_ltiproviderconfig'),(361,'Can delete Provider Configuration (LTI)',121,'delete_ltiproviderconfig'),(362,'Can add Provider Configuration (SAML IdP)',122,'add_samlproviderconfig'),(363,'Can change Provider Configuration (SAML IdP)',122,'change_samlproviderconfig'),(364,'Can delete Provider Configuration (SAML IdP)',122,'delete_samlproviderconfig'),(365,'Can add SAML Provider Data',123,'add_samlproviderdata'),(366,'Can change SAML Provider Data',123,'change_samlproviderdata'),(367,'Can delete SAML Provider Data',123,'delete_samlproviderdata'),(368,'Can add SAML Configuration',124,'add_samlconfiguration'),(369,'Can change SAML Configuration',124,'change_samlconfiguration'),(370,'Can delete SAML Configuration',124,'delete_samlconfiguration'),(371,'Can add Provider Configuration (OAuth)',125,'add_oauth2providerconfig'),(372,'Can change Provider Configuration (OAuth)',125,'change_oauth2providerconfig'),(373,'Can delete Provider Configuration (OAuth)',125,'delete_oauth2providerconfig'),(374,'Can add system wide role assignment',126,'add_systemwideroleassignment'),(375,'Can change system wide role assignment',126,'change_systemwideroleassignment'),(376,'Can delete system wide role assignment',126,'delete_systemwideroleassignment'),(377,'Can add system wide role',127,'add_systemwiderole'),(378,'Can change system wide role',127,'change_systemwiderole'),(379,'Can delete system wide role',127,'delete_systemwiderole'),(380,'Can add article plugin',128,'add_articleplugin'),(381,'Can change article plugin',128,'change_articleplugin'),(382,'Can delete article plugin',128,'delete_articleplugin'),(383,'Can add Article for object',129,'add_articleforobject'),(384,'Can change Article for object',129,'change_articleforobject'),(385,'Can delete Article for object',129,'delete_articleforobject'),(386,'Can add simple plugin',130,'add_simpleplugin'),(387,'Can change simple plugin',130,'change_simpleplugin'),(388,'Can delete simple plugin',130,'delete_simpleplugin'),(389,'Can add article revision',131,'add_articlerevision'),(390,'Can change article revision',131,'change_articlerevision'),(391,'Can delete article revision',131,'delete_articlerevision'),(392,'Can add reusable plugin',132,'add_reusableplugin'),(393,'Can change reusable plugin',132,'change_reusableplugin'),(394,'Can delete reusable plugin',132,'delete_reusableplugin'),(395,'Can add revision plugin revision',133,'add_revisionpluginrevision'),(396,'Can change revision plugin revision',133,'change_revisionpluginrevision'),(397,'Can delete revision plugin revision',133,'delete_revisionpluginrevision'),(398,'Can add URL path',134,'add_urlpath'),(399,'Can change URL path',134,'change_urlpath'),(400,'Can delete URL path',134,'delete_urlpath'),(401,'Can add article',135,'add_article'),(402,'Can change article',135,'change_article'),(403,'Can delete article',135,'delete_article'),(404,'Can edit all articles and lock/unlock/restore',135,'moderate'),(405,'Can change ownership of any article',135,'assign'),(406,'Can assign permissions to other users',135,'grant'),(407,'Can add revision plugin',136,'add_revisionplugin'),(408,'Can change revision plugin',136,'change_revisionplugin'),(409,'Can delete revision plugin',136,'delete_revisionplugin'),(410,'Can add notification',137,'add_notification'),(411,'Can change notification',137,'change_notification'),(412,'Can delete notification',137,'delete_notification'),(413,'Can add settings',138,'add_settings'),(414,'Can change settings',138,'change_settings'),(415,'Can delete settings',138,'delete_settings'),(416,'Can add subscription',139,'add_subscription'),(417,'Can change subscription',139,'change_subscription'),(418,'Can delete subscription',139,'delete_subscription'),(419,'Can add type',140,'add_notificationtype'),(420,'Can change type',140,'change_notificationtype'),(421,'Can delete type',140,'delete_notificationtype'),(422,'Can add log entry',141,'add_logentry'),(423,'Can change log entry',141,'change_logentry'),(424,'Can delete log entry',141,'delete_logentry'),(425,'Can add permission',142,'add_permission'),(426,'Can change permission',142,'change_permission'),(427,'Can delete permission',142,'delete_permission'),(428,'Can add forums config',143,'add_forumsconfig'),(429,'Can change forums config',143,'change_forumsconfig'),(430,'Can delete forums config',143,'delete_forumsconfig'),(431,'Can add role',144,'add_role'),(432,'Can change role',144,'change_role'),(433,'Can delete role',144,'delete_role'),(434,'Can add course discussion settings',145,'add_coursediscussionsettings'),(435,'Can change course discussion settings',145,'change_coursediscussionsettings'),(436,'Can delete course discussion settings',145,'delete_coursediscussionsettings'),(437,'Can add discussions id mapping',146,'add_discussionsidmapping'),(438,'Can change discussions id mapping',146,'change_discussionsidmapping'),(439,'Can delete discussions id mapping',146,'delete_discussionsidmapping'),(440,'Can add splash config',147,'add_splashconfig'),(441,'Can change splash config',147,'change_splashconfig'),(442,'Can delete splash config',147,'delete_splashconfig'),(443,'Can add user course tag',148,'add_usercoursetag'),(444,'Can change user course tag',148,'change_usercoursetag'),(445,'Can delete user course tag',148,'delete_usercoursetag'),(446,'Can add User Retirement Reporting Status',149,'add_userretirementpartnerreportingstatus'),(447,'Can change User Retirement Reporting Status',149,'change_userretirementpartnerreportingstatus'),(448,'Can delete User Retirement Reporting Status',149,'delete_userretirementpartnerreportingstatus'),(449,'Can add user preference',150,'add_userpreference'),(450,'Can change user preference',150,'change_userpreference'),(451,'Can delete user preference',150,'delete_userpreference'),(452,'Can add User Retirement Status',151,'add_userretirementstatus'),(453,'Can change User Retirement Status',151,'change_userretirementstatus'),(454,'Can delete User Retirement Status',151,'delete_userretirementstatus'),(455,'Can add retirement state',152,'add_retirementstate'),(456,'Can change retirement state',152,'change_retirementstate'),(457,'Can delete retirement state',152,'delete_retirementstate'),(458,'Can add User Retirement Request',153,'add_userretirementrequest'),(459,'Can change User Retirement Request',153,'change_userretirementrequest'),(460,'Can delete User Retirement Request',153,'delete_userretirementrequest'),(461,'Can add user org tag',154,'add_userorgtag'),(462,'Can change user org tag',154,'change_userorgtag'),(463,'Can delete user org tag',154,'delete_userorgtag'),(464,'Can add donation configuration',155,'add_donationconfiguration'),(465,'Can change donation configuration',155,'change_donationconfiguration'),(466,'Can delete donation configuration',155,'delete_donationconfiguration'),(467,'Can add order',156,'add_order'),(468,'Can change order',156,'change_order'),(469,'Can delete order',156,'delete_order'),(470,'Can add invoice',157,'add_invoice'),(471,'Can change invoice',157,'change_invoice'),(472,'Can delete invoice',157,'delete_invoice'),(473,'Can add coupon',158,'add_coupon'),(474,'Can change coupon',158,'change_coupon'),(475,'Can delete coupon',158,'delete_coupon'),(476,'Can add course reg code item annotation',159,'add_courseregcodeitemannotation'),(477,'Can change course reg code item annotation',159,'change_courseregcodeitemannotation'),(478,'Can delete course reg code item annotation',159,'delete_courseregcodeitemannotation'),(479,'Can add invoice transaction',160,'add_invoicetransaction'),(480,'Can change invoice transaction',160,'change_invoicetransaction'),(481,'Can delete invoice transaction',160,'delete_invoicetransaction'),(482,'Can add coupon redemption',161,'add_couponredemption'),(483,'Can change coupon redemption',161,'change_couponredemption'),(484,'Can delete coupon redemption',161,'delete_couponredemption'),(485,'Can add paid course registration annotation',162,'add_paidcourseregistrationannotation'),(486,'Can change paid course registration annotation',162,'change_paidcourseregistrationannotation'),(487,'Can delete paid course registration annotation',162,'delete_paidcourseregistrationannotation'),(488,'Can add course registration code',163,'add_courseregistrationcode'),(489,'Can change course registration code',163,'change_courseregistrationcode'),(490,'Can delete course registration code',163,'delete_courseregistrationcode'),(491,'Can add registration code redemption',164,'add_registrationcoderedemption'),(492,'Can change registration code redemption',164,'change_registrationcoderedemption'),(493,'Can delete registration code redemption',164,'delete_registrationcoderedemption'),(494,'Can add order item',165,'add_orderitem'),(495,'Can change order item',165,'change_orderitem'),(496,'Can delete order item',165,'delete_orderitem'),(497,'Can add invoice item',166,'add_invoiceitem'),(498,'Can change invoice item',166,'change_invoiceitem'),(499,'Can delete invoice item',166,'delete_invoiceitem'),(500,'Can add invoice history',167,'add_invoicehistory'),(501,'Can change invoice history',167,'change_invoicehistory'),(502,'Can delete invoice history',167,'delete_invoicehistory'),(503,'Can add course registration code invoice item',168,'add_courseregistrationcodeinvoiceitem'),(504,'Can change course registration code invoice item',168,'change_courseregistrationcodeinvoiceitem'),(505,'Can delete course registration code invoice item',168,'delete_courseregistrationcodeinvoiceitem'),(506,'Can add course reg code item',169,'add_courseregcodeitem'),(507,'Can change course reg code item',169,'change_courseregcodeitem'),(508,'Can delete course reg code item',169,'delete_courseregcodeitem'),(509,'Can add certificate item',170,'add_certificateitem'),(510,'Can change certificate item',170,'change_certificateitem'),(511,'Can delete certificate item',170,'delete_certificateitem'),(512,'Can add paid course registration',171,'add_paidcourseregistration'),(513,'Can change paid course registration',171,'change_paidcourseregistration'),(514,'Can delete paid course registration',171,'delete_paidcourseregistration'),(515,'Can add donation',172,'add_donation'),(516,'Can change donation',172,'change_donation'),(517,'Can delete donation',172,'delete_donation'),(518,'Can add course modes archive',173,'add_coursemodesarchive'),(519,'Can change course modes archive',173,'change_coursemodesarchive'),(520,'Can delete course modes archive',173,'delete_coursemodesarchive'),(521,'Can add course mode',174,'add_coursemode'),(522,'Can change course mode',174,'change_coursemode'),(523,'Can delete course mode',174,'delete_coursemode'),(524,'Can add historical course mode',175,'add_historicalcoursemode'),(525,'Can change historical course mode',175,'change_historicalcoursemode'),(526,'Can delete historical course mode',175,'delete_historicalcoursemode'),(527,'Can add course mode expiration config',176,'add_coursemodeexpirationconfig'),(528,'Can change course mode expiration config',176,'change_coursemodeexpirationconfig'),(529,'Can delete course mode expiration config',176,'delete_coursemodeexpirationconfig'),(530,'Can add course entitlement',177,'add_courseentitlement'),(531,'Can change course entitlement',177,'change_courseentitlement'),(532,'Can delete course entitlement',177,'delete_courseentitlement'),(533,'Can add course entitlement policy',178,'add_courseentitlementpolicy'),(534,'Can change course entitlement policy',178,'change_courseentitlementpolicy'),(535,'Can delete course entitlement policy',178,'delete_courseentitlementpolicy'),(536,'Can add historical course entitlement support detail',179,'add_historicalcourseentitlementsupportdetail'),(537,'Can change historical course entitlement support detail',179,'change_historicalcourseentitlementsupportdetail'),(538,'Can delete historical course entitlement support detail',179,'delete_historicalcourseentitlementsupportdetail'),(539,'Can add course entitlement support detail',180,'add_courseentitlementsupportdetail'),(540,'Can change course entitlement support detail',180,'change_courseentitlementsupportdetail'),(541,'Can delete course entitlement support detail',180,'delete_courseentitlementsupportdetail'),(542,'Can add historical course entitlement',181,'add_historicalcourseentitlement'),(543,'Can change historical course entitlement',181,'change_historicalcourseentitlement'),(544,'Can delete historical course entitlement',181,'delete_historicalcourseentitlement'),(545,'Can add manual verification',182,'add_manualverification'),(546,'Can change manual verification',182,'change_manualverification'),(547,'Can delete manual verification',182,'delete_manualverification'),(548,'Can add sspv retry student argument',183,'add_sspverificationretryconfig'),(549,'Can change sspv retry student argument',183,'change_sspverificationretryconfig'),(550,'Can delete sspv retry student argument',183,'delete_sspverificationretryconfig'),(551,'Can add software secure photo verification',184,'add_softwaresecurephotoverification'),(552,'Can change software secure photo verification',184,'change_softwaresecurephotoverification'),(553,'Can delete software secure photo verification',184,'delete_softwaresecurephotoverification'),(554,'Can add verification deadline',185,'add_verificationdeadline'),(555,'Can change verification deadline',185,'change_verificationdeadline'),(556,'Can delete verification deadline',185,'delete_verificationdeadline'),(557,'Can add sso verification',186,'add_ssoverification'),(558,'Can change sso verification',186,'change_ssoverification'),(559,'Can delete sso verification',186,'delete_ssoverification'),(560,'Can add dark lang config',187,'add_darklangconfig'),(561,'Can change dark lang config',187,'change_darklangconfig'),(562,'Can delete dark lang config',187,'delete_darklangconfig'),(563,'Can add whitelisted rss url',188,'add_whitelistedrssurl'),(564,'Can change whitelisted rss url',188,'change_whitelistedrssurl'),(565,'Can delete whitelisted rss url',188,'delete_whitelistedrssurl'),(566,'Can add embargoed course',189,'add_embargoedcourse'),(567,'Can change embargoed course',189,'change_embargoedcourse'),(568,'Can delete embargoed course',189,'delete_embargoedcourse'),(569,'Can add country',190,'add_country'),(570,'Can change country',190,'change_country'),(571,'Can delete country',190,'delete_country'),(572,'Can add country access rule',191,'add_countryaccessrule'),(573,'Can change country access rule',191,'change_countryaccessrule'),(574,'Can delete country access rule',191,'delete_countryaccessrule'),(575,'Can add course access rule history',192,'add_courseaccessrulehistory'),(576,'Can change course access rule history',192,'change_courseaccessrulehistory'),(577,'Can delete course access rule history',192,'delete_courseaccessrulehistory'),(578,'Can add ip filter',193,'add_ipfilter'),(579,'Can change ip filter',193,'change_ipfilter'),(580,'Can delete ip filter',193,'delete_ipfilter'),(581,'Can add restricted course',194,'add_restrictedcourse'),(582,'Can change restricted course',194,'change_restrictedcourse'),(583,'Can delete restricted course',194,'delete_restrictedcourse'),(584,'Can add embargoed state',195,'add_embargoedstate'),(585,'Can change embargoed state',195,'change_embargoedstate'),(586,'Can delete embargoed state',195,'delete_embargoedstate'),(587,'Can add course rerun state',196,'add_coursererunstate'),(588,'Can change course rerun state',196,'change_coursererunstate'),(589,'Can delete course rerun state',196,'delete_coursererunstate'),(590,'Can add ignore mobile available flag config',197,'add_ignoremobileavailableflagconfig'),(591,'Can change ignore mobile available flag config',197,'change_ignoremobileavailableflagconfig'),(592,'Can delete ignore mobile available flag config',197,'delete_ignoremobileavailableflagconfig'),(593,'Can add app version config',198,'add_appversionconfig'),(594,'Can change app version config',198,'change_appversionconfig'),(595,'Can delete app version config',198,'delete_appversionconfig'),(596,'Can add mobile api config',199,'add_mobileapiconfig'),(597,'Can change mobile api config',199,'change_mobileapiconfig'),(598,'Can delete mobile api config',199,'delete_mobileapiconfig'),(599,'Can add association',200,'add_association'),(600,'Can change association',200,'change_association'),(601,'Can delete association',200,'delete_association'),(602,'Can add user social auth',201,'add_usersocialauth'),(603,'Can change user social auth',201,'change_usersocialauth'),(604,'Can delete user social auth',201,'delete_usersocialauth'),(605,'Can add code',202,'add_code'),(606,'Can change code',202,'change_code'),(607,'Can delete code',202,'delete_code'),(608,'Can add partial',203,'add_partial'),(609,'Can change partial',203,'change_partial'),(610,'Can delete partial',203,'delete_partial'),(611,'Can add nonce',204,'add_nonce'),(612,'Can change nonce',204,'change_nonce'),(613,'Can delete nonce',204,'delete_nonce'),(614,'Can add survey form',205,'add_surveyform'),(615,'Can change survey form',205,'change_surveyform'),(616,'Can delete survey form',205,'delete_surveyform'),(617,'Can add survey answer',206,'add_surveyanswer'),(618,'Can change survey answer',206,'change_surveyanswer'),(619,'Can delete survey answer',206,'delete_surveyanswer'),(620,'Can add x block asides config',207,'add_xblockasidesconfig'),(621,'Can change x block asides config',207,'change_xblockasidesconfig'),(622,'Can delete x block asides config',207,'delete_xblockasidesconfig'),(623,'Can add share',208,'add_share'),(624,'Can change share',208,'change_share'),(625,'Can delete share',208,'delete_share'),(626,'Can add answer',209,'add_answer'),(627,'Can change answer',209,'change_answer'),(628,'Can delete answer',209,'delete_answer'),(629,'Can add submission',210,'add_submission'),(630,'Can change submission',210,'change_submission'),(631,'Can delete submission',210,'delete_submission'),(632,'Can add team submission',211,'add_teamsubmission'),(633,'Can change team submission',211,'change_teamsubmission'),(634,'Can delete team submission',211,'delete_teamsubmission'),(635,'Can add student item',212,'add_studentitem'),(636,'Can change student item',212,'change_studentitem'),(637,'Can delete student item',212,'delete_studentitem'),(638,'Can add score',213,'add_score'),(639,'Can change score',213,'change_score'),(640,'Can delete score',213,'delete_score'),(641,'Can add score summary',214,'add_scoresummary'),(642,'Can change score summary',214,'change_scoresummary'),(643,'Can delete score summary',214,'delete_scoresummary'),(644,'Can add score annotation',215,'add_scoreannotation'),(645,'Can change score annotation',215,'change_scoreannotation'),(646,'Can delete score annotation',215,'delete_scoreannotation'),(647,'Can add criterion option',216,'add_criterionoption'),(648,'Can change criterion option',216,'change_criterionoption'),(649,'Can delete criterion option',216,'delete_criterionoption'),(650,'Can add peer workflow',217,'add_peerworkflow'),(651,'Can change peer workflow',217,'change_peerworkflow'),(652,'Can delete peer workflow',217,'delete_peerworkflow'),(653,'Can add staff workflow',218,'add_staffworkflow'),(654,'Can change staff workflow',218,'change_staffworkflow'),(655,'Can delete staff workflow',218,'delete_staffworkflow'),(656,'Can add student training workflow item',219,'add_studenttrainingworkflowitem'),(657,'Can change student training workflow item',219,'change_studenttrainingworkflowitem'),(658,'Can delete student training workflow item',219,'delete_studenttrainingworkflowitem'),(659,'Can add assessment feedback',220,'add_assessmentfeedback'),(660,'Can change assessment feedback',220,'change_assessmentfeedback'),(661,'Can delete assessment feedback',220,'delete_assessmentfeedback'),(662,'Can add rubric',221,'add_rubric'),(663,'Can change rubric',221,'change_rubric'),(664,'Can delete rubric',221,'delete_rubric'),(665,'Can add historical shared file upload',222,'add_historicalsharedfileupload'),(666,'Can change historical shared file upload',222,'change_historicalsharedfileupload'),(667,'Can delete historical shared file upload',222,'delete_historicalsharedfileupload'),(668,'Can add team staff workflow',223,'add_teamstaffworkflow'),(669,'Can change team staff workflow',223,'change_teamstaffworkflow'),(670,'Can delete team staff workflow',223,'delete_teamstaffworkflow'),(671,'Can add assessment',224,'add_assessment'),(672,'Can change assessment',224,'change_assessment'),(673,'Can delete assessment',224,'delete_assessment'),(674,'Can add assessment part',225,'add_assessmentpart'),(675,'Can change assessment part',225,'change_assessmentpart'),(676,'Can delete assessment part',225,'delete_assessmentpart'),(677,'Can add shared file upload',226,'add_sharedfileupload'),(678,'Can change shared file upload',226,'change_sharedfileupload'),(679,'Can delete shared file upload',226,'delete_sharedfileupload'),(680,'Can add criterion',227,'add_criterion'),(681,'Can change criterion',227,'change_criterion'),(682,'Can delete criterion',227,'delete_criterion'),(683,'Can add peer workflow item',228,'add_peerworkflowitem'),(684,'Can change peer workflow item',228,'change_peerworkflowitem'),(685,'Can delete peer workflow item',228,'delete_peerworkflowitem'),(686,'Can add training example',229,'add_trainingexample'),(687,'Can change training example',229,'change_trainingexample'),(688,'Can delete training example',229,'delete_trainingexample'),(689,'Can add student training workflow',230,'add_studenttrainingworkflow'),(690,'Can change student training workflow',230,'change_studenttrainingworkflow'),(691,'Can delete student training workflow',230,'delete_studenttrainingworkflow'),(692,'Can add assessment feedback option',231,'add_assessmentfeedbackoption'),(693,'Can change assessment feedback option',231,'change_assessmentfeedbackoption'),(694,'Can delete assessment feedback option',231,'delete_assessmentfeedbackoption'),(695,'Can add assessment workflow',232,'add_assessmentworkflow'),(696,'Can change assessment workflow',232,'change_assessmentworkflow'),(697,'Can delete assessment workflow',232,'delete_assessmentworkflow'),(698,'Can add team assessment workflow',233,'add_teamassessmentworkflow'),(699,'Can change team assessment workflow',233,'change_teamassessmentworkflow'),(700,'Can delete team assessment workflow',233,'delete_teamassessmentworkflow'),(701,'Can add assessment workflow step',234,'add_assessmentworkflowstep'),(702,'Can change assessment workflow step',234,'change_assessmentworkflowstep'),(703,'Can delete assessment workflow step',234,'delete_assessmentworkflowstep'),(704,'Can add assessment workflow cancellation',235,'add_assessmentworkflowcancellation'),(705,'Can change assessment workflow cancellation',235,'change_assessmentworkflowcancellation'),(706,'Can delete assessment workflow cancellation',235,'delete_assessmentworkflowcancellation'),(707,'Can add encoded video',236,'add_encodedvideo'),(708,'Can change encoded video',236,'change_encodedvideo'),(709,'Can delete encoded video',236,'delete_encodedvideo'),(710,'Can add course video',237,'add_coursevideo'),(711,'Can change course video',237,'change_coursevideo'),(712,'Can delete course video',237,'delete_coursevideo'),(713,'Can add profile',238,'add_profile'),(714,'Can change profile',238,'change_profile'),(715,'Can delete profile',238,'delete_profile'),(716,'Can add video transcript',239,'add_videotranscript'),(717,'Can change video transcript',239,'change_videotranscript'),(718,'Can delete video transcript',239,'delete_videotranscript'),(719,'Can add video',240,'add_video'),(720,'Can change video',240,'change_video'),(721,'Can delete video',240,'delete_video'),(722,'Can add transcript preference',241,'add_transcriptpreference'),(723,'Can change transcript preference',241,'change_transcriptpreference'),(724,'Can delete transcript preference',241,'delete_transcriptpreference'),(725,'Can add video image',242,'add_videoimage'),(726,'Can change video image',242,'change_videoimage'),(727,'Can delete video image',242,'delete_videoimage'),(728,'Can add third party transcript credentials state',243,'add_thirdpartytranscriptcredentialsstate'),(729,'Can change third party transcript credentials state',243,'change_thirdpartytranscriptcredentialsstate'),(730,'Can delete third party transcript credentials state',243,'delete_thirdpartytranscriptcredentialsstate'),(731,'Can add transcript credentials',244,'add_transcriptcredentials'),(732,'Can change transcript credentials',244,'change_transcriptcredentials'),(733,'Can delete transcript credentials',244,'delete_transcriptcredentials'),(734,'Can add historical course overview',245,'add_historicalcourseoverview'),(735,'Can change historical course overview',245,'change_historicalcourseoverview'),(736,'Can delete historical course overview',245,'delete_historicalcourseoverview'),(737,'Can add course overview image set',246,'add_courseoverviewimageset'),(738,'Can change course overview image set',246,'change_courseoverviewimageset'),(739,'Can delete course overview image set',246,'delete_courseoverviewimageset'),(740,'Can add course overview image config',247,'add_courseoverviewimageconfig'),(741,'Can change course overview image config',247,'change_courseoverviewimageconfig'),(742,'Can delete course overview image config',247,'delete_courseoverviewimageconfig'),(743,'Can add course overview tab',248,'add_courseoverviewtab'),(744,'Can change course overview tab',248,'change_courseoverviewtab'),(745,'Can delete course overview tab',248,'delete_courseoverviewtab'),(746,'Can add course overview',249,'add_courseoverview'),(747,'Can change course overview',249,'change_courseoverview'),(748,'Can delete course overview',249,'delete_courseoverview'),(749,'Can add simulate_publish argument',250,'add_simulatecoursepublishconfig'),(750,'Can change simulate_publish argument',250,'change_simulatecoursepublishconfig'),(751,'Can delete simulate_publish argument',250,'delete_simulatecoursepublishconfig'),(752,'Can add block structure model',251,'add_blockstructuremodel'),(753,'Can change block structure model',251,'change_blockstructuremodel'),(754,'Can delete block structure model',251,'delete_blockstructuremodel'),(755,'Can add block structure configuration',252,'add_blockstructureconfiguration'),(756,'Can change block structure configuration',252,'change_blockstructureconfiguration'),(757,'Can delete block structure configuration',252,'delete_blockstructureconfiguration'),(758,'Can add x domain proxy configuration',253,'add_xdomainproxyconfiguration'),(759,'Can change x domain proxy configuration',253,'change_xdomainproxyconfiguration'),(760,'Can delete x domain proxy configuration',253,'delete_xdomainproxyconfiguration'),(761,'Can add commerce configuration',254,'add_commerceconfiguration'),(762,'Can change commerce configuration',254,'change_commerceconfiguration'),(763,'Can delete commerce configuration',254,'delete_commerceconfiguration'),(764,'Can add credit provider',255,'add_creditprovider'),(765,'Can change credit provider',255,'change_creditprovider'),(766,'Can delete credit provider',255,'delete_creditprovider'),(767,'Can add credit config',256,'add_creditconfig'),(768,'Can change credit config',256,'change_creditconfig'),(769,'Can delete credit config',256,'delete_creditconfig'),(770,'Can add credit requirement status',257,'add_creditrequirementstatus'),(771,'Can change credit requirement status',257,'change_creditrequirementstatus'),(772,'Can delete credit requirement status',257,'delete_creditrequirementstatus'),(773,'Can add credit course',258,'add_creditcourse'),(774,'Can change credit course',258,'change_creditcourse'),(775,'Can delete credit course',258,'delete_creditcourse'),(776,'Can add credit eligibility',259,'add_crediteligibility'),(777,'Can change credit eligibility',259,'change_crediteligibility'),(778,'Can delete credit eligibility',259,'delete_crediteligibility'),(779,'Can add credit request',260,'add_creditrequest'),(780,'Can change credit request',260,'change_creditrequest'),(781,'Can delete credit request',260,'delete_creditrequest'),(782,'Can add credit requirement',261,'add_creditrequirement'),(783,'Can change credit requirement',261,'change_creditrequirement'),(784,'Can delete credit requirement',261,'delete_creditrequirement'),(785,'Can add course team membership',262,'add_courseteammembership'),(786,'Can change course team membership',262,'change_courseteammembership'),(787,'Can delete course team membership',262,'delete_courseteammembership'),(788,'Can add course team',263,'add_courseteam'),(789,'Can change course team',263,'change_courseteam'),(790,'Can delete course team',263,'delete_courseteam'),(791,'Can add x block configuration',264,'add_xblockconfiguration'),(792,'Can change x block configuration',264,'change_xblockconfiguration'),(793,'Can delete x block configuration',264,'delete_xblockconfiguration'),(794,'Can add x block studio configuration flag',265,'add_xblockstudioconfigurationflag'),(795,'Can change x block studio configuration flag',265,'change_xblockstudioconfigurationflag'),(796,'Can delete x block studio configuration flag',265,'delete_xblockstudioconfigurationflag'),(797,'Can add x block studio configuration',266,'add_xblockstudioconfiguration'),(798,'Can change x block studio configuration',266,'change_xblockstudioconfiguration'),(799,'Can delete x block studio configuration',266,'delete_xblockstudioconfiguration'),(800,'Can add programs api config',267,'add_programsapiconfig'),(801,'Can change programs api config',267,'change_programsapiconfig'),(802,'Can delete programs api config',267,'delete_programsapiconfig'),(803,'Can add backpopulate_program_credentials argument',268,'add_customprogramsconfig'),(804,'Can change backpopulate_program_credentials argument',268,'change_customprogramsconfig'),(805,'Can delete backpopulate_program_credentials argument',268,'delete_customprogramsconfig'),(806,'Can add catalog integration',269,'add_catalogintegration'),(807,'Can change catalog integration',269,'change_catalogintegration'),(808,'Can delete catalog integration',269,'delete_catalogintegration'),(809,'Can add self paced configuration',270,'add_selfpacedconfiguration'),(810,'Can change self paced configuration',270,'change_selfpacedconfiguration'),(811,'Can delete self paced configuration',270,'delete_selfpacedconfiguration'),(812,'Can add kv store',271,'add_kvstore'),(813,'Can change kv store',271,'change_kvstore'),(814,'Can delete kv store',271,'delete_kvstore'),(815,'Can add user milestone',272,'add_usermilestone'),(816,'Can change user milestone',272,'change_usermilestone'),(817,'Can delete user milestone',272,'delete_usermilestone'),(818,'Can add milestone',273,'add_milestone'),(819,'Can change milestone',273,'change_milestone'),(820,'Can delete milestone',273,'delete_milestone'),(821,'Can add course milestone',274,'add_coursemilestone'),(822,'Can change course milestone',274,'change_coursemilestone'),(823,'Can delete course milestone',274,'delete_coursemilestone'),(824,'Can add milestone relationship type',275,'add_milestonerelationshiptype'),(825,'Can change milestone relationship type',275,'change_milestonerelationshiptype'),(826,'Can delete milestone relationship type',275,'delete_milestonerelationshiptype'),(827,'Can add course content milestone',276,'add_coursecontentmilestone'),(828,'Can change course content milestone',276,'change_coursecontentmilestone'),(829,'Can delete course content milestone',276,'delete_coursecontentmilestone'),(830,'Can add api access request',1,'add_apiaccessrequest'),(831,'Can change api access request',1,'change_apiaccessrequest'),(832,'Can delete api access request',1,'delete_apiaccessrequest'),(833,'Can add api access config',277,'add_apiaccessconfig'),(834,'Can change api access config',277,'change_apiaccessconfig'),(835,'Can delete api access config',277,'delete_apiaccessconfig'),(836,'Can add catalog',278,'add_catalog'),(837,'Can change catalog',278,'change_catalog'),(838,'Can delete catalog',278,'delete_catalog'),(839,'Can add migrate verified track cohorts setting',279,'add_migrateverifiedtrackcohortssetting'),(840,'Can change migrate verified track cohorts setting',279,'change_migrateverifiedtrackcohortssetting'),(841,'Can delete migrate verified track cohorts setting',279,'delete_migrateverifiedtrackcohortssetting'),(842,'Can add verified track cohorted course',280,'add_verifiedtrackcohortedcourse'),(843,'Can change verified track cohorted course',280,'change_verifiedtrackcohortedcourse'),(844,'Can delete verified track cohorted course',280,'delete_verifiedtrackcohortedcourse'),(845,'Can add badge assertion',281,'add_badgeassertion'),(846,'Can change badge assertion',281,'change_badgeassertion'),(847,'Can delete badge assertion',281,'delete_badgeassertion'),(848,'Can add course complete image configuration',282,'add_coursecompleteimageconfiguration'),(849,'Can change course complete image configuration',282,'change_coursecompleteimageconfiguration'),(850,'Can delete course complete image configuration',282,'delete_coursecompleteimageconfiguration'),(851,'Can add badge class',283,'add_badgeclass'),(852,'Can change badge class',283,'change_badgeclass'),(853,'Can delete badge class',283,'delete_badgeclass'),(854,'Can add course event badges configuration',284,'add_courseeventbadgesconfiguration'),(855,'Can change course event badges configuration',284,'change_courseeventbadgesconfiguration'),(856,'Can delete course event badges configuration',284,'delete_courseeventbadgesconfiguration'),(857,'Can add email marketing configuration',285,'add_emailmarketingconfiguration'),(858,'Can change email marketing configuration',285,'change_emailmarketingconfiguration'),(859,'Can delete email marketing configuration',285,'delete_emailmarketingconfiguration'),(860,'Can add failed task',286,'add_failedtask'),(861,'Can change failed task',286,'change_failedtask'),(862,'Can delete failed task',286,'delete_failedtask'),(863,'Can add crawlers config',287,'add_crawlersconfig'),(864,'Can change crawlers config',287,'change_crawlersconfig'),(865,'Can delete crawlers config',287,'delete_crawlersconfig'),(866,'Can add Waffle flag course override',288,'add_waffleflagcourseoverridemodel'),(867,'Can change Waffle flag course override',288,'change_waffleflagcourseoverridemodel'),(868,'Can delete Waffle flag course override',288,'delete_waffleflagcourseoverridemodel'),(869,'Can add course goal',289,'add_coursegoal'),(870,'Can change course goal',289,'change_coursegoal'),(871,'Can delete course goal',289,'delete_coursegoal'),(872,'Can add historical user calendar sync config',290,'add_historicalusercalendarsyncconfig'),(873,'Can change historical user calendar sync config',290,'change_historicalusercalendarsyncconfig'),(874,'Can delete historical user calendar sync config',290,'delete_historicalusercalendarsyncconfig'),(875,'Can add user calendar sync config',291,'add_usercalendarsyncconfig'),(876,'Can change user calendar sync config',291,'change_usercalendarsyncconfig'),(877,'Can delete user calendar sync config',291,'delete_usercalendarsyncconfig'),(878,'Can add course duration limit config',292,'add_coursedurationlimitconfig'),(879,'Can change course duration limit config',292,'change_coursedurationlimitconfig'),(880,'Can delete course duration limit config',292,'delete_coursedurationlimitconfig'),(881,'Can add content type gating config',293,'add_contenttypegatingconfig'),(882,'Can change content type gating config',293,'change_contenttypegatingconfig'),(883,'Can delete content type gating config',293,'delete_contenttypegatingconfig'),(884,'Can add discount percentage config',294,'add_discountpercentageconfig'),(885,'Can change discount percentage config',294,'change_discountpercentageconfig'),(886,'Can delete discount percentage config',294,'delete_discountpercentageconfig'),(887,'Can add discount restriction config',295,'add_discountrestrictionconfig'),(888,'Can change discount restriction config',295,'change_discountrestrictionconfig'),(889,'Can delete discount restriction config',295,'delete_discountrestrictionconfig'),(890,'Can add historical Experiment Key-Value Pair',296,'add_historicalexperimentkeyvalue'),(891,'Can change historical Experiment Key-Value Pair',296,'change_historicalexperimentkeyvalue'),(892,'Can delete historical Experiment Key-Value Pair',296,'delete_historicalexperimentkeyvalue'),(893,'Can add Experiment Data',297,'add_experimentdata'),(894,'Can change Experiment Data',297,'change_experimentdata'),(895,'Can delete Experiment Data',297,'delete_experimentdata'),(896,'Can add Experiment Key-Value Pair',298,'add_experimentkeyvalue'),(897,'Can change Experiment Key-Value Pair',298,'change_experimentkeyvalue'),(898,'Can delete Experiment Key-Value Pair',298,'delete_experimentkeyvalue'),(899,'Can add self paced relative dates config',299,'add_selfpacedrelativedatesconfig'),(900,'Can change self paced relative dates config',299,'change_selfpacedrelativedatesconfig'),(901,'Can delete self paced relative dates config',299,'delete_selfpacedrelativedatesconfig'),(902,'Can add historical external id',300,'add_historicalexternalid'),(903,'Can change historical external id',300,'change_historicalexternalid'),(904,'Can delete historical external id',300,'delete_historicalexternalid'),(905,'Can add external id',301,'add_externalid'),(906,'Can change external id',301,'change_externalid'),(907,'Can delete external id',301,'delete_externalid'),(908,'Can add historical external id type',302,'add_historicalexternalidtype'),(909,'Can change historical external id type',302,'change_historicalexternalidtype'),(910,'Can delete historical external id type',302,'delete_historicalexternalidtype'),(911,'Can add external id type',303,'add_externalidtype'),(912,'Can change external id type',303,'change_externalidtype'),(913,'Can delete external id type',303,'delete_externalidtype'),(914,'Can add Schedule',304,'add_schedule'),(915,'Can change Schedule',304,'change_schedule'),(916,'Can delete Schedule',304,'delete_schedule'),(917,'Can add historical Schedule',305,'add_historicalschedule'),(918,'Can change historical Schedule',305,'change_historicalschedule'),(919,'Can delete historical Schedule',305,'delete_historicalschedule'),(920,'Can add schedule config',306,'add_scheduleconfig'),(921,'Can change schedule config',306,'change_scheduleconfig'),(922,'Can delete schedule config',306,'delete_scheduleconfig'),(923,'Can add schedule experience',307,'add_scheduleexperience'),(924,'Can change schedule experience',307,'change_scheduleexperience'),(925,'Can delete schedule experience',307,'delete_scheduleexperience'),(926,'Can add organization',308,'add_organization'),(927,'Can change organization',308,'change_organization'),(928,'Can delete organization',308,'delete_organization'),(929,'Can add historical organization',309,'add_historicalorganization'),(930,'Can change historical organization',309,'change_historicalorganization'),(931,'Can delete historical organization',309,'delete_historicalorganization'),(932,'Can add Link Course',310,'add_organizationcourse'),(933,'Can change Link Course',310,'change_organizationcourse'),(934,'Can delete Link Course',310,'delete_organizationcourse'),(935,'Can add historical enterprise course enrollment',311,'add_historicalenterprisecourseenrollment'),(936,'Can change historical enterprise course enrollment',311,'change_historicalenterprisecourseenrollment'),(937,'Can delete historical enterprise course enrollment',311,'delete_historicalenterprisecourseenrollment'),(938,'Can add system wide enterprise role',312,'add_systemwideenterpriserole'),(939,'Can change system wide enterprise role',312,'change_systemwideenterpriserole'),(940,'Can delete system wide enterprise role',312,'delete_systemwideenterpriserole'),(941,'Can add enterprise course enrollment',313,'add_enterprisecourseenrollment'),(942,'Can change enterprise course enrollment',313,'change_enterprisecourseenrollment'),(943,'Can delete enterprise course enrollment',313,'delete_enterprisecourseenrollment'),(944,'Can add enterprise feature role',314,'add_enterprisefeaturerole'),(945,'Can change enterprise feature role',314,'change_enterprisefeaturerole'),(946,'Can delete enterprise feature role',314,'delete_enterprisefeaturerole'),(947,'Can add historical pending enterprise customer user',315,'add_historicalpendingenterprisecustomeruser'),(948,'Can change historical pending enterprise customer user',315,'change_historicalpendingenterprisecustomeruser'),(949,'Can delete historical pending enterprise customer user',315,'delete_historicalpendingenterprisecustomeruser'),(950,'Can add Enterprise Customer',316,'add_enterprisecustomer'),(951,'Can change Enterprise Customer',316,'change_enterprisecustomer'),(952,'Can delete Enterprise Customer',316,'delete_enterprisecustomer'),(953,'Can add enterprise customer identity provider',317,'add_enterprisecustomeridentityprovider'),(954,'Can change enterprise customer identity provider',317,'change_enterprisecustomeridentityprovider'),(955,'Can delete enterprise customer identity provider',317,'delete_enterprisecustomeridentityprovider'),(956,'Can add Enterprise Customer Type',318,'add_enterprisecustomertype'),(957,'Can change Enterprise Customer Type',318,'change_enterprisecustomertype'),(958,'Can delete Enterprise Customer Type',318,'delete_enterprisecustomertype'),(959,'Can add historical pending enrollment',319,'add_historicalpendingenrollment'),(960,'Can change historical pending enrollment',319,'change_historicalpendingenrollment'),(961,'Can delete historical pending enrollment',319,'delete_historicalpendingenrollment'),(962,'Can add enterprise customer reporting configuration',320,'add_enterprisecustomerreportingconfiguration'),(963,'Can change enterprise customer reporting configuration',320,'change_enterprisecustomerreportingconfiguration'),(964,'Can delete enterprise customer reporting configuration',320,'delete_enterprisecustomerreportingconfiguration'),(965,'Can add system wide enterprise user role assignment',321,'add_systemwideenterpriseuserroleassignment'),(966,'Can change system wide enterprise user role assignment',321,'change_systemwideenterpriseuserroleassignment'),(967,'Can delete system wide enterprise user role assignment',321,'delete_systemwideenterpriseuserroleassignment'),(968,'Can add Enterprise Catalog Query',322,'add_enterprisecatalogquery'),(969,'Can change Enterprise Catalog Query',322,'change_enterprisecatalogquery'),(970,'Can delete Enterprise Catalog Query',322,'delete_enterprisecatalogquery'),(971,'Can add historical Enterprise Customer Catalog',323,'add_historicalenterprisecustomercatalog'),(972,'Can change historical Enterprise Customer Catalog',323,'change_historicalenterprisecustomercatalog'),(973,'Can delete historical Enterprise Customer Catalog',323,'delete_historicalenterprisecustomercatalog'),(974,'Can add pending enterprise customer user',324,'add_pendingenterprisecustomeruser'),(975,'Can change pending enterprise customer user',324,'change_pendingenterprisecustomeruser'),(976,'Can delete pending enterprise customer user',324,'delete_pendingenterprisecustomeruser'),(977,'Can add enterprise feature user role assignment',325,'add_enterprisefeatureuserroleassignment'),(978,'Can change enterprise feature user role assignment',325,'change_enterprisefeatureuserroleassignment'),(979,'Can delete enterprise feature user role assignment',325,'delete_enterprisefeatureuserroleassignment'),(980,'Can add historical Enterprise Customer',326,'add_historicalenterprisecustomer'),(981,'Can change historical Enterprise Customer',326,'change_historicalenterprisecustomer'),(982,'Can delete historical Enterprise Customer',326,'delete_historicalenterprisecustomer'),(983,'Can add Enterprise Customer Catalog',327,'add_enterprisecustomercatalog'),(984,'Can change Enterprise Customer Catalog',327,'change_enterprisecustomercatalog'),(985,'Can delete Enterprise Customer Catalog',327,'delete_enterprisecustomercatalog'),(986,'Can add enrollment notification email template',328,'add_enrollmentnotificationemailtemplate'),(987,'Can change enrollment notification email template',328,'change_enrollmentnotificationemailtemplate'),(988,'Can delete enrollment notification email template',328,'delete_enrollmentnotificationemailtemplate'),(989,'Can add Enterprise Customer Learner',329,'add_enterprisecustomeruser'),(990,'Can change Enterprise Customer Learner',329,'change_enterprisecustomeruser'),(991,'Can delete Enterprise Customer Learner',329,'delete_enterprisecustomeruser'),(992,'Can add Branding Configuration',330,'add_enterprisecustomerbrandingconfiguration'),(993,'Can change Branding Configuration',330,'change_enterprisecustomerbrandingconfiguration'),(994,'Can delete Branding Configuration',330,'delete_enterprisecustomerbrandingconfiguration'),(995,'Can add enterprise enrollment source',331,'add_enterpriseenrollmentsource'),(996,'Can change enterprise enrollment source',331,'change_enterpriseenrollmentsource'),(997,'Can delete enterprise enrollment source',331,'delete_enterpriseenrollmentsource'),(998,'Can add historical enrollment notification email template',332,'add_historicalenrollmentnotificationemailtemplate'),(999,'Can change historical enrollment notification email template',332,'change_historicalenrollmentnotificationemailtemplate'),(1000,'Can delete historical enrollment notification email template',332,'delete_historicalenrollmentnotificationemailtemplate'),(1001,'Can add pending enrollment',333,'add_pendingenrollment'),(1002,'Can change pending enrollment',333,'change_pendingenrollment'),(1003,'Can delete pending enrollment',333,'delete_pendingenrollment'),(1004,'Can add historical Data Sharing Consent Record',334,'add_historicaldatasharingconsent'),(1005,'Can change historical Data Sharing Consent Record',334,'change_historicaldatasharingconsent'),(1006,'Can delete historical Data Sharing Consent Record',334,'delete_historicaldatasharingconsent'),(1007,'Can add Data Sharing Consent Record',335,'add_datasharingconsent'),(1008,'Can change Data Sharing Consent Record',335,'change_datasharingconsent'),(1009,'Can delete Data Sharing Consent Record',335,'delete_datasharingconsent'),(1010,'Can add data sharing consent text overrides',336,'add_datasharingconsenttextoverrides'),(1011,'Can change data sharing consent text overrides',336,'change_datasharingconsenttextoverrides'),(1012,'Can delete data sharing consent text overrides',336,'delete_datasharingconsenttextoverrides'),(1013,'Can add content metadata item transmission',337,'add_contentmetadataitemtransmission'),(1014,'Can change content metadata item transmission',337,'change_contentmetadataitemtransmission'),(1015,'Can delete content metadata item transmission',337,'delete_contentmetadataitemtransmission'),(1016,'Can add learner data transmission audit',338,'add_learnerdatatransmissionaudit'),(1017,'Can change learner data transmission audit',338,'change_learnerdatatransmissionaudit'),(1018,'Can delete learner data transmission audit',338,'delete_learnerdatatransmissionaudit'),(1019,'Can add degreed global configuration',339,'add_degreedglobalconfiguration'),(1020,'Can change degreed global configuration',339,'change_degreedglobalconfiguration'),(1021,'Can delete degreed global configuration',339,'delete_degreedglobalconfiguration'),(1022,'Can add degreed enterprise customer configuration',340,'add_degreedenterprisecustomerconfiguration'),(1023,'Can change degreed enterprise customer configuration',340,'change_degreedenterprisecustomerconfiguration'),(1024,'Can delete degreed enterprise customer configuration',340,'delete_degreedenterprisecustomerconfiguration'),(1025,'Can add historical degreed enterprise customer configuration',341,'add_historicaldegreedenterprisecustomerconfiguration'),(1026,'Can change historical degreed enterprise customer configuration',341,'change_historicaldegreedenterprisecustomerconfiguration'),(1027,'Can delete historical degreed enterprise customer configuration',341,'delete_historicaldegreedenterprisecustomerconfiguration'),(1028,'Can add degreed learner data transmission audit',342,'add_degreedlearnerdatatransmissionaudit'),(1029,'Can change degreed learner data transmission audit',342,'change_degreedlearnerdatatransmissionaudit'),(1030,'Can delete degreed learner data transmission audit',342,'delete_degreedlearnerdatatransmissionaudit'),(1031,'Can add sap success factors learner data transmission audit',343,'add_sapsuccessfactorslearnerdatatransmissionaudit'),(1032,'Can change sap success factors learner data transmission audit',343,'change_sapsuccessfactorslearnerdatatransmissionaudit'),(1033,'Can delete sap success factors learner data transmission audit',343,'delete_sapsuccessfactorslearnerdatatransmissionaudit'),(1034,'Can add sap success factors enterprise customer configuration',344,'add_sapsuccessfactorsenterprisecustomerconfiguration'),(1035,'Can change sap success factors enterprise customer configuration',344,'change_sapsuccessfactorsenterprisecustomerconfiguration'),(1036,'Can delete sap success factors enterprise customer configuration',344,'delete_sapsuccessfactorsenterprisecustomerconfiguration'),(1037,'Can add sap success factors global configuration',345,'add_sapsuccessfactorsglobalconfiguration'),(1038,'Can change sap success factors global configuration',345,'change_sapsuccessfactorsglobalconfiguration'),(1039,'Can delete sap success factors global configuration',345,'delete_sapsuccessfactorsglobalconfiguration'),(1040,'Can add cornerstone enterprise customer configuration',346,'add_cornerstoneenterprisecustomerconfiguration'),(1041,'Can change cornerstone enterprise customer configuration',346,'change_cornerstoneenterprisecustomerconfiguration'),(1042,'Can delete cornerstone enterprise customer configuration',346,'delete_cornerstoneenterprisecustomerconfiguration'),(1043,'Can add cornerstone global configuration',347,'add_cornerstoneglobalconfiguration'),(1044,'Can change cornerstone global configuration',347,'change_cornerstoneglobalconfiguration'),(1045,'Can delete cornerstone global configuration',347,'delete_cornerstoneglobalconfiguration'),(1046,'Can add cornerstone learner data transmission audit',348,'add_cornerstonelearnerdatatransmissionaudit'),(1047,'Can change cornerstone learner data transmission audit',348,'change_cornerstonelearnerdatatransmissionaudit'),(1048,'Can delete cornerstone learner data transmission audit',348,'delete_cornerstonelearnerdatatransmissionaudit'),(1049,'Can add historical cornerstone enterprise customer configuration',349,'add_historicalcornerstoneenterprisecustomerconfiguration'),(1050,'Can change historical cornerstone enterprise customer configuration',349,'change_historicalcornerstoneenterprisecustomerconfiguration'),(1051,'Can delete historical cornerstone enterprise customer configuration',349,'delete_historicalcornerstoneenterprisecustomerconfiguration'),(1052,'Can add xapi learner data transmission audit',350,'add_xapilearnerdatatransmissionaudit'),(1053,'Can change xapi learner data transmission audit',350,'change_xapilearnerdatatransmissionaudit'),(1054,'Can delete xapi learner data transmission audit',350,'delete_xapilearnerdatatransmissionaudit'),(1055,'Can add xapilrs configuration',351,'add_xapilrsconfiguration'),(1056,'Can change xapilrs configuration',351,'change_xapilrsconfiguration'),(1057,'Can delete xapilrs configuration',351,'delete_xapilrsconfiguration'),(1058,'Can add credentials api config',352,'add_credentialsapiconfig'),(1059,'Can change credentials api config',352,'change_credentialsapiconfig'),(1060,'Can delete credentials api config',352,'delete_credentialsapiconfig'),(1061,'Can add notify_credentials argument',353,'add_notifycredentialsconfig'),(1062,'Can change notify_credentials argument',353,'change_notifycredentialsconfig'),(1063,'Can delete notify_credentials argument',353,'delete_notifycredentialsconfig'),(1064,'Can add historical persistent subsection grade override',354,'add_historicalpersistentsubsectiongradeoverride'),(1065,'Can change historical persistent subsection grade override',354,'change_historicalpersistentsubsectiongradeoverride'),(1066,'Can delete historical persistent subsection grade override',354,'delete_historicalpersistentsubsectiongradeoverride'),(1067,'Can add persistent subsection grade override',355,'add_persistentsubsectiongradeoverride'),(1068,'Can change persistent subsection grade override',355,'change_persistentsubsectiongradeoverride'),(1069,'Can delete persistent subsection grade override',355,'delete_persistentsubsectiongradeoverride'),(1070,'Can add persistent grades enabled flag',356,'add_persistentgradesenabledflag'),(1071,'Can change persistent grades enabled flag',356,'change_persistentgradesenabledflag'),(1072,'Can delete persistent grades enabled flag',356,'delete_persistentgradesenabledflag'),(1073,'Can add compute grades setting',357,'add_computegradessetting'),(1074,'Can change compute grades setting',357,'change_computegradessetting'),(1075,'Can delete compute grades setting',357,'delete_computegradessetting'),(1076,'Can add visible blocks',358,'add_visibleblocks'),(1077,'Can change visible blocks',358,'change_visibleblocks'),(1078,'Can delete visible blocks',358,'delete_visibleblocks'),(1079,'Can add course persistent grades flag',359,'add_coursepersistentgradesflag'),(1080,'Can change course persistent grades flag',359,'change_coursepersistentgradesflag'),(1081,'Can delete course persistent grades flag',359,'delete_coursepersistentgradesflag'),(1082,'Can add persistent subsection grade',360,'add_persistentsubsectiongrade'),(1083,'Can change persistent subsection grade',360,'change_persistentsubsectiongrade'),(1084,'Can delete persistent subsection grade',360,'delete_persistentsubsectiongrade'),(1085,'Can add persistent course grade',361,'add_persistentcoursegrade'),(1086,'Can change persistent course grade',361,'change_persistentcoursegrade'),(1087,'Can delete persistent course grade',361,'delete_persistentcoursegrade'),(1088,'Can add program enrollment',362,'add_programenrollment'),(1089,'Can change program enrollment',362,'change_programenrollment'),(1090,'Can delete program enrollment',362,'delete_programenrollment'),(1091,'Can add course access role assignment',363,'add_courseaccessroleassignment'),(1092,'Can change course access role assignment',363,'change_courseaccessroleassignment'),(1093,'Can delete course access role assignment',363,'delete_courseaccessroleassignment'),(1094,'Can add historical program course enrollment',364,'add_historicalprogramcourseenrollment'),(1095,'Can change historical program course enrollment',364,'change_historicalprogramcourseenrollment'),(1096,'Can delete historical program course enrollment',364,'delete_historicalprogramcourseenrollment'),(1097,'Can add program course enrollment',365,'add_programcourseenrollment'),(1098,'Can change program course enrollment',365,'change_programcourseenrollment'),(1099,'Can delete program course enrollment',365,'delete_programcourseenrollment'),(1100,'Can add historical program enrollment',366,'add_historicalprogramenrollment'),(1101,'Can change historical program enrollment',366,'change_historicalprogramenrollment'),(1102,'Can delete historical program enrollment',366,'delete_historicalprogramenrollment'),(1103,'Can add site theme',367,'add_sitetheme'),(1104,'Can change site theme',367,'change_sitetheme'),(1105,'Can delete site theme',367,'delete_sitetheme'),(1106,'Can add x block cache',368,'add_xblockcache'),(1107,'Can change x block cache',368,'change_xblockcache'),(1108,'Can delete x block cache',368,'delete_xblockcache'),(1109,'Can add bookmark',369,'add_bookmark'),(1110,'Can change bookmark',369,'change_bookmark'),(1111,'Can delete bookmark',369,'delete_bookmark'),(1112,'Can add announcement',370,'add_announcement'),(1113,'Can change announcement',370,'change_announcement'),(1114,'Can delete announcement',370,'delete_announcement'),(1115,'Can add content library',371,'add_contentlibrary'),(1116,'Can change content library',371,'change_contentlibrary'),(1117,'Can delete content library',371,'delete_contentlibrary'),(1118,'Can add content library permission',372,'add_contentlibrarypermission'),(1119,'Can change content library permission',372,'change_contentlibrarypermission'),(1120,'Can delete content library permission',372,'delete_contentlibrarypermission'),(1121,'Can add csv operation',373,'add_csvoperation'),(1122,'Can change csv operation',373,'change_csvoperation'),(1123,'Can delete csv operation',373,'delete_csvoperation'),(1124,'Can add content date',374,'add_contentdate'),(1125,'Can change content date',374,'change_contentdate'),(1126,'Can delete content date',374,'delete_contentdate'),(1127,'Can add user date',375,'add_userdate'),(1128,'Can change user date',375,'change_userdate'),(1129,'Can delete user date',375,'delete_userdate'),(1130,'Can add date policy',376,'add_datepolicy'),(1131,'Can change date policy',376,'change_datepolicy'),(1132,'Can delete date policy',376,'delete_datepolicy'),(1133,'Can add proctored exam attempt history',377,'add_proctoredexamstudentattempthistory'),(1134,'Can change proctored exam attempt history',377,'change_proctoredexamstudentattempthistory'),(1135,'Can delete proctored exam attempt history',377,'delete_proctoredexamstudentattempthistory'),(1136,'Can add proctored exam',378,'add_proctoredexam'),(1137,'Can change proctored exam',378,'change_proctoredexam'),(1138,'Can delete proctored exam',378,'delete_proctoredexam'),(1139,'Can add proctored exam attempt',379,'add_proctoredexamstudentattempt'),(1140,'Can change proctored exam attempt',379,'change_proctoredexamstudentattempt'),(1141,'Can delete proctored exam attempt',379,'delete_proctoredexamstudentattempt'),(1142,'Can add proctored allowance',380,'add_proctoredexamstudentallowance'),(1143,'Can change proctored allowance',380,'change_proctoredexamstudentallowance'),(1144,'Can delete proctored allowance',380,'delete_proctoredexamstudentallowance'),(1145,'Can add proctored allowance history',381,'add_proctoredexamstudentallowancehistory'),(1146,'Can change proctored allowance history',381,'change_proctoredexamstudentallowancehistory'),(1147,'Can delete proctored allowance history',381,'delete_proctoredexamstudentallowancehistory'),(1148,'Can add Proctored exam software secure review',382,'add_proctoredexamsoftwaresecurereview'),(1149,'Can change Proctored exam software secure review',382,'change_proctoredexamsoftwaresecurereview'),(1150,'Can delete Proctored exam software secure review',382,'delete_proctoredexamsoftwaresecurereview'),(1151,'Can add Proctored exam review policy',383,'add_proctoredexamreviewpolicy'),(1152,'Can change Proctored exam review policy',383,'change_proctoredexamreviewpolicy'),(1153,'Can delete Proctored exam review policy',383,'delete_proctoredexamreviewpolicy'),(1154,'Can add proctored exam review policy history',384,'add_proctoredexamreviewpolicyhistory'),(1155,'Can change proctored exam review policy history',384,'change_proctoredexamreviewpolicyhistory'),(1156,'Can delete proctored exam review policy history',384,'delete_proctoredexamreviewpolicyhistory'),(1157,'Can add Proctored exam review archive',385,'add_proctoredexamsoftwaresecurereviewhistory'),(1158,'Can change Proctored exam review archive',385,'change_proctoredexamsoftwaresecurereviewhistory'),(1159,'Can delete Proctored exam review archive',385,'delete_proctoredexamsoftwaresecurereviewhistory'),(1160,'Can add proctored exam software secure comment',386,'add_proctoredexamsoftwaresecurecomment'),(1161,'Can change proctored exam software secure comment',386,'change_proctoredexamsoftwaresecurecomment'),(1162,'Can delete proctored exam software secure comment',386,'delete_proctoredexamsoftwaresecurecomment'),(1163,'Can add block completion',387,'add_blockcompletion'),(1164,'Can change block completion',387,'change_blockcompletion'),(1165,'Can delete block completion',387,'delete_blockcompletion'),(1166,'Can add score overrider',388,'add_scoreoverrider'),(1167,'Can change score overrider',388,'change_scoreoverrider'),(1168,'Can delete score overrider',388,'delete_scoreoverrider'),(1169,'Can add launch log',389,'add_launchlog'),(1170,'Can change launch log',389,'change_launchlog'),(1171,'Can delete launch log',389,'delete_launchlog'),(1172,'Can add lti credential',390,'add_lticredential'),(1173,'Can change lti credential',390,'change_lticredential'),(1174,'Can delete lti credential',390,'delete_lticredential'),(1175,'Can add pathway',391,'add_pathway'),(1176,'Can change pathway',391,'change_pathway'),(1177,'Can delete pathway',391,'delete_pathway'),(1178,'Can add video upload config',392,'add_videouploadconfig'),(1179,'Can change video upload config',392,'change_videouploadconfig'),(1180,'Can delete video upload config',392,'delete_videouploadconfig'),(1181,'Can add course creator',393,'add_coursecreator'),(1182,'Can change course creator',393,'change_coursecreator'),(1183,'Can delete course creator',393,'delete_coursecreator'),(1184,'Can add course edit lti fields enabled flag',394,'add_courseeditltifieldsenabledflag'),(1185,'Can change course edit lti fields enabled flag',394,'change_courseeditltifieldsenabledflag'),(1186,'Can delete course edit lti fields enabled flag',394,'delete_courseeditltifieldsenabledflag'),(1187,'Can add studio config',395,'add_studioconfig'),(1188,'Can change studio config',395,'change_studioconfig'),(1189,'Can delete studio config',395,'delete_studioconfig'),(1190,'Can add tag category',396,'add_tagcategories'),(1191,'Can change tag category',396,'change_tagcategories'),(1192,'Can delete tag category',396,'delete_tagcategories'),(1193,'Can add available tag value',397,'add_tagavailablevalues'),(1194,'Can change available tag value',397,'change_tagavailablevalues'),(1195,'Can delete available tag value',397,'delete_tagavailablevalues'),(1196,'Can add user task artifact',398,'add_usertaskartifact'),(1197,'Can change user task artifact',398,'change_usertaskartifact'),(1198,'Can delete user task artifact',398,'delete_usertaskartifact'),(1199,'Can add user task status',399,'add_usertaskstatus'),(1200,'Can change user task status',399,'change_usertaskstatus'),(1201,'Can delete user task status',399,'delete_usertaskstatus'),(1202,'Can view user',3,'view_user'),(1203,'Can view permission',4,'view_permission'),(1204,'Can view group',2,'view_group'),(1205,'Can view content type',5,'view_contenttype'),(1206,'Can view redirect',6,'view_redirect'),(1207,'Can view session',7,'view_session'),(1208,'Can view site',8,'view_site'),(1209,'Can view worker',14,'view_workerstate'),(1210,'Can view periodic tasks',13,'view_periodictasks'),(1211,'Can view periodic task',11,'view_periodictask'),(1212,'Can view task',12,'view_taskstate'),(1213,'Can view interval',15,'view_intervalschedule'),(1214,'Can view task state',16,'view_taskmeta'),(1215,'Can view saved group result',9,'view_tasksetmeta'),(1216,'Can view crontab',10,'view_crontabschedule'),(1217,'Can view Switch',17,'view_switch'),(1218,'Can view Flag',18,'view_flag'),(1219,'Can view Sample',19,'view_sample'),(1220,'Can view global status message',21,'view_globalstatusmessage'),(1221,'Can view course message',20,'view_coursemessage'),(1222,'Can view asset excluded extensions config',23,'view_assetexcludedextensionsconfig'),(1223,'Can view asset base url config',22,'view_assetbaseurlconfig'),(1224,'Can view cdn user agents config',25,'view_cdnuseragentsconfig'),(1225,'Can view course asset cache ttl config',24,'view_courseassetcachettlconfig'),(1226,'Can view site configuration history',27,'view_siteconfigurationhistory'),(1227,'Can view site configuration',26,'view_siteconfiguration'),(1228,'Can view course video transcript enabled flag',32,'view_coursevideotranscriptenabledflag'),(1229,'Can view migration enqueued course',33,'view_migrationenqueuedcourse'),(1230,'Can view course youtube blocked flag',35,'view_courseyoutubeblockedflag'),(1231,'Can view video thumbnail setting',30,'view_videothumbnailsetting'),(1232,'Can view course hls playback enabled flag',29,'view_coursehlsplaybackenabledflag'),(1233,'Can view hls playback enabled flag',31,'view_hlsplaybackenabledflag'),(1234,'Can view video transcript enabled flag',28,'view_videotranscriptenabledflag'),(1235,'Can view transcript migration setting',36,'view_transcriptmigrationsetting'),(1236,'Can view updated course videos',34,'view_updatedcoursevideos'),(1237,'Can view course video uploads enabled by default',38,'view_coursevideouploadsenabledbydefault'),(1238,'Can view video uploads enabled by default',39,'view_videouploadsenabledbydefault'),(1239,'Can view video pipeline integration',37,'view_videopipelineintegration'),(1240,'Can add vem pipeline integration',400,'add_vempipelineintegration'),(1241,'Can change vem pipeline integration',400,'change_vempipelineintegration'),(1242,'Can delete vem pipeline integration',400,'delete_vempipelineintegration'),(1243,'Can view vem pipeline integration',400,'view_vempipelineintegration'),(1244,'Can view course dynamic upgrade deadline configuration',40,'view_coursedynamicupgradedeadlineconfiguration'),(1245,'Can view x module student prefs field',46,'view_xmodulestudentprefsfield'),(1246,'Can view org dynamic upgrade deadline configuration',44,'view_orgdynamicupgradedeadlineconfiguration'),(1247,'Can view dynamic upgrade deadline configuration',48,'view_dynamicupgradedeadlineconfiguration'),(1248,'Can view x module student info field',50,'view_xmodulestudentinfofield'),(1249,'Can view student module',47,'view_studentmodule'),(1250,'Can view student module history',45,'view_studentmodulehistory'),(1251,'Can view student field override',43,'view_studentfieldoverride'),(1252,'Can view offline computed grade',41,'view_offlinecomputedgrade'),(1253,'Can view x module user state summary field',42,'view_xmoduleuserstatesummaryfield'),(1254,'Can view offline computed grade log',49,'view_offlinecomputedgradelog'),(1255,'Can view student module history extended',51,'view_studentmodulehistoryextended'),(1256,'Can view enrollment refund configuration',62,'view_enrollmentrefundconfiguration'),(1257,'Can view course enrollment',73,'view_courseenrollment'),(1258,'Can view account recovery',71,'view_accountrecovery'),(1259,'Can view user test group',82,'view_usertestgroup'),(1260,'Can view registration cookie configuration',65,'view_registrationcookieconfiguration'),(1261,'Can view allowed auth user',58,'view_allowedauthuser'),(1262,'Can view pending email change',59,'view_pendingemailchange'),(1263,'Can view fbe enrollment exclusion',64,'view_fbeenrollmentexclusion'),(1264,'Can view pending name change',54,'view_pendingnamechange'),(1265,'Can view user profile',67,'view_userprofile'),(1266,'Can view user standing',75,'view_userstanding'),(1267,'Can view dashboard configuration',70,'view_dashboardconfiguration'),(1268,'Can view manual enrollment audit',80,'view_manualenrollmentaudit'),(1269,'Can view historical course enrollment',79,'view_historicalcourseenrollment'),(1270,'Can add course enrollment celebration',401,'add_courseenrollmentcelebration'),(1271,'Can change course enrollment celebration',401,'change_courseenrollmentcelebration'),(1272,'Can delete course enrollment celebration',401,'delete_courseenrollmentcelebration'),(1273,'Can view course enrollment celebration',401,'view_courseenrollmentcelebration'),(1274,'Can view pending secondary email change',56,'view_pendingsecondaryemailchange'),(1275,'Can view course enrollment allowed',69,'view_courseenrollmentallowed'),(1276,'Can view linked in add to profile configuration',81,'view_linkedinaddtoprofileconfiguration'),(1277,'Can view bulk unenroll configuration',61,'view_bulkunenrollconfiguration'),(1278,'Can view account recovery configuration',52,'view_accountrecoveryconfiguration'),(1279,'Can view user signup source',53,'view_usersignupsource'),(1280,'Can view entrance exam configuration',63,'view_entranceexamconfiguration'),(1281,'Can view Login Failure',74,'view_loginfailures'),(1282,'Can view social link',66,'view_sociallink'),(1283,'Can view historical manual enrollment audit',72,'view_historicalmanualenrollmentaudit'),(1284,'Can view anonymous user id',55,'view_anonymoususerid'),(1285,'Can view language proficiency',78,'view_languageproficiency'),(1286,'Can view course access role',76,'view_courseaccessrole'),(1287,'Can view user attribute',60,'view_userattribute'),(1288,'Can view registration',68,'view_registration'),(1289,'Can view course enrollment attribute',77,'view_courseenrollmentattribute'),(1290,'Can view rate limit configuration',83,'view_ratelimitconfiguration'),(1291,'Can view certificate invalidation',94,'view_certificateinvalidation'),(1292,'Can view generated certificate',93,'view_generatedcertificate'),(1293,'Can view certificate generation configuration',90,'view_certificategenerationconfiguration'),(1294,'Can view certificate generation course setting',84,'view_certificategenerationcoursesetting'),(1295,'Can view historical generated certificate',86,'view_historicalgeneratedcertificate'),(1296,'Can view certificate template',92,'view_certificatetemplate'),(1297,'Can view certificate generation history',95,'view_certificategenerationhistory'),(1298,'Can view certificate template asset',87,'view_certificatetemplateasset'),(1299,'Can view certificate html view configuration',88,'view_certificatehtmlviewconfiguration'),(1300,'Can view example certificate',85,'view_examplecertificate'),(1301,'Can view certificate whitelist',89,'view_certificatewhitelist'),(1302,'Can view example certificate set',91,'view_examplecertificateset'),(1303,'Can view grade report setting',97,'view_gradereportsetting'),(1304,'Can view instructor task',96,'view_instructortask'),(1305,'Can view unregistered learner cohort assignments',101,'view_unregisteredlearnercohortassignments'),(1306,'Can view course user group partition group',103,'view_courseusergrouppartitiongroup'),(1307,'Can view course cohort',99,'view_coursecohort'),(1308,'Can view course cohorts settings',102,'view_coursecohortssettings'),(1309,'Can view cohort membership',98,'view_cohortmembership'),(1310,'Can view course user group',100,'view_courseusergroup'),(1311,'Can view optout',104,'view_optout'),(1312,'Can view course email',105,'view_courseemail'),(1313,'Can view course email template',107,'view_courseemailtemplate'),(1314,'Can view bulk email flag',108,'view_bulkemailflag'),(1315,'Can view target',109,'view_target'),(1316,'Can view cohort target',111,'view_cohorttarget'),(1317,'Can view course authorization',106,'view_courseauthorization'),(1318,'Can view course mode target',110,'view_coursemodetarget'),(1319,'Can view branding info config',113,'view_brandinginfoconfig'),(1320,'Can view branding api config',112,'view_brandingapiconfig'),(1321,'Can view access token',115,'view_accesstoken'),(1322,'Can view grant',114,'view_grant'),(1323,'Can view refresh token',117,'view_refreshtoken'),(1324,'Can view application',116,'view_application'),(1325,'Can view restricted application',119,'view_restrictedapplication'),(1326,'Can view application access',118,'view_applicationaccess'),(1327,'Can view application organization',120,'view_applicationorganization'),(1328,'Can view SAML Configuration',124,'view_samlconfiguration'),(1329,'Can view Provider Configuration (OAuth)',125,'view_oauth2providerconfig'),(1330,'Can view SAML Provider Data',123,'view_samlproviderdata'),(1331,'Can view Provider Configuration (SAML IdP)',122,'view_samlproviderconfig'),(1332,'Can view Provider Configuration (LTI)',121,'view_ltiproviderconfig'),(1333,'Can view system wide role',127,'view_systemwiderole'),(1334,'Can view system wide role assignment',126,'view_systemwideroleassignment'),(1335,'Can view article',135,'view_article'),(1336,'Can view article plugin',128,'view_articleplugin'),(1337,'Can view revision plugin',136,'view_revisionplugin'),(1338,'Can view URL path',134,'view_urlpath'),(1339,'Can view revision plugin revision',133,'view_revisionpluginrevision'),(1340,'Can view Article for object',129,'view_articleforobject'),(1341,'Can view reusable plugin',132,'view_reusableplugin'),(1342,'Can view article revision',131,'view_articlerevision'),(1343,'Can view simple plugin',130,'view_simpleplugin'),(1344,'Can view settings',138,'view_settings'),(1345,'Can view subscription',139,'view_subscription'),(1346,'Can view notification',137,'view_notification'),(1347,'Can view type',140,'view_notificationtype'),(1348,'Can view log entry',141,'view_logentry'),(1349,'Can view permission',142,'view_permission'),(1350,'Can view course discussion settings',145,'view_coursediscussionsettings'),(1351,'Can view role',144,'view_role'),(1352,'Can view forums config',143,'view_forumsconfig'),(1353,'Can view discussions id mapping',146,'view_discussionsidmapping'),(1354,'Can view splash config',147,'view_splashconfig'),(1355,'Can view User Retirement Status',151,'view_userretirementstatus'),(1356,'Can view user course tag',148,'view_usercoursetag'),(1357,'Can view user preference',150,'view_userpreference'),(1358,'Can view retirement state',152,'view_retirementstate'),(1359,'Can view User Retirement Reporting Status',149,'view_userretirementpartnerreportingstatus'),(1360,'Can view user org tag',154,'view_userorgtag'),(1361,'Can view User Retirement Request',153,'view_userretirementrequest'),(1362,'Can view invoice',157,'view_invoice'),(1363,'Can view registration code redemption',164,'view_registrationcoderedemption'),(1364,'Can view order item',165,'view_orderitem'),(1365,'Can view paid course registration',171,'view_paidcourseregistration'),(1366,'Can view invoice history',167,'view_invoicehistory'),(1367,'Can view coupon',158,'view_coupon'),(1368,'Can view order',156,'view_order'),(1369,'Can view course reg code item annotation',159,'view_courseregcodeitemannotation'),(1370,'Can view invoice transaction',160,'view_invoicetransaction'),(1371,'Can view coupon redemption',161,'view_couponredemption'),(1372,'Can view invoice item',166,'view_invoiceitem'),(1373,'Can view course reg code item',169,'view_courseregcodeitem'),(1374,'Can view course registration code invoice item',168,'view_courseregistrationcodeinvoiceitem'),(1375,'Can view course registration code',163,'view_courseregistrationcode'),(1376,'Can view paid course registration annotation',162,'view_paidcourseregistrationannotation'),(1377,'Can view donation configuration',155,'view_donationconfiguration'),(1378,'Can view donation',172,'view_donation'),(1379,'Can view certificate item',170,'view_certificateitem'),(1380,'Can view historical course mode',175,'view_historicalcoursemode'),(1381,'Can view course modes archive',173,'view_coursemodesarchive'),(1382,'Can view course mode',174,'view_coursemode'),(1383,'Can view course mode expiration config',176,'view_coursemodeexpirationconfig'),(1384,'Can view course entitlement',177,'view_courseentitlement'),(1385,'Can view course entitlement support detail',180,'view_courseentitlementsupportdetail'),(1386,'Can view historical course entitlement support detail',179,'view_historicalcourseentitlementsupportdetail'),(1387,'Can view historical course entitlement',181,'view_historicalcourseentitlement'),(1388,'Can view course entitlement policy',178,'view_courseentitlementpolicy'),(1389,'Can view verification deadline',185,'view_verificationdeadline'),(1390,'Can view sso verification',186,'view_ssoverification'),(1391,'Can view software secure photo verification',184,'view_softwaresecurephotoverification'),(1392,'Can view sspv retry student argument',183,'view_sspverificationretryconfig'),(1393,'Can view manual verification',182,'view_manualverification'),(1394,'Can view dark lang config',187,'view_darklangconfig'),(1395,'Can view whitelisted rss url',188,'view_whitelistedrssurl'),(1396,'Can view embargoed state',195,'view_embargoedstate'),(1397,'Can view country access rule',191,'view_countryaccessrule'),(1398,'Can view country',190,'view_country'),(1399,'Can view restricted course',194,'view_restrictedcourse'),(1400,'Can view ip filter',193,'view_ipfilter'),(1401,'Can view embargoed course',189,'view_embargoedcourse'),(1402,'Can view course access rule history',192,'view_courseaccessrulehistory'),(1403,'Can view course rerun state',196,'view_coursererunstate'),(1404,'Can view app version config',198,'view_appversionconfig'),(1405,'Can view ignore mobile available flag config',197,'view_ignoremobileavailableflagconfig'),(1406,'Can view mobile api config',199,'view_mobileapiconfig'),(1407,'Can view user social auth',201,'view_usersocialauth'),(1408,'Can view association',200,'view_association'),(1409,'Can view partial',203,'view_partial'),(1410,'Can view code',202,'view_code'),(1411,'Can view nonce',204,'view_nonce'),(1412,'Can view survey answer',206,'view_surveyanswer'),(1413,'Can view survey form',205,'view_surveyform'),(1414,'Can view x block asides config',207,'view_xblockasidesconfig'),(1415,'Can view submission',210,'view_submission'),(1416,'Can view score summary',214,'view_scoresummary'),(1417,'Can view team submission',211,'view_teamsubmission'),(1418,'Can view student item',212,'view_studentitem'),(1419,'Can view score',213,'view_score'),(1420,'Can view score annotation',215,'view_scoreannotation'),(1421,'Can view student training workflow',230,'view_studenttrainingworkflow'),(1422,'Can view assessment part',225,'view_assessmentpart'),(1423,'Can view assessment feedback',220,'view_assessmentfeedback'),(1424,'Can view assessment feedback option',231,'view_assessmentfeedbackoption'),(1425,'Can view student training workflow item',219,'view_studenttrainingworkflowitem'),(1426,'Can view staff workflow',218,'view_staffworkflow'),(1427,'Can view training example',229,'view_trainingexample'),(1428,'Can view rubric',221,'view_rubric'),(1429,'Can view assessment',224,'view_assessment'),(1430,'Can view criterion',227,'view_criterion'),(1431,'Can view team staff workflow',223,'view_teamstaffworkflow'),(1432,'Can view peer workflow',217,'view_peerworkflow'),(1433,'Can view shared file upload',226,'view_sharedfileupload'),(1434,'Can view peer workflow item',228,'view_peerworkflowitem'),(1435,'Can view historical shared file upload',222,'view_historicalsharedfileupload'),(1436,'Can view criterion option',216,'view_criterionoption'),(1437,'Can view assessment workflow',232,'view_assessmentworkflow'),(1438,'Can view assessment workflow step',234,'view_assessmentworkflowstep'),(1439,'Can view assessment workflow cancellation',235,'view_assessmentworkflowcancellation'),(1440,'Can view team assessment workflow',233,'view_teamassessmentworkflow'),(1441,'Can view transcript preference',241,'view_transcriptpreference'),(1442,'Can view video transcript',239,'view_videotranscript'),(1443,'Can view profile',238,'view_profile'),(1444,'Can view video',240,'view_video'),(1445,'Can view course video',237,'view_coursevideo'),(1446,'Can view video image',242,'view_videoimage'),(1447,'Can view third party transcript credentials state',243,'view_thirdpartytranscriptcredentialsstate'),(1448,'Can view encoded video',236,'view_encodedvideo'),(1449,'Can view historical course overview',245,'view_historicalcourseoverview'),(1450,'Can view course overview tab',248,'view_courseoverviewtab'),(1451,'Can view course overview image config',247,'view_courseoverviewimageconfig'),(1452,'Can view course overview',249,'view_courseoverview'),(1453,'Can view simulate_publish argument',250,'view_simulatecoursepublishconfig'),(1454,'Can view course overview image set',246,'view_courseoverviewimageset'),(1455,'Can view block structure configuration',252,'view_blockstructureconfiguration'),(1456,'Can view block structure model',251,'view_blockstructuremodel'),(1457,'Can view x domain proxy configuration',253,'view_xdomainproxyconfiguration'),(1458,'Can view commerce configuration',254,'view_commerceconfiguration'),(1459,'Can view credit config',256,'view_creditconfig'),(1460,'Can view credit provider',255,'view_creditprovider'),(1461,'Can view credit course',258,'view_creditcourse'),(1462,'Can view credit request',260,'view_creditrequest'),(1463,'Can view credit requirement status',257,'view_creditrequirementstatus'),(1464,'Can view credit eligibility',259,'view_crediteligibility'),(1465,'Can view credit requirement',261,'view_creditrequirement'),(1466,'Can view course team',263,'view_courseteam'),(1467,'Can view course team membership',262,'view_courseteammembership'),(1468,'Can view x block configuration',264,'view_xblockconfiguration'),(1469,'Can view x block studio configuration',266,'view_xblockstudioconfiguration'),(1470,'Can view x block studio configuration flag',265,'view_xblockstudioconfigurationflag'),(1471,'Can view backpopulate_program_credentials argument',268,'view_customprogramsconfig'),(1472,'Can view programs api config',267,'view_programsapiconfig'),(1473,'Can view catalog integration',269,'view_catalogintegration'),(1474,'Can view self paced configuration',270,'view_selfpacedconfiguration'),(1475,'Can view kv store',271,'view_kvstore'),(1476,'Can view course content milestone',276,'view_coursecontentmilestone'),(1477,'Can view milestone',273,'view_milestone'),(1478,'Can view user milestone',272,'view_usermilestone'),(1479,'Can view milestone relationship type',275,'view_milestonerelationshiptype'),(1480,'Can view course milestone',274,'view_coursemilestone'),(1481,'Can view catalog',278,'view_catalog'),(1482,'Can view api access config',277,'view_apiaccessconfig'),(1483,'Can view api access request',1,'view_apiaccessrequest'),(1484,'Can view migrate verified track cohorts setting',279,'view_migrateverifiedtrackcohortssetting'),(1485,'Can view verified track cohorted course',280,'view_verifiedtrackcohortedcourse'),(1486,'Can view course event badges configuration',284,'view_courseeventbadgesconfiguration'),(1487,'Can view course complete image configuration',282,'view_coursecompleteimageconfiguration'),(1488,'Can view badge assertion',281,'view_badgeassertion'),(1489,'Can view badge class',283,'view_badgeclass'),(1490,'Can view email marketing configuration',285,'view_emailmarketingconfiguration'),(1491,'Can view failed task',286,'view_failedtask'),(1492,'Can view crawlers config',287,'view_crawlersconfig'),(1493,'Can view Waffle flag course override',288,'view_waffleflagcourseoverridemodel'),(1494,'Can view course goal',289,'view_coursegoal'),(1495,'Can view historical user calendar sync config',290,'view_historicalusercalendarsyncconfig'),(1496,'Can view user calendar sync config',291,'view_usercalendarsyncconfig'),(1497,'Can view course duration limit config',292,'view_coursedurationlimitconfig'),(1498,'Can view content type gating config',293,'view_contenttypegatingconfig'),(1499,'Can view discount percentage config',294,'view_discountpercentageconfig'),(1500,'Can view discount restriction config',295,'view_discountrestrictionconfig'),(1501,'Can view Experiment Key-Value Pair',298,'view_experimentkeyvalue'),(1502,'Can view Experiment Data',297,'view_experimentdata'),(1503,'Can view historical Experiment Key-Value Pair',296,'view_historicalexperimentkeyvalue'),(1504,'Can view self paced relative dates config',299,'view_selfpacedrelativedatesconfig'),(1505,'Can view external id type',303,'view_externalidtype'),(1506,'Can view historical external id',300,'view_historicalexternalid'),(1507,'Can view historical external id type',302,'view_historicalexternalidtype'),(1508,'Can view external id',301,'view_externalid'),(1509,'Can view schedule config',306,'view_scheduleconfig'),(1510,'Can view historical Schedule',305,'view_historicalschedule'),(1511,'Can view Schedule',304,'view_schedule'),(1512,'Can view schedule experience',307,'view_scheduleexperience'),(1513,'Can add course section',405,'add_coursesection'),(1514,'Can change course section',405,'change_coursesection'),(1515,'Can delete course section',405,'delete_coursesection'),(1516,'Can view course section',405,'view_coursesection'),(1517,'Can add learning context',402,'add_learningcontext'),(1518,'Can change learning context',402,'change_learningcontext'),(1519,'Can delete learning context',402,'delete_learningcontext'),(1520,'Can view learning context',402,'view_learningcontext'),(1521,'Can add learning sequence',403,'add_learningsequence'),(1522,'Can change learning sequence',403,'change_learningsequence'),(1523,'Can delete learning sequence',403,'delete_learningsequence'),(1524,'Can view learning sequence',403,'view_learningsequence'),(1525,'Can add course section sequence',404,'add_coursesectionsequence'),(1526,'Can change course section sequence',404,'change_coursesectionsequence'),(1527,'Can delete course section sequence',404,'delete_coursesectionsequence'),(1528,'Can view course section sequence',404,'view_coursesectionsequence'),(1529,'Can view Link Course',310,'view_organizationcourse'),(1530,'Can view historical organization',309,'view_historicalorganization'),(1531,'Can view organization',308,'view_organization'),(1532,'Can view historical pending enrollment',319,'view_historicalpendingenrollment'),(1533,'Can view enterprise customer identity provider',317,'view_enterprisecustomeridentityprovider'),(1534,'Can view Branding Configuration',330,'view_enterprisecustomerbrandingconfiguration'),(1535,'Can view enrollment notification email template',328,'view_enrollmentnotificationemailtemplate'),(1536,'Can view historical Enterprise Customer',326,'view_historicalenterprisecustomer'),(1537,'Can view historical enterprise course enrollment',311,'view_historicalenterprisecourseenrollment'),(1538,'Can view pending enterprise customer user',324,'view_pendingenterprisecustomeruser'),(1539,'Can view enterprise feature user role assignment',325,'view_enterprisefeatureuserroleassignment'),(1540,'Can view enterprise feature role',314,'view_enterprisefeaturerole'),(1541,'Can view system wide enterprise user role assignment',321,'view_systemwideenterpriseuserroleassignment'),(1542,'Can view historical enrollment notification email template',332,'view_historicalenrollmentnotificationemailtemplate'),(1543,'Can view Enterprise Catalog Query',322,'view_enterprisecatalogquery'),(1544,'Can view enterprise customer reporting configuration',320,'view_enterprisecustomerreportingconfiguration'),(1545,'Can view Enterprise Customer Learner',329,'view_enterprisecustomeruser'),(1546,'Can view enterprise course enrollment',313,'view_enterprisecourseenrollment'),(1547,'Can view system wide enterprise role',312,'view_systemwideenterpriserole'),(1548,'Can add licensed enterprise course enrollment',406,'add_licensedenterprisecourseenrollment'),(1549,'Can change licensed enterprise course enrollment',406,'change_licensedenterprisecourseenrollment'),(1550,'Can delete licensed enterprise course enrollment',406,'delete_licensedenterprisecourseenrollment'),(1551,'Can view licensed enterprise course enrollment',406,'view_licensedenterprisecourseenrollment'),(1552,'Can view Enterprise Customer Catalog',327,'view_enterprisecustomercatalog'),(1553,'Can view pending enrollment',333,'view_pendingenrollment'),(1554,'Can view Enterprise Customer Type',318,'view_enterprisecustomertype'),(1555,'Can view historical pending enterprise customer user',315,'view_historicalpendingenterprisecustomeruser'),(1556,'Can add historical licensed enterprise course enrollment',407,'add_historicallicensedenterprisecourseenrollment'),(1557,'Can change historical licensed enterprise course enrollment',407,'change_historicallicensedenterprisecourseenrollment'),(1558,'Can delete historical licensed enterprise course enrollment',407,'delete_historicallicensedenterprisecourseenrollment'),(1559,'Can view historical licensed enterprise course enrollment',407,'view_historicallicensedenterprisecourseenrollment'),(1560,'Can view enterprise enrollment source',331,'view_enterpriseenrollmentsource'),(1561,'Can view historical Enterprise Customer Catalog',323,'view_historicalenterprisecustomercatalog'),(1562,'Can view Enterprise Customer',316,'view_enterprisecustomer'),(1563,'Can view Data Sharing Consent Record',335,'view_datasharingconsent'),(1564,'Can view historical Data Sharing Consent Record',334,'view_historicaldatasharingconsent'),(1565,'Can view data sharing consent text overrides',336,'view_datasharingconsenttextoverrides'),(1566,'Can view content metadata item transmission',337,'view_contentmetadataitemtransmission'),(1567,'Can view learner data transmission audit',338,'view_learnerdatatransmissionaudit'),(1568,'Can view degreed learner data transmission audit',342,'view_degreedlearnerdatatransmissionaudit'),(1569,'Can view degreed global configuration',339,'view_degreedglobalconfiguration'),(1570,'Can view historical degreed enterprise customer configuration',341,'view_historicaldegreedenterprisecustomerconfiguration'),(1571,'Can view degreed enterprise customer configuration',340,'view_degreedenterprisecustomerconfiguration'),(1572,'Can view sap success factors enterprise customer configuration',344,'view_sapsuccessfactorsenterprisecustomerconfiguration'),(1573,'Can view sap success factors global configuration',345,'view_sapsuccessfactorsglobalconfiguration'),(1574,'Can view sap success factors learner data transmission audit',343,'view_sapsuccessfactorslearnerdatatransmissionaudit'),(1575,'Can view cornerstone learner data transmission audit',348,'view_cornerstonelearnerdatatransmissionaudit'),(1576,'Can view cornerstone global configuration',347,'view_cornerstoneglobalconfiguration'),(1577,'Can view cornerstone enterprise customer configuration',346,'view_cornerstoneenterprisecustomerconfiguration'),(1578,'Can view historical cornerstone enterprise customer configuration',349,'view_historicalcornerstoneenterprisecustomerconfiguration'),(1579,'Can view xapi learner data transmission audit',350,'view_xapilearnerdatatransmissionaudit'),(1580,'Can view xapilrs configuration',351,'view_xapilrsconfiguration'),(1581,'Can view announcement',370,'view_announcement'),(1582,'Can view persistent subsection grade override',355,'view_persistentsubsectiongradeoverride'),(1583,'Can view compute grades setting',357,'view_computegradessetting'),(1584,'Can view persistent subsection grade',360,'view_persistentsubsectiongrade'),(1585,'Can view persistent grades enabled flag',356,'view_persistentgradesenabledflag'),(1586,'Can view visible blocks',358,'view_visibleblocks'),(1587,'Can view persistent course grade',361,'view_persistentcoursegrade'),(1588,'Can view historical persistent subsection grade override',354,'view_historicalpersistentsubsectiongradeoverride'),(1589,'Can view course persistent grades flag',359,'view_coursepersistentgradesflag'),(1590,'Can view program course enrollment',365,'view_programcourseenrollment'),(1591,'Can view historical program course enrollment',364,'view_historicalprogramcourseenrollment'),(1592,'Can view course access role assignment',363,'view_courseaccessroleassignment'),(1593,'Can view historical program enrollment',366,'view_historicalprogramenrollment'),(1594,'Can view program enrollment',362,'view_programenrollment'),(1595,'Can view notify_credentials argument',353,'view_notifycredentialsconfig'),(1596,'Can view credentials api config',352,'view_credentialsapiconfig'),(1597,'Can view content library',371,'view_contentlibrary'),(1598,'Can view content library permission',372,'view_contentlibrarypermission'),(1599,'Can view x block cache',368,'view_xblockcache'),(1600,'Can view bookmark',369,'view_bookmark'),(1601,'Can view site theme',367,'view_sitetheme'),(1602,'Can view csv operation',373,'view_csvoperation'),(1603,'Can view user date',375,'view_userdate'),(1604,'Can view content date',374,'view_contentdate'),(1605,'Can view date policy',376,'view_datepolicy'),(1606,'Can view proctored exam',378,'view_proctoredexam'),(1607,'Can view proctored exam attempt',379,'view_proctoredexamstudentattempt'),(1608,'Can view Proctored exam software secure review',382,'view_proctoredexamsoftwaresecurereview'),(1609,'Can view proctored exam software secure comment',386,'view_proctoredexamsoftwaresecurecomment'),(1610,'Can view proctored exam attempt history',377,'view_proctoredexamstudentattempthistory'),(1611,'Can view proctored allowance',380,'view_proctoredexamstudentallowance'),(1612,'Can view proctored exam review policy history',384,'view_proctoredexamreviewpolicyhistory'),(1613,'Can view Proctored exam review archive',385,'view_proctoredexamsoftwaresecurereviewhistory'),(1614,'Can view proctored allowance history',381,'view_proctoredexamstudentallowancehistory'),(1615,'Can view Proctored exam review policy',383,'view_proctoredexamreviewpolicy'),(1616,'Can view block completion',387,'view_blockcompletion'),(1617,'Can view score overrider',388,'view_scoreoverrider'),(1618,'Can view video upload config',392,'view_videouploadconfig'),(1619,'Can view course creator',393,'view_coursecreator'),(1620,'Can view studio config',395,'view_studioconfig'),(1621,'Can view course edit lti fields enabled flag',394,'view_courseeditltifieldsenabledflag'),(1622,'Can view available tag value',397,'view_tagavailablevalues'),(1623,'Can view tag category',396,'view_tagcategories'),(1624,'Can view user task artifact',398,'view_usertaskartifact'),(1625,'Can view user task status',399,'view_usertaskstatus'); +/*!40000 ALTER TABLE `auth_permission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_registration` +-- + +DROP TABLE IF EXISTS `auth_registration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_registration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `activation_key` varchar(32) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `activation_key` (`activation_key`), + UNIQUE KEY `user_id` (`user_id`), + CONSTRAINT `auth_registration_user_id_f99bc297_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_registration` +-- + +LOCK TABLES `auth_registration` WRITE; +/*!40000 ALTER TABLE `auth_registration` DISABLE KEYS */; +/*!40000 ALTER TABLE `auth_registration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_user` +-- + +DROP TABLE IF EXISTS `auth_user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_user` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `password` varchar(128) NOT NULL, + `last_login` datetime(6) DEFAULT NULL, + `is_superuser` tinyint(1) NOT NULL, + `username` varchar(150) NOT NULL, + `first_name` varchar(30) NOT NULL, + `last_name` varchar(150) NOT NULL, + `email` varchar(254) NOT NULL, + `is_staff` tinyint(1) NOT NULL, + `is_active` tinyint(1) NOT NULL, + `date_joined` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `username` (`username`), + UNIQUE KEY `email` (`email`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_user` +-- + +LOCK TABLES `auth_user` WRITE; +/*!40000 ALTER TABLE `auth_user` DISABLE KEYS */; +INSERT INTO `auth_user` VALUES (1,'!sqHJ06uo4FRmt1p79GtfhiwLQwYqvkwfcodJsLUW',NULL,0,'ecommerce_worker','','','ecommerce_worker@example.com',0,1,'2020-04-06 20:22:08.517644'),(2,'!qMygERD93HhSMdwO2keMofWzTyBYayrUDlP09WAP',NULL,0,'login_service_user','','','login_service_user@fake.email',0,1,'2020-04-06 20:38:25.057381'),(3,'pbkdf2_sha256$150000$JIUeo5Ub61JG$d+ZNsxVv4BT1Gk2GFoSYZLGL7vVDhaSLVc+nF8rlmh4=',NULL,1,'edx','','','edx@example.com',1,1,'2020-04-06 20:46:12.358488'),(4,'pbkdf2_sha256$36000$Hyc0SWrbguzA$nQJ8ZuiqrExJ4JL8Z6C3n+nJbXpZBd1/KiqK49TRlMQ=',NULL,0,'enterprise_worker','','','enterprise_worker@example.com',1,1,'2020-04-06 20:46:28.897730'),(5,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'honor','','','honor@example.com',0,1,'2020-04-06 20:48:59.593809'),(6,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'audit','','','audit@example.com',0,1,'2020-04-06 20:49:08.515509'),(7,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'verified','','','verified@example.com',0,1,'2020-04-06 20:49:17.493748'),(8,'pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw=',NULL,0,'staff','','','staff@example.com',1,1,'2020-04-06 20:49:26.288782'),(9,'pbkdf2_sha256$36000$r3gdOd0YGoFx$h67Hx+NBujXtQmR30scgiAkGtB6S6k+xU8f3QlL/0vU=',NULL,1,'retirement_service_worker','','','retirement_service_worker@example.com',1,1,'2020-04-06 20:59:51.644187'); +/*!40000 ALTER TABLE `auth_user` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_user_groups` +-- + +DROP TABLE IF EXISTS `auth_user_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_user_groups` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `group_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_user_groups_user_id_group_id_94350c0c_uniq` (`user_id`,`group_id`), + KEY `auth_user_groups_group_id_97559544_fk_auth_group_id` (`group_id`), + CONSTRAINT `auth_user_groups_group_id_97559544_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`), + CONSTRAINT `auth_user_groups_user_id_6a12ed8b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_user_groups` +-- + +LOCK TABLES `auth_user_groups` WRITE; +/*!40000 ALTER TABLE `auth_user_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `auth_user_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_user_user_permissions` +-- + +DROP TABLE IF EXISTS `auth_user_user_permissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_user_user_permissions` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `permission_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `auth_user_user_permissions_user_id_permission_id_14a6b632_uniq` (`user_id`,`permission_id`), + KEY `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` (`permission_id`), + CONSTRAINT `auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm` FOREIGN KEY (`permission_id`) REFERENCES `auth_permission` (`id`), + CONSTRAINT `auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_user_user_permissions` +-- + +LOCK TABLES `auth_user_user_permissions` WRITE; +/*!40000 ALTER TABLE `auth_user_user_permissions` DISABLE KEYS */; +INSERT INTO `auth_user_user_permissions` VALUES (28,4,935),(29,4,936),(30,4,937),(31,4,938),(32,4,939),(33,4,940),(34,4,941),(35,4,942),(36,4,943),(37,4,944),(38,4,945),(39,4,946),(40,4,947),(41,4,948),(42,4,949),(43,4,950),(44,4,951),(45,4,952),(46,4,953),(47,4,954),(48,4,955),(49,4,956),(50,4,957),(51,4,958),(52,4,959),(53,4,960),(54,4,961),(55,4,962),(56,4,963),(57,4,964),(58,4,965),(59,4,966),(60,4,967),(61,4,968),(62,4,969),(63,4,970),(64,4,971),(65,4,972),(66,4,973),(67,4,974),(68,4,975),(69,4,976),(70,4,977),(71,4,978),(72,4,979),(73,4,980),(74,4,981),(75,4,982),(76,4,983),(77,4,984),(78,4,985),(79,4,986),(80,4,987),(81,4,988),(82,4,989),(83,4,990),(84,4,991),(85,4,992),(86,4,993),(87,4,994),(88,4,995),(89,4,996),(90,4,997),(91,4,998),(92,4,999),(93,4,1000),(94,4,1001),(95,4,1002),(96,4,1003),(97,4,1532),(98,4,1533),(99,4,1534),(100,4,1535),(1,4,1536),(2,4,1537),(3,4,1538),(4,4,1539),(5,4,1540),(6,4,1541),(7,4,1542),(8,4,1543),(9,4,1544),(10,4,1545),(11,4,1546),(12,4,1547),(13,4,1548),(14,4,1549),(15,4,1550),(16,4,1551),(17,4,1552),(18,4,1553),(19,4,1554),(20,4,1555),(21,4,1556),(22,4,1557),(23,4,1558),(24,4,1559),(25,4,1560),(26,4,1561),(27,4,1562); +/*!40000 ALTER TABLE `auth_user_user_permissions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auth_userprofile` +-- + +DROP TABLE IF EXISTS `auth_userprofile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auth_userprofile` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `meta` longtext NOT NULL, + `courseware` varchar(255) NOT NULL, + `language` varchar(255) NOT NULL, + `location` varchar(255) NOT NULL, + `year_of_birth` int(11) DEFAULT NULL, + `gender` varchar(6) DEFAULT NULL, + `level_of_education` varchar(6) DEFAULT NULL, + `mailing_address` longtext, + `city` longtext, + `country` varchar(2) DEFAULT NULL, + `goals` longtext, + `allow_certificate` tinyint(1) NOT NULL, + `bio` varchar(3000) DEFAULT NULL, + `profile_image_uploaded_at` datetime(6) DEFAULT NULL, + `user_id` int(11) NOT NULL, + `phone_number` varchar(50) DEFAULT NULL, + `state` varchar(2) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + KEY `auth_userprofile_name_50909f10` (`name`), + KEY `auth_userprofile_language_8948d814` (`language`), + KEY `auth_userprofile_location_ca92e4f6` (`location`), + KEY `auth_userprofile_year_of_birth_6559b9a5` (`year_of_birth`), + KEY `auth_userprofile_gender_44a122fb` (`gender`), + KEY `auth_userprofile_level_of_education_93927e04` (`level_of_education`), + CONSTRAINT `auth_userprofile_user_id_62634b27_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auth_userprofile` +-- + +LOCK TABLES `auth_userprofile` WRITE; +/*!40000 ALTER TABLE `auth_userprofile` DISABLE KEYS */; +INSERT INTO `auth_userprofile` VALUES (1,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,3,NULL,NULL),(2,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,4,NULL,NULL),(3,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,5,NULL,NULL),(4,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,6,NULL,NULL),(5,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,7,NULL,NULL),(6,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,8,NULL,NULL),(7,'','','course.xml','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,9,NULL,NULL); +/*!40000 ALTER TABLE `auth_userprofile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `badges_badgeassertion` +-- + +DROP TABLE IF EXISTS `badges_badgeassertion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `badges_badgeassertion` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `data` longtext NOT NULL, + `backend` varchar(50) NOT NULL, + `image_url` varchar(200) NOT NULL, + `assertion_url` varchar(200) NOT NULL, + `modified` datetime(6) NOT NULL, + `created` datetime(6) NOT NULL, + `badge_class_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `badges_badgeassertion_created_d098832e` (`created`), + KEY `badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba` (`badge_class_id`), + KEY `badges_badgeassertion_user_id_13665630_fk_auth_user_id` (`user_id`), + CONSTRAINT `badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba` FOREIGN KEY (`badge_class_id`) REFERENCES `badges_badgeclass` (`id`), + CONSTRAINT `badges_badgeassertion_user_id_13665630_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `badges_badgeassertion` +-- + +LOCK TABLES `badges_badgeassertion` WRITE; +/*!40000 ALTER TABLE `badges_badgeassertion` DISABLE KEYS */; +/*!40000 ALTER TABLE `badges_badgeassertion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `badges_badgeclass` +-- + +DROP TABLE IF EXISTS `badges_badgeclass`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `badges_badgeclass` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `slug` varchar(255) NOT NULL, + `issuing_component` varchar(50) NOT NULL, + `display_name` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `description` longtext NOT NULL, + `criteria` longtext NOT NULL, + `mode` varchar(100) NOT NULL, + `image` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq` (`slug`,`issuing_component`,`course_id`), + KEY `badges_badgeclass_slug_5f420f6f` (`slug`), + KEY `badges_badgeclass_issuing_component_85b6d93d` (`issuing_component`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `badges_badgeclass` +-- + +LOCK TABLES `badges_badgeclass` WRITE; +/*!40000 ALTER TABLE `badges_badgeclass` DISABLE KEYS */; +/*!40000 ALTER TABLE `badges_badgeclass` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `badges_coursecompleteimageconfiguration` +-- + +DROP TABLE IF EXISTS `badges_coursecompleteimageconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `badges_coursecompleteimageconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `mode` varchar(125) NOT NULL, + `icon` varchar(100) NOT NULL, + `default` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mode` (`mode`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `badges_coursecompleteimageconfiguration` +-- + +LOCK TABLES `badges_coursecompleteimageconfiguration` WRITE; +/*!40000 ALTER TABLE `badges_coursecompleteimageconfiguration` DISABLE KEYS */; +INSERT INTO `badges_coursecompleteimageconfiguration` VALUES (1,'honor','badges/badges/honor.png',0),(2,'verified','badges/badges/verified.png',0),(3,'professional','badges/badges/professional.png',0); +/*!40000 ALTER TABLE `badges_coursecompleteimageconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `badges_courseeventbadgesconfiguration` +-- + +DROP TABLE IF EXISTS `badges_courseeventbadgesconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `badges_courseeventbadgesconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `courses_completed` longtext NOT NULL, + `courses_enrolled` longtext NOT NULL, + `course_groups` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `badges_courseeventba_changed_by_id_db04ed01_fk_auth_user` (`changed_by_id`), + CONSTRAINT `badges_courseeventba_changed_by_id_db04ed01_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `badges_courseeventbadgesconfiguration` +-- + +LOCK TABLES `badges_courseeventbadgesconfiguration` WRITE; +/*!40000 ALTER TABLE `badges_courseeventbadgesconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `badges_courseeventbadgesconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `block_structure` +-- + +DROP TABLE IF EXISTS `block_structure`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `block_structure` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `data_usage_key` varchar(255) NOT NULL, + `data_version` varchar(255) DEFAULT NULL, + `data_edit_timestamp` datetime(6) DEFAULT NULL, + `transformers_schema_version` varchar(255) NOT NULL, + `block_structure_schema_version` varchar(255) NOT NULL, + `data` varchar(500) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `data_usage_key` (`data_usage_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `block_structure` +-- + +LOCK TABLES `block_structure` WRITE; +/*!40000 ALTER TABLE `block_structure` DISABLE KEYS */; +/*!40000 ALTER TABLE `block_structure` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `block_structure_config` +-- + +DROP TABLE IF EXISTS `block_structure_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `block_structure_config` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `num_versions_to_keep` int(11) DEFAULT NULL, + `cache_timeout_in_seconds` int(11) DEFAULT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `block_structure_config_changed_by_id_45af0b10_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `block_structure_config_changed_by_id_45af0b10_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `block_structure_config` +-- + +LOCK TABLES `block_structure_config` WRITE; +/*!40000 ALTER TABLE `block_structure_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `block_structure_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bookmarks_bookmark` +-- + +DROP TABLE IF EXISTS `bookmarks_bookmark`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bookmarks_bookmark` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `usage_key` varchar(255) NOT NULL, + `path` longtext NOT NULL, + `user_id` int(11) NOT NULL, + `xblock_cache_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `bookmarks_bookmark_user_id_usage_key_61eac24b_uniq` (`user_id`,`usage_key`), + KEY `bookmarks_bookmark_course_key_46609583` (`course_key`), + KEY `bookmarks_bookmark_usage_key_d07927c9` (`usage_key`), + KEY `bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks` (`xblock_cache_id`), + CONSTRAINT `bookmarks_bookmark_user_id_a26bf17c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks` FOREIGN KEY (`xblock_cache_id`) REFERENCES `bookmarks_xblockcache` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bookmarks_bookmark` +-- + +LOCK TABLES `bookmarks_bookmark` WRITE; +/*!40000 ALTER TABLE `bookmarks_bookmark` DISABLE KEYS */; +/*!40000 ALTER TABLE `bookmarks_bookmark` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bookmarks_xblockcache` +-- + +DROP TABLE IF EXISTS `bookmarks_xblockcache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bookmarks_xblockcache` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `usage_key` varchar(255) NOT NULL, + `display_name` varchar(255) NOT NULL, + `paths` longtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `usage_key` (`usage_key`), + KEY `bookmarks_xblockcache_course_key_5297fa77` (`course_key`) +) ENGINE=InnoDB AUTO_INCREMENT=160 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bookmarks_xblockcache` +-- + +LOCK TABLES `bookmarks_xblockcache` WRITE; +/*!40000 ALTER TABLE `bookmarks_xblockcache` DISABLE KEYS */; +INSERT INTO `bookmarks_xblockcache` VALUES (1,'2020-04-06 20:48:22.895562','2020-07-23 17:27:47.676092','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','Demonstration Course','[]'),(2,'2020-04-06 20:48:32.951608','2020-07-23 17:27:49.833275','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@Sample_Algebraic_Problem','Mathematical Expressions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0c92347a5c00\",\"Mathematical Expressions\"]]]'),(3,'2020-04-06 20:48:33.019078','2020-07-23 17:27:49.835487','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@82d599b014b246c7a9b5dfc750dc08a9','Getting Started','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@867dddb6f55d410caaa9c1eb9c6743ec\",\"Getting Started\"]]]'),(4,'2020-04-06 20:48:33.085434','2020-07-23 17:27:49.837504','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@6b6bee43c7c641509da71c9299cc9f5a','Blank HTML Page','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@d6eaa391d2be41dea20b8b1bfbcb1c45\",\"Getting Your edX Certificate\"]]]'),(5,'2020-04-06 20:48:33.119185','2020-07-23 17:27:49.839461','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5','Lesson 1 - Getting Started','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"]]]'),(6,'2020-04-06 20:48:33.153126','2020-04-06 20:48:33.153126','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations','Example Week 1: Getting Started','[]'),(7,'2020-04-06 20:48:33.186608','2020-07-23 17:27:49.841366','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@c7e98fd39a6944edb6b286c32e1150ff','Passing a Course','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(8,'2020-04-06 20:48:33.220182','2020-07-23 17:27:49.843626','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@ddede76df71045ffa16de9d1481d2119','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_36e0beb03f0a\",\"Randomized Questions\"]]]'),(9,'2020-04-06 20:48:33.254028','2020-07-23 17:27:49.845953','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@45d46192272c4f6db6b63586520bbdf4','Getting Answers','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@b6662b497c094bcc9b870d8270c90c93\",\"Getting Answers\"]]]'),(10,'2020-04-06 20:48:33.298697','2020-07-23 17:27:49.847937','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_c037f3757df1','Electric Circuit Simulator','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"]]]'),(11,'2020-04-06 20:48:33.343315','2020-04-06 20:48:33.343315','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@d8a6192ade314473a78242dfeedfbf5b','Introduction','[]'),(12,'2020-04-06 20:48:33.387445','2020-07-23 17:27:49.849681','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@html_07d547513285','An Interactive Reference Table','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_2dbb0072785e\",\"An Interactive Reference Table\"]]]'),(13,'2020-04-06 20:48:33.431869','2020-07-23 17:27:49.851343','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@f91d8d31f7cf48ce990f8d8745ae4cfa','Answering More Than Once','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(14,'2020-04-06 20:48:33.476797','2020-07-23 17:27:49.853134','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@3c4b575924bf4b75a2f3542df5c354fc','Be Social','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"]]]'),(15,'2020-04-06 20:48:33.521845','2020-07-23 17:27:49.854929','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@78e3719e864e45f3bee938461f3c3de6','Protein Builder','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_bc69a47c6fae\",\"Protein Creator\"]]]'),(16,'2020-04-06 20:48:33.566164','2020-07-23 17:27:49.856972','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@0d759dee4f9d459c8956136dbde55f02','Text Input','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@e8a5cc2aed424838853defab7be45e42\",\"Text input\"]]]'),(17,'2020-04-06 20:48:33.622145','2020-07-23 17:27:49.858809','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@Sample_ChemFormula_Problem','Chemical Equations','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_1fef54c2b23b\",\"Chemical Equations\"]]]'),(18,'2020-04-06 20:48:33.688930','2020-07-23 17:27:49.860612','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@b6662b497c094bcc9b870d8270c90c93','Getting Answers','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(19,'2020-04-06 20:48:33.733885','2020-07-23 17:27:49.862979','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@47dbd5f836544e61877a483c0b75606c','Drag and Drop','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(20,'2020-04-06 20:48:33.778640','2020-07-23 17:27:49.865168','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@python_grader','problem','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_aae927868e55\",\"Code Grader\"]]]'),(21,'2020-04-06 20:48:33.822035','2020-07-23 17:27:49.866908','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@a0effb954cca4759994f1ac9e9434bf4','Multiple Choice Questions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@54bb9b142c6c4c22afc62bcb628f0e68\",\"Multiple Choice Questions\"]]]'),(22,'2020-04-06 20:48:33.855197','2020-07-23 17:27:49.868638','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@12ad4f3ff4c14114a6e629b00e000976','Peer Grading','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@175e76c4951144a29d46211361266e0e\",\"Homework - Essays\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@fb79dcbad35b466a8c6364f8ffee9050\",\"Peer Assessed Essays\"]]]'),(23,'2020-04-06 20:48:33.888652','2020-07-23 17:27:49.870705','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@26d89b08f75d48829a63520ed8b0037d','Homework - Find Your Study Buddy','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@dbe8fc027bcb4fe9afb744d2e8415855\",\"Homework - Find Your Study Buddy\"]]]'),(24,'2020-04-06 20:48:33.922502','2020-07-23 17:27:49.873368','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@8293139743f34377817d537b69911530','EdX Exams','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@934cc32c177d41b580c8413e561346b3\",\"EdX Exams\"]]]'),(25,'2020-04-06 20:48:33.955897','2020-07-23 17:27:49.875367','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@700x_proteinmake','Designing Proteins in Two Dimensions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_bc69a47c6fae\",\"Protein Creator\"]]]'),(26,'2020-04-06 20:48:33.989719','2020-07-23 17:27:49.877195','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@ed01bcd164e64038a78964a16eac3edc','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_bc69a47c6fae\",\"Protein Creator\"]]]'),(27,'2020-04-06 20:48:34.036565','2020-07-23 17:27:49.878889','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@867dddb6f55d410caaa9c1eb9c6743ec','Getting Started','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(28,'2020-04-06 20:48:34.090849','2020-07-23 17:27:49.880527','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_2dbb0072785e','An Interactive Reference Table','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"]]]'),(29,'2020-04-06 20:48:34.190158','2020-07-23 17:27:49.882278','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0fab6aa52165','Molecule Editor','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"]]]'),(30,'2020-04-06 20:48:34.246374','2020-07-23 17:27:49.884163','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@3169f89efde2452993f2f2d9bc74f5b2','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@e3601c0abee6427d8c17e6d6f8fdddd1\",\"Interactive Questions\"]]]'),(31,'2020-04-06 20:48:34.290431','2020-07-23 17:27:49.886290','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@6018785795994726950614ce7d0f38c5','Find Your Study Buddy','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@dbe8fc027bcb4fe9afb744d2e8415855\",\"Homework - Find Your Study Buddy\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@26d89b08f75d48829a63520ed8b0037d\",\"Homework - Find Your Study Buddy\"]]]'),(32,'2020-04-06 20:48:34.324016','2020-07-23 17:27:49.888412','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@d1b84dcd39b0423d9e288f27f0f7f242','Few Checks','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_ac391cde8a91\",\"Limited Checks\"]]]'),(33,'2020-04-06 20:48:34.357047','2020-07-23 17:27:49.891006','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@67c26b1e826e47aaa29757f62bcd1ad0','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@54bb9b142c6c4c22afc62bcb628f0e68\",\"Multiple Choice Questions\"]]]'),(34,'2020-04-06 20:48:34.390706','2020-07-23 17:27:49.893189','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@ex_practice_3','Randomized Questions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_36e0beb03f0a\",\"Randomized Questions\"]]]'),(35,'2020-04-06 20:48:34.424260','2020-07-23 17:27:49.895095','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@d6cee45205a449369d7ef8f159b22bdf','Labs and Demos','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"]]]'),(36,'2020-04-06 20:48:34.458417','2020-07-23 17:27:49.897170','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_3888db0bc286','Discussion Forums','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"]]]'),(37,'2020-04-06 20:48:34.502946','2020-07-23 17:27:49.898891','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@0a3b4139f51a4917a3aff9d519b1eeb6','Videos on edX','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3dc16db8d14842e38324e95d4030b8a0\",\"Videos on edX\"]]]'),(38,'2020-04-06 20:48:34.546971','2020-07-23 17:27:49.900590','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@c2f7008c9ccf4bd09d5d800c98fb0722','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@256f17a44983429fb1a60802203ee4e0\",\"Video Presentation Styles\"]]]'),(39,'2020-04-06 20:48:34.591447','2020-07-23 17:27:49.902147','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@6ab9c442501d472c8ed200e367b4edfa','More Ways to Connect','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"]]]'),(40,'2020-04-06 20:48:34.636346','2020-07-23 17:27:49.904073','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@video+block@0b9e39477cf34507a7a48f74be381fdd','Welcome!','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@d8a6192ade314473a78242dfeedfbf5b\",\"Introduction\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@edx_introduction\",\"Demo Course Overview\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0270f6de40fc\",\"Introduction: Video and Sequences\"]]]'),(41,'2020-04-06 20:48:34.714114','2020-07-23 17:27:49.906224','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@cd177caa62444fbca48aa8f843f09eac','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_ac391cde8a91\",\"Limited Checks\"]]]'),(42,'2020-04-06 20:48:34.757979','2020-07-23 17:27:49.908625','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@video+block@7e9b434e6de3435ab99bd3fb25bde807','Science and Cooking Chef Profile: JOSÉ ANDRÉS','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@4f6c1b4e316a419ab5b6bf30e6c708e9\",\"Working with Videos\"]]]'),(43,'2020-04-06 20:48:34.803053','2020-04-06 20:48:34.803053','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7','About Exams and Certificates','[]'),(44,'2020-04-06 20:48:34.847805','2020-07-23 17:27:49.911289','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@4f06b358a96f4d1dae57d6d81acd06f2','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_c037f3757df1\",\"Electric Circuit Simulator\"]]]'),(45,'2020-04-06 20:48:34.891953','2020-07-23 17:27:49.914248','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@651e0945b77f42e0a4c89b8c3e6f5b3b','Answering More Than Once','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@f91d8d31f7cf48ce990f8d8745ae4cfa\",\"Answering More Than Once\"]]]'),(46,'2020-04-06 20:48:34.936310','2020-07-23 17:27:49.917243','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@f480df4ce91347c5ae4301ddf6146238','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@b6662b497c094bcc9b870d8270c90c93\",\"Getting Answers\"]]]'),(47,'2020-04-06 20:48:34.980736','2020-07-23 17:27:49.920139','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@256f17a44983429fb1a60802203ee4e0','Video Presentation Styles','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(48,'2020-04-06 20:48:35.024930','2020-07-23 17:27:49.922541','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e','Reading Assignments','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(49,'2020-04-06 20:48:35.069610','2020-07-23 17:27:49.924585','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@700x_editmolB','Molecule Editor','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0fab6aa52165\",\"Molecule Editor\"]]]'),(50,'2020-04-06 20:48:35.113592','2020-04-06 20:48:35.113592','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@9fca584977d04885bc911ea76a9ef29e','holding section','[]'),(51,'2020-04-06 20:48:35.147394','2020-07-23 17:27:49.926535','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_f04afeac0131','Immediate Feedback','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(52,'2020-04-06 20:48:35.191689','2020-04-06 20:48:35.191689','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions','Example Week 2: Get Interactive','[]'),(53,'2020-04-06 20:48:35.236338','2020-07-23 17:27:49.928693','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@openassessment+block@b24c33ea35954c7889e1d2944d3fe397','Open Response Assessment','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@175e76c4951144a29d46211361266e0e\",\"Homework - Essays\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@fb79dcbad35b466a8c6364f8ffee9050\",\"Peer Assessed Essays\"]]]'),(54,'2020-04-06 20:48:35.280837','2020-07-23 17:27:49.930682','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@c6cd4bea43454aaea60ad01beb0cf213','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_aae927868e55\",\"Code Grader\"]]]'),(55,'2020-04-06 20:48:35.325195','2020-07-23 17:27:49.932568','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@b8cec2a19ebf463f90cd3544c7927b0e','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@f91d8d31f7cf48ce990f8d8745ae4cfa\",\"Answering More Than Once\"]]]'),(56,'2020-04-06 20:48:35.370805','2020-07-23 17:27:49.934372','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@c554538a57664fac80783b99d9d6da7c','Pointing on a Picture','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@2152d4a4aadc4cb0af5256394a3d1fc7\",\"Pointing on a Picture\"]]]'),(57,'2020-04-06 20:48:35.415368','2020-07-23 17:27:49.936100','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@700x_pathways','Zooming Diagrams','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_98cf62510471\",\"Zooming Diagrams\"]]]'),(58,'2020-04-06 20:48:35.460462','2020-07-23 17:27:49.937867','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_bc69a47c6fae','Protein Creator','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"]]]'),(59,'2020-04-06 20:48:35.517255','2020-07-23 17:27:49.939526','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@e8a5cc2aed424838853defab7be45e42','Text input','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(60,'2020-04-06 20:48:35.571906','2020-07-23 17:27:49.941323','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_ac391cde8a91','Limited Checks','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(61,'2020-04-06 20:48:35.627441','2020-07-23 17:27:49.943149','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@d2e35c1d294b4ba0b3b1048615605d2a','Drag and Drop','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@47dbd5f836544e61877a483c0b75606c\",\"Drag and Drop\"]]]'),(62,'2020-04-06 20:48:35.682485','2020-07-23 17:27:49.944972','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@logic_gate_problem','problem','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_c037f3757df1\",\"Electric Circuit Simulator\"]]]'),(63,'2020-04-06 20:48:35.738581','2020-07-23 17:27:49.946688','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_aae927868e55','Code Grader','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"]]]'),(64,'2020-04-06 20:48:35.794406','2020-07-23 17:27:49.948549','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_1fef54c2b23b','Chemical Equations','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(65,'2020-04-06 20:48:35.849025','2020-07-23 17:27:49.950432','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@175e76c4951144a29d46211361266e0e','Homework - Essays','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"]]]'),(66,'2020-04-06 20:48:35.905359','2020-04-06 20:48:35.905359','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration','Example Week 3: Be Social','[]'),(67,'2020-04-06 20:48:35.962227','2020-07-23 17:27:49.952691','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@3f2c11aba9434e459676a7d7acc4d960','Google Hangout','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@6ab9c442501d472c8ed200e367b4edfa\",\"More Ways to Connect\"]]]'),(68,'2020-04-06 20:48:36.015864','2020-07-23 17:27:49.954566','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@ade92343df3d4953a40ab3adc8805390','Google Hangout','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@6ab9c442501d472c8ed200e367b4edfa\",\"More Ways to Connect\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3f2c11aba9434e459676a7d7acc4d960\",\"Google Hangout\"]]]'),(69,'2020-04-06 20:48:36.071282','2020-07-23 17:27:49.957345','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@f9f3a25e7bab46e583fd1fbbd7a2f6a0','Be Social','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3c4b575924bf4b75a2f3542df5c354fc\",\"Be Social\"]]]'),(70,'2020-04-06 20:48:36.192587','2020-07-23 17:27:49.959526','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@f4a39219742149f781a1dda6f43a623c','Overall Grade','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@1b0e2c2c84884b95b1c99fb678cc964c\",\"Overall Grade Performance\"]]]'),(71,'2020-04-06 20:48:36.260780','2020-07-23 17:27:49.961500','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@4a1bba2a403f40bca5ec245e945b0d76','Video Demonstrations','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(72,'2020-04-06 20:48:36.305784','2020-07-23 17:27:49.963732','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@2b94658d2eee4d85ae13f83bc24cfca9','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0fab6aa52165\",\"Molecule Editor\"]]]'),(73,'2020-04-06 20:48:36.350106','2020-07-23 17:27:49.965576','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0c92347a5c00','Mathematical Expressions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(74,'2020-04-06 20:48:36.393206','2020-07-23 17:27:49.967478','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@030e35c4756a4ddc8d40b95fbbfff4d4','Blank HTML Page','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@d8a6192ade314473a78242dfeedfbf5b\",\"Introduction\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@edx_introduction\",\"Demo Course Overview\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0270f6de40fc\",\"Introduction: Video and Sequences\"]]]'),(75,'2020-04-06 20:48:36.438138','2020-07-23 17:27:49.969096','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations','Lesson 2 - Let\'s Get Interactive!','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"]]]'),(76,'2020-04-06 20:48:36.482505','2020-07-23 17:27:49.971215','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@03f051f9a8814881a3783d2511613aa6','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_d32bf9b2242c\",\"Electronic Sound Experiment\"]]]'),(77,'2020-04-06 20:48:36.527239','2020-07-23 17:27:49.972948','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@d0d804e8863c4a95a659c04d8a2b2bc0','Lesson 2 - Let\'s Get Interactive! ','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"]]]'),(78,'2020-04-06 20:48:36.571638','2020-07-23 17:27:49.974694','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@4aba537a78774bd5a862485a8563c345','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_f04afeac0131\",\"Immediate Feedback\"]]]'),(79,'2020-04-06 20:48:36.615537','2020-07-23 17:27:49.976674','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@148ae8fa73ea460eb6f05505da0ba6e6','Getting Your edX Certificate','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@d6eaa391d2be41dea20b8b1bfbcb1c45\",\"Getting Your edX Certificate\"]]]'),(80,'2020-04-06 20:48:36.659841','2020-07-23 17:27:49.978854','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@312cb4faed17420e82ab3178fc3e251a','Getting Help','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"]]]'),(81,'2020-04-06 20:48:36.704379','2020-07-23 17:27:49.980951','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow','edX Exams','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"]]]'),(82,'2020-04-06 20:48:36.749328','2020-07-23 17:27:49.983262','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@303034da25524878a2e66fb57c91cf85','Attributing Blame','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e\",\"Reading Assignments\"]]]'),(83,'2020-04-06 20:48:36.793898','2020-07-23 17:27:49.985108','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@edx_introduction','Demo Course Overview','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@d8a6192ade314473a78242dfeedfbf5b\",\"Introduction\"]]]'),(84,'2020-04-06 20:48:36.838336','2020-07-23 17:27:49.986867','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@5e009378f0b64585baa0a14b155974b9','Passing a Course','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@c7e98fd39a6944edb6b286c32e1150ff\",\"Passing a Course\"]]]'),(85,'2020-04-06 20:48:36.883473','2020-07-23 17:27:49.988554','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@07bc32474380492cb34f76e5f9d9a135','New Subsection','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@9fca584977d04885bc911ea76a9ef29e\",\"holding section\"]]]'),(86,'2020-04-06 20:48:36.927086','2020-07-23 17:27:49.991002','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@e2cb0e0994f84b0abfa5f4ae42ed9d44','Video Presentation Styles','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@256f17a44983429fb1a60802203ee4e0\",\"Video Presentation Styles\"]]]'),(87,'2020-04-06 20:48:36.971980','2020-07-23 17:27:49.993303','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@75f9562c77bc4858b61f907bb810d974','Numerical Input','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@2889db1677a549abb15eb4d886f95d1c\",\"Numerical Input\"]]]'),(88,'2020-04-06 20:48:37.016381','2020-07-23 17:27:49.995610','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@e0254b911fa246218bd98bbdadffef06','Reading Assignments','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e\",\"Reading Assignments\"]]]'),(89,'2020-04-06 20:48:37.061212','2020-07-23 17:27:49.998143','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@Lab_5B_Mosfet_Amplifier_Experiment','Electronic Sound Experiment','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_d32bf9b2242c\",\"Electronic Sound Experiment\"]]]'),(90,'2020-04-06 20:48:37.105295','2020-07-23 17:27:50.000219','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@9cee77a606ea4c1aa5440e0ea5d0f618','Interactive Questions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@e3601c0abee6427d8c17e6d6f8fdddd1\",\"Interactive Questions\"]]]'),(91,'2020-04-06 20:48:37.150009','2020-07-23 17:27:50.002162','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@6bcccc2d7343416e9e03fd7325b2f232','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@4f6c1b4e316a419ab5b6bf30e6c708e9\",\"Working with Videos\"]]]'),(92,'2020-04-06 20:48:37.194099','2020-07-23 17:27:50.003853','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions','Homework - Question Styles','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"]]]'),(93,'2020-04-06 20:48:37.238687','2020-07-23 17:27:50.005688','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@932e6f2ce8274072a355a94560216d1a','Perchance to Dream','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e\",\"Reading Assignments\"]]]'),(94,'2020-04-06 20:48:37.282605','2020-07-23 17:27:50.008006','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@video+block@5c90cffecd9b48b188cbfea176bf7fe9','Video','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3dc16db8d14842e38324e95d4030b8a0\",\"Videos on edX\"]]]'),(95,'2020-04-06 20:48:37.327725','2020-07-23 17:27:50.010209','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@2574c523e97b477a9d72fbb37bfb995f','Text','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e\",\"Reading Assignments\"]]]'),(96,'2020-04-06 20:48:37.405935','2020-07-23 17:27:50.012301','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@ex_practice_limited_checks','Limited Checks','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_ac391cde8a91\",\"Limited Checks\"]]]'),(97,'2020-04-06 20:48:37.454142','2020-07-23 17:27:50.015325','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_98cf62510471','Zooming Diagrams','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"]]]'),(98,'2020-04-06 20:48:37.495269','2020-07-23 17:27:50.017761','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@free_form_simulation','problem','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_c037f3757df1\",\"Electric Circuit Simulator\"]]]'),(99,'2020-04-06 20:48:37.539084','2020-07-23 17:27:50.020853','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@1b0e2c2c84884b95b1c99fb678cc964c','Overall Grade Performance','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(100,'2020-04-06 20:48:37.583031','2020-07-23 17:27:50.023622','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@722085be27c84ac693cfebc8ac5da700','Videos on edX','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3dc16db8d14842e38324e95d4030b8a0\",\"Videos on edX\"]]]'),(101,'2020-04-06 20:48:37.628485','2020-07-23 17:27:50.025417','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@4f6c1b4e316a419ab5b6bf30e6c708e9','Working with Videos','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(102,'2020-04-06 20:48:37.672771','2020-07-23 17:27:50.027619','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@dbe8fc027bcb4fe9afb744d2e8415855','Homework - Find Your Study Buddy','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"]]]'),(103,'2020-04-06 20:48:37.717093','2020-07-23 17:27:50.029667','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e','Lesson 3 - Be Social','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"]]]'),(104,'2020-04-06 20:48:37.761033','2020-07-23 17:27:50.032216','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@6f7a6670f87147149caeff6afa07a526','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_2dbb0072785e\",\"An Interactive Reference Table\"]]]'),(105,'2020-04-06 20:48:37.806032','2020-07-23 17:27:50.035335','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@5ab88e67d46049b9aa694cb240c39cef','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@47dbd5f836544e61877a483c0b75606c\",\"Drag and Drop\"]]]'),(106,'2020-04-06 20:48:37.850119','2020-07-23 17:27:50.037501','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@e5eac7e1a5a24f5fa7ed77bb6d136591','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@2152d4a4aadc4cb0af5256394a3d1fc7\",\"Pointing on a Picture\"]]]'),(107,'2020-04-06 20:48:37.894829','2020-07-23 17:27:50.040630','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@d6eaa391d2be41dea20b8b1bfbcb1c45','Getting Your edX Certificate','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(108,'2020-04-06 20:48:37.939302','2020-07-23 17:27:50.042876','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@934cc32c177d41b580c8413e561346b3','EdX Exams','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(109,'2020-04-06 20:48:37.984217','2020-07-23 17:27:50.045147','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@891211e17f9a472290a5f12c7a6626d7','Code Grader','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_aae927868e55\",\"Code Grader\"]]]'),(110,'2020-04-06 20:48:38.028246','2020-07-23 17:27:50.047255','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@ed5dccf14ae94353961f46fa07217491','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@4a1bba2a403f40bca5ec245e945b0d76\",\"Video Demonstrations\"]]]'),(111,'2020-04-06 20:48:38.073562','2020-07-23 17:27:50.049430','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@3dc16db8d14842e38324e95d4030b8a0','Videos on edX','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(112,'2020-04-06 20:48:38.128959','2020-07-23 17:27:50.051955','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@2bee8c4248e842a19ba1e73ed8d426c2','Labs and Demos','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@d6cee45205a449369d7ef8f159b22bdf\",\"Labs and Demos\"]]]'),(113,'2020-04-06 20:48:38.184980','2020-07-23 17:27:50.053653','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@4d672c5893cb4f1dad0de67d2008522e','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_1fef54c2b23b\",\"Chemical Equations\"]]]'),(114,'2020-04-06 20:48:38.240569','2020-07-23 17:27:50.056091','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@video+block@636541acbae448d98ab484b028c9a7f6','Connecting a Circuit and a Circuit Diagram','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@256f17a44983429fb1a60802203ee4e0\",\"Video Presentation Styles\"]]]'),(115,'2020-04-06 20:48:38.480946','2020-07-23 17:27:50.059098','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@ffa5817d49e14fec83ad6187cbe16358','Reading Sample','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e\",\"Reading Assignments\"]]]'),(116,'2020-04-06 20:48:39.466003','2020-07-23 17:27:50.061710','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@e0d7423118ab432582d03e8e8dad8e36','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_98cf62510471\",\"Zooming Diagrams\"]]]'),(117,'2020-04-06 20:48:39.544247','2020-07-23 17:27:50.065348','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@8bb218cccf8d40519a971ff0e4901ccf','Getting Help','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@312cb4faed17420e82ab3178fc3e251a\",\"Getting Help\"]]]'),(118,'2020-04-06 20:48:39.904878','2020-07-23 17:27:50.067637','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@0aa7a3bdbe18427795b0c1a1d7c3cb9a','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0fab6aa52165\",\"Molecule Editor\"]]]'),(119,'2020-04-06 20:48:39.985402','2020-07-23 17:27:50.069598','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@6244918637ed4ff4b5f94a840a7e4b43','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@e8a5cc2aed424838853defab7be45e42\",\"Text input\"]]]'),(120,'2020-04-06 20:48:40.064033','2020-07-23 17:27:50.071383','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0270f6de40fc','Introduction: Video and Sequences','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@d8a6192ade314473a78242dfeedfbf5b\",\"Introduction\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@edx_introduction\",\"Demo Course Overview\"]]]'),(121,'2020-04-06 20:48:40.149252','2020-07-23 17:27:50.073119','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@fb79dcbad35b466a8c6364f8ffee9050','Peer Assessed Essays','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@175e76c4951144a29d46211361266e0e\",\"Homework - Essays\"]]]'),(122,'2020-04-06 20:48:40.301906','2020-07-23 17:27:50.075223','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@d5a5caaf35e84ebc9a747038465dcfb4','Electronic Circuit Simulator','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_c037f3757df1\",\"Electric Circuit Simulator\"]]]'),(123,'2020-04-06 20:48:40.368595','2020-07-23 17:27:50.077700','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@d45779ad3d024a40a09ad8cc317c0970','Text','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@6ab9c442501d472c8ed200e367b4edfa\",\"More Ways to Connect\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3f2c11aba9434e459676a7d7acc4d960\",\"Google Hangout\"]]]'),(124,'2020-04-06 20:48:40.460577','2020-07-23 17:27:50.079759','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@2889db1677a549abb15eb4d886f95d1c','Numerical Input','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(125,'2020-04-06 20:48:40.536182','2020-07-23 17:27:50.081684','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@e3601c0abee6427d8c17e6d6f8fdddd1','Interactive Questions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(126,'2020-04-06 20:48:40.658806','2020-07-23 17:27:50.084407','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@55cbc99f262443d886a25cf84594eafb','Text','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@6ab9c442501d472c8ed200e367b4edfa\",\"More Ways to Connect\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@3f2c11aba9434e459676a7d7acc4d960\",\"Google Hangout\"]]]'),(127,'2020-04-06 20:48:40.727432','2020-07-23 17:27:50.086263','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@discussion_5deb6081620d','Discussion Forums','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_3888db0bc286\",\"Discussion Forums\"]]]'),(128,'2020-04-06 20:48:40.792099','2020-07-23 17:27:50.088262','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@78d7d3642f3a4dbabbd1b017861aa5f2','Lesson 2: Let\'s Get Interactive!','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@d0d804e8863c4a95a659c04d8a2b2bc0\",\"Lesson 2 - Let\'s Get Interactive! \"]]]'),(129,'2020-04-06 20:48:40.848172','2020-07-23 17:27:50.090026','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@html_49b4494da2f7','Discussion Forums','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_3888db0bc286\",\"Discussion Forums\"]]]'),(130,'2020-04-06 20:48:40.892047','2020-07-23 17:27:50.091908','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@23e6eda482c04335af2bb265beacaf59','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@c7e98fd39a6944edb6b286c32e1150ff\",\"Passing a Course\"]]]'),(131,'2020-04-06 20:48:40.937122','2020-07-23 17:27:50.094531','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@1a810b1a3b2447b998f0917d0e5a802b','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@1b0e2c2c84884b95b1c99fb678cc964c\",\"Overall Grade Performance\"]]]'),(132,'2020-04-06 20:48:40.981270','2020-07-23 17:27:50.096879','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations','Homework - Labs and Demos','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"]]]'),(133,'2020-04-06 20:48:41.026214','2020-07-23 17:27:50.099050','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@2152d4a4aadc4cb0af5256394a3d1fc7','Pointing on a Picture','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(134,'2020-04-06 20:48:41.070942','2020-07-23 17:27:50.101143','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@412dc8dbb6674014862237b23c1f643f','Working with Videos','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@4f6c1b4e316a419ab5b6bf30e6c708e9\",\"Working with Videos\"]]]'),(135,'2020-04-06 20:48:41.114312','2020-07-23 17:27:50.102944','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_d32bf9b2242c','Electronic Sound Experiment','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"]]]'),(136,'2020-04-06 20:48:41.158851','2020-07-23 17:27:50.104818','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_36e0beb03f0a','Randomized Questions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"]]]'),(137,'2020-04-06 20:48:41.203655','2020-07-23 17:27:50.107361','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@501aed9d902349eeb2191fa505548de2','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@2889db1677a549abb15eb4d886f95d1c\",\"Numerical Input\"]]]'),(138,'2020-04-06 20:48:41.248542','2020-07-23 17:27:50.110294','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@9f9e1373cc8243b985c8750cc8acec7d','Video Demonstrations','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@4a1bba2a403f40bca5ec245e945b0d76\",\"Video Demonstrations\"]]]'),(139,'2020-04-06 20:48:41.292161','2020-07-23 17:27:50.113729','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@54bb9b142c6c4c22afc62bcb628f0e68','Multiple Choice Questions','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(140,'2020-04-06 20:48:41.336986','2020-07-23 17:27:50.117385','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@870371212ba04dcf9536d7c7b8f3109e','','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_0c92347a5c00\",\"Mathematical Expressions\"]]]'),(141,'2020-04-06 20:48:41.382274','2020-07-23 17:27:50.120620','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@ex_practice_2','Immediate Feedback','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7\",\"About Exams and Certificates\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow\",\"edX Exams\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@vertical_f04afeac0131\",\"Immediate Feedback\"]]]'),(142,'2020-04-06 20:48:44.411082','2020-04-06 20:48:44.411082','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@discussion+block@1c8d47c425724346a7968fa1bc745dcd','Labs and Tools','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@a79d59cd72034188a71d388f4954a606\",\"Exciting Labs and Tools\"]]]'),(143,'2020-04-06 20:48:44.457649','2020-04-06 20:48:44.457649','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@9b9687073e904ae197799dc415df899f','Molecule Structures','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@8f89194410954e768bde1764985454a7\",\"Molecule Structures\"]]]'),(144,'2020-04-06 20:48:44.500894','2020-04-06 20:48:44.500894','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@video+block@ab98b0e385e64445ae97e730ffdf17e7','Biology Demonstration','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@f0e6d90842c44cc7a50fd1a18a7dd982\",\"Video Demonstrations\"]]]'),(145,'2020-04-06 20:48:44.545386','2020-04-06 20:48:44.545386','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@2d3efa8db04346548bd5e5374de77628','Text','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@f0e6d90842c44cc7a50fd1a18a7dd982\",\"Video Demonstrations\"]]]'),(146,'2020-04-06 20:48:44.589955','2020-04-06 20:48:44.589955','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@d7daeff25e4f4026bdd269ae69e03e02','Instructor-Programmed Responses','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@fb6b62dbec4348528629cf2232b86aea\",\"Instructor Programmed Responses\"]]]'),(147,'2020-04-06 20:48:44.635629','2020-04-06 20:48:44.635629','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@7efc7bf4a47b4a6cb6595c32cde7712a','Homework - Find Your Study Buddy','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"]]]'),(148,'2020-04-06 20:48:44.678372','2020-04-06 20:48:44.678372','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@f0e6d90842c44cc7a50fd1a18a7dd982','Video Demonstrations','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(149,'2020-04-06 20:48:44.722796','2020-04-06 20:48:44.722796','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@eb469ec408fa4ab1a9b86c634ca9bfa9','Text','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@f0e6d90842c44cc7a50fd1a18a7dd982\",\"Video Demonstrations\"]]]'),(150,'2020-04-06 20:48:44.767638','2020-04-06 20:48:44.767638','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@ffcd6351126d4ca984409180e41d1b51','Exciting Labs and Tools','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@a79d59cd72034188a71d388f4954a606\",\"Exciting Labs and Tools\"]]]'),(151,'2020-04-06 20:48:44.812155','2020-04-06 20:48:44.812155','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@9d5104b502f24ee89c3d2f4ce9d347cf','When Are Your Exams? ','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@d91b9e5d8bc64d57a1332d06bf2f2193\",\"When Are Your Exams? \"]]]'),(152,'2020-04-06 20:48:44.855637','2020-04-06 20:48:44.855637','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@45c7cedb4bfe46f4a68c78787151cfb5','New Unit','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@9fca584977d04885bc911ea76a9ef29e\",\"holding section\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@07bc32474380492cb34f76e5f9d9a135\",\"New Subsection\"]]]'),(153,'2020-04-06 20:48:44.901072','2020-04-06 20:48:44.901072','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@a79d59cd72034188a71d388f4954a606','Exciting Labs and Tools','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(154,'2020-04-06 20:48:44.946802','2020-04-06 20:48:44.946802','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@video+block@af7fe1335eb841cd81ce31c7ee8eb069','Video','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@4e592689563243c484af947465eaef0d\",\"New Unit\"]]]'),(155,'2020-04-06 20:48:45.023262','2020-04-06 20:48:45.023262','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@87fa6792d79f4862be098e5169e93339','Blank HTML Page','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@social_integration\",\"Example Week 3: Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e\",\"Lesson 3 - Be Social\"],[\"block-v1:edX+DemoX+Demo_Course+type@vertical+block@7efc7bf4a47b4a6cb6595c32cde7712a\",\"Homework - Find Your Study Buddy\"]]]'),(156,'2020-04-06 20:48:45.067869','2020-04-06 20:48:45.067869','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@d91b9e5d8bc64d57a1332d06bf2f2193','When Are Your Exams? ','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@19a30717eff543078a5d94ae9d6c18a5\",\"Lesson 1 - Getting Started\"]]]'),(157,'2020-04-06 20:48:45.112233','2020-04-06 20:48:45.112233','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@4e592689563243c484af947465eaef0d','New Unit','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations\",\"Lesson 2 - Let\'s Get Interactive!\"]]]'),(158,'2020-04-06 20:48:45.156594','2020-04-06 20:48:45.156594','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@fb6b62dbec4348528629cf2232b86aea','Instructor Programmed Responses','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@interactive_demonstrations\",\"Example Week 1: Getting Started\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions\",\"Homework - Question Styles\"]]]'),(159,'2020-04-06 20:48:45.201436','2020-04-06 20:48:45.201436','course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@vertical+block@8f89194410954e768bde1764985454a7','Molecule Structures','[[[\"block-v1:edX+DemoX+Demo_Course+type@chapter+block@graded_interactions\",\"Example Week 2: Get Interactive\"],[\"block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations\",\"Homework - Labs and Demos\"]]]'); +/*!40000 ALTER TABLE `bookmarks_xblockcache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `branding_brandingapiconfig` +-- + +DROP TABLE IF EXISTS `branding_brandingapiconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `branding_brandingapiconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `branding_brandingapi_changed_by_id_bab2730f_fk_auth_user` (`changed_by_id`), + CONSTRAINT `branding_brandingapi_changed_by_id_bab2730f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `branding_brandingapiconfig` +-- + +LOCK TABLES `branding_brandingapiconfig` WRITE; +/*!40000 ALTER TABLE `branding_brandingapiconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `branding_brandingapiconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `branding_brandinginfoconfig` +-- + +DROP TABLE IF EXISTS `branding_brandinginfoconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `branding_brandinginfoconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `configuration` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `branding_brandinginf_changed_by_id_616dd172_fk_auth_user` (`changed_by_id`), + CONSTRAINT `branding_brandinginf_changed_by_id_616dd172_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `branding_brandinginfoconfig` +-- + +LOCK TABLES `branding_brandinginfoconfig` WRITE; +/*!40000 ALTER TABLE `branding_brandinginfoconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `branding_brandinginfoconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_bulkemailflag` +-- + +DROP TABLE IF EXISTS `bulk_email_bulkemailflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_bulkemailflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `require_course_email_auth` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_bulkemailflag` +-- + +LOCK TABLES `bulk_email_bulkemailflag` WRITE; +/*!40000 ALTER TABLE `bulk_email_bulkemailflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_bulkemailflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_cohorttarget` +-- + +DROP TABLE IF EXISTS `bulk_email_cohorttarget`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_cohorttarget` ( + `target_ptr_id` int(11) NOT NULL, + `cohort_id` int(11) NOT NULL, + PRIMARY KEY (`target_ptr_id`), + KEY `bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr` (`cohort_id`), + CONSTRAINT `bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr` FOREIGN KEY (`cohort_id`) REFERENCES `course_groups_courseusergroup` (`id`), + CONSTRAINT `bulk_email_cohorttar_target_ptr_id_7e1a1a40_fk_bulk_emai` FOREIGN KEY (`target_ptr_id`) REFERENCES `bulk_email_target` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_cohorttarget` +-- + +LOCK TABLES `bulk_email_cohorttarget` WRITE; +/*!40000 ALTER TABLE `bulk_email_cohorttarget` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_cohorttarget` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_courseauthorization` +-- + +DROP TABLE IF EXISTS `bulk_email_courseauthorization`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_courseauthorization` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `email_enabled` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_courseauthorization` +-- + +LOCK TABLES `bulk_email_courseauthorization` WRITE; +/*!40000 ALTER TABLE `bulk_email_courseauthorization` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_courseauthorization` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_courseemail` +-- + +DROP TABLE IF EXISTS `bulk_email_courseemail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_courseemail` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `slug` varchar(128) NOT NULL, + `subject` varchar(128) NOT NULL, + `html_message` longtext, + `text_message` longtext, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `to_option` varchar(64) NOT NULL, + `template_name` varchar(255) DEFAULT NULL, + `from_addr` varchar(255) DEFAULT NULL, + `sender_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id` (`sender_id`), + KEY `bulk_email_courseemail_slug_bd25801f` (`slug`), + KEY `bulk_email_courseemail_course_id_b7b8a9a2` (`course_id`), + CONSTRAINT `bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id` FOREIGN KEY (`sender_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_courseemail` +-- + +LOCK TABLES `bulk_email_courseemail` WRITE; +/*!40000 ALTER TABLE `bulk_email_courseemail` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_courseemail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_courseemail_targets` +-- + +DROP TABLE IF EXISTS `bulk_email_courseemail_targets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_courseemail_targets` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `courseemail_id` int(11) NOT NULL, + `target_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `bulk_email_courseemail_t_courseemail_id_target_id_e0440acc_uniq` (`courseemail_id`,`target_id`), + KEY `bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai` (`target_id`), + CONSTRAINT `bulk_email_courseema_courseemail_id_83f5bdcd_fk_bulk_emai` FOREIGN KEY (`courseemail_id`) REFERENCES `bulk_email_courseemail` (`id`), + CONSTRAINT `bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai` FOREIGN KEY (`target_id`) REFERENCES `bulk_email_target` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_courseemail_targets` +-- + +LOCK TABLES `bulk_email_courseemail_targets` WRITE; +/*!40000 ALTER TABLE `bulk_email_courseemail_targets` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_courseemail_targets` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_courseemailtemplate` +-- + +DROP TABLE IF EXISTS `bulk_email_courseemailtemplate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_courseemailtemplate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `html_template` longtext, + `plain_template` longtext, + `name` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_courseemailtemplate` +-- + +LOCK TABLES `bulk_email_courseemailtemplate` WRITE; +/*!40000 ALTER TABLE `bulk_email_courseemailtemplate` DISABLE KEYS */; +INSERT INTO `bulk_email_courseemailtemplate` VALUES (1,' Update from {course_title}

\'edX\'
Connect with edX:        
\'\'

{course_title}


{{message_body}}
       
Copyright © 2013 edX, All rights reserved.


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


This email was automatically sent from {platform_name}.
You are receiving this email at address {email} because you are enrolled in {course_title}.
To stop receiving email like this, update your course email settings here.

unsubscribe
','{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n{unsubscribe_link}\r\n',NULL),(2,' THIS IS A BRANDED HTML TEMPLATE Update from {course_title}

\'edX\'
Connect with edX:        
\'\'

{course_title}


{{message_body}}
       
Copyright © 2013 edX, All rights reserved.


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


This email was automatically sent from {platform_name}.
You are receiving this email at address {email} because you are enrolled in {course_title}.
To stop receiving email like this, update your course email settings here.

unsubscribe
','THIS IS A BRANDED TEXT TEMPLATE. {course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n{unsubscribe_link}\r\n','branded.template'); +/*!40000 ALTER TABLE `bulk_email_courseemailtemplate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_coursemodetarget` +-- + +DROP TABLE IF EXISTS `bulk_email_coursemodetarget`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_coursemodetarget` ( + `target_ptr_id` int(11) NOT NULL, + `track_id` int(11) NOT NULL, + PRIMARY KEY (`target_ptr_id`), + KEY `bulk_email_coursemod_track_id_2b68bb43_fk_course_mo` (`track_id`), + CONSTRAINT `bulk_email_coursemod_target_ptr_id_f2f054ce_fk_bulk_emai` FOREIGN KEY (`target_ptr_id`) REFERENCES `bulk_email_target` (`id`), + CONSTRAINT `bulk_email_coursemod_track_id_2b68bb43_fk_course_mo` FOREIGN KEY (`track_id`) REFERENCES `course_modes_coursemode` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_coursemodetarget` +-- + +LOCK TABLES `bulk_email_coursemodetarget` WRITE; +/*!40000 ALTER TABLE `bulk_email_coursemodetarget` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_coursemodetarget` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_optout` +-- + +DROP TABLE IF EXISTS `bulk_email_optout`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_optout` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `bulk_email_optout_user_id_course_id_e0e2d6a6_uniq` (`user_id`,`course_id`), + KEY `bulk_email_optout_course_id_5c5836a8` (`course_id`), + CONSTRAINT `bulk_email_optout_user_id_ff6223d6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_optout` +-- + +LOCK TABLES `bulk_email_optout` WRITE; +/*!40000 ALTER TABLE `bulk_email_optout` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_optout` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_email_target` +-- + +DROP TABLE IF EXISTS `bulk_email_target`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_email_target` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `target_type` varchar(64) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_email_target` +-- + +LOCK TABLES `bulk_email_target` WRITE; +/*!40000 ALTER TABLE `bulk_email_target` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_email_target` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bulk_grades_scoreoverrider` +-- + +DROP TABLE IF EXISTS `bulk_grades_scoreoverrider`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bulk_grades_scoreoverrider` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `modified` datetime(6) NOT NULL, + `created` datetime(6) NOT NULL, + `module_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `bulk_grades_scoreove_module_id_33617068_fk_coursewar` (`module_id`), + KEY `bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id` (`user_id`), + KEY `bulk_grades_scoreoverrider_created_2d9c74a5` (`created`), + CONSTRAINT `bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bulk_grades_scoreoverrider` +-- + +LOCK TABLES `bulk_grades_scoreoverrider` WRITE; +/*!40000 ALTER TABLE `bulk_grades_scoreoverrider` DISABLE KEYS */; +/*!40000 ALTER TABLE `bulk_grades_scoreoverrider` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `calendar_sync_historicalusercalendarsyncconfig` +-- + +DROP TABLE IF EXISTS `calendar_sync_historicalusercalendarsyncconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `calendar_sync_historicalusercalendarsyncconfig` ( + `id` int(11) NOT NULL, + `course_key` varchar(255) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + `ics_sequence` int(11) NOT NULL, + PRIMARY KEY (`history_id`), + KEY `calendar_sync_histor_history_user_id_e696e2d5_fk_auth_user` (`history_user_id`), + KEY `calendar_sync_historicalusercalendarsyncconfig_id_2b36f9ae` (`id`), + KEY `calendar_sync_historicaluse_course_key_0f40c91a` (`course_key`), + KEY `calendar_sync_historicalusercalendarsyncconfig_user_id_c2855120` (`user_id`), + CONSTRAINT `calendar_sync_histor_history_user_id_e696e2d5_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `calendar_sync_historicalusercalendarsyncconfig` +-- + +LOCK TABLES `calendar_sync_historicalusercalendarsyncconfig` WRITE; +/*!40000 ALTER TABLE `calendar_sync_historicalusercalendarsyncconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `calendar_sync_historicalusercalendarsyncconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `calendar_sync_usercalendarsyncconfig` +-- + +DROP TABLE IF EXISTS `calendar_sync_usercalendarsyncconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `calendar_sync_usercalendarsyncconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `user_id` int(11) NOT NULL, + `ics_sequence` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `calendar_sync_usercalend_user_id_course_key_57c343ab_uniq` (`user_id`,`course_key`), + KEY `calendar_sync_usercalendarsyncconfig_course_key_86657ca7` (`course_key`), + CONSTRAINT `calendar_sync_userca_user_id_5dd14ead_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `calendar_sync_usercalendarsyncconfig` +-- + +LOCK TABLES `calendar_sync_usercalendarsyncconfig` WRITE; +/*!40000 ALTER TABLE `calendar_sync_usercalendarsyncconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `calendar_sync_usercalendarsyncconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `catalog_catalogintegration` +-- + +DROP TABLE IF EXISTS `catalog_catalogintegration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `catalog_catalogintegration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `internal_api_url` varchar(200) NOT NULL, + `cache_ttl` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `service_username` varchar(100) NOT NULL, + `page_size` int(10) unsigned NOT NULL, + `long_term_cache_ttl` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user` (`changed_by_id`), + CONSTRAINT `catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `catalog_catalogintegration` +-- + +LOCK TABLES `catalog_catalogintegration` WRITE; +/*!40000 ALTER TABLE `catalog_catalogintegration` DISABLE KEYS */; +INSERT INTO `catalog_catalogintegration` VALUES (1,'2020-04-06 21:00:10.967860',1,'https://example.com/api',0,NULL,'discovery_worker',100,86400); +/*!40000 ALTER TABLE `catalog_catalogintegration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `celery_taskmeta` +-- + +DROP TABLE IF EXISTS `celery_taskmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `celery_taskmeta` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `task_id` varchar(255) NOT NULL, + `status` varchar(50) NOT NULL, + `result` longtext, + `date_done` datetime(6) NOT NULL, + `traceback` longtext, + `hidden` tinyint(1) NOT NULL, + `meta` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `task_id` (`task_id`), + KEY `celery_taskmeta_hidden_23fd02dc` (`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `celery_taskmeta` +-- + +LOCK TABLES `celery_taskmeta` WRITE; +/*!40000 ALTER TABLE `celery_taskmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `celery_taskmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `celery_tasksetmeta` +-- + +DROP TABLE IF EXISTS `celery_tasksetmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `celery_tasksetmeta` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `taskset_id` varchar(255) NOT NULL, + `result` longtext NOT NULL, + `date_done` datetime(6) NOT NULL, + `hidden` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `taskset_id` (`taskset_id`), + KEY `celery_tasksetmeta_hidden_593cfc24` (`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `celery_tasksetmeta` +-- + +LOCK TABLES `celery_tasksetmeta` WRITE; +/*!40000 ALTER TABLE `celery_tasksetmeta` DISABLE KEYS */; +/*!40000 ALTER TABLE `celery_tasksetmeta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `celery_utils_failedtask` +-- + +DROP TABLE IF EXISTS `celery_utils_failedtask`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `celery_utils_failedtask` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `task_name` varchar(255) NOT NULL, + `task_id` varchar(255) NOT NULL, + `args` longtext NOT NULL, + `kwargs` longtext NOT NULL, + `exc` varchar(255) NOT NULL, + `datetime_resolved` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `celery_utils_failedtask_task_name_exc_efb8c9be_idx` (`task_name`,`exc`), + KEY `celery_utils_failedtask_task_id_37af0933` (`task_id`), + KEY `celery_utils_failedtask_datetime_resolved_8160e407` (`datetime_resolved`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `celery_utils_failedtask` +-- + +LOCK TABLES `celery_utils_failedtask` WRITE; +/*!40000 ALTER TABLE `celery_utils_failedtask` DISABLE KEYS */; +/*!40000 ALTER TABLE `celery_utils_failedtask` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificategenerationconfiguration` +-- + +DROP TABLE IF EXISTS `certificates_certificategenerationconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificategenerationconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `certificates_certifi_changed_by_id_a6d06e99_fk_auth_user` (`changed_by_id`), + CONSTRAINT `certificates_certifi_changed_by_id_a6d06e99_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificategenerationconfiguration` +-- + +LOCK TABLES `certificates_certificategenerationconfiguration` WRITE; +/*!40000 ALTER TABLE `certificates_certificategenerationconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_certificategenerationconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificategenerationcoursesetting` +-- + +DROP TABLE IF EXISTS `certificates_certificategenerationcoursesetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificategenerationcoursesetting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `language_specific_templates_enabled` tinyint(1) NOT NULL, + `self_generation_enabled` tinyint(1) NOT NULL, + `include_hours_of_effort` tinyint(1) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `certificates_certificategen_course_key_dd10af41` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificategenerationcoursesetting` +-- + +LOCK TABLES `certificates_certificategenerationcoursesetting` WRITE; +/*!40000 ALTER TABLE `certificates_certificategenerationcoursesetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_certificategenerationcoursesetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificategenerationhistory` +-- + +DROP TABLE IF EXISTS `certificates_certificategenerationhistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificategenerationhistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `is_regeneration` tinyint(1) NOT NULL, + `generated_by_id` int(11) NOT NULL, + `instructor_task_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user` (`generated_by_id`), + KEY `certificates_certifi_instructor_task_id_8f7176a6_fk_instructo` (`instructor_task_id`), + CONSTRAINT `certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user` FOREIGN KEY (`generated_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `certificates_certifi_instructor_task_id_8f7176a6_fk_instructo` FOREIGN KEY (`instructor_task_id`) REFERENCES `instructor_task_instructortask` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificategenerationhistory` +-- + +LOCK TABLES `certificates_certificategenerationhistory` WRITE; +/*!40000 ALTER TABLE `certificates_certificategenerationhistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_certificategenerationhistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificatehtmlviewconfiguration` +-- + +DROP TABLE IF EXISTS `certificates_certificatehtmlviewconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificatehtmlviewconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `configuration` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `certificates_certifi_changed_by_id_bcf656f2_fk_auth_user` (`changed_by_id`), + CONSTRAINT `certificates_certifi_changed_by_id_bcf656f2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificatehtmlviewconfiguration` +-- + +LOCK TABLES `certificates_certificatehtmlviewconfiguration` WRITE; +/*!40000 ALTER TABLE `certificates_certificatehtmlviewconfiguration` DISABLE KEYS */; +INSERT INTO `certificates_certificatehtmlviewconfiguration` VALUES (1,'2020-04-06 20:20:14.328691',0,'{\"default\": {\"logo_url\": \"http://www.example.com\", \"accomplishment_class_append\": \"accomplishment-certificate\", \"logo_src\": \"/static/certificates/images/logo.png\", \"company_tos_url\": \"http://www.example.com/terms-service\", \"platform_name\": \"Your Platform Name Here\", \"company_privacy_url\": \"http://www.example.com/privacy-policy\", \"company_verified_certificate_url\": \"http://www.example.com/verified-certificate\", \"company_about_url\": \"http://www.example.com/about-us\"}, \"honor\": {\"certificate_type\": \"Honor Code\", \"certificate_title\": \"Certificate of Achievement\"}, \"verified\": {\"certificate_type\": \"Verified\", \"certificate_title\": \"Verified Certificate of Achievement\"}}',NULL); +/*!40000 ALTER TABLE `certificates_certificatehtmlviewconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificateinvalidation` +-- + +DROP TABLE IF EXISTS `certificates_certificateinvalidation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificateinvalidation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `notes` longtext, + `active` tinyint(1) NOT NULL, + `generated_certificate_id` int(11) NOT NULL, + `invalidated_by_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `certificates_certifi_generated_certificat_31bed498_fk_certifica` (`generated_certificate_id`), + KEY `certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user` (`invalidated_by_id`), + CONSTRAINT `certificates_certifi_generated_certificat_31bed498_fk_certifica` FOREIGN KEY (`generated_certificate_id`) REFERENCES `certificates_generatedcertificate` (`id`), + CONSTRAINT `certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user` FOREIGN KEY (`invalidated_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificateinvalidation` +-- + +LOCK TABLES `certificates_certificateinvalidation` WRITE; +/*!40000 ALTER TABLE `certificates_certificateinvalidation` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_certificateinvalidation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificatetemplate` +-- + +DROP TABLE IF EXISTS `certificates_certificatetemplate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificatetemplate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `template` longtext NOT NULL, + `organization_id` int(11) DEFAULT NULL, + `course_key` varchar(255) DEFAULT NULL, + `mode` varchar(125) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL, + `language` varchar(2) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `certificates_certificate_organization_id_course_k_88e26c0d_uniq` (`organization_id`,`course_key`,`mode`,`language`), + KEY `certificates_certificatetemplate_organization_id_030a747d` (`organization_id`), + KEY `certificates_certificatetemplate_course_key_9a6a823d` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificatetemplate` +-- + +LOCK TABLES `certificates_certificatetemplate` WRITE; +/*!40000 ALTER TABLE `certificates_certificatetemplate` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_certificatetemplate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificatetemplateasset` +-- + +DROP TABLE IF EXISTS `certificates_certificatetemplateasset`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificatetemplateasset` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `asset` varchar(255) NOT NULL, + `asset_slug` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `asset_slug` (`asset_slug`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificatetemplateasset` +-- + +LOCK TABLES `certificates_certificatetemplateasset` WRITE; +/*!40000 ALTER TABLE `certificates_certificatetemplateasset` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_certificatetemplateasset` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_certificatewhitelist` +-- + +DROP TABLE IF EXISTS `certificates_certificatewhitelist`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_certificatewhitelist` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `whitelist` tinyint(1) NOT NULL, + `created` datetime(6) NOT NULL, + `notes` longtext, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `certificates_certifi_user_id_c2ab1b7c_fk_auth_user` (`user_id`), + CONSTRAINT `certificates_certifi_user_id_c2ab1b7c_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_certificatewhitelist` +-- + +LOCK TABLES `certificates_certificatewhitelist` WRITE; +/*!40000 ALTER TABLE `certificates_certificatewhitelist` DISABLE KEYS */; +INSERT INTO `certificates_certificatewhitelist` VALUES (1,'course-v1:edX+DemoX+Demo_Course',1,'2020-04-06 20:50:11.912913',NULL,5),(2,'course-v1:edX+DemoX+Demo_Course',1,'2020-04-06 20:50:20.768200',NULL,6),(3,'course-v1:edX+DemoX+Demo_Course',1,'2020-04-06 20:50:29.708019',NULL,7); +/*!40000 ALTER TABLE `certificates_certificatewhitelist` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_examplecertificate` +-- + +DROP TABLE IF EXISTS `certificates_examplecertificate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_examplecertificate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `description` varchar(255) NOT NULL, + `uuid` varchar(255) NOT NULL, + `access_key` varchar(255) NOT NULL, + `full_name` varchar(255) NOT NULL, + `template` varchar(255) NOT NULL, + `status` varchar(255) NOT NULL, + `error_reason` longtext, + `download_url` varchar(255) DEFAULT NULL, + `example_cert_set_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uuid` (`uuid`), + KEY `certificates_examplecertificate_access_key_8b745a5d` (`access_key`), + KEY `certificates_example_example_cert_set_id_7e660917_fk_certifica` (`example_cert_set_id`), + CONSTRAINT `certificates_example_example_cert_set_id_7e660917_fk_certifica` FOREIGN KEY (`example_cert_set_id`) REFERENCES `certificates_examplecertificateset` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_examplecertificate` +-- + +LOCK TABLES `certificates_examplecertificate` WRITE; +/*!40000 ALTER TABLE `certificates_examplecertificate` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_examplecertificate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_examplecertificateset` +-- + +DROP TABLE IF EXISTS `certificates_examplecertificateset`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_examplecertificateset` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `certificates_examplecertificateset_course_key_16497ee9` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_examplecertificateset` +-- + +LOCK TABLES `certificates_examplecertificateset` WRITE; +/*!40000 ALTER TABLE `certificates_examplecertificateset` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_examplecertificateset` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_generatedcertificate` +-- + +DROP TABLE IF EXISTS `certificates_generatedcertificate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_generatedcertificate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `verify_uuid` varchar(32) NOT NULL, + `download_uuid` varchar(32) NOT NULL, + `download_url` varchar(128) NOT NULL, + `grade` varchar(5) NOT NULL, + `key` varchar(32) NOT NULL, + `distinction` tinyint(1) NOT NULL, + `status` varchar(32) NOT NULL, + `mode` varchar(32) NOT NULL, + `name` varchar(255) NOT NULL, + `created_date` datetime(6) NOT NULL, + `modified_date` datetime(6) NOT NULL, + `error_reason` varchar(512) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `certificates_generatedce_user_id_course_id_fc1bb3ee_uniq` (`user_id`,`course_id`), + KEY `certificates_generatedcertificate_verify_uuid_97405316` (`verify_uuid`), + CONSTRAINT `certificates_generat_user_id_54119d22_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_generatedcertificate` +-- + +LOCK TABLES `certificates_generatedcertificate` WRITE; +/*!40000 ALTER TABLE `certificates_generatedcertificate` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_generatedcertificate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `certificates_historicalgeneratedcertificate` +-- + +DROP TABLE IF EXISTS `certificates_historicalgeneratedcertificate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `certificates_historicalgeneratedcertificate` ( + `id` int(11) NOT NULL, + `course_id` varchar(255) NOT NULL, + `verify_uuid` varchar(32) NOT NULL, + `download_uuid` varchar(32) NOT NULL, + `download_url` varchar(128) NOT NULL, + `grade` varchar(5) NOT NULL, + `key` varchar(32) NOT NULL, + `distinction` tinyint(1) NOT NULL, + `status` varchar(32) NOT NULL, + `mode` varchar(32) NOT NULL, + `name` varchar(255) NOT NULL, + `created_date` datetime(6) NOT NULL, + `modified_date` datetime(6) NOT NULL, + `error_reason` varchar(512) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `certificates_histori_history_user_id_1b53bb5f_fk_auth_user` (`history_user_id`), + KEY `certificates_historicalgeneratedcertificate_id_269c8929` (`id`), + KEY `certificates_historicalgeneratedcertificate_verify_uuid_783d764e` (`verify_uuid`), + KEY `certificates_historicalgeneratedcertificate_user_id_e7970938` (`user_id`), + CONSTRAINT `certificates_histori_history_user_id_1b53bb5f_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `certificates_historicalgeneratedcertificate` +-- + +LOCK TABLES `certificates_historicalgeneratedcertificate` WRITE; +/*!40000 ALTER TABLE `certificates_historicalgeneratedcertificate` DISABLE KEYS */; +/*!40000 ALTER TABLE `certificates_historicalgeneratedcertificate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `commerce_commerceconfiguration` +-- + +DROP TABLE IF EXISTS `commerce_commerceconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `commerce_commerceconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `checkout_on_ecommerce_service` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `cache_ttl` int(10) unsigned NOT NULL, + `receipt_page` varchar(255) NOT NULL, + `enable_automatic_refund_approval` tinyint(1) NOT NULL, + `basket_checkout_page` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user` (`changed_by_id`), + CONSTRAINT `commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `commerce_commerceconfiguration` +-- + +LOCK TABLES `commerce_commerceconfiguration` WRITE; +/*!40000 ALTER TABLE `commerce_commerceconfiguration` DISABLE KEYS */; +INSERT INTO `commerce_commerceconfiguration` VALUES (1,'2020-04-06 20:46:37.899830',1,1,NULL,0,'/checkout/receipt/?order_number=',1,'/basket/add/'),(2,'2020-07-23 17:26:17.702964',1,1,NULL,0,'/checkout/receipt/?order_number=',1,'/basket/add/'); +/*!40000 ALTER TABLE `commerce_commerceconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `completion_blockcompletion` +-- + +DROP TABLE IF EXISTS `completion_blockcompletion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `completion_blockcompletion` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `block_key` varchar(255) NOT NULL, + `block_type` varchar(64) NOT NULL, + `completion` double NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `completion_blockcompleti_course_key_block_key_use_b15bac54_uniq` (`course_key`,`block_key`,`user_id`), + KEY `completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx` (`user_id`,`course_key`,`modified`), + KEY `completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx` (`course_key`,`block_type`,`user_id`), + CONSTRAINT `completion_blockcompletion_user_id_20994c23_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `completion_blockcompletion` +-- + +LOCK TABLES `completion_blockcompletion` WRITE; +/*!40000 ALTER TABLE `completion_blockcompletion` DISABLE KEYS */; +/*!40000 ALTER TABLE `completion_blockcompletion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `consent_datasharingconsent` +-- + +DROP TABLE IF EXISTS `consent_datasharingconsent`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `consent_datasharingconsent` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `username` varchar(255) NOT NULL, + `granted` tinyint(1) DEFAULT NULL, + `course_id` varchar(255) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq` (`enterprise_customer_id`,`username`,`course_id`), + CONSTRAINT `consent_datasharingc_enterprise_customer__f46c6b77_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `consent_datasharingconsent` +-- + +LOCK TABLES `consent_datasharingconsent` WRITE; +/*!40000 ALTER TABLE `consent_datasharingconsent` DISABLE KEYS */; +/*!40000 ALTER TABLE `consent_datasharingconsent` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `consent_datasharingconsenttextoverrides` +-- + +DROP TABLE IF EXISTS `consent_datasharingconsenttextoverrides`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `consent_datasharingconsenttextoverrides` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `page_title` varchar(255) NOT NULL, + `left_sidebar_text` longtext, + `top_paragraph` longtext, + `agreement_text` longtext, + `continue_text` varchar(255) NOT NULL, + `abort_text` varchar(255) NOT NULL, + `policy_dropdown_header` varchar(255) DEFAULT NULL, + `policy_paragraph` longtext, + `confirmation_modal_header` varchar(255) NOT NULL, + `confirmation_modal_text` longtext NOT NULL, + `modal_affirm_decline_text` varchar(255) NOT NULL, + `modal_abort_decline_text` varchar(255) NOT NULL, + `declined_notification_title` longtext NOT NULL, + `declined_notification_message` longtext NOT NULL, + `published` tinyint(1) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `consent_datasharingc_enterprise_customer__b979dfc1_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `consent_datasharingconsenttextoverrides` +-- + +LOCK TABLES `consent_datasharingconsenttextoverrides` WRITE; +/*!40000 ALTER TABLE `consent_datasharingconsenttextoverrides` DISABLE KEYS */; +/*!40000 ALTER TABLE `consent_datasharingconsenttextoverrides` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `consent_historicaldatasharingconsent` +-- + +DROP TABLE IF EXISTS `consent_historicaldatasharingconsent`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `consent_historicaldatasharingconsent` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `username` varchar(255) NOT NULL, + `granted` tinyint(1) DEFAULT NULL, + `course_id` varchar(255) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_customer_id` char(32) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `consent_historicalda_history_user_id_08d7bf89_fk_auth_user` (`history_user_id`), + KEY `consent_historicaldatasharingconsent_id_69bef37e` (`id`), + KEY `consent_historicaldatashari_enterprise_customer_id_35c184bf` (`enterprise_customer_id`), + CONSTRAINT `consent_historicalda_history_user_id_08d7bf89_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `consent_historicaldatasharingconsent` +-- + +LOCK TABLES `consent_historicaldatasharingconsent` WRITE; +/*!40000 ALTER TABLE `consent_historicaldatasharingconsent` DISABLE KEYS */; +/*!40000 ALTER TABLE `consent_historicaldatasharingconsent` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `content_libraries_contentlibrary` +-- + +DROP TABLE IF EXISTS `content_libraries_contentlibrary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `content_libraries_contentlibrary` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `slug` varchar(50) NOT NULL, + `bundle_uuid` char(32) NOT NULL, + `allow_public_learning` tinyint(1) NOT NULL, + `allow_public_read` tinyint(1) NOT NULL, + `org_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `bundle_uuid` (`bundle_uuid`), + UNIQUE KEY `content_libraries_contentlibrary_org_id_slug_2b964108_uniq` (`org_id`,`slug`), + KEY `content_libraries_contentlibrary_slug_30d5507f` (`slug`), + CONSTRAINT `content_libraries_co_org_id_b945a402_fk_organizat` FOREIGN KEY (`org_id`) REFERENCES `organizations_organization` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `content_libraries_contentlibrary` +-- + +LOCK TABLES `content_libraries_contentlibrary` WRITE; +/*!40000 ALTER TABLE `content_libraries_contentlibrary` DISABLE KEYS */; +/*!40000 ALTER TABLE `content_libraries_contentlibrary` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `content_libraries_contentlibrarypermission` +-- + +DROP TABLE IF EXISTS `content_libraries_contentlibrarypermission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `content_libraries_contentlibrarypermission` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `access_level` varchar(30) NOT NULL, + `library_id` int(11) NOT NULL, + `user_id` int(11) DEFAULT NULL, + `group_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `content_libraries_conten_library_id_group_id_3ecc38b9_uniq` (`library_id`,`group_id`), + UNIQUE KEY `content_libraries_conten_library_id_user_id_81babe29_uniq` (`library_id`,`user_id`), + KEY `content_libraries_co_user_id_b071c54d_fk_auth_user` (`user_id`), + KEY `content_libraries_co_group_id_c2a4b6a1_fk_auth_grou` (`group_id`), + CONSTRAINT `content_libraries_co_group_id_c2a4b6a1_fk_auth_grou` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`), + CONSTRAINT `content_libraries_co_library_id_51247096_fk_content_l` FOREIGN KEY (`library_id`) REFERENCES `content_libraries_contentlibrary` (`id`), + CONSTRAINT `content_libraries_co_user_id_b071c54d_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `content_libraries_contentlibrarypermission` +-- + +LOCK TABLES `content_libraries_contentlibrarypermission` WRITE; +/*!40000 ALTER TABLE `content_libraries_contentlibrarypermission` DISABLE KEYS */; +/*!40000 ALTER TABLE `content_libraries_contentlibrarypermission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `content_type_gating_contenttypegatingconfig` +-- + +DROP TABLE IF EXISTS `content_type_gating_contenttypegatingconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `content_type_gating_contenttypegatingconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) DEFAULT NULL, + `org` varchar(255) DEFAULT NULL, + `enabled_as_of` datetime(6) DEFAULT NULL, + `studio_override_enabled` tinyint(1) DEFAULT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `course_id` varchar(255) DEFAULT NULL, + `site_id` int(11) DEFAULT NULL, + `org_course` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `content_type_gating__changed_by_id_e1754c4b_fk_auth_user` (`changed_by_id`), + KEY `content_type_gating_contenttypegatingconfig_org_043e72a9` (`org`), + KEY `content_typ_site_id_e91576_idx` (`site_id`,`org`,`course_id`), + KEY `content_type_gating__course_id_f19cc50d_fk_course_ov` (`course_id`), + KEY `content_typ_site_id_650310_idx` (`site_id`,`org`,`org_course`,`course_id`), + KEY `content_type_gating_contenttypegatingconfig_org_course_70742f9e` (`org_course`), + CONSTRAINT `content_type_gating__changed_by_id_e1754c4b_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `content_type_gating__course_id_f19cc50d_fk_course_ov` FOREIGN KEY (`course_id`) REFERENCES `course_overviews_courseoverview` (`id`), + CONSTRAINT `content_type_gating__site_id_c9f3bc6a_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `content_type_gating_contenttypegatingconfig` +-- + +LOCK TABLES `content_type_gating_contenttypegatingconfig` WRITE; +/*!40000 ALTER TABLE `content_type_gating_contenttypegatingconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `content_type_gating_contenttypegatingconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `contentserver_cdnuseragentsconfig` +-- + +DROP TABLE IF EXISTS `contentserver_cdnuseragentsconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `contentserver_cdnuseragentsconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `cdn_user_agents` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user` (`changed_by_id`), + CONSTRAINT `contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `contentserver_cdnuseragentsconfig` +-- + +LOCK TABLES `contentserver_cdnuseragentsconfig` WRITE; +/*!40000 ALTER TABLE `contentserver_cdnuseragentsconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `contentserver_cdnuseragentsconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `contentserver_courseassetcachettlconfig` +-- + +DROP TABLE IF EXISTS `contentserver_courseassetcachettlconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `contentserver_courseassetcachettlconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `cache_ttl` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `contentserver_course_changed_by_id_a9213047_fk_auth_user` (`changed_by_id`), + CONSTRAINT `contentserver_course_changed_by_id_a9213047_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `contentserver_courseassetcachettlconfig` +-- + +LOCK TABLES `contentserver_courseassetcachettlconfig` WRITE; +/*!40000 ALTER TABLE `contentserver_courseassetcachettlconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `contentserver_courseassetcachettlconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `contentstore_videouploadconfig` +-- + +DROP TABLE IF EXISTS `contentstore_videouploadconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `contentstore_videouploadconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `profile_whitelist` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user` (`changed_by_id`), + CONSTRAINT `contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `contentstore_videouploadconfig` +-- + +LOCK TABLES `contentstore_videouploadconfig` WRITE; +/*!40000 ALTER TABLE `contentstore_videouploadconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `contentstore_videouploadconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cornerstone_cornerstoneenterprisecustomerconfiguration` +-- + +DROP TABLE IF EXISTS `cornerstone_cornerstoneenterprisecustomerconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cornerstone_cornerstoneenterprisecustomerconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `transmission_chunk_size` int(11) NOT NULL, + `cornerstone_base_url` varchar(255) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `channel_worker_username` varchar(255) DEFAULT NULL, + `catalogs_to_transmit` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `cornerstone_cornerst_enterprise_customer__5b56887b_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cornerstone_cornerstoneenterprisecustomerconfiguration` +-- + +LOCK TABLES `cornerstone_cornerstoneenterprisecustomerconfiguration` WRITE; +/*!40000 ALTER TABLE `cornerstone_cornerstoneenterprisecustomerconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `cornerstone_cornerstoneenterprisecustomerconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cornerstone_cornerstoneglobalconfiguration` +-- + +DROP TABLE IF EXISTS `cornerstone_cornerstoneglobalconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cornerstone_cornerstoneglobalconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `completion_status_api_path` varchar(255) NOT NULL, + `oauth_api_path` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `subject_mapping` longtext NOT NULL, + `key` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `languages` longtext NOT NULL, + PRIMARY KEY (`id`), + KEY `cornerstone_cornerst_changed_by_id_117db502_fk_auth_user` (`changed_by_id`), + CONSTRAINT `cornerstone_cornerst_changed_by_id_117db502_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cornerstone_cornerstoneglobalconfiguration` +-- + +LOCK TABLES `cornerstone_cornerstoneglobalconfiguration` WRITE; +/*!40000 ALTER TABLE `cornerstone_cornerstoneglobalconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `cornerstone_cornerstoneglobalconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cornerstone_cornerstonelearnerdatatransmissionaudit` +-- + +DROP TABLE IF EXISTS `cornerstone_cornerstonelearnerdatatransmissionaudit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cornerstone_cornerstonelearnerdatatransmissionaudit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `user_guid` varchar(255) NOT NULL, + `enterprise_course_enrollment_id` int(10) unsigned DEFAULT NULL, + `course_id` varchar(255) NOT NULL, + `session_token` varchar(255) NOT NULL, + `callback_url` varchar(255) NOT NULL, + `subdomain` varchar(255) NOT NULL, + `course_completed` tinyint(1) NOT NULL, + `completed_timestamp` datetime(6) DEFAULT NULL, + `status` varchar(100) DEFAULT NULL, + `error_message` longtext, + `user_id` int(11) NOT NULL, + `grade` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `cornerstone_cornerstonel_user_id_course_id_c975cc5f_uniq` (`user_id`,`course_id`), + KEY `cornerstone_cornerstonelear_enterprise_course_enrollmen_e3b05dac` (`enterprise_course_enrollment_id`), + CONSTRAINT `cornerstone_cornerst_user_id_43bd15bf_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cornerstone_cornerstonelearnerdatatransmissionaudit` +-- + +LOCK TABLES `cornerstone_cornerstonelearnerdatatransmissionaudit` WRITE; +/*!40000 ALTER TABLE `cornerstone_cornerstonelearnerdatatransmissionaudit` DISABLE KEYS */; +/*!40000 ALTER TABLE `cornerstone_cornerstonelearnerdatatransmissionaudit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cornerstone_historicalcornerstoneenterprisecustomerconfiguration` +-- + +DROP TABLE IF EXISTS `cornerstone_historicalcornerstoneenterprisecustomerconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cornerstone_historicalcornerstoneenterprisecustomerconfiguration` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `transmission_chunk_size` int(11) NOT NULL, + `cornerstone_base_url` varchar(255) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_customer_id` char(32) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `channel_worker_username` varchar(255) DEFAULT NULL, + `catalogs_to_transmit` longtext, + PRIMARY KEY (`history_id`), + KEY `cornerstone_historic_history_user_id_1ded83c5_fk_auth_user` (`history_user_id`), + KEY `cornerstone_historicalcorne_id_513efd93` (`id`), + KEY `cornerstone_historicalcorne_enterprise_customer_id_7f1c53b1` (`enterprise_customer_id`), + CONSTRAINT `cornerstone_historic_history_user_id_1ded83c5_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cornerstone_historicalcornerstoneenterprisecustomerconfiguration` +-- + +LOCK TABLES `cornerstone_historicalcornerstoneenterprisecustomerconfiguration` WRITE; +/*!40000 ALTER TABLE `cornerstone_historicalcornerstoneenterprisecustomerconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `cornerstone_historicalcornerstoneenterprisecustomerconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cors_csrf_xdomainproxyconfiguration` +-- + +DROP TABLE IF EXISTS `cors_csrf_xdomainproxyconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cors_csrf_xdomainproxyconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `whitelist` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user` (`changed_by_id`), + CONSTRAINT `cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cors_csrf_xdomainproxyconfiguration` +-- + +LOCK TABLES `cors_csrf_xdomainproxyconfiguration` WRITE; +/*!40000 ALTER TABLE `cors_csrf_xdomainproxyconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `cors_csrf_xdomainproxyconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_action_state_coursererunstate` +-- + +DROP TABLE IF EXISTS `course_action_state_coursererunstate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_action_state_coursererunstate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created_time` datetime(6) NOT NULL, + `updated_time` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `action` varchar(100) NOT NULL, + `state` varchar(50) NOT NULL, + `should_display` tinyint(1) NOT NULL, + `message` varchar(1000) NOT NULL, + `source_course_key` varchar(255) NOT NULL, + `display_name` varchar(255) NOT NULL, + `created_user_id` int(11) DEFAULT NULL, + `updated_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_action_state_cour_course_key_action_2a8434fb_uniq` (`course_key`,`action`), + KEY `course_action_state__created_user_id_5373c218_fk_auth_user` (`created_user_id`), + KEY `course_action_state__updated_user_id_3689fe4b_fk_auth_user` (`updated_user_id`), + KEY `course_action_state_coursererunstate_course_key_f87bef79` (`course_key`), + KEY `course_action_state_coursererunstate_action_149773f1` (`action`), + KEY `course_action_state_coursererunstate_source_course_key_b5037317` (`source_course_key`), + CONSTRAINT `course_action_state__created_user_id_5373c218_fk_auth_user` FOREIGN KEY (`created_user_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `course_action_state__updated_user_id_3689fe4b_fk_auth_user` FOREIGN KEY (`updated_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_action_state_coursererunstate` +-- + +LOCK TABLES `course_action_state_coursererunstate` WRITE; +/*!40000 ALTER TABLE `course_action_state_coursererunstate` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_action_state_coursererunstate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_creators_coursecreator` +-- + +DROP TABLE IF EXISTS `course_creators_coursecreator`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_creators_coursecreator` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `state_changed` datetime(6) NOT NULL, + `state` varchar(24) NOT NULL, + `note` varchar(512) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + CONSTRAINT `course_creators_coursecreator_user_id_e4da548d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_creators_coursecreator` +-- + +LOCK TABLES `course_creators_coursecreator` WRITE; +/*!40000 ALTER TABLE `course_creators_coursecreator` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_creators_coursecreator` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_date_signals_selfpacedrelativedatesconfig` +-- + +DROP TABLE IF EXISTS `course_date_signals_selfpacedrelativedatesconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_date_signals_selfpacedrelativedatesconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) DEFAULT NULL, + `org` varchar(255) DEFAULT NULL, + `org_course` varchar(255) DEFAULT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `course_id` varchar(255) DEFAULT NULL, + `site_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `course_date_site_id_a44836_idx` (`site_id`,`org`,`course_id`), + KEY `course_date_site_id_c0164a_idx` (`site_id`,`org`,`org_course`,`course_id`), + KEY `course_date_signals__changed_by_id_5f8228f2_fk_auth_user` (`changed_by_id`), + KEY `course_date_signals__course_id_361d8ca8_fk_course_ov` (`course_id`), + KEY `course_date_signals_selfpacedrelativedatesconfig_org_9c13e820` (`org`), + KEY `course_date_signals_selfpac_org_course_b7041c4f` (`org_course`), + CONSTRAINT `course_date_signals__changed_by_id_5f8228f2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `course_date_signals__course_id_361d8ca8_fk_course_ov` FOREIGN KEY (`course_id`) REFERENCES `course_overviews_courseoverview` (`id`), + CONSTRAINT `course_date_signals__site_id_29483878_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_date_signals_selfpacedrelativedatesconfig` +-- + +LOCK TABLES `course_date_signals_selfpacedrelativedatesconfig` WRITE; +/*!40000 ALTER TABLE `course_date_signals_selfpacedrelativedatesconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_date_signals_selfpacedrelativedatesconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_duration_limits_coursedurationlimitconfig` +-- + +DROP TABLE IF EXISTS `course_duration_limits_coursedurationlimitconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_duration_limits_coursedurationlimitconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) DEFAULT NULL, + `org` varchar(255) DEFAULT NULL, + `enabled_as_of` datetime(6) DEFAULT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `course_id` varchar(255) DEFAULT NULL, + `site_id` int(11) DEFAULT NULL, + `org_course` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `course_duration_limi_changed_by_id_f320fd76_fk_auth_user` (`changed_by_id`), + KEY `course_duration_limits_coursedurationlimitconfig_org_c2cc0091` (`org`), + KEY `course_dura_site_id_424016_idx` (`site_id`,`org`,`course_id`), + KEY `course_duration_limi_course_id_97b7a8e9_fk_course_ov` (`course_id`), + KEY `course_dura_site_id_b5bbcd_idx` (`site_id`,`org`,`org_course`,`course_id`), + KEY `course_duration_limits_cour_org_course_bcd05764` (`org_course`), + CONSTRAINT `course_duration_limi_changed_by_id_f320fd76_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `course_duration_limi_course_id_97b7a8e9_fk_course_ov` FOREIGN KEY (`course_id`) REFERENCES `course_overviews_courseoverview` (`id`), + CONSTRAINT `course_duration_limi_site_id_cb492296_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_duration_limits_coursedurationlimitconfig` +-- + +LOCK TABLES `course_duration_limits_coursedurationlimitconfig` WRITE; +/*!40000 ALTER TABLE `course_duration_limits_coursedurationlimitconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_duration_limits_coursedurationlimitconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_goals_coursegoal` +-- + +DROP TABLE IF EXISTS `course_goals_coursegoal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_goals_coursegoal` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `goal_key` varchar(100) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_goals_coursegoal_user_id_course_key_052bc0d3_uniq` (`user_id`,`course_key`), + KEY `course_goals_coursegoal_course_key_5585ca51` (`course_key`), + CONSTRAINT `course_goals_coursegoal_user_id_0a07e3db_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_goals_coursegoal` +-- + +LOCK TABLES `course_goals_coursegoal` WRITE; +/*!40000 ALTER TABLE `course_goals_coursegoal` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_goals_coursegoal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_cohortmembership` +-- + +DROP TABLE IF EXISTS `course_groups_cohortmembership`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_cohortmembership` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `course_user_group_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_groups_cohortmembership_user_id_course_id_c247eb7f_uniq` (`user_id`,`course_id`), + KEY `course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr` (`course_user_group_id`), + CONSTRAINT `course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`), + CONSTRAINT `course_groups_cohortmembership_user_id_aae5b8e7_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_cohortmembership` +-- + +LOCK TABLES `course_groups_cohortmembership` WRITE; +/*!40000 ALTER TABLE `course_groups_cohortmembership` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_cohortmembership` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_coursecohort` +-- + +DROP TABLE IF EXISTS `course_groups_coursecohort`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_coursecohort` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `assignment_type` varchar(20) NOT NULL, + `course_user_group_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_user_group_id` (`course_user_group_id`), + CONSTRAINT `course_groups_course_course_user_group_id_ec5703ee_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_coursecohort` +-- + +LOCK TABLES `course_groups_coursecohort` WRITE; +/*!40000 ALTER TABLE `course_groups_coursecohort` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_coursecohort` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_coursecohortssettings` +-- + +DROP TABLE IF EXISTS `course_groups_coursecohortssettings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_coursecohortssettings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `is_cohorted` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `cohorted_discussions` longtext, + `always_cohort_inline_discussions` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_coursecohortssettings` +-- + +LOCK TABLES `course_groups_coursecohortssettings` WRITE; +/*!40000 ALTER TABLE `course_groups_coursecohortssettings` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_coursecohortssettings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_courseusergroup` +-- + +DROP TABLE IF EXISTS `course_groups_courseusergroup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_courseusergroup` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `group_type` varchar(20) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_groups_courseusergroup_name_course_id_b767231d_uniq` (`name`,`course_id`), + KEY `course_groups_courseusergroup_course_id_902aea4c` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_courseusergroup` +-- + +LOCK TABLES `course_groups_courseusergroup` WRITE; +/*!40000 ALTER TABLE `course_groups_courseusergroup` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_courseusergroup` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_courseusergroup_users` +-- + +DROP TABLE IF EXISTS `course_groups_courseusergroup_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_courseusergroup_users` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `courseusergroup_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_groups_courseuser_courseusergroup_id_user__694e8c30_uniq` (`courseusergroup_id`,`user_id`), + KEY `course_groups_course_user_id_28aff981_fk_auth_user` (`user_id`), + CONSTRAINT `course_groups_course_courseusergroup_id_26a7966f_fk_course_gr` FOREIGN KEY (`courseusergroup_id`) REFERENCES `course_groups_courseusergroup` (`id`), + CONSTRAINT `course_groups_course_user_id_28aff981_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_courseusergroup_users` +-- + +LOCK TABLES `course_groups_courseusergroup_users` WRITE; +/*!40000 ALTER TABLE `course_groups_courseusergroup_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_courseusergroup_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_courseusergrouppartitiongroup` +-- + +DROP TABLE IF EXISTS `course_groups_courseusergrouppartitiongroup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_courseusergrouppartitiongroup` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `partition_id` int(11) NOT NULL, + `group_id` int(11) NOT NULL, + `created_at` datetime(6) NOT NULL, + `updated_at` datetime(6) NOT NULL, + `course_user_group_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_user_group_id` (`course_user_group_id`), + CONSTRAINT `course_groups_course_course_user_group_id_6032d512_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_courseusergrouppartitiongroup` +-- + +LOCK TABLES `course_groups_courseusergrouppartitiongroup` WRITE; +/*!40000 ALTER TABLE `course_groups_courseusergrouppartitiongroup` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_courseusergrouppartitiongroup` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_groups_unregisteredlearnercohortassignments` +-- + +DROP TABLE IF EXISTS `course_groups_unregisteredlearnercohortassignments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_groups_unregisteredlearnercohortassignments` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `email` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_user_group_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_groups_unregister_course_id_email_81a9d1db_uniq` (`course_id`,`email`), + KEY `course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr` (`course_user_group_id`), + KEY `course_groups_unregisteredl_email_05d0e40e` (`email`), + CONSTRAINT `course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr` FOREIGN KEY (`course_user_group_id`) REFERENCES `course_groups_courseusergroup` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_groups_unregisteredlearnercohortassignments` +-- + +LOCK TABLES `course_groups_unregisteredlearnercohortassignments` WRITE; +/*!40000 ALTER TABLE `course_groups_unregisteredlearnercohortassignments` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_groups_unregisteredlearnercohortassignments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_modes_coursemode` +-- + +DROP TABLE IF EXISTS `course_modes_coursemode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_modes_coursemode` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `mode_slug` varchar(100) NOT NULL, + `mode_display_name` varchar(255) NOT NULL, + `min_price` int(11) NOT NULL, + `currency` varchar(8) NOT NULL, + `expiration_datetime` datetime(6) DEFAULT NULL, + `expiration_date` date DEFAULT NULL, + `suggested_prices` varchar(255) NOT NULL, + `description` longtext, + `sku` varchar(255) DEFAULT NULL, + `expiration_datetime_is_explicit` tinyint(1) NOT NULL, + `bulk_sku` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq` (`course_id`,`mode_slug`,`currency`), + KEY `course_modes_coursemode_course_id_3daf3b9d` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_modes_coursemode` +-- + +LOCK TABLES `course_modes_coursemode` WRITE; +/*!40000 ALTER TABLE `course_modes_coursemode` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_modes_coursemode` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_modes_coursemodeexpirationconfig` +-- + +DROP TABLE IF EXISTS `course_modes_coursemodeexpirationconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_modes_coursemodeexpirationconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `verification_window` bigint(20) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `course_modes_coursem_changed_by_id_208463ee_fk_auth_user` (`changed_by_id`), + CONSTRAINT `course_modes_coursem_changed_by_id_208463ee_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_modes_coursemodeexpirationconfig` +-- + +LOCK TABLES `course_modes_coursemodeexpirationconfig` WRITE; +/*!40000 ALTER TABLE `course_modes_coursemodeexpirationconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_modes_coursemodeexpirationconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_modes_coursemodesarchive` +-- + +DROP TABLE IF EXISTS `course_modes_coursemodesarchive`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_modes_coursemodesarchive` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `mode_slug` varchar(100) NOT NULL, + `mode_display_name` varchar(255) NOT NULL, + `min_price` int(11) NOT NULL, + `suggested_prices` varchar(255) NOT NULL, + `currency` varchar(8) NOT NULL, + `expiration_date` date DEFAULT NULL, + `expiration_datetime` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `course_modes_coursemodesarchive_course_id_f67bbd35` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_modes_coursemodesarchive` +-- + +LOCK TABLES `course_modes_coursemodesarchive` WRITE; +/*!40000 ALTER TABLE `course_modes_coursemodesarchive` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_modes_coursemodesarchive` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_modes_historicalcoursemode` +-- + +DROP TABLE IF EXISTS `course_modes_historicalcoursemode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_modes_historicalcoursemode` ( + `id` int(11) NOT NULL, + `mode_slug` varchar(100) NOT NULL, + `mode_display_name` varchar(255) NOT NULL, + `min_price` int(11) NOT NULL, + `currency` varchar(8) NOT NULL, + `expiration_datetime` datetime(6) DEFAULT NULL, + `expiration_datetime_is_explicit` tinyint(1) NOT NULL, + `expiration_date` date DEFAULT NULL, + `suggested_prices` varchar(255) NOT NULL, + `description` longtext, + `sku` varchar(255) DEFAULT NULL, + `bulk_sku` varchar(255) DEFAULT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `course_id` varchar(255) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `course_modes_histori_history_user_id_d92d6b6e_fk_auth_user` (`history_user_id`), + KEY `course_modes_historicalcoursemode_id_14918a77` (`id`), + KEY `course_modes_historicalcoursemode_course_id_e8de13cd` (`course_id`), + CONSTRAINT `course_modes_histori_history_user_id_d92d6b6e_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_modes_historicalcoursemode` +-- + +LOCK TABLES `course_modes_historicalcoursemode` WRITE; +/*!40000 ALTER TABLE `course_modes_historicalcoursemode` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_modes_historicalcoursemode` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_overviews_courseoverview` +-- + +DROP TABLE IF EXISTS `course_overviews_courseoverview`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_overviews_courseoverview` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `version` int(11) NOT NULL, + `id` varchar(255) NOT NULL, + `_location` varchar(255) NOT NULL, + `display_name` longtext, + `display_number_with_default` longtext NOT NULL, + `display_org_with_default` longtext NOT NULL, + `start` datetime(6) DEFAULT NULL, + `end` datetime(6) DEFAULT NULL, + `advertised_start` longtext, + `course_image_url` longtext NOT NULL, + `social_sharing_url` longtext, + `end_of_course_survey_url` longtext, + `certificates_display_behavior` longtext, + `certificates_show_before_end` tinyint(1) NOT NULL, + `cert_html_view_enabled` tinyint(1) NOT NULL, + `has_any_active_web_certificate` tinyint(1) NOT NULL, + `cert_name_short` longtext NOT NULL, + `cert_name_long` longtext NOT NULL, + `lowest_passing_grade` decimal(5,2) DEFAULT NULL, + `days_early_for_beta` double DEFAULT NULL, + `mobile_available` tinyint(1) NOT NULL, + `visible_to_staff_only` tinyint(1) NOT NULL, + `_pre_requisite_courses_json` longtext NOT NULL, + `enrollment_start` datetime(6) DEFAULT NULL, + `enrollment_end` datetime(6) DEFAULT NULL, + `enrollment_domain` longtext, + `invitation_only` tinyint(1) NOT NULL, + `max_student_enrollments_allowed` int(11) DEFAULT NULL, + `announcement` datetime(6) DEFAULT NULL, + `catalog_visibility` longtext, + `course_video_url` longtext, + `effort` longtext, + `short_description` longtext, + `org` longtext NOT NULL, + `self_paced` tinyint(1) NOT NULL, + `marketing_url` longtext, + `eligible_for_financial_aid` tinyint(1) NOT NULL, + `language` longtext, + `certificate_available_date` datetime(6) DEFAULT NULL, + `end_date` datetime(6) DEFAULT NULL, + `start_date` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_overviews_courseoverview` +-- + +LOCK TABLES `course_overviews_courseoverview` WRITE; +/*!40000 ALTER TABLE `course_overviews_courseoverview` DISABLE KEYS */; +INSERT INTO `course_overviews_courseoverview` VALUES ('2020-04-06 20:48:22.651117','2020-07-23 17:27:49.036640',11,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','Demonstration Course','DemoX','edX','2013-02-05 05:00:00.000000',NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',0.60,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,NULL,'both',NULL,NULL,NULL,'edX',0,NULL,1,NULL,NULL,NULL,'2013-02-05 05:00:00.000000'); +/*!40000 ALTER TABLE `course_overviews_courseoverview` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_overviews_courseoverviewimageconfig` +-- + +DROP TABLE IF EXISTS `course_overviews_courseoverviewimageconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_overviews_courseoverviewimageconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `small_width` int(11) NOT NULL, + `small_height` int(11) NOT NULL, + `large_width` int(11) NOT NULL, + `large_height` int(11) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user` (`changed_by_id`), + CONSTRAINT `course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_overviews_courseoverviewimageconfig` +-- + +LOCK TABLES `course_overviews_courseoverviewimageconfig` WRITE; +/*!40000 ALTER TABLE `course_overviews_courseoverviewimageconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_overviews_courseoverviewimageconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_overviews_courseoverviewimageset` +-- + +DROP TABLE IF EXISTS `course_overviews_courseoverviewimageset`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_overviews_courseoverviewimageset` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `small_url` longtext NOT NULL, + `large_url` longtext NOT NULL, + `course_overview_id` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_overview_id` (`course_overview_id`), + CONSTRAINT `course_overviews_cou_course_overview_id_ef7aa548_fk_course_ov` FOREIGN KEY (`course_overview_id`) REFERENCES `course_overviews_courseoverview` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_overviews_courseoverviewimageset` +-- + +LOCK TABLES `course_overviews_courseoverviewimageset` WRITE; +/*!40000 ALTER TABLE `course_overviews_courseoverviewimageset` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_overviews_courseoverviewimageset` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_overviews_courseoverviewtab` +-- + +DROP TABLE IF EXISTS `course_overviews_courseoverviewtab`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_overviews_courseoverviewtab` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `tab_id` varchar(50) NOT NULL, + `course_overview_id` varchar(255) NOT NULL, + `course_staff_only` tinyint(1) NOT NULL, + `name` longtext, + `type` varchar(50) DEFAULT NULL, + `url_slug` longtext, + `link` longtext, + `is_hidden` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + KEY `course_overviews_cou_course_overview_id_71fa6321_fk_course_ov` (`course_overview_id`), + CONSTRAINT `course_overviews_cou_course_overview_id_71fa6321_fk_course_ov` FOREIGN KEY (`course_overview_id`) REFERENCES `course_overviews_courseoverview` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_overviews_courseoverviewtab` +-- + +LOCK TABLES `course_overviews_courseoverviewtab` WRITE; +/*!40000 ALTER TABLE `course_overviews_courseoverviewtab` DISABLE KEYS */; +INSERT INTO `course_overviews_courseoverviewtab` VALUES (32,'info','course-v1:edX+DemoX+Demo_Course',0,'Home','course_info',NULL,NULL,0),(33,'courseware','course-v1:edX+DemoX+Demo_Course',0,'Course','courseware',NULL,NULL,0),(34,'discussion','course-v1:edX+DemoX+Demo_Course',0,'Discussion','discussion','tab/discussion',NULL,0),(35,'wiki','course-v1:edX+DemoX+Demo_Course',0,'Wiki','wiki',NULL,NULL,0),(36,'textbooks','course-v1:edX+DemoX+Demo_Course',0,'Textbooks','textbooks',NULL,NULL,0),(37,'progress','course-v1:edX+DemoX+Demo_Course',0,'Progress','progress',NULL,NULL,0); +/*!40000 ALTER TABLE `course_overviews_courseoverviewtab` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_overviews_historicalcourseoverview` +-- + +DROP TABLE IF EXISTS `course_overviews_historicalcourseoverview`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_overviews_historicalcourseoverview` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `version` int(11) NOT NULL, + `id` varchar(255) NOT NULL, + `_location` varchar(255) NOT NULL, + `org` longtext NOT NULL, + `display_name` longtext, + `display_number_with_default` longtext NOT NULL, + `display_org_with_default` longtext NOT NULL, + `start` datetime(6) DEFAULT NULL, + `end` datetime(6) DEFAULT NULL, + `advertised_start` longtext, + `announcement` datetime(6) DEFAULT NULL, + `course_image_url` longtext NOT NULL, + `social_sharing_url` longtext, + `end_of_course_survey_url` longtext, + `certificates_display_behavior` longtext, + `certificates_show_before_end` tinyint(1) NOT NULL, + `cert_html_view_enabled` tinyint(1) NOT NULL, + `has_any_active_web_certificate` tinyint(1) NOT NULL, + `cert_name_short` longtext NOT NULL, + `cert_name_long` longtext NOT NULL, + `certificate_available_date` datetime(6) DEFAULT NULL, + `lowest_passing_grade` decimal(5,2) DEFAULT NULL, + `days_early_for_beta` double DEFAULT NULL, + `mobile_available` tinyint(1) NOT NULL, + `visible_to_staff_only` tinyint(1) NOT NULL, + `_pre_requisite_courses_json` longtext NOT NULL, + `enrollment_start` datetime(6) DEFAULT NULL, + `enrollment_end` datetime(6) DEFAULT NULL, + `enrollment_domain` longtext, + `invitation_only` tinyint(1) NOT NULL, + `max_student_enrollments_allowed` int(11) DEFAULT NULL, + `catalog_visibility` longtext, + `short_description` longtext, + `course_video_url` longtext, + `effort` longtext, + `self_paced` tinyint(1) NOT NULL, + `marketing_url` longtext, + `eligible_for_financial_aid` tinyint(1) NOT NULL, + `language` longtext, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `end_date` datetime(6) DEFAULT NULL, + `start_date` datetime(6) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `course_overviews_his_history_user_id_e21063d9_fk_auth_user` (`history_user_id`), + KEY `course_overviews_historicalcourseoverview_id_647043f0` (`id`), + CONSTRAINT `course_overviews_his_history_user_id_e21063d9_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_overviews_historicalcourseoverview` +-- + +LOCK TABLES `course_overviews_historicalcourseoverview` WRITE; +/*!40000 ALTER TABLE `course_overviews_historicalcourseoverview` DISABLE KEYS */; +INSERT INTO `course_overviews_historicalcourseoverview` VALUES ('2020-04-06 20:48:22.651117','2020-04-06 20:48:22.651117',9,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','edX','Empty','DemoX','edX','2030-01-01 00:00:00.000000',NULL,NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',NULL,0.50,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,'both',NULL,NULL,NULL,0,NULL,1,NULL,1,'2020-04-06 20:48:22.676151',NULL,'+',NULL,NULL,NULL),('2020-04-06 20:48:22.651117','2020-04-06 20:48:22.651117',9,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','edX','Demonstration Course','DemoX','edX','2013-02-05 05:00:00.000000',NULL,NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',NULL,0.60,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,'both',NULL,NULL,NULL,0,NULL,1,NULL,2,'2020-04-06 20:48:31.635730',NULL,'~',NULL,NULL,NULL),('2020-04-06 20:48:22.651117','2020-04-06 20:48:22.651117',9,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','edX','Demonstration Course','DemoX','edX','2013-02-05 05:00:00.000000',NULL,NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',NULL,0.60,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,'both',NULL,NULL,NULL,0,NULL,1,NULL,3,'2020-04-06 20:48:43.067200',NULL,'~',NULL,NULL,NULL),('2020-04-06 20:48:22.651117','2020-07-23 17:27:37.520305',11,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','edX','Empty','DemoX','edX','2030-01-01 00:00:00.000000',NULL,NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',NULL,0.50,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,'both',NULL,NULL,NULL,0,NULL,1,NULL,4,'2020-07-23 17:27:37.522698',NULL,'~',NULL,NULL,'2030-01-01 00:00:00.000000'),('2020-04-06 20:48:22.651117','2020-07-23 17:27:46.935920',11,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','edX','Demonstration Course','DemoX','edX','2013-02-05 05:00:00.000000',NULL,NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',NULL,0.60,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,'both',NULL,NULL,NULL,0,NULL,1,NULL,5,'2020-07-23 17:27:46.938463',NULL,'~',NULL,NULL,'2013-02-05 05:00:00.000000'),('2020-04-06 20:48:22.651117','2020-07-23 17:27:49.036640',11,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course','edX','Demonstration Course','DemoX','edX','2013-02-05 05:00:00.000000',NULL,NULL,NULL,'/asset-v1:edX+DemoX+Demo_Course+type@asset+block@images_course_image.jpg',NULL,NULL,'end',0,1,0,'','',NULL,0.60,NULL,0,0,'[]',NULL,NULL,NULL,0,NULL,'both',NULL,NULL,NULL,0,NULL,1,NULL,6,'2020-07-23 17:27:49.038267',NULL,'~',NULL,NULL,'2013-02-05 05:00:00.000000'); +/*!40000 ALTER TABLE `course_overviews_historicalcourseoverview` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `course_overviews_simulatecoursepublishconfig` +-- + +DROP TABLE IF EXISTS `course_overviews_simulatecoursepublishconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `course_overviews_simulatecoursepublishconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `arguments` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `course_overviews_sim_changed_by_id_3413c118_fk_auth_user` (`changed_by_id`), + CONSTRAINT `course_overviews_sim_changed_by_id_3413c118_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `course_overviews_simulatecoursepublishconfig` +-- + +LOCK TABLES `course_overviews_simulatecoursepublishconfig` WRITE; +/*!40000 ALTER TABLE `course_overviews_simulatecoursepublishconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `course_overviews_simulatecoursepublishconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_coursedynamicupgradedeadlineconfiguration` +-- + +DROP TABLE IF EXISTS `courseware_coursedynamicupgradedeadlineconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_coursedynamicupgradedeadlineconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `deadline_days` smallint(5) unsigned NOT NULL, + `opt_out` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user` (`changed_by_id`), + KEY `courseware_coursedynamicupg_course_id_60b88041` (`course_id`), + CONSTRAINT `courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_coursedynamicupgradedeadlineconfiguration` +-- + +LOCK TABLES `courseware_coursedynamicupgradedeadlineconfiguration` WRITE; +/*!40000 ALTER TABLE `courseware_coursedynamicupgradedeadlineconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_coursedynamicupgradedeadlineconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_dynamicupgradedeadlineconfiguration` +-- + +DROP TABLE IF EXISTS `courseware_dynamicupgradedeadlineconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_dynamicupgradedeadlineconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `deadline_days` smallint(5) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user` (`changed_by_id`), + CONSTRAINT `courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_dynamicupgradedeadlineconfiguration` +-- + +LOCK TABLES `courseware_dynamicupgradedeadlineconfiguration` WRITE; +/*!40000 ALTER TABLE `courseware_dynamicupgradedeadlineconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_dynamicupgradedeadlineconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_offlinecomputedgrade` +-- + +DROP TABLE IF EXISTS `courseware_offlinecomputedgrade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_offlinecomputedgrade` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `created` datetime(6) DEFAULT NULL, + `updated` datetime(6) NOT NULL, + `gradeset` longtext, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `courseware_offlinecomputedgrade_user_id_course_id_18dfd343_uniq` (`user_id`,`course_id`), + KEY `courseware_offlinecomputedgrade_course_id_03e21ba7` (`course_id`), + KEY `courseware_offlinecomputedgrade_created_b5bca47f` (`created`), + KEY `courseware_offlinecomputedgrade_updated_6f3faff6` (`updated`), + CONSTRAINT `courseware_offlinecomputedgrade_user_id_14864cea_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_offlinecomputedgrade` +-- + +LOCK TABLES `courseware_offlinecomputedgrade` WRITE; +/*!40000 ALTER TABLE `courseware_offlinecomputedgrade` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_offlinecomputedgrade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_offlinecomputedgradelog` +-- + +DROP TABLE IF EXISTS `courseware_offlinecomputedgradelog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_offlinecomputedgradelog` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `created` datetime(6) DEFAULT NULL, + `seconds` int(11) NOT NULL, + `nstudents` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `courseware_offlinecomputedgradelog_course_id_1014e127` (`course_id`), + KEY `courseware_offlinecomputedgradelog_created_33076a1a` (`created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_offlinecomputedgradelog` +-- + +LOCK TABLES `courseware_offlinecomputedgradelog` WRITE; +/*!40000 ALTER TABLE `courseware_offlinecomputedgradelog` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_offlinecomputedgradelog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_orgdynamicupgradedeadlineconfiguration` +-- + +DROP TABLE IF EXISTS `courseware_orgdynamicupgradedeadlineconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_orgdynamicupgradedeadlineconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `org_id` varchar(255) NOT NULL, + `deadline_days` smallint(5) unsigned NOT NULL, + `opt_out` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user` (`changed_by_id`), + KEY `courseware_orgdynamicupgrad_org_id_85d3cbe4` (`org_id`), + CONSTRAINT `courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_orgdynamicupgradedeadlineconfiguration` +-- + +LOCK TABLES `courseware_orgdynamicupgradedeadlineconfiguration` WRITE; +/*!40000 ALTER TABLE `courseware_orgdynamicupgradedeadlineconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_orgdynamicupgradedeadlineconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_studentfieldoverride` +-- + +DROP TABLE IF EXISTS `courseware_studentfieldoverride`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_studentfieldoverride` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `location` varchar(255) NOT NULL, + `field` varchar(255) NOT NULL, + `value` longtext NOT NULL, + `student_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `courseware_studentfieldo_course_id_field_location_a1f7da25_uniq` (`course_id`,`field`,`location`,`student_id`), + KEY `courseware_studentfi_student_id_7a972765_fk_auth_user` (`student_id`), + KEY `courseware_studentfieldoverride_course_id_7ca0051c` (`course_id`), + KEY `courseware_studentfieldoverride_location_95ad5047` (`location`), + CONSTRAINT `courseware_studentfi_student_id_7a972765_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_studentfieldoverride` +-- + +LOCK TABLES `courseware_studentfieldoverride` WRITE; +/*!40000 ALTER TABLE `courseware_studentfieldoverride` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_studentfieldoverride` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_studentmodule` +-- + +DROP TABLE IF EXISTS `courseware_studentmodule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_studentmodule` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `module_type` varchar(32) NOT NULL, + `module_id` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `state` longtext, + `grade` double DEFAULT NULL, + `max_grade` double DEFAULT NULL, + `done` varchar(8) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `student_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq` (`student_id`,`module_id`,`course_id`), + KEY `courseware_studentmodule_module_type_f4f8863f` (`module_type`), + KEY `courseware_studentmodule_course_id_0637cb49` (`course_id`), + KEY `courseware_studentmodule_grade_adac1ba7` (`grade`), + KEY `courseware_studentmodule_created_9976b4ad` (`created`), + KEY `courseware_studentmodule_modified_f6a0b0cc` (`modified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_studentmodule` +-- + +LOCK TABLES `courseware_studentmodule` WRITE; +/*!40000 ALTER TABLE `courseware_studentmodule` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_studentmodule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_studentmodulehistory` +-- + +DROP TABLE IF EXISTS `courseware_studentmodulehistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_studentmodulehistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `version` varchar(255) DEFAULT NULL, + `created` datetime(6) NOT NULL, + `state` longtext, + `grade` double DEFAULT NULL, + `max_grade` double DEFAULT NULL, + `student_module_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `courseware_studentmo_student_module_id_6efc64cf_fk_coursewar` (`student_module_id`), + KEY `courseware_studentmodulehistory_version_d3823ad1` (`version`), + KEY `courseware_studentmodulehistory_created_19cb94d2` (`created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_studentmodulehistory` +-- + +LOCK TABLES `courseware_studentmodulehistory` WRITE; +/*!40000 ALTER TABLE `courseware_studentmodulehistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_studentmodulehistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_xmodulestudentinfofield` +-- + +DROP TABLE IF EXISTS `courseware_xmodulestudentinfofield`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_xmodulestudentinfofield` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `field_name` varchar(64) NOT NULL, + `value` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `student_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `courseware_xmodulestuden_student_id_field_name_2f3a4ee8_uniq` (`student_id`,`field_name`), + KEY `courseware_xmodulestudentinfofield_field_name_191b762e` (`field_name`), + KEY `courseware_xmodulestudentinfofield_created_beada63d` (`created`), + KEY `courseware_xmodulestudentinfofield_modified_b53f9c88` (`modified`), + CONSTRAINT `courseware_xmodulest_student_id_b78d39b4_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_xmodulestudentinfofield` +-- + +LOCK TABLES `courseware_xmodulestudentinfofield` WRITE; +/*!40000 ALTER TABLE `courseware_xmodulestudentinfofield` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_xmodulestudentinfofield` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_xmodulestudentprefsfield` +-- + +DROP TABLE IF EXISTS `courseware_xmodulestudentprefsfield`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_xmodulestudentprefsfield` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `field_name` varchar(64) NOT NULL, + `value` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `module_type` varchar(64) NOT NULL, + `student_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq` (`student_id`,`module_type`,`field_name`), + KEY `courseware_xmodulestudentprefsfield_field_name_68d5e66e` (`field_name`), + KEY `courseware_xmodulestudentprefsfield_created_16090241` (`created`), + KEY `courseware_xmodulestudentprefsfield_modified_5b4e5525` (`modified`), + KEY `courseware_xmodulestudentprefsfield_module_type_45b994b9` (`module_type`), + CONSTRAINT `courseware_xmodulest_student_id_3c60ec8a_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_xmodulestudentprefsfield` +-- + +LOCK TABLES `courseware_xmodulestudentprefsfield` WRITE; +/*!40000 ALTER TABLE `courseware_xmodulestudentprefsfield` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_xmodulestudentprefsfield` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `courseware_xmoduleuserstatesummaryfield` +-- + +DROP TABLE IF EXISTS `courseware_xmoduleuserstatesummaryfield`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `courseware_xmoduleuserstatesummaryfield` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `field_name` varchar(64) NOT NULL, + `value` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `usage_id` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `courseware_xmoduleuserst_usage_id_field_name_e4e34c44_uniq` (`usage_id`,`field_name`), + KEY `courseware_xmoduleuserstatesummaryfield_field_name_395cd2a6` (`field_name`), + KEY `courseware_xmoduleuserstatesummaryfield_created_57d773a1` (`created`), + KEY `courseware_xmoduleuserstatesummaryfield_modified_b4277a5d` (`modified`), + KEY `courseware_xmoduleuserstatesummaryfield_usage_id_9f239d1f` (`usage_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `courseware_xmoduleuserstatesummaryfield` +-- + +LOCK TABLES `courseware_xmoduleuserstatesummaryfield` WRITE; +/*!40000 ALTER TABLE `courseware_xmoduleuserstatesummaryfield` DISABLE KEYS */; +/*!40000 ALTER TABLE `courseware_xmoduleuserstatesummaryfield` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `crawlers_crawlersconfig` +-- + +DROP TABLE IF EXISTS `crawlers_crawlersconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `crawlers_crawlersconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `known_user_agents` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `crawlers_crawlersconfig` +-- + +LOCK TABLES `crawlers_crawlersconfig` WRITE; +/*!40000 ALTER TABLE `crawlers_crawlersconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `crawlers_crawlersconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credentials_credentialsapiconfig` +-- + +DROP TABLE IF EXISTS `credentials_credentialsapiconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credentials_credentialsapiconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `internal_service_url` varchar(200) NOT NULL, + `public_service_url` varchar(200) NOT NULL, + `enable_learner_issuance` tinyint(1) NOT NULL, + `enable_studio_authoring` tinyint(1) NOT NULL, + `cache_ttl` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `credentials_credenti_changed_by_id_9e145a81_fk_auth_user` (`changed_by_id`), + CONSTRAINT `credentials_credenti_changed_by_id_9e145a81_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credentials_credentialsapiconfig` +-- + +LOCK TABLES `credentials_credentialsapiconfig` WRITE; +/*!40000 ALTER TABLE `credentials_credentialsapiconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `credentials_credentialsapiconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credentials_notifycredentialsconfig` +-- + +DROP TABLE IF EXISTS `credentials_notifycredentialsconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credentials_notifycredentialsconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `arguments` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `credentials_notifycr_changed_by_id_e31cde0e_fk_auth_user` (`changed_by_id`), + CONSTRAINT `credentials_notifycr_changed_by_id_e31cde0e_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credentials_notifycredentialsconfig` +-- + +LOCK TABLES `credentials_notifycredentialsconfig` WRITE; +/*!40000 ALTER TABLE `credentials_notifycredentialsconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `credentials_notifycredentialsconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_creditconfig` +-- + +DROP TABLE IF EXISTS `credit_creditconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_creditconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `cache_ttl` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_creditconfig` +-- + +LOCK TABLES `credit_creditconfig` WRITE; +/*!40000 ALTER TABLE `credit_creditconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_creditconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_creditcourse` +-- + +DROP TABLE IF EXISTS `credit_creditcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_creditcourse` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `enabled` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_key` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_creditcourse` +-- + +LOCK TABLES `credit_creditcourse` WRITE; +/*!40000 ALTER TABLE `credit_creditcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_creditcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_crediteligibility` +-- + +DROP TABLE IF EXISTS `credit_crediteligibility`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_crediteligibility` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `username` varchar(255) NOT NULL, + `deadline` datetime(6) NOT NULL, + `course_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `credit_crediteligibility_username_course_id_7906b4c1_uniq` (`username`,`course_id`), + KEY `credit_crediteligibi_course_id_d86f481f_fk_credit_cr` (`course_id`), + KEY `credit_crediteligibility_username_4c275fb5` (`username`), + CONSTRAINT `credit_crediteligibi_course_id_d86f481f_fk_credit_cr` FOREIGN KEY (`course_id`) REFERENCES `credit_creditcourse` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_crediteligibility` +-- + +LOCK TABLES `credit_crediteligibility` WRITE; +/*!40000 ALTER TABLE `credit_crediteligibility` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_crediteligibility` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_creditprovider` +-- + +DROP TABLE IF EXISTS `credit_creditprovider`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_creditprovider` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `provider_id` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `display_name` varchar(255) NOT NULL, + `enable_integration` tinyint(1) NOT NULL, + `provider_url` varchar(200) NOT NULL, + `provider_status_url` varchar(200) NOT NULL, + `provider_description` longtext NOT NULL, + `fulfillment_instructions` longtext, + `eligibility_email_message` longtext NOT NULL, + `receipt_email_message` longtext NOT NULL, + `thumbnail_url` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `provider_id` (`provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_creditprovider` +-- + +LOCK TABLES `credit_creditprovider` WRITE; +/*!40000 ALTER TABLE `credit_creditprovider` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_creditprovider` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_creditrequest` +-- + +DROP TABLE IF EXISTS `credit_creditrequest`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_creditrequest` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` varchar(32) NOT NULL, + `username` varchar(255) NOT NULL, + `parameters` longtext NOT NULL, + `status` varchar(255) NOT NULL, + `course_id` int(11) NOT NULL, + `provider_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uuid` (`uuid`), + UNIQUE KEY `credit_creditrequest_username_course_id_provi_3b019afe_uniq` (`username`,`course_id`,`provider_id`), + KEY `credit_creditrequest_course_id_5478ceaf_fk_credit_cr` (`course_id`), + KEY `credit_creditrequest_provider_id_5465ab8b_fk_credit_cr` (`provider_id`), + KEY `credit_creditrequest_username_bd5623e4` (`username`), + CONSTRAINT `credit_creditrequest_course_id_5478ceaf_fk_credit_cr` FOREIGN KEY (`course_id`) REFERENCES `credit_creditcourse` (`id`), + CONSTRAINT `credit_creditrequest_provider_id_5465ab8b_fk_credit_cr` FOREIGN KEY (`provider_id`) REFERENCES `credit_creditprovider` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_creditrequest` +-- + +LOCK TABLES `credit_creditrequest` WRITE; +/*!40000 ALTER TABLE `credit_creditrequest` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_creditrequest` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_creditrequirement` +-- + +DROP TABLE IF EXISTS `credit_creditrequirement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_creditrequirement` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `namespace` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `display_name` varchar(255) NOT NULL, + `criteria` longtext NOT NULL, + `active` tinyint(1) NOT NULL, + `course_id` int(11) NOT NULL, + `sort_value` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `credit_creditrequirement_namespace_name_course_id_87c301e6_uniq` (`namespace`,`name`,`course_id`), + KEY `credit_creditrequire_course_id_b6aa812a_fk_credit_cr` (`course_id`), + CONSTRAINT `credit_creditrequire_course_id_b6aa812a_fk_credit_cr` FOREIGN KEY (`course_id`) REFERENCES `credit_creditcourse` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_creditrequirement` +-- + +LOCK TABLES `credit_creditrequirement` WRITE; +/*!40000 ALTER TABLE `credit_creditrequirement` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_creditrequirement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `credit_creditrequirementstatus` +-- + +DROP TABLE IF EXISTS `credit_creditrequirementstatus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `credit_creditrequirementstatus` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `username` varchar(255) NOT NULL, + `status` varchar(32) NOT NULL, + `reason` longtext NOT NULL, + `requirement_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `credit_creditrequirement_username_requirement_id_f761eba5_uniq` (`username`,`requirement_id`), + KEY `credit_creditrequire_requirement_id_cde25c76_fk_credit_cr` (`requirement_id`), + KEY `credit_creditrequirementstatus_username_4c2511ed` (`username`), + CONSTRAINT `credit_creditrequire_requirement_id_cde25c76_fk_credit_cr` FOREIGN KEY (`requirement_id`) REFERENCES `credit_creditrequirement` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `credit_creditrequirementstatus` +-- + +LOCK TABLES `credit_creditrequirementstatus` WRITE; +/*!40000 ALTER TABLE `credit_creditrequirementstatus` DISABLE KEYS */; +/*!40000 ALTER TABLE `credit_creditrequirementstatus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dark_lang_darklangconfig` +-- + +DROP TABLE IF EXISTS `dark_lang_darklangconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `dark_lang_darklangconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `released_languages` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `beta_languages` longtext NOT NULL, + `enable_beta_languages` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + KEY `dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dark_lang_darklangconfig` +-- + +LOCK TABLES `dark_lang_darklangconfig` WRITE; +/*!40000 ALTER TABLE `dark_lang_darklangconfig` DISABLE KEYS */; +INSERT INTO `dark_lang_darklangconfig` VALUES (1,'2020-04-06 20:26:23.035397',1,'',NULL,'',0); +/*!40000 ALTER TABLE `dark_lang_darklangconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `degreed_degreedenterprisecustomerconfiguration` +-- + +DROP TABLE IF EXISTS `degreed_degreedenterprisecustomerconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `degreed_degreedenterprisecustomerconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `key` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `degreed_company_id` varchar(255) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `transmission_chunk_size` int(11) NOT NULL, + `degreed_base_url` varchar(255) NOT NULL, + `degreed_user_id` varchar(255) NOT NULL, + `degreed_user_password` varchar(255) NOT NULL, + `provider_id` varchar(100) NOT NULL, + `channel_worker_username` varchar(255) DEFAULT NULL, + `catalogs_to_transmit` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `degreed_degreedenter_enterprise_customer__86f16a0d_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `degreed_degreedenterprisecustomerconfiguration` +-- + +LOCK TABLES `degreed_degreedenterprisecustomerconfiguration` WRITE; +/*!40000 ALTER TABLE `degreed_degreedenterprisecustomerconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `degreed_degreedenterprisecustomerconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `degreed_degreedglobalconfiguration` +-- + +DROP TABLE IF EXISTS `degreed_degreedglobalconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `degreed_degreedglobalconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `completion_status_api_path` varchar(255) NOT NULL, + `course_api_path` varchar(255) NOT NULL, + `oauth_api_path` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user` (`changed_by_id`), + CONSTRAINT `degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `degreed_degreedglobalconfiguration` +-- + +LOCK TABLES `degreed_degreedglobalconfiguration` WRITE; +/*!40000 ALTER TABLE `degreed_degreedglobalconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `degreed_degreedglobalconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `degreed_degreedlearnerdatatransmissionaudit` +-- + +DROP TABLE IF EXISTS `degreed_degreedlearnerdatatransmissionaudit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `degreed_degreedlearnerdatatransmissionaudit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `degreed_user_email` varchar(255) NOT NULL, + `enterprise_course_enrollment_id` int(10) unsigned NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_completed` tinyint(1) NOT NULL, + `completed_timestamp` varchar(10) NOT NULL, + `status` varchar(100) NOT NULL, + `error_message` longtext NOT NULL, + `created` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + KEY `degreed_degreedlearnerdatat_enterprise_course_enrollmen_2b4fe278` (`enterprise_course_enrollment_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `degreed_degreedlearnerdatatransmissionaudit` +-- + +LOCK TABLES `degreed_degreedlearnerdatatransmissionaudit` WRITE; +/*!40000 ALTER TABLE `degreed_degreedlearnerdatatransmissionaudit` DISABLE KEYS */; +/*!40000 ALTER TABLE `degreed_degreedlearnerdatatransmissionaudit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `degreed_historicaldegreedenterprisecustomerconfiguration` +-- + +DROP TABLE IF EXISTS `degreed_historicaldegreedenterprisecustomerconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `degreed_historicaldegreedenterprisecustomerconfiguration` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `key` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `degreed_company_id` varchar(255) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_customer_id` char(32) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `transmission_chunk_size` int(11) NOT NULL, + `degreed_base_url` varchar(255) NOT NULL, + `degreed_user_id` varchar(255) NOT NULL, + `degreed_user_password` varchar(255) NOT NULL, + `provider_id` varchar(100) NOT NULL, + `channel_worker_username` varchar(255) DEFAULT NULL, + `catalogs_to_transmit` longtext, + PRIMARY KEY (`history_id`), + KEY `degreed_historicalde_history_user_id_5b4776d8_fk_auth_user` (`history_user_id`), + KEY `degreed_historicaldegreeden_id_756f1445` (`id`), + KEY `degreed_historicaldegreeden_enterprise_customer_id_12129e6f` (`enterprise_customer_id`), + CONSTRAINT `degreed_historicalde_history_user_id_5b4776d8_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `degreed_historicaldegreedenterprisecustomerconfiguration` +-- + +LOCK TABLES `degreed_historicaldegreedenterprisecustomerconfiguration` WRITE; +/*!40000 ALTER TABLE `degreed_historicaldegreedenterprisecustomerconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `degreed_historicaldegreedenterprisecustomerconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `discounts_discountpercentageconfig` +-- + +DROP TABLE IF EXISTS `discounts_discountpercentageconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `discounts_discountpercentageconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) DEFAULT NULL, + `org` varchar(255) DEFAULT NULL, + `org_course` varchar(255) DEFAULT NULL, + `percentage` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `course_id` varchar(255) DEFAULT NULL, + `site_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `discounts_d_site_id_f87020_idx` (`site_id`,`org`,`course_id`), + KEY `discounts_d_site_id_9fe8d6_idx` (`site_id`,`org`,`org_course`,`course_id`), + KEY `discounts_discountpe_changed_by_id_b00d7aa3_fk_auth_user` (`changed_by_id`), + KEY `discounts_discountpe_course_id_19913d92_fk_course_ov` (`course_id`), + KEY `discounts_discountpercentageconfig_org_294e22dd` (`org`), + KEY `discounts_discountpercentageconfig_org_course_31d0939e` (`org_course`), + CONSTRAINT `discounts_discountpe_changed_by_id_b00d7aa3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `discounts_discountpe_course_id_19913d92_fk_course_ov` FOREIGN KEY (`course_id`) REFERENCES `course_overviews_courseoverview` (`id`), + CONSTRAINT `discounts_discountpe_site_id_b103a2af_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `discounts_discountpercentageconfig` +-- + +LOCK TABLES `discounts_discountpercentageconfig` WRITE; +/*!40000 ALTER TABLE `discounts_discountpercentageconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `discounts_discountpercentageconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `discounts_discountrestrictionconfig` +-- + +DROP TABLE IF EXISTS `discounts_discountrestrictionconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `discounts_discountrestrictionconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) DEFAULT NULL, + `org` varchar(255) DEFAULT NULL, + `org_course` varchar(255) DEFAULT NULL, + `disabled` tinyint(1) DEFAULT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `course_id` varchar(255) DEFAULT NULL, + `site_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `discounts_d_site_id_d67da3_idx` (`site_id`,`org`,`course_id`), + KEY `discounts_d_site_id_f83727_idx` (`site_id`,`org`,`org_course`,`course_id`), + KEY `discounts_discountre_changed_by_id_f18a5c1b_fk_auth_user` (`changed_by_id`), + KEY `discounts_discountre_course_id_d7f6674b_fk_course_ov` (`course_id`), + KEY `discounts_discountrestrictionconfig_org_010f786f` (`org`), + KEY `discounts_discountrestrictionconfig_org_course_bb36b3cd` (`org_course`), + CONSTRAINT `discounts_discountre_changed_by_id_f18a5c1b_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `discounts_discountre_course_id_d7f6674b_fk_course_ov` FOREIGN KEY (`course_id`) REFERENCES `course_overviews_courseoverview` (`id`), + CONSTRAINT `discounts_discountre_site_id_3f4c1be6_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `discounts_discountrestrictionconfig` +-- + +LOCK TABLES `discounts_discountrestrictionconfig` WRITE; +/*!40000 ALTER TABLE `discounts_discountrestrictionconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `discounts_discountrestrictionconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_admin_log` +-- + +DROP TABLE IF EXISTS `django_admin_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_admin_log` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `action_time` datetime(6) NOT NULL, + `object_id` longtext, + `object_repr` varchar(200) NOT NULL, + `action_flag` smallint(5) unsigned NOT NULL, + `change_message` longtext NOT NULL, + `content_type_id` int(11) DEFAULT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `django_admin_log_content_type_id_c4bce8eb_fk_django_co` (`content_type_id`), + KEY `django_admin_log_user_id_c564eba6_fk_auth_user_id` (`user_id`), + CONSTRAINT `django_admin_log_content_type_id_c4bce8eb_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`), + CONSTRAINT `django_admin_log_user_id_c564eba6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_admin_log` +-- + +LOCK TABLES `django_admin_log` WRITE; +/*!40000 ALTER TABLE `django_admin_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `django_admin_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_client_permission` +-- + +DROP TABLE IF EXISTS `django_comment_client_permission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_client_permission` ( + `name` varchar(30) NOT NULL, + PRIMARY KEY (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_client_permission` +-- + +LOCK TABLES `django_comment_client_permission` WRITE; +/*!40000 ALTER TABLE `django_comment_client_permission` DISABLE KEYS */; +INSERT INTO `django_comment_client_permission` VALUES ('create_comment'),('create_sub_comment'),('create_thread'),('delete_comment'),('delete_thread'),('edit_content'),('endorse_comment'),('follow_commentable'),('follow_thread'),('group_delete_comment'),('group_delete_thread'),('group_edit_content'),('group_endorse_comment'),('group_openclose_thread'),('manage_moderator'),('openclose_thread'),('see_all_cohorts'),('unfollow_commentable'),('unfollow_thread'),('unvote'),('update_comment'),('update_thread'),('vote'); +/*!40000 ALTER TABLE `django_comment_client_permission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_client_permission_roles` +-- + +DROP TABLE IF EXISTS `django_comment_client_permission_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_client_permission_roles` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `permission_id` varchar(30) NOT NULL, + `role_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `django_comment_client_pe_permission_id_role_id_d3680ec3_uniq` (`permission_id`,`role_id`), + KEY `django_comment_clien_role_id_d2cb08a2_fk_django_co` (`role_id`), + CONSTRAINT `django_comment_clien_permission_id_f9f47fd2_fk_django_co` FOREIGN KEY (`permission_id`) REFERENCES `django_comment_client_permission` (`name`), + CONSTRAINT `django_comment_clien_role_id_d2cb08a2_fk_django_co` FOREIGN KEY (`role_id`) REFERENCES `django_comment_client_role` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_client_permission_roles` +-- + +LOCK TABLES `django_comment_client_permission_roles` WRITE; +/*!40000 ALTER TABLE `django_comment_client_permission_roles` DISABLE KEYS */; +INSERT INTO `django_comment_client_permission_roles` VALUES (79,'create_comment',1),(34,'create_comment',2),(45,'create_comment',3),(62,'create_comment',4),(11,'create_comment',5),(74,'create_sub_comment',1),(29,'create_sub_comment',2),(40,'create_sub_comment',3),(57,'create_sub_comment',4),(6,'create_sub_comment',5),(76,'create_thread',1),(31,'create_thread',2),(42,'create_thread',3),(59,'create_thread',4),(8,'create_thread',5),(67,'delete_comment',1),(16,'delete_comment',2),(50,'delete_comment',4),(64,'delete_thread',1),(13,'delete_thread',2),(47,'delete_thread',4),(63,'edit_content',1),(12,'edit_content',2),(46,'edit_content',4),(66,'endorse_comment',1),(15,'endorse_comment',2),(49,'endorse_comment',4),(77,'follow_commentable',1),(32,'follow_commentable',2),(43,'follow_commentable',3),(60,'follow_commentable',4),(9,'follow_commentable',5),(71,'follow_thread',1),(26,'follow_thread',2),(37,'follow_thread',3),(54,'follow_thread',4),(3,'follow_thread',5),(22,'group_delete_comment',3),(19,'group_delete_thread',3),(18,'group_edit_content',3),(21,'group_endorse_comment',3),(20,'group_openclose_thread',3),(23,'manage_moderator',1),(65,'openclose_thread',1),(14,'openclose_thread',2),(48,'openclose_thread',4),(68,'see_all_cohorts',1),(17,'see_all_cohorts',2),(51,'see_all_cohorts',4),(78,'unfollow_commentable',1),(33,'unfollow_commentable',2),(44,'unfollow_commentable',3),(61,'unfollow_commentable',4),(10,'unfollow_commentable',5),(72,'unfollow_thread',1),(27,'unfollow_thread',2),(38,'unfollow_thread',3),(55,'unfollow_thread',4),(4,'unfollow_thread',5),(75,'unvote',1),(30,'unvote',2),(41,'unvote',3),(58,'unvote',4),(7,'unvote',5),(73,'update_comment',1),(28,'update_comment',2),(39,'update_comment',3),(56,'update_comment',4),(5,'update_comment',5),(70,'update_thread',1),(25,'update_thread',2),(36,'update_thread',3),(53,'update_thread',4),(2,'update_thread',5),(69,'vote',1),(24,'vote',2),(35,'vote',3),(52,'vote',4),(1,'vote',5); +/*!40000 ALTER TABLE `django_comment_client_permission_roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_client_role` +-- + +DROP TABLE IF EXISTS `django_comment_client_role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_client_role` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(30) NOT NULL, + `course_id` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `django_comment_client_role_course_id_08a9c1d1` (`course_id`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_client_role` +-- + +LOCK TABLES `django_comment_client_role` WRITE; +/*!40000 ALTER TABLE `django_comment_client_role` DISABLE KEYS */; +INSERT INTO `django_comment_client_role` VALUES (1,'Administrator','course-v1:edX+DemoX+Demo_Course'),(2,'Moderator','course-v1:edX+DemoX+Demo_Course'),(3,'Group Moderator','course-v1:edX+DemoX+Demo_Course'),(4,'Community TA','course-v1:edX+DemoX+Demo_Course'),(5,'Student','course-v1:edX+DemoX+Demo_Course'); +/*!40000 ALTER TABLE `django_comment_client_role` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_client_role_users` +-- + +DROP TABLE IF EXISTS `django_comment_client_role_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_client_role_users` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `role_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `django_comment_client_role_users_role_id_user_id_93ab4289_uniq` (`role_id`,`user_id`), + KEY `dcc_role_users_user_role_idx` (`user_id`,`role_id`), + CONSTRAINT `django_comment_clien_role_id_baec77f6_fk_django_co` FOREIGN KEY (`role_id`) REFERENCES `django_comment_client_role` (`id`), + CONSTRAINT `django_comment_clien_user_id_5d7991df_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_client_role_users` +-- + +LOCK TABLES `django_comment_client_role_users` WRITE; +/*!40000 ALTER TABLE `django_comment_client_role_users` DISABLE KEYS */; +INSERT INTO `django_comment_client_role_users` VALUES (1,5,5),(2,5,6),(3,5,7),(4,5,8); +/*!40000 ALTER TABLE `django_comment_client_role_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_common_coursediscussionsettings` +-- + +DROP TABLE IF EXISTS `django_comment_common_coursediscussionsettings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_common_coursediscussionsettings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `always_divide_inline_discussions` tinyint(1) NOT NULL, + `divided_discussions` longtext, + `division_scheme` varchar(20) NOT NULL, + `discussions_id_map` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_common_coursediscussionsettings` +-- + +LOCK TABLES `django_comment_common_coursediscussionsettings` WRITE; +/*!40000 ALTER TABLE `django_comment_common_coursediscussionsettings` DISABLE KEYS */; +/*!40000 ALTER TABLE `django_comment_common_coursediscussionsettings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_common_discussionsidmapping` +-- + +DROP TABLE IF EXISTS `django_comment_common_discussionsidmapping`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_common_discussionsidmapping` ( + `course_id` varchar(255) NOT NULL, + `mapping` longtext NOT NULL, + PRIMARY KEY (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_common_discussionsidmapping` +-- + +LOCK TABLES `django_comment_common_discussionsidmapping` WRITE; +/*!40000 ALTER TABLE `django_comment_common_discussionsidmapping` DISABLE KEYS */; +INSERT INTO `django_comment_common_discussionsidmapping` VALUES ('course-v1:edX+DemoX+Demo_Course','{\"b770140a122741fea651a50362dee7e6\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@4d672c5893cb4f1dad0de67d2008522e\",\"4250393f9f684bfeb3f1d514e15592d1\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@ffa5817d49e14fec83ad6187cbe16358\",\"6e51dd8f181b44ffa6d91303a287ed3f\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@12ad4f3ff4c14114a6e629b00e000976\",\"e252d4de97c7426e8b67ff516a9962f6\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@b8cec2a19ebf463f90cd3544c7927b0e\",\"0717ec26e67e49b2a9f30d2e15c417dd\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@4aba537a78774bd5a862485a8563c345\",\"bb15269287ec44b6a2f69447db43d845\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@0aa7a3bdbe18427795b0c1a1d7c3cb9a\",\"edx_demo_embedded_discussion\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@discussion_5deb6081620d\",\"d7b66e45154b4af18f33213337685e91\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@6f7a6670f87147149caeff6afa07a526\",\"239ef52e6eee468fb698b4217a7bafc6\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@c6cd4bea43454aaea60ad01beb0cf213\",\"8ff02d4204bb42059db629e399a50a26\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@1c8d47c425724346a7968fa1bc745dcd\",\"eb264c9899b745fc81cd7405b53a7a65\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@e5eac7e1a5a24f5fa7ed77bb6d136591\",\"aecab8f355744782af5a9470185f0005\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@5ab88e67d46049b9aa694cb240c39cef\",\"1d153da210844719a1a6cc39ca09673c\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@9f9e1373cc8243b985c8750cc8acec7d\",\"df0905ee484844769644f330844253e7\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@f480df4ce91347c5ae4301ddf6146238\",\"ed3164d1235645739374094a8172964b\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@870371212ba04dcf9536d7c7b8f3109e\",\"23347cb1d1e74ec79453ce361e38eb18\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@3169f89efde2452993f2f2d9bc74f5b2\",\"9ad16580878f49d1bf20ce1bc533d16e\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@e0d7423118ab432582d03e8e8dad8e36\",\"265ca2d808814d76ad670957a2b6071f\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@e2cb0e0994f84b0abfa5f4ae42ed9d44\",\"31c83aefa6634e83a3c80b81f5447201\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@ade92343df3d4953a40ab3adc8805390\",\"b11488e3580241f08146cbcfca693d06\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@03f051f9a8814881a3783d2511613aa6\",\"cdad92273f7d4622aed770b7de8583bc\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@4f06b358a96f4d1dae57d6d81acd06f2\",\"a56e406f164746d8bbff76545e6d981f\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@23e6eda482c04335af2bb265beacaf59\",\"d9f970a42067413cbb633f81cfb12604\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@412dc8dbb6674014862237b23c1f643f\",\"c49f0dfb8fc94c9c8d9999cc95190c56\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@501aed9d902349eeb2191fa505548de2\",\"98d8feb5971041a085512ae22b398613\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@722085be27c84ac693cfebc8ac5da700\",\"d459fcb5792b459ca0aefe141e633ccc\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@ddede76df71045ffa16de9d1481d2119\",\"cba3e4cd91d0466b9ac50926e495b76f\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@67c26b1e826e47aaa29757f62bcd1ad0\",\"53c486b035b4437c9197a543371e0f03\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@6244918637ed4ff4b5f94a840a7e4b43\",\"e4365aad2c39498d824cf984b3f9b083\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@ed01bcd164e64038a78964a16eac3edc\",\"97f19f6202e54d6a9ea59f7a573725a1\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@cd177caa62444fbca48aa8f843f09eac\",\"ba12c2e0b81e4cef8e05e22049aafd63\":\"block-v1:edX+DemoX+Demo_Course+type@discussion+block@1a810b1a3b2447b998f0917d0e5a802b\"}'); +/*!40000 ALTER TABLE `django_comment_common_discussionsidmapping` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_comment_common_forumsconfig` +-- + +DROP TABLE IF EXISTS `django_comment_common_forumsconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_comment_common_forumsconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `connection_timeout` double NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `django_comment_commo_changed_by_id_9292e296_fk_auth_user` (`changed_by_id`), + CONSTRAINT `django_comment_commo_changed_by_id_9292e296_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_comment_common_forumsconfig` +-- + +LOCK TABLES `django_comment_common_forumsconfig` WRITE; +/*!40000 ALTER TABLE `django_comment_common_forumsconfig` DISABLE KEYS */; +INSERT INTO `django_comment_common_forumsconfig` VALUES (1,'2020-04-06 20:27:01.567246',1,5,NULL); +/*!40000 ALTER TABLE `django_comment_common_forumsconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_content_type` +-- + +DROP TABLE IF EXISTS `django_content_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_content_type` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app_label` varchar(100) NOT NULL, + `model` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `django_content_type_app_label_model_76bd3d3b_uniq` (`app_label`,`model`) +) ENGINE=InnoDB AUTO_INCREMENT=408 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_content_type` +-- + +LOCK TABLES `django_content_type` WRITE; +/*!40000 ALTER TABLE `django_content_type` DISABLE KEYS */; +INSERT INTO `django_content_type` VALUES (141,'admin','logentry'),(370,'announcements','announcement'),(277,'api_admin','apiaccessconfig'),(1,'api_admin','apiaccessrequest'),(278,'api_admin','catalog'),(224,'assessment','assessment'),(220,'assessment','assessmentfeedback'),(231,'assessment','assessmentfeedbackoption'),(225,'assessment','assessmentpart'),(227,'assessment','criterion'),(216,'assessment','criterionoption'),(222,'assessment','historicalsharedfileupload'),(217,'assessment','peerworkflow'),(228,'assessment','peerworkflowitem'),(221,'assessment','rubric'),(226,'assessment','sharedfileupload'),(218,'assessment','staffworkflow'),(230,'assessment','studenttrainingworkflow'),(219,'assessment','studenttrainingworkflowitem'),(223,'assessment','teamstaffworkflow'),(229,'assessment','trainingexample'),(2,'auth','group'),(4,'auth','permission'),(3,'auth','user'),(281,'badges','badgeassertion'),(283,'badges','badgeclass'),(282,'badges','coursecompleteimageconfiguration'),(284,'badges','courseeventbadgesconfiguration'),(252,'block_structure','blockstructureconfiguration'),(251,'block_structure','blockstructuremodel'),(369,'bookmarks','bookmark'),(368,'bookmarks','xblockcache'),(112,'branding','brandingapiconfig'),(113,'branding','brandinginfoconfig'),(108,'bulk_email','bulkemailflag'),(111,'bulk_email','cohorttarget'),(106,'bulk_email','courseauthorization'),(105,'bulk_email','courseemail'),(107,'bulk_email','courseemailtemplate'),(110,'bulk_email','coursemodetarget'),(104,'bulk_email','optout'),(109,'bulk_email','target'),(388,'bulk_grades','scoreoverrider'),(290,'calendar_sync','historicalusercalendarsyncconfig'),(291,'calendar_sync','usercalendarsyncconfig'),(269,'catalog','catalogintegration'),(286,'celery_utils','failedtask'),(90,'certificates','certificategenerationconfiguration'),(84,'certificates','certificategenerationcoursesetting'),(95,'certificates','certificategenerationhistory'),(88,'certificates','certificatehtmlviewconfiguration'),(94,'certificates','certificateinvalidation'),(92,'certificates','certificatetemplate'),(87,'certificates','certificatetemplateasset'),(89,'certificates','certificatewhitelist'),(85,'certificates','examplecertificate'),(91,'certificates','examplecertificateset'),(93,'certificates','generatedcertificate'),(86,'certificates','historicalgeneratedcertificate'),(254,'commerce','commerceconfiguration'),(387,'completion','blockcompletion'),(335,'consent','datasharingconsent'),(336,'consent','datasharingconsenttextoverrides'),(334,'consent','historicaldatasharingconsent'),(25,'contentserver','cdnuseragentsconfig'),(24,'contentserver','courseassetcachettlconfig'),(392,'contentstore','videouploadconfig'),(5,'contenttypes','contenttype'),(371,'content_libraries','contentlibrary'),(372,'content_libraries','contentlibrarypermission'),(293,'content_type_gating','contenttypegatingconfig'),(346,'cornerstone','cornerstoneenterprisecustomerconfiguration'),(347,'cornerstone','cornerstoneglobalconfiguration'),(348,'cornerstone','cornerstonelearnerdatatransmissionaudit'),(349,'cornerstone','historicalcornerstoneenterprisecustomerconfiguration'),(253,'cors_csrf','xdomainproxyconfiguration'),(40,'courseware','coursedynamicupgradedeadlineconfiguration'),(48,'courseware','dynamicupgradedeadlineconfiguration'),(41,'courseware','offlinecomputedgrade'),(49,'courseware','offlinecomputedgradelog'),(44,'courseware','orgdynamicupgradedeadlineconfiguration'),(43,'courseware','studentfieldoverride'),(47,'courseware','studentmodule'),(45,'courseware','studentmodulehistory'),(50,'courseware','xmodulestudentinfofield'),(46,'courseware','xmodulestudentprefsfield'),(42,'courseware','xmoduleuserstatesummaryfield'),(51,'coursewarehistoryextended','studentmodulehistoryextended'),(196,'course_action_state','coursererunstate'),(393,'course_creators','coursecreator'),(299,'course_date_signals','selfpacedrelativedatesconfig'),(292,'course_duration_limits','coursedurationlimitconfig'),(289,'course_goals','coursegoal'),(98,'course_groups','cohortmembership'),(99,'course_groups','coursecohort'),(102,'course_groups','coursecohortssettings'),(100,'course_groups','courseusergroup'),(103,'course_groups','courseusergrouppartitiongroup'),(101,'course_groups','unregisteredlearnercohortassignments'),(174,'course_modes','coursemode'),(176,'course_modes','coursemodeexpirationconfig'),(173,'course_modes','coursemodesarchive'),(175,'course_modes','historicalcoursemode'),(249,'course_overviews','courseoverview'),(247,'course_overviews','courseoverviewimageconfig'),(246,'course_overviews','courseoverviewimageset'),(248,'course_overviews','courseoverviewtab'),(245,'course_overviews','historicalcourseoverview'),(250,'course_overviews','simulatecoursepublishconfig'),(287,'crawlers','crawlersconfig'),(352,'credentials','credentialsapiconfig'),(353,'credentials','notifycredentialsconfig'),(256,'credit','creditconfig'),(258,'credit','creditcourse'),(259,'credit','crediteligibility'),(255,'credit','creditprovider'),(260,'credit','creditrequest'),(261,'credit','creditrequirement'),(257,'credit','creditrequirementstatus'),(187,'dark_lang','darklangconfig'),(340,'degreed','degreedenterprisecustomerconfiguration'),(339,'degreed','degreedglobalconfiguration'),(342,'degreed','degreedlearnerdatatransmissionaudit'),(341,'degreed','historicaldegreedenterprisecustomerconfiguration'),(294,'discounts','discountpercentageconfig'),(295,'discounts','discountrestrictionconfig'),(145,'django_comment_common','coursediscussionsettings'),(146,'django_comment_common','discussionsidmapping'),(143,'django_comment_common','forumsconfig'),(142,'django_comment_common','permission'),(144,'django_comment_common','role'),(137,'django_notify','notification'),(140,'django_notify','notificationtype'),(138,'django_notify','settings'),(139,'django_notify','subscription'),(10,'djcelery','crontabschedule'),(15,'djcelery','intervalschedule'),(11,'djcelery','periodictask'),(13,'djcelery','periodictasks'),(16,'djcelery','taskmeta'),(9,'djcelery','tasksetmeta'),(12,'djcelery','taskstate'),(14,'djcelery','workerstate'),(237,'edxval','coursevideo'),(236,'edxval','encodedvideo'),(238,'edxval','profile'),(243,'edxval','thirdpartytranscriptcredentialsstate'),(244,'edxval','transcriptcredentials'),(241,'edxval','transcriptpreference'),(240,'edxval','video'),(242,'edxval','videoimage'),(239,'edxval','videotranscript'),(378,'edx_proctoring','proctoredexam'),(383,'edx_proctoring','proctoredexamreviewpolicy'),(384,'edx_proctoring','proctoredexamreviewpolicyhistory'),(386,'edx_proctoring','proctoredexamsoftwaresecurecomment'),(382,'edx_proctoring','proctoredexamsoftwaresecurereview'),(385,'edx_proctoring','proctoredexamsoftwaresecurereviewhistory'),(380,'edx_proctoring','proctoredexamstudentallowance'),(381,'edx_proctoring','proctoredexamstudentallowancehistory'),(379,'edx_proctoring','proctoredexamstudentattempt'),(377,'edx_proctoring','proctoredexamstudentattempthistory'),(374,'edx_when','contentdate'),(376,'edx_when','datepolicy'),(375,'edx_when','userdate'),(389,'edx_zoom','launchlog'),(390,'edx_zoom','lticredential'),(285,'email_marketing','emailmarketingconfiguration'),(190,'embargo','country'),(191,'embargo','countryaccessrule'),(192,'embargo','courseaccessrulehistory'),(189,'embargo','embargoedcourse'),(195,'embargo','embargoedstate'),(193,'embargo','ipfilter'),(194,'embargo','restrictedcourse'),(328,'enterprise','enrollmentnotificationemailtemplate'),(322,'enterprise','enterprisecatalogquery'),(313,'enterprise','enterprisecourseenrollment'),(316,'enterprise','enterprisecustomer'),(330,'enterprise','enterprisecustomerbrandingconfiguration'),(327,'enterprise','enterprisecustomercatalog'),(317,'enterprise','enterprisecustomeridentityprovider'),(320,'enterprise','enterprisecustomerreportingconfiguration'),(318,'enterprise','enterprisecustomertype'),(329,'enterprise','enterprisecustomeruser'),(331,'enterprise','enterpriseenrollmentsource'),(314,'enterprise','enterprisefeaturerole'),(325,'enterprise','enterprisefeatureuserroleassignment'),(332,'enterprise','historicalenrollmentnotificationemailtemplate'),(311,'enterprise','historicalenterprisecourseenrollment'),(326,'enterprise','historicalenterprisecustomer'),(323,'enterprise','historicalenterprisecustomercatalog'),(407,'enterprise','historicallicensedenterprisecourseenrollment'),(319,'enterprise','historicalpendingenrollment'),(315,'enterprise','historicalpendingenterprisecustomeruser'),(406,'enterprise','licensedenterprisecourseenrollment'),(333,'enterprise','pendingenrollment'),(324,'enterprise','pendingenterprisecustomeruser'),(312,'enterprise','systemwideenterpriserole'),(321,'enterprise','systemwideenterpriseuserroleassignment'),(177,'entitlements','courseentitlement'),(178,'entitlements','courseentitlementpolicy'),(180,'entitlements','courseentitlementsupportdetail'),(181,'entitlements','historicalcourseentitlement'),(179,'entitlements','historicalcourseentitlementsupportdetail'),(297,'experiments','experimentdata'),(298,'experiments','experimentkeyvalue'),(296,'experiments','historicalexperimentkeyvalue'),(301,'external_user_ids','externalid'),(303,'external_user_ids','externalidtype'),(300,'external_user_ids','historicalexternalid'),(302,'external_user_ids','historicalexternalidtype'),(357,'grades','computegradessetting'),(359,'grades','coursepersistentgradesflag'),(354,'grades','historicalpersistentsubsectiongradeoverride'),(361,'grades','persistentcoursegrade'),(356,'grades','persistentgradesenabledflag'),(360,'grades','persistentsubsectiongrade'),(355,'grades','persistentsubsectiongradeoverride'),(358,'grades','visibleblocks'),(97,'instructor_task','gradereportsetting'),(96,'instructor_task','instructortask'),(337,'integrated_channel','contentmetadataitemtransmission'),(338,'integrated_channel','learnerdatatransmissionaudit'),(405,'learning_sequences','coursesection'),(404,'learning_sequences','coursesectionsequence'),(402,'learning_sequences','learningcontext'),(403,'learning_sequences','learningsequence'),(207,'lms_xblock','xblockasidesconfig'),(391,'lx_pathway_plugin','pathway'),(276,'milestones','coursecontentmilestone'),(274,'milestones','coursemilestone'),(273,'milestones','milestone'),(275,'milestones','milestonerelationshiptype'),(272,'milestones','usermilestone'),(198,'mobile_api','appversionconfig'),(197,'mobile_api','ignoremobileavailableflagconfig'),(199,'mobile_api','mobileapiconfig'),(115,'oauth2_provider','accesstoken'),(116,'oauth2_provider','application'),(114,'oauth2_provider','grant'),(117,'oauth2_provider','refreshtoken'),(118,'oauth_dispatch','applicationaccess'),(120,'oauth_dispatch','applicationorganization'),(119,'oauth_dispatch','restrictedapplication'),(309,'organizations','historicalorganization'),(308,'organizations','organization'),(310,'organizations','organizationcourse'),(209,'problem_builder','answer'),(208,'problem_builder','share'),(268,'programs','customprogramsconfig'),(267,'programs','programsapiconfig'),(363,'program_enrollments','courseaccessroleassignment'),(364,'program_enrollments','historicalprogramcourseenrollment'),(366,'program_enrollments','historicalprogramenrollment'),(365,'program_enrollments','programcourseenrollment'),(362,'program_enrollments','programenrollment'),(6,'redirects','redirect'),(188,'rss_proxy','whitelistedrssurl'),(344,'sap_success_factors','sapsuccessfactorsenterprisecustomerconfiguration'),(345,'sap_success_factors','sapsuccessfactorsglobalconfiguration'),(343,'sap_success_factors','sapsuccessfactorslearnerdatatransmissionaudit'),(305,'schedules','historicalschedule'),(304,'schedules','schedule'),(306,'schedules','scheduleconfig'),(307,'schedules','scheduleexperience'),(270,'self_paced','selfpacedconfiguration'),(7,'sessions','session'),(170,'shoppingcart','certificateitem'),(158,'shoppingcart','coupon'),(161,'shoppingcart','couponredemption'),(169,'shoppingcart','courseregcodeitem'),(159,'shoppingcart','courseregcodeitemannotation'),(163,'shoppingcart','courseregistrationcode'),(168,'shoppingcart','courseregistrationcodeinvoiceitem'),(172,'shoppingcart','donation'),(155,'shoppingcart','donationconfiguration'),(157,'shoppingcart','invoice'),(167,'shoppingcart','invoicehistory'),(166,'shoppingcart','invoiceitem'),(160,'shoppingcart','invoicetransaction'),(156,'shoppingcart','order'),(165,'shoppingcart','orderitem'),(171,'shoppingcart','paidcourseregistration'),(162,'shoppingcart','paidcourseregistrationannotation'),(164,'shoppingcart','registrationcoderedemption'),(8,'sites','site'),(26,'site_configuration','siteconfiguration'),(27,'site_configuration','siteconfigurationhistory'),(200,'social_django','association'),(202,'social_django','code'),(204,'social_django','nonce'),(203,'social_django','partial'),(201,'social_django','usersocialauth'),(147,'splash','splashconfig'),(22,'static_replace','assetbaseurlconfig'),(23,'static_replace','assetexcludedextensionsconfig'),(20,'status','coursemessage'),(21,'status','globalstatusmessage'),(71,'student','accountrecovery'),(52,'student','accountrecoveryconfiguration'),(58,'student','allowedauthuser'),(55,'student','anonymoususerid'),(61,'student','bulkunenrollconfiguration'),(76,'student','courseaccessrole'),(73,'student','courseenrollment'),(69,'student','courseenrollmentallowed'),(77,'student','courseenrollmentattribute'),(401,'student','courseenrollmentcelebration'),(70,'student','dashboardconfiguration'),(62,'student','enrollmentrefundconfiguration'),(63,'student','entranceexamconfiguration'),(64,'student','fbeenrollmentexclusion'),(79,'student','historicalcourseenrollment'),(72,'student','historicalmanualenrollmentaudit'),(78,'student','languageproficiency'),(81,'student','linkedinaddtoprofileconfiguration'),(74,'student','loginfailures'),(57,'student','logoutviewconfiguration'),(80,'student','manualenrollmentaudit'),(59,'student','pendingemailchange'),(54,'student','pendingnamechange'),(56,'student','pendingsecondaryemailchange'),(68,'student','registration'),(65,'student','registrationcookieconfiguration'),(66,'student','sociallink'),(60,'student','userattribute'),(67,'student','userprofile'),(53,'student','usersignupsource'),(75,'student','userstanding'),(82,'student','usertestgroup'),(213,'submissions','score'),(215,'submissions','scoreannotation'),(214,'submissions','scoresummary'),(212,'submissions','studentitem'),(210,'submissions','submission'),(211,'submissions','teamsubmission'),(373,'super_csv','csvoperation'),(206,'survey','surveyanswer'),(205,'survey','surveyform'),(127,'system_wide_roles','systemwiderole'),(126,'system_wide_roles','systemwideroleassignment'),(397,'tagging','tagavailablevalues'),(396,'tagging','tagcategories'),(263,'teams','courseteam'),(262,'teams','courseteammembership'),(367,'theming','sitetheme'),(121,'third_party_auth','ltiproviderconfig'),(125,'third_party_auth','oauth2providerconfig'),(124,'third_party_auth','samlconfiguration'),(122,'third_party_auth','samlproviderconfig'),(123,'third_party_auth','samlproviderdata'),(271,'thumbnail','kvstore'),(152,'user_api','retirementstate'),(148,'user_api','usercoursetag'),(154,'user_api','userorgtag'),(150,'user_api','userpreference'),(149,'user_api','userretirementpartnerreportingstatus'),(153,'user_api','userretirementrequest'),(151,'user_api','userretirementstatus'),(398,'user_tasks','usertaskartifact'),(399,'user_tasks','usertaskstatus'),(83,'util','ratelimitconfiguration'),(279,'verified_track_content','migrateverifiedtrackcohortssetting'),(280,'verified_track_content','verifiedtrackcohortedcourse'),(182,'verify_student','manualverification'),(184,'verify_student','softwaresecurephotoverification'),(186,'verify_student','ssoverification'),(183,'verify_student','sspverificationretryconfig'),(185,'verify_student','verificationdeadline'),(29,'video_config','coursehlsplaybackenabledflag'),(32,'video_config','coursevideotranscriptenabledflag'),(35,'video_config','courseyoutubeblockedflag'),(31,'video_config','hlsplaybackenabledflag'),(33,'video_config','migrationenqueuedcourse'),(36,'video_config','transcriptmigrationsetting'),(34,'video_config','updatedcoursevideos'),(30,'video_config','videothumbnailsetting'),(28,'video_config','videotranscriptenabledflag'),(38,'video_pipeline','coursevideouploadsenabledbydefault'),(400,'video_pipeline','vempipelineintegration'),(37,'video_pipeline','videopipelineintegration'),(39,'video_pipeline','videouploadsenabledbydefault'),(18,'waffle','flag'),(19,'waffle','sample'),(17,'waffle','switch'),(288,'waffle_utils','waffleflagcourseoverridemodel'),(135,'wiki','article'),(129,'wiki','articleforobject'),(128,'wiki','articleplugin'),(131,'wiki','articlerevision'),(132,'wiki','reusableplugin'),(136,'wiki','revisionplugin'),(133,'wiki','revisionpluginrevision'),(130,'wiki','simpleplugin'),(134,'wiki','urlpath'),(232,'workflow','assessmentworkflow'),(235,'workflow','assessmentworkflowcancellation'),(234,'workflow','assessmentworkflowstep'),(233,'workflow','teamassessmentworkflow'),(350,'xapi','xapilearnerdatatransmissionaudit'),(351,'xapi','xapilrsconfiguration'),(394,'xblock_config','courseeditltifieldsenabledflag'),(395,'xblock_config','studioconfig'),(264,'xblock_django','xblockconfiguration'),(266,'xblock_django','xblockstudioconfiguration'),(265,'xblock_django','xblockstudioconfigurationflag'); +/*!40000 ALTER TABLE `django_content_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_migrations` +-- + +DROP TABLE IF EXISTS `django_migrations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_migrations` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `applied` datetime(6) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=719 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_migrations` +-- + +LOCK TABLES `django_migrations` WRITE; +/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; +INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2020-04-06 20:18:12.036444'),(2,'auth','0001_initial','2020-04-06 20:18:21.125988'),(3,'admin','0001_initial','2020-04-06 20:18:22.970403'),(4,'admin','0002_logentry_remove_auto_add','2020-04-06 20:18:23.128078'),(5,'announcements','0001_initial','2020-04-06 20:18:23.430224'),(6,'sites','0001_initial','2020-04-06 20:18:23.776669'),(7,'contenttypes','0002_remove_content_type_name','2020-04-06 20:18:24.813899'),(8,'api_admin','0001_initial','2020-04-06 20:18:30.431725'),(9,'api_admin','0002_auto_20160325_1604','2020-04-06 20:18:30.554338'),(10,'api_admin','0003_auto_20160404_1618','2020-04-06 20:18:35.256080'),(11,'api_admin','0004_auto_20160412_1506','2020-04-06 20:18:38.944406'),(12,'api_admin','0005_auto_20160414_1232','2020-04-06 20:18:39.783594'),(13,'api_admin','0006_catalog','2020-04-06 20:18:39.825479'),(14,'api_admin','0007_delete_historical_api_records','2020-04-06 20:18:41.893861'),(15,'assessment','0001_initial','2020-04-06 20:19:17.939178'),(16,'assessment','0002_staffworkflow','2020-04-06 20:19:22.641450'),(17,'assessment','0003_expand_course_id','2020-04-06 20:19:29.067170'),(18,'assessment','0004_historicalsharedfileupload_sharedfileupload','2020-04-06 20:19:37.570829'),(19,'assessment','0005_add_filename_to_sharedupload','2020-04-06 20:19:40.541987'),(20,'assessment','0006_TeamWorkflows','2020-04-06 20:19:42.610357'),(21,'auth','0002_alter_permission_name_max_length','2020-04-06 20:19:43.901381'),(22,'auth','0003_alter_user_email_max_length','2020-04-06 20:19:45.479386'),(23,'auth','0004_alter_user_username_opts','2020-04-06 20:19:45.568855'),(24,'auth','0005_alter_user_last_login_null','2020-04-06 20:19:46.525812'),(25,'auth','0006_require_contenttypes_0002','2020-04-06 20:19:46.625666'),(26,'auth','0007_alter_validators_add_error_messages','2020-04-06 20:19:46.752477'),(27,'auth','0008_alter_user_username_max_length','2020-04-06 20:19:48.602621'),(28,'instructor_task','0001_initial','2020-04-06 20:19:52.894637'),(29,'certificates','0001_initial','2020-04-06 20:20:14.191781'),(30,'certificates','0002_data__certificatehtmlviewconfiguration_data','2020-04-06 20:20:14.380660'),(31,'certificates','0003_data__default_modes','2020-04-06 20:20:14.669403'),(32,'certificates','0004_certificategenerationhistory','2020-04-06 20:20:18.139793'),(33,'certificates','0005_auto_20151208_0801','2020-04-06 20:20:18.650373'),(34,'certificates','0006_certificatetemplateasset_asset_slug','2020-04-06 20:20:19.952622'),(35,'certificates','0007_certificateinvalidation','2020-04-06 20:20:23.531753'),(36,'badges','0001_initial','2020-04-06 20:20:32.984582'),(37,'badges','0002_data__migrate_assertions','2020-04-06 20:20:33.272864'),(38,'badges','0003_schema__add_event_configuration','2020-04-06 20:20:35.399047'),(39,'block_structure','0001_config','2020-04-06 20:20:37.557390'),(40,'block_structure','0002_blockstructuremodel','2020-04-06 20:20:38.552958'),(41,'block_structure','0003_blockstructuremodel_storage','2020-04-06 20:20:38.628412'),(42,'block_structure','0004_blockstructuremodel_usagekeywithrun','2020-04-06 20:20:38.694305'),(43,'bookmarks','0001_initial','2020-04-06 20:20:47.497840'),(44,'branding','0001_initial','2020-04-06 20:20:52.400782'),(45,'course_modes','0001_initial','2020-04-06 20:20:55.302723'),(46,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2020-04-06 20:20:56.675720'),(47,'course_modes','0003_auto_20151113_1443','2020-04-06 20:20:57.061595'),(48,'course_modes','0004_auto_20151113_1457','2020-04-06 20:20:59.064635'),(49,'course_modes','0005_auto_20151217_0958','2020-04-06 20:20:59.157735'),(50,'course_modes','0006_auto_20160208_1407','2020-04-06 20:20:59.259126'),(51,'course_modes','0007_coursemode_bulk_sku','2020-04-06 20:21:01.331084'),(52,'course_groups','0001_initial','2020-04-06 20:21:18.874527'),(53,'bulk_email','0001_initial','2020-04-06 20:21:26.735659'),(54,'bulk_email','0002_data__load_course_email_template','2020-04-06 20:21:27.147933'),(55,'bulk_email','0003_config_model_feature_flag','2020-04-06 20:21:28.220096'),(56,'bulk_email','0004_add_email_targets','2020-04-06 20:21:32.809356'),(57,'bulk_email','0005_move_target_data','2020-04-06 20:21:32.966700'),(58,'bulk_email','0006_course_mode_targets','2020-04-06 20:21:34.786855'),(59,'courseware','0001_initial','2020-04-06 20:21:51.090691'),(60,'bulk_grades','0001_initial','2020-04-06 20:21:53.124585'),(61,'bulk_grades','0002_auto_20190703_1526','2020-04-06 20:21:53.347731'),(62,'calendar_sync','0001_initial','2020-04-06 20:21:56.823225'),(63,'catalog','0001_initial','2020-04-06 20:21:57.907778'),(64,'catalog','0002_catalogintegration_username','2020-04-06 20:21:58.544621'),(65,'catalog','0003_catalogintegration_page_size','2020-04-06 20:21:59.215518'),(66,'catalog','0004_auto_20170616_0618','2020-04-06 20:21:59.319832'),(67,'catalog','0005_catalogintegration_long_term_cache_ttl','2020-04-06 20:21:59.963962'),(68,'celery_utils','0001_initial','2020-04-06 20:22:01.247114'),(69,'celery_utils','0002_chordable_django_backend','2020-04-06 20:22:01.281917'),(70,'certificates','0008_schema__remove_badges','2020-04-06 20:22:02.467860'),(71,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2020-04-06 20:22:03.778675'),(72,'certificates','0010_certificatetemplate_language','2020-04-06 20:22:04.340237'),(73,'certificates','0011_certificatetemplate_alter_unique','2020-04-06 20:22:04.902225'),(74,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2020-04-06 20:22:05.425022'),(75,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2020-04-06 20:22:05.905857'),(76,'certificates','0014_change_eligible_certs_manager','2020-04-06 20:22:06.008635'),(77,'certificates','0015_add_masters_choice','2020-04-06 20:22:06.121904'),(78,'certificates','0016_historicalgeneratedcertificate','2020-04-06 20:22:08.141230'),(79,'commerce','0001_data__add_ecommerce_service_user','2020-04-06 20:22:08.561750'),(80,'commerce','0002_commerceconfiguration','2020-04-06 20:22:09.758778'),(81,'commerce','0003_auto_20160329_0709','2020-04-06 20:22:09.892878'),(82,'commerce','0004_auto_20160531_0950','2020-04-06 20:22:11.245308'),(83,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2020-04-06 20:22:11.917132'),(84,'commerce','0006_auto_20170424_1734','2020-04-06 20:22:12.141462'),(85,'commerce','0007_auto_20180313_0609','2020-04-06 20:22:13.350746'),(86,'commerce','0008_auto_20191024_2048','2020-04-06 20:22:13.549201'),(87,'completion','0001_initial','2020-04-06 20:22:15.553181'),(88,'completion','0002_auto_20180125_1510','2020-04-06 20:22:15.662850'),(89,'completion','0003_learning_context','2020-04-06 20:22:15.977425'),(90,'enterprise','0001_initial','2020-04-06 20:22:18.872530'),(91,'enterprise','0002_enterprisecustomerbrandingconfiguration','2020-04-06 20:22:20.038009'),(92,'enterprise','0003_auto_20161104_0937','2020-04-06 20:22:23.113894'),(93,'enterprise','0004_auto_20161114_0434','2020-04-06 20:22:25.003902'),(94,'enterprise','0005_pendingenterprisecustomeruser','2020-04-06 20:22:26.088773'),(95,'enterprise','0006_auto_20161121_0241','2020-04-06 20:22:26.368536'),(96,'enterprise','0007_auto_20161109_1511','2020-04-06 20:22:27.745753'),(97,'enterprise','0008_auto_20161124_2355','2020-04-06 20:22:30.598756'),(98,'enterprise','0009_auto_20161130_1651','2020-04-06 20:22:36.025354'),(99,'enterprise','0010_auto_20161222_1212','2020-04-06 20:22:37.390692'),(100,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2020-04-06 20:22:40.566059'),(101,'enterprise','0012_auto_20170125_1033','2020-04-06 20:22:40.711835'),(102,'enterprise','0013_auto_20170125_1157','2020-04-06 20:22:43.719254'),(103,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2020-04-06 20:22:46.517053'),(104,'enterprise','0015_auto_20170130_0003','2020-04-06 20:22:48.442026'),(105,'enterprise','0016_auto_20170405_0647','2020-04-06 20:22:49.491814'),(106,'enterprise','0017_auto_20170508_1341','2020-04-06 20:22:49.815942'),(107,'enterprise','0018_auto_20170511_1357','2020-04-06 20:22:51.183075'),(108,'enterprise','0019_auto_20170606_1853','2020-04-06 20:22:52.794873'),(109,'enterprise','0020_auto_20170624_2316','2020-04-06 20:22:56.171303'),(110,'enterprise','0021_auto_20170711_0712','2020-04-06 20:22:59.903726'),(111,'enterprise','0022_auto_20170720_1543','2020-04-06 20:23:00.295373'),(112,'enterprise','0023_audit_data_reporting_flag','2020-04-06 20:23:01.650633'),(113,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2020-04-06 20:23:04.591226'),(114,'enterprise','0025_auto_20170828_1412','2020-04-06 20:23:08.538532'),(115,'enterprise','0026_make_require_account_level_consent_nullable','2020-04-06 20:23:09.768536'),(116,'enterprise','0027_remove_account_level_consent','2020-04-06 20:23:14.334789'),(117,'enterprise','0028_link_enterprise_to_enrollment_template','2020-04-06 20:23:18.172092'),(118,'enterprise','0029_auto_20170925_1909','2020-04-06 20:23:19.622342'),(119,'enterprise','0030_auto_20171005_1600','2020-04-06 20:23:20.987736'),(120,'enterprise','0031_auto_20171012_1249','2020-04-06 20:23:22.251238'),(121,'enterprise','0032_reporting_model','2020-04-06 20:23:23.524762'),(122,'enterprise','0033_add_history_change_reason_field','2020-04-06 20:23:26.965984'),(123,'enterprise','0034_auto_20171023_0727','2020-04-06 20:23:27.117209'),(124,'enterprise','0035_auto_20171212_1129','2020-04-06 20:23:28.442965'),(125,'enterprise','0036_sftp_reporting_support','2020-04-06 20:23:31.223050'),(126,'enterprise','0037_auto_20180110_0450','2020-04-06 20:23:31.383416'),(127,'enterprise','0038_auto_20180122_1427','2020-04-06 20:23:32.440354'),(128,'enterprise','0039_auto_20180129_1034','2020-04-06 20:23:33.735275'),(129,'enterprise','0040_auto_20180129_1428','2020-04-06 20:23:35.234642'),(130,'enterprise','0041_auto_20180212_1507','2020-04-06 20:23:36.027421'),(131,'consent','0001_initial','2020-04-06 20:23:39.011556'),(132,'consent','0002_migrate_to_new_data_sharing_consent','2020-04-06 20:23:39.228655'),(133,'consent','0003_historicaldatasharingconsent_history_change_reason','2020-04-06 20:23:39.926197'),(134,'consent','0004_datasharingconsenttextoverrides','2020-04-06 20:23:41.176474'),(135,'organizations','0001_initial','2020-04-06 20:23:43.834148'),(136,'organizations','0002_auto_20170117_1434','2020-04-06 20:23:43.889881'),(137,'organizations','0003_auto_20170221_1138','2020-04-06 20:23:44.492116'),(138,'organizations','0004_auto_20170413_2315','2020-04-06 20:23:44.573573'),(139,'organizations','0005_auto_20171116_0640','2020-04-06 20:23:44.625528'),(140,'organizations','0006_auto_20171207_0259','2020-04-06 20:23:44.681371'),(141,'organizations','0007_historicalorganization','2020-04-06 20:23:46.502762'),(142,'content_libraries','0001_initial','2020-04-06 20:23:51.126711'),(143,'content_libraries','0002_group_permissions','2020-04-06 20:23:56.715949'),(144,'sites','0002_alter_domain_unique','2020-04-06 20:23:56.995328'),(145,'course_overviews','0001_initial','2020-04-06 20:23:58.347328'),(146,'course_overviews','0002_add_course_catalog_fields','2020-04-06 20:24:00.874075'),(147,'course_overviews','0003_courseoverviewgeneratedhistory','2020-04-06 20:24:01.312053'),(148,'course_overviews','0004_courseoverview_org','2020-04-06 20:24:01.827076'),(149,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2020-04-06 20:24:01.970121'),(150,'course_overviews','0006_courseoverviewimageset','2020-04-06 20:24:02.988968'),(151,'course_overviews','0007_courseoverviewimageconfig','2020-04-06 20:24:04.414229'),(152,'course_overviews','0008_remove_courseoverview_facebook_url','2020-04-06 20:24:04.448840'),(153,'course_overviews','0009_readd_facebook_url','2020-04-06 20:24:04.482025'),(154,'course_overviews','0010_auto_20160329_2317','2020-04-06 20:24:05.432873'),(155,'course_overviews','0011_courseoverview_marketing_url','2020-04-06 20:24:05.868530'),(156,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2020-04-06 20:24:06.451551'),(157,'course_overviews','0013_courseoverview_language','2020-04-06 20:24:06.930871'),(158,'course_overviews','0014_courseoverview_certificate_available_date','2020-04-06 20:24:07.366538'),(159,'content_type_gating','0001_initial','2020-04-06 20:24:10.111635'),(160,'content_type_gating','0002_auto_20181119_0959','2020-04-06 20:24:10.439800'),(161,'content_type_gating','0003_auto_20181128_1407','2020-04-06 20:24:11.272733'),(162,'content_type_gating','0004_auto_20181128_1521','2020-04-06 20:24:11.413851'),(163,'content_type_gating','0005_auto_20190306_1547','2020-04-06 20:24:11.559827'),(164,'content_type_gating','0006_auto_20190308_1447','2020-04-06 20:24:12.293241'),(165,'content_type_gating','0007_auto_20190311_1919','2020-04-06 20:24:15.651688'),(166,'content_type_gating','0008_auto_20190313_1634','2020-04-06 20:24:15.805846'),(167,'contentserver','0001_initial','2020-04-06 20:24:16.802354'),(168,'contentserver','0002_cdnuseragentsconfig','2020-04-06 20:24:17.963540'),(169,'waffle','0001_initial','2020-04-06 20:24:24.493671'),(170,'enterprise','0042_replace_sensitive_sso_username','2020-04-06 20:24:25.812675'),(171,'enterprise','0043_auto_20180507_0138','2020-04-06 20:24:26.154816'),(172,'enterprise','0044_reporting_config_multiple_types','2020-04-06 20:24:28.699325'),(173,'enterprise','0045_report_type_json','2020-04-06 20:24:28.792518'),(174,'enterprise','0046_remove_unique_constraints','2020-04-06 20:24:29.000996'),(175,'enterprise','0047_auto_20180517_0457','2020-04-06 20:24:30.343061'),(176,'enterprise','0048_enterprisecustomeruser_active','2020-04-06 20:24:31.091254'),(177,'enterprise','0049_auto_20180531_0321','2020-04-06 20:24:32.795040'),(178,'enterprise','0050_progress_v2','2020-04-06 20:24:32.894923'),(179,'enterprise','0051_add_enterprise_slug','2020-04-06 20:24:35.189859'),(180,'enterprise','0052_create_unique_slugs','2020-04-06 20:24:35.754870'),(181,'enterprise','0053_pendingenrollment_cohort_name','2020-04-06 20:24:36.384683'),(182,'enterprise','0053_auto_20180911_0811','2020-04-06 20:24:38.333779'),(183,'enterprise','0054_merge_20180914_1511','2020-04-06 20:24:38.378655'),(184,'enterprise','0055_auto_20181015_1112','2020-04-06 20:24:39.862294'),(185,'enterprise','0056_enterprisecustomerreportingconfiguration_pgp_encryption_key','2020-04-06 20:24:40.465900'),(186,'enterprise','0057_enterprisecustomerreportingconfiguration_enterprise_customer_catalogs','2020-04-06 20:24:42.718516'),(187,'enterprise','0058_auto_20181212_0145','2020-04-06 20:24:45.584118'),(188,'enterprise','0059_add_code_management_portal_config','2020-04-06 20:24:47.259536'),(189,'enterprise','0060_upgrade_django_simple_history','2020-04-06 20:24:47.733145'),(190,'enterprise','0061_systemwideenterpriserole_systemwideenterpriseuserroleassignment','2020-04-06 20:24:50.122695'),(191,'enterprise','0062_add_system_wide_enterprise_roles','2020-04-06 20:24:50.500353'),(192,'enterprise','0063_systemwideenterpriserole_description','2020-04-06 20:24:51.270785'),(193,'enterprise','0064_enterprisefeaturerole_enterprisefeatureuserroleassignment','2020-04-06 20:24:53.556267'),(194,'enterprise','0065_add_enterprise_feature_roles','2020-04-06 20:24:53.921652'),(195,'enterprise','0066_add_system_wide_enterprise_operator_role','2020-04-06 20:24:54.635745'),(196,'enterprise','0067_add_role_based_access_control_switch','2020-04-06 20:24:58.108847'),(197,'cornerstone','0001_initial','2020-04-06 20:25:04.027213'),(198,'cornerstone','0002_cornerstoneglobalconfiguration_subject_mapping','2020-04-06 20:25:04.865497'),(199,'cornerstone','0003_auto_20190621_1000','2020-04-06 20:25:07.394674'),(200,'cornerstone','0004_cornerstoneglobalconfiguration_languages','2020-04-06 20:25:08.123989'),(201,'cornerstone','0005_auto_20190925_0730','2020-04-06 20:25:09.497655'),(202,'cornerstone','0006_auto_20191001_0742','2020-04-06 20:25:11.177223'),(203,'cors_csrf','0001_initial','2020-04-06 20:25:12.434970'),(204,'course_action_state','0001_initial','2020-04-06 20:25:15.577777'),(205,'course_overviews','0015_historicalcourseoverview','2020-04-06 20:25:17.327270'),(206,'course_overviews','0016_simulatecoursepublishconfig','2020-04-06 20:25:18.630026'),(207,'course_overviews','0017_auto_20191002_0823','2020-04-06 20:25:18.830951'),(208,'course_overviews','0018_add_start_end_in_CourseOverview','2020-04-06 20:25:21.310110'),(209,'course_overviews','0019_improve_courseoverviewtab','2020-04-06 20:25:24.018200'),(210,'course_date_signals','0001_initial','2020-04-06 20:25:28.233063'),(211,'course_duration_limits','0001_initial','2020-04-06 20:25:31.232220'),(212,'course_duration_limits','0002_auto_20181119_0959','2020-04-06 20:25:31.858241'),(213,'course_duration_limits','0003_auto_20181128_1407','2020-04-06 20:25:32.860111'),(214,'course_duration_limits','0004_auto_20181128_1521','2020-04-06 20:25:33.135172'),(215,'course_duration_limits','0005_auto_20190306_1546','2020-04-06 20:25:33.357574'),(216,'course_duration_limits','0006_auto_20190308_1447','2020-04-06 20:25:33.903891'),(217,'course_duration_limits','0007_auto_20190311_1919','2020-04-06 20:25:38.315837'),(218,'course_duration_limits','0008_auto_20190313_1634','2020-04-06 20:25:38.561129'),(219,'course_goals','0001_initial','2020-04-06 20:25:40.421432'),(220,'course_goals','0002_auto_20171010_1129','2020-04-06 20:25:40.633319'),(221,'course_groups','0002_change_inline_default_cohort_value','2020-04-06 20:25:40.778289'),(222,'course_groups','0003_auto_20170609_1455','2020-04-06 20:25:43.025930'),(223,'course_modes','0008_course_key_field_to_foreign_key','2020-04-06 20:25:43.350806'),(224,'course_modes','0009_suggested_prices_to_charfield','2020-04-06 20:25:43.493720'),(225,'course_modes','0010_archived_suggested_prices_to_charfield','2020-04-06 20:25:43.569962'),(226,'course_modes','0011_change_regex_for_comma_separated_ints','2020-04-06 20:25:43.733950'),(227,'course_modes','0012_historicalcoursemode','2020-04-06 20:25:45.465791'),(228,'course_modes','0013_auto_20200115_2022','2020-04-06 20:25:45.714163'),(229,'course_overviews','0020_courseoverviewtab_url_slug','2020-04-06 20:25:46.224485'),(230,'coursewarehistoryextended','0001_initial','2020-04-06 20:25:46.731478'),(231,'coursewarehistoryextended','0002_force_studentmodule_index','2020-04-06 20:25:46.834406'),(232,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2020-04-06 20:25:49.421000'),(233,'courseware','0003_auto_20170825_0935','2020-04-06 20:25:49.518963'),(234,'courseware','0004_auto_20171010_1639','2020-04-06 20:25:49.600333'),(235,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2020-04-06 20:25:51.013342'),(236,'courseware','0006_remove_module_id_index','2020-04-06 20:25:51.294654'),(237,'courseware','0007_remove_done_index','2020-04-06 20:25:51.540901'),(238,'courseware','0008_move_idde_to_edx_when','2020-04-06 20:25:51.859812'),(239,'courseware','0009_auto_20190703_1955','2020-04-06 20:25:52.127617'),(240,'courseware','0010_auto_20190709_1559','2020-04-06 20:25:52.455587'),(241,'courseware','0011_csm_id_bigint','2020-04-06 20:25:53.531830'),(242,'courseware','0012_adjust_fields','2020-04-06 20:25:53.844175'),(243,'courseware','0013_auto_20191001_1858','2020-04-06 20:25:54.519004'),(244,'courseware','0014_fix_nan_value_for_global_speed','2020-04-06 20:25:54.808130'),(245,'crawlers','0001_initial','2020-04-06 20:25:56.342776'),(246,'crawlers','0002_auto_20170419_0018','2020-04-06 20:25:56.525953'),(247,'credentials','0001_initial','2020-04-06 20:25:57.678866'),(248,'credentials','0002_auto_20160325_0631','2020-04-06 20:25:57.868232'),(249,'credentials','0003_auto_20170525_1109','2020-04-06 20:25:58.157490'),(250,'credentials','0004_notifycredentialsconfig','2020-04-06 20:25:59.361828'),(251,'credit','0001_initial','2020-04-06 20:26:13.039478'),(252,'credit','0002_creditconfig','2020-04-06 20:26:14.353815'),(253,'credit','0003_auto_20160511_2227','2020-04-06 20:26:14.442543'),(254,'credit','0004_delete_historical_credit_records','2020-04-06 20:26:19.882024'),(255,'credit','0005_creditrequirement_sort_value','2020-04-06 20:26:20.479262'),(256,'credit','0006_creditrequirement_alter_ordering','2020-04-06 20:26:20.592163'),(257,'credit','0007_creditrequirement_copy_values','2020-04-06 20:26:20.952400'),(258,'credit','0008_creditrequirement_remove_order','2020-04-06 20:26:21.502047'),(259,'dark_lang','0001_initial','2020-04-06 20:26:22.676784'),(260,'dark_lang','0002_data__enable_on_install','2020-04-06 20:26:23.076090'),(261,'dark_lang','0003_auto_20180425_0359','2020-04-06 20:26:24.572133'),(262,'database_fixups','0001_initial','2020-04-06 20:26:25.195677'),(263,'degreed','0001_initial','2020-04-06 20:26:29.702325'),(264,'degreed','0002_auto_20180104_0103','2020-04-06 20:26:31.280588'),(265,'degreed','0003_auto_20180109_0712','2020-04-06 20:26:31.600402'),(266,'degreed','0004_auto_20180306_1251','2020-04-06 20:26:33.195553'),(267,'degreed','0005_auto_20180807_1302','2020-04-06 20:26:41.880060'),(268,'degreed','0006_upgrade_django_simple_history','2020-04-06 20:26:42.121183'),(269,'degreed','0007_auto_20190925_0730','2020-04-06 20:26:43.896267'),(270,'degreed','0008_auto_20191001_0742','2020-04-06 20:26:45.282623'),(271,'discounts','0001_initial','2020-04-06 20:26:50.134563'),(272,'discounts','0002_auto_20191022_1720','2020-04-06 20:26:54.519245'),(273,'django_comment_common','0001_initial','2020-04-06 20:26:59.958310'),(274,'django_comment_common','0002_forumsconfig','2020-04-06 20:27:01.221447'),(275,'django_comment_common','0003_enable_forums','2020-04-06 20:27:01.609045'),(276,'django_comment_common','0004_auto_20161117_1209','2020-04-06 20:27:01.799671'),(277,'django_comment_common','0005_coursediscussionsettings','2020-04-06 20:27:02.293562'),(278,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2020-04-06 20:27:02.870692'),(279,'django_comment_common','0007_discussionsidmapping','2020-04-06 20:27:03.394314'),(280,'django_comment_common','0008_role_user_index','2020-04-06 20:27:03.871804'),(281,'django_notify','0001_initial','2020-04-06 20:27:10.143928'),(282,'djcelery','0001_initial','2020-04-06 20:27:17.858210'),(283,'edx_proctoring','0001_initial','2020-04-06 20:27:41.306365'),(284,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2020-04-06 20:27:42.236546'),(285,'edx_proctoring','0003_auto_20160101_0525','2020-04-06 20:27:42.605682'),(286,'edx_proctoring','0004_auto_20160201_0523','2020-04-06 20:27:43.193212'),(287,'edx_proctoring','0005_proctoredexam_hide_after_due','2020-04-06 20:27:43.974730'),(288,'edx_proctoring','0006_allowed_time_limit_mins','2020-04-06 20:27:46.160471'),(289,'edx_proctoring','0007_proctoredexam_backend','2020-04-06 20:27:46.982721'),(290,'edx_proctoring','0008_auto_20181116_1551','2020-04-06 20:27:48.676664'),(291,'edx_proctoring','0009_proctoredexamreviewpolicy_remove_rules','2020-04-06 20:27:50.231040'),(292,'edx_proctoring','0010_update_backend','2020-04-06 20:27:50.645572'),(293,'edx_when','0001_initial','2020-04-06 20:27:56.536593'),(294,'edx_when','0002_auto_20190318_1736','2020-04-06 20:28:01.400608'),(295,'edx_when','0003_auto_20190402_1501','2020-04-06 20:28:03.457560'),(296,'edx_when','0004_datepolicy_rel_date','2020-04-06 20:28:04.249546'),(297,'edx_when','0005_auto_20190911_1056','2020-04-06 20:28:05.946189'),(298,'edx_when','0006_drop_active_index','2020-04-06 20:28:06.237149'),(299,'edx_zoom','0001_initial','2020-04-06 20:28:06.774592'),(300,'edx_zoom','0002_lticredential_launch_url','2020-04-06 20:28:07.385319'),(301,'edx_zoom','0003_add_launchlog','2020-04-06 20:28:10.480221'),(302,'edxval','0001_initial','2020-04-06 20:28:18.502376'),(303,'edxval','0002_data__default_profiles','2020-04-06 20:28:19.033610'),(304,'edxval','0003_coursevideo_is_hidden','2020-04-06 20:28:19.740752'),(305,'edxval','0004_data__add_hls_profile','2020-04-06 20:28:20.170838'),(306,'edxval','0005_videoimage','2020-04-06 20:28:21.274174'),(307,'edxval','0006_auto_20171009_0725','2020-04-06 20:28:22.757629'),(308,'edxval','0007_transcript_credentials_state','2020-04-06 20:28:23.472383'),(309,'edxval','0008_remove_subtitles','2020-04-06 20:28:24.317996'),(310,'edxval','0009_auto_20171127_0406','2020-04-06 20:28:24.427004'),(311,'edxval','0010_add_video_as_foreign_key','2020-04-06 20:28:27.087595'),(312,'edxval','0011_data__add_audio_mp3_profile','2020-04-06 20:28:27.529447'),(313,'edxval','0012_thirdpartytranscriptcredentialsstate_has_creds','2020-04-06 20:28:28.147208'),(314,'edxval','0013_thirdpartytranscriptcredentialsstate_copy_values','2020-04-06 20:28:28.548525'),(315,'edxval','0014_transcript_credentials_state_retype_exists','2020-04-06 20:28:29.037186'),(316,'edxval','0015_remove_thirdpartytranscriptcredentialsstate_exists','2020-04-06 20:28:29.812298'),(317,'edxval','0016_add_transcript_credentials_model','2020-04-06 20:28:30.471922'),(318,'email_marketing','0001_initial','2020-04-06 20:28:32.261345'),(319,'email_marketing','0002_auto_20160623_1656','2020-04-06 20:28:38.204992'),(320,'email_marketing','0003_auto_20160715_1145','2020-04-06 20:28:39.671480'),(321,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2020-04-06 20:28:40.574888'),(322,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2020-04-06 20:28:41.625446'),(323,'email_marketing','0006_auto_20170711_0615','2020-04-06 20:28:41.946146'),(324,'email_marketing','0007_auto_20170809_0653','2020-04-06 20:28:43.077758'),(325,'email_marketing','0008_auto_20170809_0539','2020-04-06 20:28:43.477428'),(326,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2020-04-06 20:28:44.147857'),(327,'email_marketing','0010_auto_20180425_0800','2020-04-06 20:28:45.643566'),(328,'embargo','0001_initial','2020-04-06 20:28:52.228054'),(329,'embargo','0002_data__add_countries','2020-04-06 20:28:53.115922'),(330,'enterprise','0068_remove_role_based_access_control_switch','2020-04-06 20:28:54.054386'),(331,'enterprise','0069_auto_20190613_0607','2020-04-06 20:28:55.532230'),(332,'enterprise','0070_enterprise_catalog_query','2020-04-06 20:28:58.426165'),(333,'enterprise','0071_historicalpendingenrollment_historicalpendingenterprisecustomeruser','2020-04-06 20:29:02.109597'),(334,'enterprise','0072_add_enterprise_report_config_feature_role','2020-04-06 20:29:02.641864'),(335,'enterprise','0073_enterprisecustomerreportingconfiguration_uuid','2020-04-06 20:29:04.825769'),(336,'enterprise','0074_auto_20190904_1143','2020-04-06 20:29:06.331259'),(337,'enterprise','0075_auto_20190916_1030','2020-04-06 20:29:10.167094'),(338,'enterprise','0076_auto_20190918_2037','2020-04-06 20:29:12.706255'),(339,'enterprise','0077_auto_20191002_1529','2020-04-06 20:29:15.464552'),(340,'enterprise','0078_auto_20191107_1536','2020-04-06 20:29:15.615039'),(341,'enterprise','0079_AddEnterpriseEnrollmentSource','2020-04-06 20:29:21.906502'),(342,'enterprise','0080_auto_20191113_1708','2020-04-06 20:29:22.062398'),(343,'enterprise','0081_UpdateEnterpriseEnrollmentSource','2020-04-06 20:29:22.552191'),(344,'enterprise','0082_AddManagementEnterpriseEnrollmentSource','2020-04-06 20:29:23.048155'),(345,'enterprise','0083_enterprisecustomerreportingconfiguration_include_date','2020-04-06 20:29:23.810212'),(346,'enterprise','0084_auto_20200120_1137','2020-04-06 20:29:24.154836'),(347,'enterprise','0085_enterprisecustomeruser_linked','2020-04-06 20:29:24.993086'),(348,'enterprise','0086_auto_20200128_1726','2020-04-06 20:29:28.066079'),(349,'enterprise','0087_auto_20200206_1151','2020-04-06 20:29:29.753231'),(350,'enterprise','0088_auto_20200224_1341','2020-04-06 20:29:31.800366'),(351,'enterprise','0089_auto_20200305_0652','2020-04-06 20:29:32.434695'),(352,'enterprise','0090_update_content_filter','2020-04-06 20:29:32.794072'),(353,'enterprise','0091_add_sales_force_id_in_pendingenrollment','2020-04-06 20:29:34.358329'),(354,'enterprise','0092_auto_20200312_1650','2020-04-06 20:29:36.165054'),(355,'student','0001_initial','2020-04-06 20:30:15.739777'),(356,'student','0002_auto_20151208_1034','2020-04-06 20:30:16.201472'),(357,'student','0003_auto_20160516_0938','2020-04-06 20:30:17.780836'),(358,'student','0004_auto_20160531_1422','2020-04-06 20:30:17.924272'),(359,'student','0005_auto_20160531_1653','2020-04-06 20:30:18.340280'),(360,'student','0006_logoutviewconfiguration','2020-04-06 20:30:19.489877'),(361,'student','0007_registrationcookieconfiguration','2020-04-06 20:30:20.591971'),(362,'student','0008_auto_20161117_1209','2020-04-06 20:30:20.718933'),(363,'student','0009_auto_20170111_0422','2020-04-06 20:30:20.839859'),(364,'student','0010_auto_20170207_0458','2020-04-06 20:30:20.875701'),(365,'student','0011_course_key_field_to_foreign_key','2020-04-06 20:30:22.279924'),(366,'student','0012_sociallink','2020-04-06 20:30:23.804482'),(367,'student','0013_delete_historical_enrollment_records','2020-04-06 20:30:27.332679'),(368,'student','0014_courseenrollmentallowed_user','2020-04-06 20:30:29.066348'),(369,'student','0015_manualenrollmentaudit_add_role','2020-04-06 20:30:29.866780'),(370,'student','0016_coursenrollment_course_on_delete_do_nothing','2020-04-06 20:30:30.247051'),(371,'student','0017_accountrecovery','2020-04-06 20:30:31.609827'),(372,'student','0018_remove_password_history','2020-04-06 20:30:32.671219'),(373,'student','0019_auto_20181221_0540','2020-04-06 20:30:35.179168'),(374,'student','0020_auto_20190227_2019','2020-04-06 20:30:35.493849'),(375,'student','0021_historicalcourseenrollment','2020-04-06 20:30:37.796063'),(376,'entitlements','0001_initial','2020-04-06 20:30:40.400495'),(377,'entitlements','0002_auto_20171102_0719','2020-04-06 20:30:42.371163'),(378,'entitlements','0003_auto_20171205_1431','2020-04-06 20:30:46.401173'),(379,'entitlements','0004_auto_20171206_1729','2020-04-06 20:30:47.007815'),(380,'entitlements','0005_courseentitlementsupportdetail','2020-04-06 20:30:49.302322'),(381,'entitlements','0006_courseentitlementsupportdetail_action','2020-04-06 20:30:50.207143'),(382,'entitlements','0007_change_expiration_period_default','2020-04-06 20:30:50.458411'),(383,'entitlements','0008_auto_20180328_1107','2020-04-06 20:30:53.400643'),(384,'entitlements','0009_courseentitlement_refund_locked','2020-04-06 20:30:54.316203'),(385,'entitlements','0010_backfill_refund_lock','2020-04-06 20:30:54.815552'),(386,'entitlements','0011_historicalcourseentitlement','2020-04-06 20:30:57.354413'),(387,'entitlements','0012_allow_blank_order_number_values','2020-04-06 20:30:57.905168'),(388,'entitlements','0013_historicalcourseentitlementsupportdetail','2020-04-06 20:31:00.049918'),(389,'entitlements','0014_auto_20200115_2022','2020-04-06 20:31:00.426984'),(390,'entitlements','0015_add_unique_together_constraint','2020-04-06 20:31:01.527992'),(391,'experiments','0001_initial','2020-04-06 20:31:04.795035'),(392,'experiments','0002_auto_20170627_1402','2020-04-06 20:31:05.777350'),(393,'experiments','0003_auto_20170713_1148','2020-04-06 20:31:05.882113'),(394,'experiments','0004_historicalexperimentkeyvalue','2020-04-06 20:31:07.692708'),(395,'external_user_ids','0001_initial','2020-04-06 20:31:15.901069'),(396,'external_user_ids','0002_mb_coaching_20200210_1754','2020-04-06 20:31:16.460137'),(397,'external_user_ids','0003_auto_20200224_1836','2020-04-06 20:31:17.115710'),(398,'grades','0001_initial','2020-04-06 20:31:19.611967'),(399,'grades','0002_rename_last_edited_field','2020-04-06 20:31:19.781184'),(400,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2020-04-06 20:31:23.197890'),(401,'grades','0004_visibleblocks_course_id','2020-04-06 20:31:24.025919'),(402,'grades','0005_multiple_course_flags','2020-04-06 20:31:24.759892'),(403,'grades','0006_persistent_course_grades','2020-04-06 20:31:25.650953'),(404,'grades','0007_add_passed_timestamp_column','2020-04-06 20:31:26.658577'),(405,'grades','0008_persistentsubsectiongrade_first_attempted','2020-04-06 20:31:27.230945'),(406,'grades','0009_auto_20170111_1507','2020-04-06 20:31:27.975803'),(407,'grades','0010_auto_20170112_1156','2020-04-06 20:31:28.299682'),(408,'grades','0011_null_edited_time','2020-04-06 20:31:29.785632'),(409,'grades','0012_computegradessetting','2020-04-06 20:31:32.141972'),(410,'grades','0013_persistentsubsectiongradeoverride','2020-04-06 20:31:33.820936'),(411,'grades','0014_persistentsubsectiongradeoverridehistory','2020-04-06 20:31:35.895021'),(412,'grades','0015_historicalpersistentsubsectiongradeoverride','2020-04-06 20:31:38.301997'),(413,'grades','0016_auto_20190703_1446','2020-04-06 20:31:41.821830'),(414,'grades','0017_delete_manual_psgoverride_table','2020-04-06 20:31:42.987449'),(415,'instructor_task','0002_gradereportsetting','2020-04-06 20:31:44.404189'),(416,'instructor_task','0003_alter_task_input_field','2020-04-06 20:31:45.622432'),(417,'sap_success_factors','0001_initial','2020-04-06 20:31:52.329255'),(418,'sap_success_factors','0002_auto_20170224_1545','2020-04-06 20:31:56.044700'),(419,'sap_success_factors','0003_auto_20170317_1402','2020-04-06 20:32:00.008634'),(420,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2020-04-06 20:32:00.598555'),(421,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2020-04-06 20:32:01.550460'),(422,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2020-04-06 20:32:02.118079'),(423,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2020-04-06 20:32:03.126406'),(424,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2020-04-06 20:32:04.808699'),(425,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2020-04-06 20:32:05.421943'),(426,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2020-04-06 20:32:06.439598'),(427,'integrated_channel','0001_initial','2020-04-06 20:32:07.148402'),(428,'integrated_channel','0002_delete_enterpriseintegratedchannel','2020-04-06 20:32:07.361517'),(429,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2020-04-06 20:32:07.874441'),(430,'integrated_channel','0004_catalogtransmissionaudit_channel','2020-04-06 20:32:08.475226'),(431,'integrated_channel','0005_auto_20180306_1251','2020-04-06 20:32:10.195306'),(432,'integrated_channel','0006_delete_catalogtransmissionaudit','2020-04-06 20:32:10.411268'),(433,'integrated_channel','0007_auto_20190925_0730','2020-04-06 20:32:10.787966'),(434,'lms_xblock','0001_initial','2020-04-06 20:32:12.236702'),(435,'lx_pathway_plugin','0001_initial','2020-04-06 20:32:14.566526'),(436,'milestones','0001_initial','2020-04-06 20:32:25.478648'),(437,'milestones','0002_data__seed_relationship_types','2020-04-06 20:32:26.082453'),(438,'milestones','0003_coursecontentmilestone_requirements','2020-04-06 20:32:26.937372'),(439,'milestones','0004_auto_20151221_1445','2020-04-06 20:32:28.140236'),(440,'mobile_api','0001_initial','2020-04-06 20:32:29.515212'),(441,'mobile_api','0002_auto_20160406_0904','2020-04-06 20:32:30.938718'),(442,'mobile_api','0003_ignore_mobile_available_flag','2020-04-06 20:32:32.620455'),(443,'oauth2_provider','0001_initial','2020-04-06 20:32:41.860298'),(444,'oauth_dispatch','0001_initial','2020-04-06 20:32:43.302469'),(445,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2020-04-06 20:32:46.384928'),(446,'oauth_dispatch','0003_application_data','2020-04-06 20:32:47.542463'),(447,'oauth_dispatch','0004_auto_20180626_1349','2020-04-06 20:32:53.451878'),(448,'oauth_dispatch','0005_applicationaccess_type','2020-04-06 20:32:54.254469'),(449,'oauth_dispatch','0006_drop_application_id_constraints','2020-04-06 20:32:54.833895'),(450,'oauth2_provider','0002_08_updates','2020-04-06 20:32:57.995633'),(451,'oauth2_provider','0003_auto_20160316_1503','2020-04-06 20:32:59.496545'),(452,'oauth2_provider','0004_auto_20160525_1623','2020-04-06 20:33:00.867794'),(453,'oauth2_provider','0005_auto_20170514_1141','2020-04-06 20:33:22.772544'),(454,'oauth2_provider','0006_auto_20171214_2232','2020-04-06 20:33:27.642597'),(455,'oauth_dispatch','0007_restore_application_id_constraints','2020-04-06 20:33:30.299343'),(456,'oauth_dispatch','0008_applicationaccess_filters','2020-04-06 20:33:30.910483'),(457,'oauth_dispatch','0009_delete_enable_scopes_waffle_switch','2020-04-06 20:33:31.445534'),(458,'problem_builder','0001_initial','2020-04-06 20:33:33.082301'),(459,'problem_builder','0002_auto_20160121_1525','2020-04-06 20:33:35.601587'),(460,'problem_builder','0003_auto_20161124_0755','2020-04-06 20:33:36.939047'),(461,'problem_builder','0004_copy_course_ids','2020-04-06 20:33:37.510167'),(462,'problem_builder','0005_auto_20170112_1021','2020-04-06 20:33:39.409839'),(463,'problem_builder','0006_remove_deprecated_course_id','2020-04-06 20:33:40.316689'),(464,'problem_builder','0007_lengthen_student_id_field','2020-04-06 20:33:41.156753'),(465,'program_enrollments','0001_initial','2020-04-06 20:33:45.389917'),(466,'program_enrollments','0002_historicalprogramcourseenrollment_programcourseenrollment','2020-04-06 20:33:50.050306'),(467,'program_enrollments','0003_auto_20190424_1622','2020-04-06 20:33:50.895685'),(468,'program_enrollments','0004_add_programcourseenrollment_relatedname','2020-04-06 20:33:52.336863'),(469,'program_enrollments','0005_canceled_not_withdrawn','2020-04-06 20:33:53.712264'),(470,'program_enrollments','0006_add_the_correct_constraints','2020-04-06 20:33:55.732069'),(471,'program_enrollments','0007_waiting_programcourseenrollment_constraint','2020-04-06 20:33:56.246211'),(472,'program_enrollments','0008_add_ended_programenrollment_status','2020-04-06 20:33:56.547320'),(473,'program_enrollments','0009_update_course_enrollment_field_to_foreign_key','2020-04-06 20:33:57.972093'),(474,'program_enrollments','0010_add_courseaccessroleassignment','2020-04-06 20:34:00.104410'),(475,'programs','0001_initial','2020-04-06 20:34:01.495440'),(476,'programs','0002_programsapiconfig_cache_ttl','2020-04-06 20:34:02.315091'),(477,'programs','0003_auto_20151120_1613','2020-04-06 20:34:05.502026'),(478,'programs','0004_programsapiconfig_enable_certification','2020-04-06 20:34:06.318584'),(479,'programs','0005_programsapiconfig_max_retries','2020-04-06 20:34:06.989127'),(480,'programs','0006_programsapiconfig_xseries_ad_enabled','2020-04-06 20:34:07.745143'),(481,'programs','0007_programsapiconfig_program_listing_enabled','2020-04-06 20:34:08.499408'),(482,'programs','0008_programsapiconfig_program_details_enabled','2020-04-06 20:34:09.351118'),(483,'programs','0009_programsapiconfig_marketing_path','2020-04-06 20:34:10.064875'),(484,'programs','0010_auto_20170204_2332','2020-04-06 20:34:10.598211'),(485,'programs','0011_auto_20170301_1844','2020-04-06 20:34:20.157357'),(486,'programs','0012_auto_20170419_0018','2020-04-06 20:34:20.354591'),(487,'programs','0013_customprogramsconfig','2020-04-06 20:34:21.510205'),(488,'redirects','0001_initial','2020-04-06 20:34:23.365315'),(489,'rss_proxy','0001_initial','2020-04-06 20:34:23.906419'),(490,'sap_success_factors','0011_auto_20180104_0103','2020-04-06 20:34:26.481835'),(491,'sap_success_factors','0012_auto_20180109_0712','2020-04-06 20:34:26.749504'),(492,'sap_success_factors','0013_auto_20180306_1251','2020-04-06 20:34:28.214613'),(493,'sap_success_factors','0014_drop_historical_table','2020-04-06 20:34:28.788694'),(494,'sap_success_factors','0015_auto_20180510_1259','2020-04-06 20:34:31.128747'),(495,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2020-04-06 20:34:31.769224'),(496,'sap_success_factors','0017_sapsuccessfactorsglobalconfiguration_search_student_api_path','2020-04-06 20:34:32.433884'),(497,'sap_success_factors','0018_sapsuccessfactorsenterprisecustomerconfiguration_show_course_price','2020-04-06 20:34:33.164244'),(498,'sap_success_factors','0019_auto_20190925_0730','2020-04-06 20:34:34.064026'),(499,'sap_success_factors','0020_sapsuccessfactorsenterprisecustomerconfiguration_catalogs_to_transmit','2020-04-06 20:34:34.703080'),(500,'sap_success_factors','0021_sapsuccessfactorsenterprisecustomerconfiguration_show_total_hours','2020-04-06 20:34:35.869506'),(501,'sap_success_factors','0022_auto_20200206_1046','2020-04-06 20:34:37.786826'),(502,'schedules','0001_initial','2020-04-06 20:34:39.101961'),(503,'schedules','0002_auto_20170816_1532','2020-04-06 20:34:39.816437'),(504,'schedules','0003_scheduleconfig','2020-04-06 20:34:41.802571'),(505,'schedules','0004_auto_20170922_1428','2020-04-06 20:34:43.475186'),(506,'schedules','0005_auto_20171010_1722','2020-04-06 20:34:45.002609'),(507,'schedules','0006_scheduleexperience','2020-04-06 20:34:46.326151'),(508,'schedules','0007_scheduleconfig_hold_back_ratio','2020-04-06 20:34:47.088214'),(509,'schedules','0008_add_new_start_date_field','2020-04-06 20:34:48.060198'),(510,'schedules','0009_schedule_copy_column_values','2020-04-06 20:34:48.616327'),(511,'schedules','0010_remove_null_blank_from_schedules_date','2020-04-06 20:34:49.761256'),(512,'schedules','0011_auto_20200228_2018','2020-04-06 20:34:50.082535'),(513,'schedules','0012_auto_20200302_1914','2020-04-06 20:34:50.396824'),(514,'schedules','0013_historicalschedule','2020-04-06 20:34:53.026202'),(515,'schedules','0014_historicalschedule_drop_fk','2020-04-06 20:34:53.403609'),(516,'schedules','0015_schedules_start_nullable','2020-04-06 20:34:55.045020'),(517,'schedules','0016_remove_start_from_schedules','2020-04-06 20:34:55.693237'),(518,'schedules','0017_remove_start_from_historicalschedule','2020-04-06 20:34:56.537782'),(519,'schedules','0018_readd_historicalschedule_fks','2020-04-06 20:34:58.366679'),(520,'schedules','0019_auto_20200316_1935','2020-04-06 20:35:00.888497'),(521,'self_paced','0001_initial','2020-04-06 20:35:02.103817'),(522,'sessions','0001_initial','2020-04-06 20:35:02.759859'),(523,'shoppingcart','0001_initial','2020-04-06 20:35:44.129944'),(524,'shoppingcart','0002_auto_20151208_1034','2020-04-06 20:35:44.440609'),(525,'shoppingcart','0003_auto_20151217_0958','2020-04-06 20:35:44.808530'),(526,'shoppingcart','0004_change_meta_options','2020-04-06 20:35:44.977810'),(527,'site_configuration','0001_initial','2020-04-06 20:35:47.360696'),(528,'site_configuration','0002_auto_20160720_0231','2020-04-06 20:35:48.846156'),(529,'site_configuration','0003_auto_20200217_1058','2020-04-06 20:35:49.093978'),(530,'site_configuration','0004_add_site_values_field','2020-04-06 20:35:50.592176'),(531,'site_configuration','0005_populate_siteconfig_history_site_values','2020-04-06 20:35:50.680874'),(532,'site_configuration','0006_copy_values_to_site_values','2020-04-06 20:35:51.979421'),(533,'site_configuration','0007_remove_values_field','2020-04-06 20:35:53.178839'),(534,'default','0001_initial','2020-04-06 20:35:56.462977'),(535,'social_auth','0001_initial','2020-04-06 20:35:56.540180'),(536,'default','0002_add_related_name','2020-04-06 20:35:57.604102'),(537,'social_auth','0002_add_related_name','2020-04-06 20:35:57.658365'),(538,'default','0003_alter_email_max_length','2020-04-06 20:35:58.488312'),(539,'social_auth','0003_alter_email_max_length','2020-04-06 20:35:58.573258'),(540,'default','0004_auto_20160423_0400','2020-04-06 20:35:58.779150'),(541,'social_auth','0004_auto_20160423_0400','2020-04-06 20:35:58.827504'),(542,'social_auth','0005_auto_20160727_2333','2020-04-06 20:35:59.196618'),(543,'social_django','0006_partial','2020-04-06 20:35:59.787397'),(544,'social_django','0007_code_timestamp','2020-04-06 20:36:00.701854'),(545,'social_django','0008_partial_timestamp','2020-04-06 20:36:01.573527'),(546,'splash','0001_initial','2020-04-06 20:36:02.778304'),(547,'static_replace','0001_initial','2020-04-06 20:36:04.002947'),(548,'static_replace','0002_assetexcludedextensionsconfig','2020-04-06 20:36:05.262527'),(549,'status','0001_initial','2020-04-06 20:36:08.158283'),(550,'status','0002_update_help_text','2020-04-06 20:36:08.359445'),(551,'student','0022_indexing_in_courseenrollment','2020-04-06 20:36:08.780470'),(552,'student','0023_bulkunenrollconfiguration','2020-04-06 20:36:09.931663'),(553,'student','0024_fbeenrollmentexclusion','2020-04-06 20:36:11.136473'),(554,'student','0025_auto_20191101_1846','2020-04-06 20:36:11.722187'),(555,'student','0026_allowedauthuser','2020-04-06 20:36:13.029456'),(556,'student','0027_courseenrollment_mode_callable_default','2020-04-06 20:36:13.369304'),(557,'student','0028_historicalmanualenrollmentaudit','2020-04-06 20:36:16.380904'),(558,'student','0029_add_data_researcher','2020-04-06 20:36:17.033842'),(559,'student','0030_userprofile_phone_number','2020-04-06 20:36:17.973836'),(560,'student','0031_auto_20200317_1122','2020-04-06 20:36:19.242074'),(561,'submissions','0001_initial','2020-04-06 20:36:28.438545'),(562,'submissions','0002_auto_20151119_0913','2020-04-06 20:36:30.090175'),(563,'submissions','0003_submission_status','2020-04-06 20:36:30.840322'),(564,'submissions','0004_remove_django_extensions','2020-04-06 20:36:31.017329'),(565,'submissions','0005_CreateTeamModel','2020-04-06 20:36:35.003561'),(566,'super_csv','0001_initial','2020-04-06 20:36:35.805043'),(567,'super_csv','0002_csvoperation_user','2020-04-06 20:36:37.493497'),(568,'super_csv','0003_csvoperation_original_filename','2020-04-06 20:36:38.329513'),(569,'survey','0001_initial','2020-04-06 20:36:42.224593'),(570,'system_wide_roles','0001_SystemWideRole_SystemWideRoleAssignment','2020-04-06 20:36:44.490470'),(571,'system_wide_roles','0002_add_system_wide_student_support_role','2020-04-06 20:36:45.192944'),(572,'teams','0001_initial','2020-04-06 20:36:49.603651'),(573,'teams','0002_slug_field_ids','2020-04-06 20:36:50.064037'),(574,'teams','0003_courseteam_organization_protected','2020-04-06 20:36:51.075508'),(575,'teams','0004_alter_defaults','2020-04-06 20:36:52.786377'),(576,'theming','0001_initial','2020-04-06 20:36:54.105853'),(577,'third_party_auth','0001_initial','2020-04-06 20:37:00.547166'),(578,'third_party_auth','0002_schema__provider_icon_image','2020-04-06 20:37:03.508822'),(579,'third_party_auth','0003_samlproviderconfig_debug_mode','2020-04-06 20:37:04.260807'),(580,'third_party_auth','0004_add_visible_field','2020-04-06 20:37:07.494633'),(581,'third_party_auth','0005_add_site_field','2020-04-06 20:37:16.338138'),(582,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2020-04-06 20:37:17.317518'),(583,'third_party_auth','0007_auto_20170406_0912','2020-04-06 20:37:18.449405'),(584,'third_party_auth','0008_auto_20170413_1455','2020-04-06 20:37:21.154537'),(585,'third_party_auth','0009_auto_20170415_1144','2020-04-06 20:37:23.665311'),(586,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2020-04-06 20:37:26.230507'),(587,'third_party_auth','0011_auto_20170616_0112','2020-04-06 20:37:26.520773'),(588,'third_party_auth','0012_auto_20170626_1135','2020-04-06 20:37:29.184212'),(589,'third_party_auth','0013_sync_learner_profile_data','2020-04-06 20:37:32.447946'),(590,'third_party_auth','0014_auto_20171222_1233','2020-04-06 20:37:34.888823'),(591,'third_party_auth','0015_samlproviderconfig_archived','2020-04-06 20:37:35.760146'),(592,'third_party_auth','0016_auto_20180130_0938','2020-04-06 20:37:38.512363'),(593,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2020-04-06 20:37:41.045962'),(594,'third_party_auth','0018_auto_20180327_1631','2020-04-06 20:37:43.567532'),(595,'third_party_auth','0019_consolidate_slug','2020-04-06 20:37:47.457258'),(596,'third_party_auth','0020_cleanup_slug_fields','2020-04-06 20:37:49.238742'),(597,'third_party_auth','0021_sso_id_verification','2020-04-06 20:37:52.895266'),(598,'third_party_auth','0022_auto_20181012_0307','2020-04-06 20:37:57.235375'),(599,'third_party_auth','0023_auto_20190418_2033','2020-04-06 20:38:02.229535'),(600,'third_party_auth','0024_fix_edit_disallowed','2020-04-06 20:38:06.746003'),(601,'third_party_auth','0025_auto_20200303_1448','2020-04-06 20:38:07.132741'),(602,'third_party_auth','0026_auto_20200401_1932','2020-04-06 20:38:08.450831'),(603,'thumbnail','0001_initial','2020-04-06 20:38:08.864301'),(604,'track','0001_initial','2020-04-06 20:38:09.283211'),(605,'track','0002_delete_trackinglog','2020-04-06 20:38:09.495519'),(606,'user_api','0001_initial','2020-04-06 20:38:15.653893'),(607,'user_api','0002_retirementstate_userretirementstatus','2020-04-06 20:38:21.050810'),(608,'user_api','0003_userretirementrequest','2020-04-06 20:38:22.342390'),(609,'user_api','0004_userretirementpartnerreportingstatus','2020-04-06 20:38:24.402941'),(610,'user_authn','0001_data__add_login_service','2020-04-06 20:38:25.113923'),(611,'util','0001_initial','2020-04-06 20:38:26.360368'),(612,'util','0002_data__default_rate_limit_config','2020-04-06 20:38:27.114203'),(613,'verified_track_content','0001_initial','2020-04-06 20:38:27.642339'),(614,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2020-04-06 20:38:28.321283'),(615,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2020-04-06 20:38:29.732061'),(616,'verify_student','0001_initial','2020-04-06 20:38:47.060091'),(617,'verify_student','0002_auto_20151124_1024','2020-04-06 20:38:48.482063'),(618,'verify_student','0003_auto_20151113_1443','2020-04-06 20:38:49.665149'),(619,'verify_student','0004_delete_historical_records','2020-04-06 20:38:50.656931'),(620,'verify_student','0005_remove_deprecated_models','2020-04-06 20:38:57.624892'),(621,'verify_student','0006_ssoverification','2020-04-06 20:38:59.673867'),(622,'verify_student','0007_idverificationaggregate','2020-04-06 20:39:02.128994'),(623,'verify_student','0008_populate_idverificationaggregate','2020-04-06 20:39:02.797139'),(624,'verify_student','0009_remove_id_verification_aggregate','2020-04-06 20:39:04.690186'),(625,'verify_student','0010_manualverification','2020-04-06 20:39:06.451633'),(626,'verify_student','0011_add_fields_to_sspv','2020-04-06 20:39:08.700851'),(627,'verify_student','0012_sspverificationretryconfig','2020-04-06 20:39:09.961785'),(628,'video_config','0001_initial','2020-04-06 20:39:14.022566'),(629,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2020-04-06 20:39:16.552826'),(630,'video_config','0003_transcriptmigrationsetting','2020-04-06 20:39:17.769871'),(631,'video_config','0004_transcriptmigrationsetting_command_run','2020-04-06 20:39:18.505519'),(632,'video_config','0005_auto_20180719_0752','2020-04-06 20:39:19.577514'),(633,'video_config','0006_videothumbnailetting_updatedcoursevideos','2020-04-06 20:39:21.571416'),(634,'video_config','0007_videothumbnailsetting_offset','2020-04-06 20:39:22.318212'),(635,'video_config','0008_courseyoutubeblockedflag','2020-04-06 20:39:23.764958'),(636,'video_pipeline','0001_initial','2020-04-06 20:39:24.980309'),(637,'video_pipeline','0002_auto_20171114_0704','2020-04-06 20:39:25.973412'),(638,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2020-04-06 20:39:28.496279'),(639,'waffle','0002_auto_20161201_0958','2020-04-06 20:39:28.598101'),(640,'waffle','0003_update_strings_for_i18n','2020-04-06 20:39:36.656562'),(641,'waffle_utils','0001_initial','2020-04-06 20:39:38.330992'),(642,'wiki','0001_initial','2020-04-06 20:40:19.489501'),(643,'wiki','0002_remove_article_subscription','2020-04-06 20:40:19.696481'),(644,'wiki','0003_ip_address_conv','2020-04-06 20:40:22.582697'),(645,'wiki','0004_increase_slug_size','2020-04-06 20:40:23.695685'),(646,'wiki','0005_remove_attachments_and_images','2020-04-06 20:40:29.397593'),(647,'wiki','0006_auto_20200110_1003','2020-04-06 20:40:30.451101'),(648,'workflow','0001_initial','2020-04-06 20:40:34.322969'),(649,'workflow','0002_remove_django_extensions','2020-04-06 20:40:34.523997'),(650,'workflow','0003_TeamWorkflows','2020-04-06 20:40:35.684411'),(651,'xapi','0001_initial','2020-04-06 20:40:36.964770'),(652,'xapi','0002_auto_20180726_0142','2020-04-06 20:40:37.292448'),(653,'xapi','0003_auto_20190807_1006','2020-04-06 20:40:39.522351'),(654,'xapi','0004_auto_20190830_0710','2020-04-06 20:40:40.261761'),(655,'xblock_django','0001_initial','2020-04-06 20:40:41.535648'),(656,'xblock_django','0002_auto_20160204_0809','2020-04-06 20:40:42.272236'),(657,'xblock_django','0003_add_new_config_models','2020-04-06 20:40:46.583292'),(658,'xblock_django','0004_delete_xblock_disable_config','2020-04-06 20:40:47.495129'),(659,'social_django','0002_add_related_name','2020-04-06 20:40:47.590159'),(660,'social_django','0003_alter_email_max_length','2020-04-06 20:40:47.652555'),(661,'social_django','0004_auto_20160423_0400','2020-04-06 20:40:47.720893'),(662,'social_django','0001_initial','2020-04-06 20:40:47.779375'),(663,'social_django','0005_auto_20160727_2333','2020-04-06 20:40:47.847920'),(664,'contentstore','0001_initial','2020-04-06 20:45:24.945007'),(665,'contentstore','0002_add_assets_page_flag','2020-04-06 20:45:28.264432'),(666,'contentstore','0003_remove_assets_page_flag','2020-04-06 20:45:30.873549'),(667,'contentstore','0004_remove_push_notification_configmodel_table','2020-04-06 20:45:31.963726'),(668,'course_creators','0001_initial','2020-04-06 20:45:33.371774'),(669,'tagging','0001_initial','2020-04-06 20:45:35.269834'),(670,'tagging','0002_auto_20170116_1541','2020-04-06 20:45:35.425120'),(671,'user_tasks','0001_initial','2020-04-06 20:45:39.598519'),(672,'user_tasks','0002_artifact_file_storage','2020-04-06 20:45:39.998208'),(673,'user_tasks','0003_url_max_length','2020-04-06 20:45:40.969168'),(674,'user_tasks','0004_url_textfield','2020-04-06 20:45:41.831214'),(675,'xblock_config','0001_initial','2020-04-06 20:45:43.001919'),(676,'xblock_config','0002_courseeditltifieldsenabledflag','2020-04-06 20:45:44.540675'),(677,'admin','0003_logentry_add_action_flag_choices','2020-07-23 17:24:28.711963'),(678,'auth','0009_alter_user_last_name_max_length','2020-07-23 17:24:29.305522'),(679,'auth','0010_alter_group_name_max_length','2020-07-23 17:24:29.441315'),(680,'auth','0011_update_proxy_permissions','2020-07-23 17:24:30.390451'),(681,'calendar_sync','0002_auto_20200709_1743','2020-07-23 17:24:30.762498'),(682,'course_overviews','0021_courseoverviewtab_link','2020-07-23 17:24:30.927224'),(683,'course_overviews','0022_courseoverviewtab_is_hidden','2020-07-23 17:24:31.402116'),(684,'edx_when','0007_meta_tweaks','2020-07-23 17:24:31.492114'),(685,'edxval','0002_add_error_description_field','2020-07-23 17:24:31.595764'),(686,'edxval','0003_delete_transcriptcredentials','2020-07-23 17:24:31.711897'),(687,'enterprise','0093_add_use_enterprise_catalog_flag','2020-07-23 17:24:32.690727'),(688,'enterprise','0094_add_use_enterprise_catalog_sample','2020-07-23 17:24:34.511748'),(689,'enterprise','0095_auto_20200507_1138','2020-07-23 17:24:34.910227'),(690,'enterprise','0096_enterprise_catalog_admin_role','2020-07-23 17:24:35.886463'),(691,'enterprise','0097_auto_20200619_1130','2020-07-23 17:24:36.134016'),(692,'enterprise','0098_auto_20200629_1756','2020-07-23 17:24:36.392088'),(693,'enterprise','0099_auto_20200702_1537','2020-07-23 17:24:36.638506'),(694,'enterprise','0100_add_licensed_enterprise_course_enrollment','2020-07-23 17:24:37.001072'),(695,'enterprise','0101_move_data_to_saved_for_later','2020-07-23 17:24:37.584007'),(696,'enterprise','0102_auto_20200708_1615','2020-07-23 17:24:37.864753'),(697,'enterprise','0103_remove_marked_done','2020-07-23 17:24:38.098799'),(698,'external_user_ids','0004_add_lti_type','2020-07-23 17:24:39.085598'),(699,'grades','0018_add_waffle_flag_defaults','2020-07-23 17:24:39.643363'),(700,'learning_sequences','0001_initial','2020-07-23 17:24:40.486476'),(701,'learning_sequences','0002_coursesectionsequence_inaccessible_after_due','2020-07-23 17:24:40.693569'),(702,'oauth2_provider','0002_auto_20190406_1805','2020-07-23 17:24:40.954257'),(703,'social_django','0009_auto_20191118_0520','2020-07-23 17:24:41.213048'),(704,'social_django','0010_uid_db_index','2020-07-23 17:24:41.337615'),(705,'student','0032_removed_logout_view_configuration','2020-07-23 17:24:42.251700'),(706,'student','0033_userprofile_state','2020-07-23 17:24:42.587458'),(707,'student','0034_courseenrollmentcelebration','2020-07-23 17:24:42.966080'),(708,'video_pipeline','0004_vempipelineintegration','2020-07-23 17:24:43.375493'),(709,'video_pipeline','0005_add_vem_course_percentage','2020-07-23 17:24:43.705360'),(710,'integrated_channel','0001_squashed_0007_auto_20190925_0730','2020-07-23 17:24:43.731737'),(711,'student','0001_squashed_0031_auto_20200317_1122','2020-07-23 17:24:43.744895'),(712,'enterprise','0001_squashed_0092_auto_20200312_1650','2020-07-23 17:24:43.757644'),(713,'sap_success_factors','0001_squashed_0022_auto_20200206_1046','2020-07-23 17:24:43.770766'),(714,'third_party_auth','0001_squashed_0026_auto_20200401_1932','2020-07-23 17:24:43.784860'),(715,'organizations','0001_squashed_0007_historicalorganization','2020-07-23 17:24:43.797617'),(716,'edxval','0001_squashed_0016_add_transcript_credentials_model','2020-07-23 17:24:43.810271'),(717,'submissions','0001_squashed_0005_CreateTeamModel','2020-07-23 17:24:43.822615'),(718,'contentstore','0005_add_enable_checklists_quality_waffle_flag','2020-07-23 17:25:18.851550'); +/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_redirect` +-- + +DROP TABLE IF EXISTS `django_redirect`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_redirect` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `site_id` int(11) NOT NULL, + `old_path` varchar(200) NOT NULL, + `new_path` varchar(200) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `django_redirect_site_id_old_path_ac5dd16b_uniq` (`site_id`,`old_path`), + KEY `django_redirect_old_path_c6cc94d3` (`old_path`), + CONSTRAINT `django_redirect_site_id_c3e37341_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_redirect` +-- + +LOCK TABLES `django_redirect` WRITE; +/*!40000 ALTER TABLE `django_redirect` DISABLE KEYS */; +/*!40000 ALTER TABLE `django_redirect` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_session` +-- + +DROP TABLE IF EXISTS `django_session`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_session` ( + `session_key` varchar(40) NOT NULL, + `session_data` longtext NOT NULL, + `expire_date` datetime(6) NOT NULL, + PRIMARY KEY (`session_key`), + KEY `django_session_expire_date_a5c62663` (`expire_date`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_session` +-- + +LOCK TABLES `django_session` WRITE; +/*!40000 ALTER TABLE `django_session` DISABLE KEYS */; +/*!40000 ALTER TABLE `django_session` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_site` +-- + +DROP TABLE IF EXISTS `django_site`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_site` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `domain` varchar(100) NOT NULL, + `name` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `django_site_domain_a2e37b91_uniq` (`domain`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_site` +-- + +LOCK TABLES `django_site` WRITE; +/*!40000 ALTER TABLE `django_site` DISABLE KEYS */; +INSERT INTO `django_site` VALUES (1,'example.com','example.com'); +/*!40000 ALTER TABLE `django_site` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `djcelery_crontabschedule` +-- + +DROP TABLE IF EXISTS `djcelery_crontabschedule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `djcelery_crontabschedule` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `minute` varchar(64) NOT NULL, + `hour` varchar(64) NOT NULL, + `day_of_week` varchar(64) NOT NULL, + `day_of_month` varchar(64) NOT NULL, + `month_of_year` varchar(64) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `djcelery_crontabschedule` +-- + +LOCK TABLES `djcelery_crontabschedule` WRITE; +/*!40000 ALTER TABLE `djcelery_crontabschedule` DISABLE KEYS */; +/*!40000 ALTER TABLE `djcelery_crontabschedule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `djcelery_intervalschedule` +-- + +DROP TABLE IF EXISTS `djcelery_intervalschedule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `djcelery_intervalschedule` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `every` int(11) NOT NULL, + `period` varchar(24) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `djcelery_intervalschedule` +-- + +LOCK TABLES `djcelery_intervalschedule` WRITE; +/*!40000 ALTER TABLE `djcelery_intervalschedule` DISABLE KEYS */; +/*!40000 ALTER TABLE `djcelery_intervalschedule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `djcelery_periodictask` +-- + +DROP TABLE IF EXISTS `djcelery_periodictask`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `djcelery_periodictask` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(200) NOT NULL, + `task` varchar(200) NOT NULL, + `args` longtext NOT NULL, + `kwargs` longtext NOT NULL, + `queue` varchar(200) DEFAULT NULL, + `exchange` varchar(200) DEFAULT NULL, + `routing_key` varchar(200) DEFAULT NULL, + `expires` datetime(6) DEFAULT NULL, + `enabled` tinyint(1) NOT NULL, + `last_run_at` datetime(6) DEFAULT NULL, + `total_run_count` int(10) unsigned NOT NULL, + `date_changed` datetime(6) NOT NULL, + `description` longtext NOT NULL, + `crontab_id` int(11) DEFAULT NULL, + `interval_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + KEY `djcelery_periodictas_crontab_id_75609bab_fk_djcelery_` (`crontab_id`), + KEY `djcelery_periodictas_interval_id_b426ab02_fk_djcelery_` (`interval_id`), + CONSTRAINT `djcelery_periodictas_crontab_id_75609bab_fk_djcelery_` FOREIGN KEY (`crontab_id`) REFERENCES `djcelery_crontabschedule` (`id`), + CONSTRAINT `djcelery_periodictas_interval_id_b426ab02_fk_djcelery_` FOREIGN KEY (`interval_id`) REFERENCES `djcelery_intervalschedule` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `djcelery_periodictask` +-- + +LOCK TABLES `djcelery_periodictask` WRITE; +/*!40000 ALTER TABLE `djcelery_periodictask` DISABLE KEYS */; +/*!40000 ALTER TABLE `djcelery_periodictask` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `djcelery_periodictasks` +-- + +DROP TABLE IF EXISTS `djcelery_periodictasks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `djcelery_periodictasks` ( + `ident` smallint(6) NOT NULL, + `last_update` datetime(6) NOT NULL, + PRIMARY KEY (`ident`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `djcelery_periodictasks` +-- + +LOCK TABLES `djcelery_periodictasks` WRITE; +/*!40000 ALTER TABLE `djcelery_periodictasks` DISABLE KEYS */; +/*!40000 ALTER TABLE `djcelery_periodictasks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `djcelery_taskstate` +-- + +DROP TABLE IF EXISTS `djcelery_taskstate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `djcelery_taskstate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `state` varchar(64) NOT NULL, + `task_id` varchar(36) NOT NULL, + `name` varchar(200) DEFAULT NULL, + `tstamp` datetime(6) NOT NULL, + `args` longtext, + `kwargs` longtext, + `eta` datetime(6) DEFAULT NULL, + `expires` datetime(6) DEFAULT NULL, + `result` longtext, + `traceback` longtext, + `runtime` double DEFAULT NULL, + `retries` int(11) NOT NULL, + `hidden` tinyint(1) NOT NULL, + `worker_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `task_id` (`task_id`), + KEY `djcelery_taskstate_state_53543be4` (`state`), + KEY `djcelery_taskstate_name_8af9eded` (`name`), + KEY `djcelery_taskstate_tstamp_4c3f93a1` (`tstamp`), + KEY `djcelery_taskstate_hidden_c3905e57` (`hidden`), + KEY `djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id` (`worker_id`), + CONSTRAINT `djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id` FOREIGN KEY (`worker_id`) REFERENCES `djcelery_workerstate` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `djcelery_taskstate` +-- + +LOCK TABLES `djcelery_taskstate` WRITE; +/*!40000 ALTER TABLE `djcelery_taskstate` DISABLE KEYS */; +/*!40000 ALTER TABLE `djcelery_taskstate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `djcelery_workerstate` +-- + +DROP TABLE IF EXISTS `djcelery_workerstate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `djcelery_workerstate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `hostname` varchar(255) NOT NULL, + `last_heartbeat` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `hostname` (`hostname`), + KEY `djcelery_workerstate_last_heartbeat_4539b544` (`last_heartbeat`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `djcelery_workerstate` +-- + +LOCK TABLES `djcelery_workerstate` WRITE; +/*!40000 ALTER TABLE `djcelery_workerstate` DISABLE KEYS */; +/*!40000 ALTER TABLE `djcelery_workerstate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edx_when_contentdate` +-- + +DROP TABLE IF EXISTS `edx_when_contentdate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edx_when_contentdate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `location` varchar(255) DEFAULT NULL, + `policy_id` int(11) NOT NULL, + `active` tinyint(1) NOT NULL, + `field` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `edx_when_contentdate_policy_id_location_field_a26790ec_uniq` (`policy_id`,`location`,`field`), + KEY `edx_when_contentdate_course_id_e6c39fdc` (`course_id`), + KEY `edx_when_contentdate_location_485206ea` (`location`), + KEY `edx_when_contentdate_policy_id_af2bcaf4` (`policy_id`), + CONSTRAINT `edx_when_contentdate_policy_id_af2bcaf4_fk_edx_when_` FOREIGN KEY (`policy_id`) REFERENCES `edx_when_datepolicy` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edx_when_contentdate` +-- + +LOCK TABLES `edx_when_contentdate` WRITE; +/*!40000 ALTER TABLE `edx_when_contentdate` DISABLE KEYS */; +INSERT INTO `edx_when_contentdate` VALUES (1,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@48ecb924d7fe4b66a230137626bfa93e',1,1,'start'),(2,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@edx_introduction',2,1,'start'),(3,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@basic_questions',3,1,'start'),(4,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@9fca584977d04885bc911ea76a9ef29e',4,1,'start'),(5,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@chapter+block@1414ffd5143b4b508f739b563ab468b7',2,1,'start'),(6,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@logic_gate_problem',3,1,'start'),(7,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@700x_editmolB',3,1,'start'),(8,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@free_form_simulation',3,1,'start'),(9,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@simulations',2,1,'start'),(10,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@700x_proteinmake',3,1,'start'),(11,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@graded_simulations',3,1,'start'),(12,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@sequential+block@workflow',3,1,'start'),(13,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@html_07d547513285',3,1,'start'),(14,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@html+block@700x_pathways',3,1,'start'),(15,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@python_grader',3,1,'start'),(16,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@course+block@course',5,1,'start'),(17,'course-v1:edX+DemoX+Demo_Course','block-v1:edX+DemoX+Demo_Course+type@problem+block@Sample_Algebraic_Problem',3,1,'start'); +/*!40000 ALTER TABLE `edx_when_contentdate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edx_when_datepolicy` +-- + +DROP TABLE IF EXISTS `edx_when_datepolicy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edx_when_datepolicy` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `abs_date` datetime(6) DEFAULT NULL, + `rel_date` bigint(20) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `edx_when_datepolicy_abs_date_1a510cd3` (`abs_date`), + KEY `edx_when_datepolicy_rel_date_836d6051` (`rel_date`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edx_when_datepolicy` +-- + +LOCK TABLES `edx_when_datepolicy` WRITE; +/*!40000 ALTER TABLE `edx_when_datepolicy` DISABLE KEYS */; +INSERT INTO `edx_when_datepolicy` VALUES (1,'2020-04-06 20:48:32.650742','2020-04-06 20:48:32.650742','1978-02-05 00:00:00.000000',NULL),(2,'2020-04-06 20:48:32.655725','2020-04-06 20:48:32.655725','1970-01-01 05:00:00.000000',NULL),(3,'2020-04-06 20:48:32.732244','2020-04-06 20:48:32.732244','2013-02-05 00:00:00.000000',NULL),(4,'2020-04-06 20:48:32.798726','2020-04-06 20:48:32.798726','2970-01-01 05:00:00.000000',NULL),(5,'2020-04-06 20:48:32.864138','2020-04-06 20:48:32.864138','2013-02-05 05:00:00.000000',NULL); +/*!40000 ALTER TABLE `edx_when_datepolicy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edx_when_userdate` +-- + +DROP TABLE IF EXISTS `edx_when_userdate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edx_when_userdate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `abs_date` datetime(6) DEFAULT NULL, + `rel_date` bigint(20) DEFAULT NULL, + `reason` longtext NOT NULL, + `actor_id` int(11) DEFAULT NULL, + `user_id` int(11) NOT NULL, + `content_date_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `edx_when_userdate_user_id_46e8cc36_fk_auth_user_id` (`user_id`), + KEY `edx_when_userdate_content_date_id_35c5e2e2_fk_edx_when_` (`content_date_id`), + KEY `edx_when_userdate_actor_id_cbef1cdc_fk_auth_user_id` (`actor_id`), + KEY `edx_when_userdate_rel_date_954ee5b4` (`rel_date`), + CONSTRAINT `edx_when_userdate_actor_id_cbef1cdc_fk_auth_user_id` FOREIGN KEY (`actor_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `edx_when_userdate_content_date_id_35c5e2e2_fk_edx_when_` FOREIGN KEY (`content_date_id`) REFERENCES `edx_when_contentdate` (`id`), + CONSTRAINT `edx_when_userdate_user_id_46e8cc36_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edx_when_userdate` +-- + +LOCK TABLES `edx_when_userdate` WRITE; +/*!40000 ALTER TABLE `edx_when_userdate` DISABLE KEYS */; +/*!40000 ALTER TABLE `edx_when_userdate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edx_zoom_launchlog` +-- + +DROP TABLE IF EXISTS `edx_zoom_launchlog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edx_zoom_launchlog` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `location` varchar(255) NOT NULL, + `managed` tinyint(1) NOT NULL, + `first_access` datetime(6) NOT NULL, + `last_access` datetime(6) NOT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `edx_zoom_launchlog_user_id_location_1a925a87_uniq` (`user_id`,`location`), + KEY `edx_zoom_launchlog_course_id_df466312` (`course_id`), + KEY `edx_zoom_launchlog_managed_426683ea` (`managed`), + KEY `edx_zoom_launchlog_first_access_f45fc5ee` (`first_access`), + KEY `edx_zoom_launchlog_last_access_5c5d612f` (`last_access`), + CONSTRAINT `edx_zoom_launchlog_user_id_fad15956_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edx_zoom_launchlog` +-- + +LOCK TABLES `edx_zoom_launchlog` WRITE; +/*!40000 ALTER TABLE `edx_zoom_launchlog` DISABLE KEYS */; +/*!40000 ALTER TABLE `edx_zoom_launchlog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edx_zoom_lticredential` +-- + +DROP TABLE IF EXISTS `edx_zoom_lticredential`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edx_zoom_lticredential` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `key` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `launch_url` varchar(1024) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edx_zoom_lticredential` +-- + +LOCK TABLES `edx_zoom_lticredential` WRITE; +/*!40000 ALTER TABLE `edx_zoom_lticredential` DISABLE KEYS */; +/*!40000 ALTER TABLE `edx_zoom_lticredential` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_coursevideo` +-- + +DROP TABLE IF EXISTS `edxval_coursevideo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_coursevideo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `video_id` int(11) NOT NULL, + `is_hidden` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `edxval_coursevideo_course_id_video_id_ebd82f35_uniq` (`course_id`,`video_id`), + KEY `edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id` (`video_id`), + CONSTRAINT `edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id` FOREIGN KEY (`video_id`) REFERENCES `edxval_video` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_coursevideo` +-- + +LOCK TABLES `edxval_coursevideo` WRITE; +/*!40000 ALTER TABLE `edxval_coursevideo` DISABLE KEYS */; +/*!40000 ALTER TABLE `edxval_coursevideo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_encodedvideo` +-- + +DROP TABLE IF EXISTS `edxval_encodedvideo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_encodedvideo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `url` varchar(200) NOT NULL, + `file_size` int(10) unsigned NOT NULL, + `bitrate` int(10) unsigned NOT NULL, + `profile_id` int(11) NOT NULL, + `video_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id` (`profile_id`), + KEY `edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id` (`video_id`), + CONSTRAINT `edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id` FOREIGN KEY (`profile_id`) REFERENCES `edxval_profile` (`id`), + CONSTRAINT `edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id` FOREIGN KEY (`video_id`) REFERENCES `edxval_video` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_encodedvideo` +-- + +LOCK TABLES `edxval_encodedvideo` WRITE; +/*!40000 ALTER TABLE `edxval_encodedvideo` DISABLE KEYS */; +/*!40000 ALTER TABLE `edxval_encodedvideo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_profile` +-- + +DROP TABLE IF EXISTS `edxval_profile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_profile` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `profile_name` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `profile_name` (`profile_name`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_profile` +-- + +LOCK TABLES `edxval_profile` WRITE; +/*!40000 ALTER TABLE `edxval_profile` DISABLE KEYS */; +INSERT INTO `edxval_profile` VALUES (7,'audio_mp3'),(1,'desktop_mp4'),(2,'desktop_webm'),(6,'hls'),(3,'mobile_high'),(4,'mobile_low'),(5,'youtube'); +/*!40000 ALTER TABLE `edxval_profile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_thirdpartytranscriptcredentialsstate` +-- + +DROP TABLE IF EXISTS `edxval_thirdpartytranscriptcredentialsstate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_thirdpartytranscriptcredentialsstate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `org` varchar(32) NOT NULL, + `provider` varchar(20) NOT NULL, + `has_creds` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `edxval_thirdpartytranscr_org_provider_188f7ddf_uniq` (`org`,`provider`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_thirdpartytranscriptcredentialsstate` +-- + +LOCK TABLES `edxval_thirdpartytranscriptcredentialsstate` WRITE; +/*!40000 ALTER TABLE `edxval_thirdpartytranscriptcredentialsstate` DISABLE KEYS */; +/*!40000 ALTER TABLE `edxval_thirdpartytranscriptcredentialsstate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_transcriptpreference` +-- + +DROP TABLE IF EXISTS `edxval_transcriptpreference`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_transcriptpreference` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `provider` varchar(20) NOT NULL, + `cielo24_fidelity` varchar(20) DEFAULT NULL, + `cielo24_turnaround` varchar(20) DEFAULT NULL, + `three_play_turnaround` varchar(20) DEFAULT NULL, + `preferred_languages` longtext NOT NULL, + `video_source_language` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_transcriptpreference` +-- + +LOCK TABLES `edxval_transcriptpreference` WRITE; +/*!40000 ALTER TABLE `edxval_transcriptpreference` DISABLE KEYS */; +/*!40000 ALTER TABLE `edxval_transcriptpreference` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_video` +-- + +DROP TABLE IF EXISTS `edxval_video`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_video` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `edx_video_id` varchar(100) NOT NULL, + `client_video_id` varchar(255) NOT NULL, + `duration` double NOT NULL, + `status` varchar(255) NOT NULL, + `error_description` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `edx_video_id` (`edx_video_id`), + KEY `edxval_video_client_video_id_2b668312` (`client_video_id`), + KEY `edxval_video_status_5f33a104` (`status`) +) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_video` +-- + +LOCK TABLES `edxval_video` WRITE; +/*!40000 ALTER TABLE `edxval_video` DISABLE KEYS */; +INSERT INTO `edxval_video` VALUES (1,'2020-04-06 20:48:18.698625','911b4654-a298-4d46-92f2-b0bff5521fcd','External Video',0,'external',NULL),(2,'2020-04-06 20:48:18.897459','853adf44-3472-42d1-91b6-f4b0233fa6c5','External Video',0,'external',NULL),(3,'2020-04-06 20:48:19.209156','f414d0bb-9ed7-46d0-ae8f-af5b49c56944','External Video',0,'external',NULL),(4,'2020-04-06 20:48:19.385143','70e36a9c-f330-4f90-a543-151fb29f5205','External Video',0,'external',NULL),(5,'2020-04-06 20:48:19.570773','7f1a548a-3b72-429c-95e6-454262b38264','External Video',0,'external',NULL),(6,'2020-04-06 20:48:41.509287','383b3ed9-d8cd-4136-a429-3d134d9284ee','External Video',0,'external',NULL),(7,'2020-04-06 20:48:41.627676','e3c181e7-ee4c-492b-8dd8-93fdf3540166','External Video',0,'external',NULL),(8,'2020-04-06 20:48:41.912184','f561d41c-254c-4eeb-8cf3-15d98c1ada22','External Video',0,'external',NULL),(9,'2020-04-06 20:48:42.357926','96755daf-2f55-49fd-9382-a3162358d722','External Video',0,'external',NULL),(10,'2020-07-23 17:27:36.433754','3e625ada-36f7-48bb-ae48-61ff9b61d42f','External Video',0,'external',NULL),(11,'2020-07-23 17:27:36.522450','e76c91a9-c767-4d78-92b7-b65821bfd932','External Video',0,'external',NULL),(12,'2020-07-23 17:27:36.579466','a8deedaf-3e95-4f28-a357-abdbe519344c','External Video',0,'external',NULL),(13,'2020-07-23 17:27:36.632942','d037a4d5-62e4-4a0c-aad5-6cb4973a7c3f','External Video',0,'external',NULL),(14,'2020-07-23 17:27:36.688835','121134da-a987-4f69-880c-e65b17af3b7e','External Video',0,'external',NULL),(15,'2020-07-23 17:27:48.398671','1777cd97-2269-441f-9db4-2940573efbb0','External Video',0,'external',NULL),(16,'2020-07-23 17:27:48.433060','19c017ef-515b-41fb-9dfe-ae93af07d10b','External Video',0,'external',NULL),(17,'2020-07-23 17:27:48.527368','cdd424b6-eee1-4df2-a2fa-b17f086ef4fd','External Video',0,'external',NULL),(18,'2020-07-23 17:27:48.629684','4cd38608-dcf4-416d-8a85-c18ac6c82aa7','External Video',0,'external',NULL); +/*!40000 ALTER TABLE `edxval_video` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_videoimage` +-- + +DROP TABLE IF EXISTS `edxval_videoimage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_videoimage` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `image` varchar(500) DEFAULT NULL, + `generated_images` longtext NOT NULL, + `course_video_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_video_id` (`course_video_id`), + CONSTRAINT `edxval_videoimage_course_video_id_06855d34_fk_edxval_co` FOREIGN KEY (`course_video_id`) REFERENCES `edxval_coursevideo` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_videoimage` +-- + +LOCK TABLES `edxval_videoimage` WRITE; +/*!40000 ALTER TABLE `edxval_videoimage` DISABLE KEYS */; +/*!40000 ALTER TABLE `edxval_videoimage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `edxval_videotranscript` +-- + +DROP TABLE IF EXISTS `edxval_videotranscript`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `edxval_videotranscript` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `transcript` varchar(255) DEFAULT NULL, + `language_code` varchar(50) NOT NULL, + `provider` varchar(30) NOT NULL, + `file_format` varchar(20) NOT NULL, + `video_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `edxval_videotranscript_video_id_language_code_37532906_uniq` (`video_id`,`language_code`), + KEY `edxval_videotranscript_language_code_d78ce3d1` (`language_code`), + KEY `edxval_videotranscript_file_format_3adddaf7` (`file_format`), + CONSTRAINT `edxval_videotranscript_video_id_6ffdfb56_fk_edxval_video_id` FOREIGN KEY (`video_id`) REFERENCES `edxval_video` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `edxval_videotranscript` +-- + +LOCK TABLES `edxval_videotranscript` WRITE; +/*!40000 ALTER TABLE `edxval_videotranscript` DISABLE KEYS */; +INSERT INTO `edxval_videotranscript` VALUES (1,'2020-04-06 20:48:18.752516','2020-04-06 20:48:18.788546','video-transcripts/253801793cd34511b7d251258590a5ed.sjson','en','Custom','sjson',1),(2,'2020-04-06 20:48:18.980681','2020-04-06 20:48:19.078941','video-transcripts/35c95c112389474ab5fd15d1d1d50ddc.sjson','en','Custom','sjson',2),(3,'2020-04-06 20:48:19.250898','2020-04-06 20:48:19.290523','video-transcripts/7c44cc59f84144ccb1b8a2b0d5678205.sjson','en','Custom','sjson',3),(4,'2020-04-06 20:48:19.439118','2020-04-06 20:48:19.479810','video-transcripts/a169f79d8e1d429cb6c07e4cf28380ab.sjson','en','Custom','sjson',4),(5,'2020-04-06 20:48:19.619299','2020-04-06 20:48:19.669414','video-transcripts/67ebd03e2c3543c1a2ae64644c7dba0d.sjson','en','Custom','sjson',5),(6,'2020-04-06 20:48:41.703120','2020-04-06 20:48:41.767157','video-transcripts/ace40e58e12749a9b2b86dff11b3b834.sjson','en','Custom','sjson',7),(7,'2020-04-06 20:48:42.003736','2020-04-06 20:48:42.101729','video-transcripts/618a8936ab8e43e593919c4b959aa4fb.sjson','en','Custom','sjson',8),(8,'2020-04-06 20:48:42.396533','2020-04-06 20:48:42.435179','video-transcripts/adeecca77e5e41dc95ff384a8aa614b9.sjson','en','Custom','sjson',9),(9,'2020-07-23 17:27:36.452190','2020-07-23 17:27:36.467330','video-transcripts/6222d8fd06454ad6a2ee270b6e209527.sjson','en','Custom','sjson',10),(10,'2020-07-23 17:27:36.532122','2020-07-23 17:27:36.537362','video-transcripts/795ef97cb60843c386a22ef4a3bf4f45.sjson','en','Custom','sjson',11),(11,'2020-07-23 17:27:36.588363','2020-07-23 17:27:36.594760','video-transcripts/bd2aa3b1275e4c40aa61089a07323732.sjson','en','Custom','sjson',12),(12,'2020-07-23 17:27:36.643612','2020-07-23 17:27:36.648777','video-transcripts/256c666b6e774f22bfd2877a9d5bf2bd.sjson','en','Custom','sjson',13),(13,'2020-07-23 17:27:36.697439','2020-07-23 17:27:36.702821','video-transcripts/7ae1e35e01774f48b54b60abf35fc994.sjson','en','Custom','sjson',14),(14,'2020-07-23 17:27:48.406534','2020-07-23 17:27:48.411398','video-transcripts/a3d294795134408bb2aa2151778cd709.sjson','en','Custom','sjson',15),(15,'2020-07-23 17:27:48.440908','2020-07-23 17:27:48.445052','video-transcripts/a66adde055c247738643650547bc102d.sjson','en','Custom','sjson',16),(16,'2020-07-23 17:27:48.536021','2020-07-23 17:27:48.540021','video-transcripts/0c270507631d445f8cf05da8c3d50374.sjson','en','Custom','sjson',17); +/*!40000 ALTER TABLE `edxval_videotranscript` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_marketing_emailmarketingconfiguration` +-- + +DROP TABLE IF EXISTS `email_marketing_emailmarketingconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `email_marketing_emailmarketingconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `sailthru_key` varchar(32) NOT NULL, + `sailthru_secret` varchar(32) NOT NULL, + `sailthru_new_user_list` varchar(48) NOT NULL, + `sailthru_retry_interval` int(11) NOT NULL, + `sailthru_max_retries` int(11) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `sailthru_abandoned_cart_delay` int(11) NOT NULL, + `sailthru_abandoned_cart_template` varchar(20) NOT NULL, + `sailthru_content_cache_age` int(11) NOT NULL, + `sailthru_enroll_cost` int(11) NOT NULL, + `sailthru_enroll_template` varchar(20) NOT NULL, + `sailthru_get_tags_from_sailthru` tinyint(1) NOT NULL, + `sailthru_purchase_template` varchar(20) NOT NULL, + `sailthru_upgrade_template` varchar(20) NOT NULL, + `sailthru_lms_url_override` varchar(80) NOT NULL, + `welcome_email_send_delay` int(11) NOT NULL, + `user_registration_cookie_timeout_delay` double NOT NULL, + `sailthru_welcome_template` varchar(20) NOT NULL, + `sailthru_verification_failed_template` varchar(20) NOT NULL, + `sailthru_verification_passed_template` varchar(20) NOT NULL, + PRIMARY KEY (`id`), + KEY `email_marketing_emai_changed_by_id_15ce753b_fk_auth_user` (`changed_by_id`), + CONSTRAINT `email_marketing_emai_changed_by_id_15ce753b_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_marketing_emailmarketingconfiguration` +-- + +LOCK TABLES `email_marketing_emailmarketingconfiguration` WRITE; +/*!40000 ALTER TABLE `email_marketing_emailmarketingconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `email_marketing_emailmarketingconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_country` +-- + +DROP TABLE IF EXISTS `embargo_country`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_country` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `country` varchar(2) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `country` (`country`) +) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_country` +-- + +LOCK TABLES `embargo_country` WRITE; +/*!40000 ALTER TABLE `embargo_country` DISABLE KEYS */; +INSERT INTO `embargo_country` VALUES (6,'AD'),(235,'AE'),(1,'AF'),(10,'AG'),(8,'AI'),(3,'AL'),(12,'AM'),(7,'AO'),(9,'AQ'),(11,'AR'),(5,'AS'),(15,'AT'),(14,'AU'),(13,'AW'),(2,'AX'),(16,'AZ'),(29,'BA'),(20,'BB'),(19,'BD'),(22,'BE'),(36,'BF'),(35,'BG'),(18,'BH'),(37,'BI'),(24,'BJ'),(186,'BL'),(25,'BM'),(34,'BN'),(27,'BO'),(28,'BQ'),(32,'BR'),(17,'BS'),(26,'BT'),(31,'BV'),(30,'BW'),(21,'BY'),(23,'BZ'),(41,'CA'),(48,'CC'),(52,'CD'),(43,'CF'),(51,'CG'),(217,'CH'),(55,'CI'),(53,'CK'),(45,'CL'),(40,'CM'),(46,'CN'),(49,'CO'),(54,'CR'),(57,'CU'),(38,'CV'),(58,'CW'),(47,'CX'),(59,'CY'),(60,'CZ'),(84,'DE'),(62,'DJ'),(61,'DK'),(63,'DM'),(64,'DO'),(4,'DZ'),(65,'EC'),(70,'EE'),(66,'EG'),(247,'EH'),(69,'ER'),(211,'ES'),(72,'ET'),(76,'FI'),(75,'FJ'),(73,'FK'),(144,'FM'),(74,'FO'),(77,'FR'),(81,'GA'),(236,'GB'),(89,'GD'),(83,'GE'),(78,'GF'),(93,'GG'),(85,'GH'),(86,'GI'),(88,'GL'),(82,'GM'),(94,'GN'),(90,'GP'),(68,'GQ'),(87,'GR'),(208,'GS'),(92,'GT'),(91,'GU'),(95,'GW'),(96,'GY'),(101,'HK'),(98,'HM'),(100,'HN'),(56,'HR'),(97,'HT'),(102,'HU'),(105,'ID'),(108,'IE'),(110,'IL'),(109,'IM'),(104,'IN'),(33,'IO'),(107,'IQ'),(106,'IR'),(103,'IS'),(111,'IT'),(114,'JE'),(112,'JM'),(115,'JO'),(113,'JP'),(117,'KE'),(121,'KG'),(39,'KH'),(118,'KI'),(50,'KM'),(188,'KN'),(164,'KP'),(209,'KR'),(120,'KW'),(42,'KY'),(116,'KZ'),(122,'LA'),(124,'LB'),(189,'LC'),(128,'LI'),(212,'LK'),(126,'LR'),(125,'LS'),(129,'LT'),(130,'LU'),(123,'LV'),(127,'LY'),(150,'MA'),(146,'MC'),(145,'MD'),(148,'ME'),(190,'MF'),(132,'MG'),(138,'MH'),(165,'MK'),(136,'ML'),(152,'MM'),(147,'MN'),(131,'MO'),(166,'MP'),(139,'MQ'),(140,'MR'),(149,'MS'),(137,'MT'),(141,'MU'),(135,'MV'),(133,'MW'),(143,'MX'),(134,'MY'),(151,'MZ'),(153,'NA'),(157,'NC'),(160,'NE'),(163,'NF'),(161,'NG'),(159,'NI'),(156,'NL'),(167,'NO'),(155,'NP'),(154,'NR'),(162,'NU'),(158,'NZ'),(168,'OM'),(172,'PA'),(175,'PE'),(79,'PF'),(173,'PG'),(176,'PH'),(169,'PK'),(178,'PL'),(191,'PM'),(177,'PN'),(180,'PR'),(171,'PS'),(179,'PT'),(170,'PW'),(174,'PY'),(181,'QA'),(182,'RE'),(183,'RO'),(198,'RS'),(184,'RU'),(185,'RW'),(196,'SA'),(205,'SB'),(199,'SC'),(213,'SD'),(216,'SE'),(201,'SG'),(187,'SH'),(204,'SI'),(215,'SJ'),(203,'SK'),(200,'SL'),(194,'SM'),(197,'SN'),(206,'SO'),(214,'SR'),(210,'SS'),(195,'ST'),(67,'SV'),(202,'SX'),(218,'SY'),(71,'SZ'),(231,'TC'),(44,'TD'),(80,'TF'),(224,'TG'),(222,'TH'),(220,'TJ'),(225,'TK'),(223,'TL'),(230,'TM'),(228,'TN'),(226,'TO'),(229,'TR'),(227,'TT'),(232,'TV'),(219,'TW'),(221,'TZ'),(234,'UA'),(233,'UG'),(237,'UM'),(238,'US'),(239,'UY'),(240,'UZ'),(99,'VA'),(192,'VC'),(242,'VE'),(244,'VG'),(245,'VI'),(243,'VN'),(241,'VU'),(246,'WF'),(193,'WS'),(119,'XK'),(248,'YE'),(142,'YT'),(207,'ZA'),(249,'ZM'),(250,'ZW'); +/*!40000 ALTER TABLE `embargo_country` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_countryaccessrule` +-- + +DROP TABLE IF EXISTS `embargo_countryaccessrule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_countryaccessrule` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `rule_type` varchar(255) NOT NULL, + `country_id` int(11) NOT NULL, + `restricted_course_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `embargo_countryaccessrul_restricted_course_id_cou_477b6bb1_uniq` (`restricted_course_id`,`country_id`), + KEY `embargo_countryacces_country_id_6af33e89_fk_embargo_c` (`country_id`), + CONSTRAINT `embargo_countryacces_country_id_6af33e89_fk_embargo_c` FOREIGN KEY (`country_id`) REFERENCES `embargo_country` (`id`), + CONSTRAINT `embargo_countryacces_restricted_course_id_eedb3d21_fk_embargo_r` FOREIGN KEY (`restricted_course_id`) REFERENCES `embargo_restrictedcourse` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_countryaccessrule` +-- + +LOCK TABLES `embargo_countryaccessrule` WRITE; +/*!40000 ALTER TABLE `embargo_countryaccessrule` DISABLE KEYS */; +/*!40000 ALTER TABLE `embargo_countryaccessrule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_courseaccessrulehistory` +-- + +DROP TABLE IF EXISTS `embargo_courseaccessrulehistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_courseaccessrulehistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `timestamp` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `snapshot` longtext, + PRIMARY KEY (`id`), + KEY `embargo_courseaccessrulehistory_timestamp_0267f0e6` (`timestamp`), + KEY `embargo_courseaccessrulehistory_course_key_6f7a7a06` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_courseaccessrulehistory` +-- + +LOCK TABLES `embargo_courseaccessrulehistory` WRITE; +/*!40000 ALTER TABLE `embargo_courseaccessrulehistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `embargo_courseaccessrulehistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_embargoedcourse` +-- + +DROP TABLE IF EXISTS `embargo_embargoedcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_embargoedcourse` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `embargoed` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_embargoedcourse` +-- + +LOCK TABLES `embargo_embargoedcourse` WRITE; +/*!40000 ALTER TABLE `embargo_embargoedcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `embargo_embargoedcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_embargoedstate` +-- + +DROP TABLE IF EXISTS `embargo_embargoedstate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_embargoedstate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `embargoed_countries` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_embargoedstate` +-- + +LOCK TABLES `embargo_embargoedstate` WRITE; +/*!40000 ALTER TABLE `embargo_embargoedstate` DISABLE KEYS */; +/*!40000 ALTER TABLE `embargo_embargoedstate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_ipfilter` +-- + +DROP TABLE IF EXISTS `embargo_ipfilter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_ipfilter` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `whitelist` longtext NOT NULL, + `blacklist` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_ipfilter` +-- + +LOCK TABLES `embargo_ipfilter` WRITE; +/*!40000 ALTER TABLE `embargo_ipfilter` DISABLE KEYS */; +/*!40000 ALTER TABLE `embargo_ipfilter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `embargo_restrictedcourse` +-- + +DROP TABLE IF EXISTS `embargo_restrictedcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `embargo_restrictedcourse` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `enroll_msg_key` varchar(255) NOT NULL, + `access_msg_key` varchar(255) NOT NULL, + `disable_access_check` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_key` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `embargo_restrictedcourse` +-- + +LOCK TABLES `embargo_restrictedcourse` WRITE; +/*!40000 ALTER TABLE `embargo_restrictedcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `embargo_restrictedcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enrollmentnotificationemailtemplate` +-- + +DROP TABLE IF EXISTS `enterprise_enrollmentnotificationemailtemplate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enrollmentnotificationemailtemplate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `plaintext_template` longtext NOT NULL, + `html_template` longtext NOT NULL, + `subject_line` varchar(100) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `enterprise_enrollmen_enterprise_customer__df17d9ff_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enrollmentnotificationemailtemplate` +-- + +LOCK TABLES `enterprise_enrollmentnotificationemailtemplate` WRITE; +/*!40000 ALTER TABLE `enterprise_enrollmentnotificationemailtemplate` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enrollmentnotificationemailtemplate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecatalogquery` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecatalogquery`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecatalogquery` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `title` varchar(255) NOT NULL, + `content_filter` longtext, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecatalogquery` +-- + +LOCK TABLES `enterprise_enterprisecatalogquery` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecatalogquery` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecatalogquery` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecourseenrollment` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecourseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecourseenrollment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `enterprise_customer_user_id` int(11) NOT NULL, + `source_id` int(11) DEFAULT NULL, + `saved_for_later` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq` (`enterprise_customer_user_id`,`course_id`), + KEY `enterprise_enterpris_source_id_c347bfa6_fk_enterpris` (`source_id`), + CONSTRAINT `enterprise_enterpris_enterprise_customer__cf423e59_fk_enterpris` FOREIGN KEY (`enterprise_customer_user_id`) REFERENCES `enterprise_enterprisecustomeruser` (`id`), + CONSTRAINT `enterprise_enterpris_source_id_c347bfa6_fk_enterpris` FOREIGN KEY (`source_id`) REFERENCES `enterprise_enterpriseenrollmentsource` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecourseenrollment` +-- + +LOCK TABLES `enterprise_enterprisecourseenrollment` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecourseenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecourseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomer` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomer` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `name` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `site_id` int(11) NOT NULL, + `enable_data_sharing_consent` tinyint(1) NOT NULL, + `enforce_data_sharing_consent` varchar(25) NOT NULL, + `enable_audit_enrollment` tinyint(1) NOT NULL, + `enable_audit_data_reporting` tinyint(1) NOT NULL, + `replace_sensitive_sso_username` tinyint(1) NOT NULL, + `hide_course_original_price` tinyint(1) NOT NULL, + `slug` varchar(30) NOT NULL, + `country` varchar(2) DEFAULT NULL, + `enable_autocohorting` tinyint(1) NOT NULL, + `customer_type_id` int(11) NOT NULL, + `enable_portal_code_management_screen` tinyint(1) NOT NULL, + `enable_learner_portal` tinyint(1) NOT NULL, + `enable_portal_reporting_config_screen` tinyint(1) NOT NULL, + `contact_email` varchar(254) DEFAULT NULL, + `enable_portal_subscription_management_screen` tinyint(1) NOT NULL, + `enable_slug_login` tinyint(1) NOT NULL, + `enable_portal_saml_configuration_screen` tinyint(1) NOT NULL, + PRIMARY KEY (`uuid`), + UNIQUE KEY `enterprise_enterprisecustomer_slug_80411f46_uniq` (`slug`), + KEY `enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id` (`site_id`), + KEY `enterprise_enterpris_customer_type_id_4b1ee315_fk_enterpris` (`customer_type_id`), + CONSTRAINT `enterprise_enterpris_customer_type_id_4b1ee315_fk_enterpris` FOREIGN KEY (`customer_type_id`) REFERENCES `enterprise_enterprisecustomertype` (`id`), + CONSTRAINT `enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomer` +-- + +LOCK TABLES `enterprise_enterprisecustomer` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomer` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomerbrandingconfiguration` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomerbrandingconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomerbrandingconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `logo` varchar(255) DEFAULT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `banner_background_color` varchar(7) DEFAULT NULL, + `banner_border_color` varchar(7) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `enterprise_enterpris_enterprise_customer__09c1ee14_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomerbrandingconfiguration` +-- + +LOCK TABLES `enterprise_enterprisecustomerbrandingconfiguration` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomerbrandingconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomerbrandingconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomercatalog` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomercatalog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomercatalog` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `content_filter` longtext, + `title` varchar(255) NOT NULL, + `enabled_course_modes` longtext NOT NULL, + `publish_audit_enrollment_urls` tinyint(1) NOT NULL, + `enterprise_catalog_query_id` int(11) DEFAULT NULL, + PRIMARY KEY (`uuid`), + KEY `enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris` (`enterprise_customer_id`), + KEY `enterprise_enterpris_enterprise_catalog_q_aa53eb7d_fk_enterpris` (`enterprise_catalog_query_id`), + CONSTRAINT `enterprise_enterpris_enterprise_catalog_q_aa53eb7d_fk_enterpris` FOREIGN KEY (`enterprise_catalog_query_id`) REFERENCES `enterprise_enterprisecatalogquery` (`id`), + CONSTRAINT `enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomercatalog` +-- + +LOCK TABLES `enterprise_enterprisecustomercatalog` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomercatalog` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomercatalog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomeridentityprovider` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomeridentityprovider`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomeridentityprovider` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `provider_id` varchar(50) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `provider_id` (`provider_id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `enterprise_enterpris_enterprise_customer__40b39097_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomeridentityprovider` +-- + +LOCK TABLES `enterprise_enterprisecustomeridentityprovider` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomeridentityprovider` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomeridentityprovider` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomerreportingconfiguration` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomerreportingconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomerreportingconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `delivery_method` varchar(20) NOT NULL, + `email` longtext NOT NULL, + `frequency` varchar(20) NOT NULL, + `day_of_month` smallint(6) DEFAULT NULL, + `day_of_week` smallint(6) DEFAULT NULL, + `hour_of_day` smallint(6) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `sftp_file_path` varchar(256) DEFAULT NULL, + `sftp_hostname` varchar(256) DEFAULT NULL, + `sftp_port` int(10) unsigned DEFAULT NULL, + `sftp_username` varchar(256) DEFAULT NULL, + `decrypted_password` longblob, + `decrypted_sftp_password` longblob, + `data_type` varchar(20) NOT NULL, + `report_type` varchar(20) NOT NULL, + `pgp_encryption_key` longtext, + `uuid` char(32) NOT NULL, + `include_date` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_enterprisecus_uuid_9df3c307_uniq` (`uuid`), + KEY `enterprise_enterprisecustom_enterprise_customer_id_d5b55543` (`enterprise_customer_id`), + CONSTRAINT `enterprise_enterpris_enterprise_customer__d5b55543_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomerreportingconfiguration` +-- + +LOCK TABLES `enterprise_enterprisecustomerreportingconfiguration` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomerreportingconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomerreportingconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomerreportingconfiguration_enterpricf00` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomerreportingconfiguration_enterpricf00`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomerreportingconfiguration_enterpricf00` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `enterprisecustomerreportingconfiguration_id` int(11) NOT NULL, + `enterprisecustomercatalog_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_enterprisecus_enterprisecustomerreport_cc87ab4c_uniq` (`enterprisecustomerreportingconfiguration_id`,`enterprisecustomercatalog_id`), + KEY `enterprise_enterpris_enterprisecustomerca_ebdae525_fk_enterpris` (`enterprisecustomercatalog_id`), + CONSTRAINT `enterprise_enterpris_enterprisecustomerca_ebdae525_fk_enterpris` FOREIGN KEY (`enterprisecustomercatalog_id`) REFERENCES `enterprise_enterprisecustomercatalog` (`uuid`), + CONSTRAINT `enterprise_enterpris_enterprisecustomerre_66147101_fk_enterpris` FOREIGN KEY (`enterprisecustomerreportingconfiguration_id`) REFERENCES `enterprise_enterprisecustomerreportingconfiguration` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomerreportingconfiguration_enterpricf00` +-- + +LOCK TABLES `enterprise_enterprisecustomerreportingconfiguration_enterpricf00` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomerreportingconfiguration_enterpricf00` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomerreportingconfiguration_enterpricf00` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomertype` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomertype`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomertype` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(25) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomertype` +-- + +LOCK TABLES `enterprise_enterprisecustomertype` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomertype` DISABLE KEYS */; +INSERT INTO `enterprise_enterprisecustomertype` VALUES (1,'2020-04-06 20:24:43.216328','2020-04-06 20:24:43.216328','Enterprise'); +/*!40000 ALTER TABLE `enterprise_enterprisecustomertype` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisecustomeruser` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisecustomeruser`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisecustomeruser` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `user_id` int(10) unsigned NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `active` tinyint(1) NOT NULL, + `linked` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_enterprisecus_enterprise_customer_id_u_ffddc29f_uniq` (`enterprise_customer_id`,`user_id`), + KEY `enterprise_enterprisecustomeruser_user_id_aa8d772f` (`user_id`), + CONSTRAINT `enterprise_enterpris_enterprise_customer__f0fea924_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisecustomeruser` +-- + +LOCK TABLES `enterprise_enterprisecustomeruser` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisecustomeruser` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisecustomeruser` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterpriseenrollmentsource` +-- + +DROP TABLE IF EXISTS `enterprise_enterpriseenrollmentsource`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterpriseenrollmentsource` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(64) NOT NULL, + `slug` varchar(30) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `slug` (`slug`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterpriseenrollmentsource` +-- + +LOCK TABLES `enterprise_enterpriseenrollmentsource` WRITE; +/*!40000 ALTER TABLE `enterprise_enterpriseenrollmentsource` DISABLE KEYS */; +INSERT INTO `enterprise_enterpriseenrollmentsource` VALUES (1,'2020-04-06 20:29:19.979048','2020-04-06 20:29:19.979048','Enterprise Enrollment URL','enrollment_url'),(2,'2020-04-06 20:29:19.987428','2020-04-06 20:29:19.987428','Manual Enterprise Enrollment','manual'),(3,'2020-04-06 20:29:19.990415','2020-04-06 20:29:22.480416','Enterprise User Enrollment Background Task','enrollment_task'),(4,'2020-04-06 20:29:19.993428','2020-04-06 20:29:19.993428','Enterprise Offer Redemption','offer_redemption'),(5,'2020-04-06 20:29:19.995878','2020-04-06 20:29:19.995878','Enterprise API Enrollment','enterprise_api'),(6,'2020-04-06 20:29:22.973247','2020-04-06 20:29:22.973247','Enterprise management command enrollment','management_command'); +/*!40000 ALTER TABLE `enterprise_enterpriseenrollmentsource` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisefeaturerole` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisefeaturerole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisefeaturerole` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisefeaturerole` +-- + +LOCK TABLES `enterprise_enterprisefeaturerole` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisefeaturerole` DISABLE KEYS */; +INSERT INTO `enterprise_enterprisefeaturerole` VALUES (1,'2020-04-06 20:24:53.836635','2020-04-06 20:24:53.836635','catalog_admin',NULL),(2,'2020-04-06 20:24:53.841927','2020-04-06 20:24:53.841927','dashboard_admin',NULL),(3,'2020-04-06 20:24:53.844216','2020-04-06 20:24:53.844216','enrollment_api_admin',NULL),(4,'2020-04-06 20:29:02.541659','2020-04-06 20:29:02.541659','reporting_config_admin',NULL); +/*!40000 ALTER TABLE `enterprise_enterprisefeaturerole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_enterprisefeatureuserroleassignment` +-- + +DROP TABLE IF EXISTS `enterprise_enterprisefeatureuserroleassignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_enterprisefeatureuserroleassignment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `role_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `enterprise_enterpris_role_id_5e8cff42_fk_enterpris` (`role_id`), + KEY `enterprise_enterpris_user_id_2d335bd4_fk_auth_user` (`user_id`), + CONSTRAINT `enterprise_enterpris_role_id_5e8cff42_fk_enterpris` FOREIGN KEY (`role_id`) REFERENCES `enterprise_enterprisefeaturerole` (`id`), + CONSTRAINT `enterprise_enterpris_user_id_2d335bd4_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_enterprisefeatureuserroleassignment` +-- + +LOCK TABLES `enterprise_enterprisefeatureuserroleassignment` WRITE; +/*!40000 ALTER TABLE `enterprise_enterprisefeatureuserroleassignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_enterprisefeatureuserroleassignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicalenrollmentnotificationemailtemplate` +-- + +DROP TABLE IF EXISTS `enterprise_historicalenrollmentnotificationemailtemplate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicalenrollmentnotificationemailtemplate` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `plaintext_template` longtext NOT NULL, + `html_template` longtext NOT NULL, + `subject_line` varchar(100) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `enterprise_customer_id` char(32) DEFAULT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_f2a6d605_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicalenroll_id_d4b3fed2` (`id`), + KEY `enterprise_historicalenroll_enterprise_customer_id_bc826535` (`enterprise_customer_id`), + CONSTRAINT `enterprise_historica_history_user_id_f2a6d605_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicalenrollmentnotificationemailtemplate` +-- + +LOCK TABLES `enterprise_historicalenrollmentnotificationemailtemplate` WRITE; +/*!40000 ALTER TABLE `enterprise_historicalenrollmentnotificationemailtemplate` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicalenrollmentnotificationemailtemplate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicalenterprisecourseenrollment` +-- + +DROP TABLE IF EXISTS `enterprise_historicalenterprisecourseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicalenterprisecourseenrollment` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_customer_user_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `source_id` int(11) DEFAULT NULL, + `saved_for_later` tinyint(1) NOT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_a7d84786_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicalenterprisecourseenrollment_id_452a4b04` (`id`), + KEY `enterprise_historicalenterp_enterprise_customer_user_id_380ecc4e` (`enterprise_customer_user_id`), + KEY `enterprise_historicalenterp_source_id_015c9e9c` (`source_id`), + CONSTRAINT `enterprise_historica_history_user_id_a7d84786_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicalenterprisecourseenrollment` +-- + +LOCK TABLES `enterprise_historicalenterprisecourseenrollment` WRITE; +/*!40000 ALTER TABLE `enterprise_historicalenterprisecourseenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicalenterprisecourseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicalenterprisecustomer` +-- + +DROP TABLE IF EXISTS `enterprise_historicalenterprisecustomer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicalenterprisecustomer` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `name` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `site_id` int(11) DEFAULT NULL, + `enable_data_sharing_consent` tinyint(1) NOT NULL, + `enforce_data_sharing_consent` varchar(25) NOT NULL, + `enable_audit_enrollment` tinyint(1) NOT NULL, + `enable_audit_data_reporting` tinyint(1) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `replace_sensitive_sso_username` tinyint(1) NOT NULL, + `hide_course_original_price` tinyint(1) NOT NULL, + `slug` varchar(30) NOT NULL, + `country` varchar(2) DEFAULT NULL, + `enable_autocohorting` tinyint(1) NOT NULL, + `customer_type_id` int(11) DEFAULT NULL, + `enable_portal_code_management_screen` tinyint(1) NOT NULL, + `enable_learner_portal` tinyint(1) NOT NULL, + `enable_portal_reporting_config_screen` tinyint(1) NOT NULL, + `contact_email` varchar(254) DEFAULT NULL, + `enable_portal_subscription_management_screen` tinyint(1) NOT NULL, + `enable_slug_login` tinyint(1) NOT NULL, + `enable_portal_saml_configuration_screen` tinyint(1) NOT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicalenterprisecustomer_uuid_75c3528e` (`uuid`), + KEY `enterprise_historicalenterprisecustomer_site_id_2463b5d7` (`site_id`), + KEY `enterprise_historicalenterprisecustomer_slug_04622dd4` (`slug`), + KEY `enterprise_historicalenterp_customer_type_id_8fbc8526` (`customer_type_id`), + CONSTRAINT `enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicalenterprisecustomer` +-- + +LOCK TABLES `enterprise_historicalenterprisecustomer` WRITE; +/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomer` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicalenterprisecustomercatalog` +-- + +DROP TABLE IF EXISTS `enterprise_historicalenterprisecustomercatalog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicalenterprisecustomercatalog` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_customer_id` char(32) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `content_filter` longtext, + `title` varchar(255) NOT NULL, + `enabled_course_modes` longtext NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `publish_audit_enrollment_urls` tinyint(1) NOT NULL, + `enterprise_catalog_query_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_31eab231_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicalenterprisecustomercatalog_uuid_42403101` (`uuid`), + KEY `enterprise_historicalenterp_enterprise_customer_id_664f4480` (`enterprise_customer_id`), + KEY `enterprise_historicalenterp_enterprise_catalog_query_id_bf435a3a` (`enterprise_catalog_query_id`), + CONSTRAINT `enterprise_historica_history_user_id_31eab231_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicalenterprisecustomercatalog` +-- + +LOCK TABLES `enterprise_historicalenterprisecustomercatalog` WRITE; +/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomercatalog` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicalenterprisecustomercatalog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicallicensedenterprisecourseenrollment` +-- + +DROP TABLE IF EXISTS `enterprise_historicallicensedenterprisecourseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicallicensedenterprisecourseenrollment` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `license_uuid` char(32) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_course_enrollment_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_1db87766_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicallicens_id_ff4cfd4f` (`id`), + KEY `enterprise_historicallicens_enterprise_course_enrollmen_1b0d3427` (`enterprise_course_enrollment_id`), + CONSTRAINT `enterprise_historica_history_user_id_1db87766_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicallicensedenterprisecourseenrollment` +-- + +LOCK TABLES `enterprise_historicallicensedenterprisecourseenrollment` WRITE; +/*!40000 ALTER TABLE `enterprise_historicallicensedenterprisecourseenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicallicensedenterprisecourseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicalpendingenrollment` +-- + +DROP TABLE IF EXISTS `enterprise_historicalpendingenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicalpendingenrollment` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_mode` varchar(25) NOT NULL, + `cohort_name` varchar(255) DEFAULT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + `source_id` int(11) DEFAULT NULL, + `discount_percentage` decimal(8,5) NOT NULL, + `sales_force_id` varchar(255) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_894ad7d0_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicalpendingenrollment_id_27077b0b` (`id`), + KEY `enterprise_historicalpendingenrollment_user_id_97ded265` (`user_id`), + KEY `enterprise_historicalpendingenrollment_source_id_3a208cd2` (`source_id`), + CONSTRAINT `enterprise_historica_history_user_id_894ad7d0_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicalpendingenrollment` +-- + +LOCK TABLES `enterprise_historicalpendingenrollment` WRITE; +/*!40000 ALTER TABLE `enterprise_historicalpendingenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicalpendingenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_historicalpendingenterprisecustomeruser` +-- + +DROP TABLE IF EXISTS `enterprise_historicalpendingenterprisecustomeruser`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_historicalpendingenterprisecustomeruser` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `user_email` varchar(254) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `enterprise_customer_id` char(32) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `enterprise_historica_history_user_id_c491461b_fk_auth_user` (`history_user_id`), + KEY `enterprise_historicalpendingenterprisecustomeruser_id_3cf88198` (`id`), + KEY `enterprise_historicalpendin_user_email_88c478b4` (`user_email`), + KEY `enterprise_historicalpendin_enterprise_customer_id_6c02ed95` (`enterprise_customer_id`), + CONSTRAINT `enterprise_historica_history_user_id_c491461b_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_historicalpendingenterprisecustomeruser` +-- + +LOCK TABLES `enterprise_historicalpendingenterprisecustomeruser` WRITE; +/*!40000 ALTER TABLE `enterprise_historicalpendingenterprisecustomeruser` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_historicalpendingenterprisecustomeruser` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_licensedenterprisecourseenrollment` +-- + +DROP TABLE IF EXISTS `enterprise_licensedenterprisecourseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_licensedenterprisecourseenrollment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `license_uuid` char(32) NOT NULL, + `enterprise_course_enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_course_enrollment_id` (`enterprise_course_enrollment_id`), + CONSTRAINT `enterprise_licensede_enterprise_course_en_db2f5a9f_fk_enterpris` FOREIGN KEY (`enterprise_course_enrollment_id`) REFERENCES `enterprise_enterprisecourseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_licensedenterprisecourseenrollment` +-- + +LOCK TABLES `enterprise_licensedenterprisecourseenrollment` WRITE; +/*!40000 ALTER TABLE `enterprise_licensedenterprisecourseenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_licensedenterprisecourseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_pendingenrollment` +-- + +DROP TABLE IF EXISTS `enterprise_pendingenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_pendingenrollment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_mode` varchar(25) NOT NULL, + `user_id` int(11) NOT NULL, + `cohort_name` varchar(255) DEFAULT NULL, + `source_id` int(11) DEFAULT NULL, + `discount_percentage` decimal(8,5) NOT NULL, + `sales_force_id` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_pendingenrollment_user_id_course_id_6d4141c7_uniq` (`user_id`,`course_id`), + KEY `enterprise_pendingen_source_id_7b6fed0c_fk_enterpris` (`source_id`), + CONSTRAINT `enterprise_pendingen_source_id_7b6fed0c_fk_enterpris` FOREIGN KEY (`source_id`) REFERENCES `enterprise_enterpriseenrollmentsource` (`id`), + CONSTRAINT `enterprise_pendingen_user_id_12d21b1a_fk_enterpris` FOREIGN KEY (`user_id`) REFERENCES `enterprise_pendingenterprisecustomeruser` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_pendingenrollment` +-- + +LOCK TABLES `enterprise_pendingenrollment` WRITE; +/*!40000 ALTER TABLE `enterprise_pendingenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_pendingenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_pendingenterprisecustomeruser` +-- + +DROP TABLE IF EXISTS `enterprise_pendingenterprisecustomeruser`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_pendingenterprisecustomeruser` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `user_email` varchar(254) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_pendingenterp_user_email_5440d1d3_uniq` (`user_email`), + KEY `enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris` (`enterprise_customer_id`), + CONSTRAINT `enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_pendingenterprisecustomeruser` +-- + +LOCK TABLES `enterprise_pendingenterprisecustomeruser` WRITE; +/*!40000 ALTER TABLE `enterprise_pendingenterprisecustomeruser` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_pendingenterprisecustomeruser` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_systemwideenterpriserole` +-- + +DROP TABLE IF EXISTS `enterprise_systemwideenterpriserole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_systemwideenterpriserole` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_systemwideenterpriserole` +-- + +LOCK TABLES `enterprise_systemwideenterpriserole` WRITE; +/*!40000 ALTER TABLE `enterprise_systemwideenterpriserole` DISABLE KEYS */; +INSERT INTO `enterprise_systemwideenterpriserole` VALUES (1,'2020-04-06 20:24:50.412075','2020-04-06 20:24:50.412075','enterprise_admin',NULL),(2,'2020-04-06 20:24:50.417847','2020-04-06 20:24:50.417847','enterprise_learner',NULL),(3,'2020-04-06 20:24:54.582279','2020-04-06 20:24:54.582279','enterprise_openedx_operator',NULL),(4,'2020-07-23 17:24:35.860271','2020-07-23 17:24:35.860271','enterprise_catalog_admin','Role for access to endpoints in the enterprise catalog service'); +/*!40000 ALTER TABLE `enterprise_systemwideenterpriserole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `enterprise_systemwideenterpriseuserroleassignment` +-- + +DROP TABLE IF EXISTS `enterprise_systemwideenterpriseuserroleassignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `enterprise_systemwideenterpriseuserroleassignment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `role_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `enterprise_systemwid_role_id_bc7092f0_fk_enterpris` (`role_id`), + KEY `enterprise_systemwid_user_id_e890aef2_fk_auth_user` (`user_id`), + CONSTRAINT `enterprise_systemwid_role_id_bc7092f0_fk_enterpris` FOREIGN KEY (`role_id`) REFERENCES `enterprise_systemwideenterpriserole` (`id`), + CONSTRAINT `enterprise_systemwid_user_id_e890aef2_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `enterprise_systemwideenterpriseuserroleassignment` +-- + +LOCK TABLES `enterprise_systemwideenterpriseuserroleassignment` WRITE; +/*!40000 ALTER TABLE `enterprise_systemwideenterpriseuserroleassignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `enterprise_systemwideenterpriseuserroleassignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entitlements_courseentitlement` +-- + +DROP TABLE IF EXISTS `entitlements_courseentitlement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `entitlements_courseentitlement` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `course_uuid` char(32) NOT NULL, + `expired_at` datetime(6) DEFAULT NULL, + `mode` varchar(100) NOT NULL, + `order_number` varchar(128) DEFAULT NULL, + `enrollment_course_run_id` int(11) DEFAULT NULL, + `user_id` int(11) NOT NULL, + `_policy_id` int(11) DEFAULT NULL, + `refund_locked` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `entitlements_courseentitlement_uuid_2228ffad_uniq` (`uuid`), + UNIQUE KEY `entitlements_courseentit_course_uuid_order_number_b37c9e13_uniq` (`course_uuid`,`order_number`), + KEY `entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id` (`user_id`), + KEY `entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c` (`enrollment_course_run_id`), + KEY `entitlements_coursee__policy_id_37bd7c13_fk_entitleme` (`_policy_id`), + CONSTRAINT `entitlements_coursee__policy_id_37bd7c13_fk_entitleme` FOREIGN KEY (`_policy_id`) REFERENCES `entitlements_courseentitlementpolicy` (`id`), + CONSTRAINT `entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c` FOREIGN KEY (`enrollment_course_run_id`) REFERENCES `student_courseenrollment` (`id`), + CONSTRAINT `entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entitlements_courseentitlement` +-- + +LOCK TABLES `entitlements_courseentitlement` WRITE; +/*!40000 ALTER TABLE `entitlements_courseentitlement` DISABLE KEYS */; +/*!40000 ALTER TABLE `entitlements_courseentitlement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entitlements_courseentitlementpolicy` +-- + +DROP TABLE IF EXISTS `entitlements_courseentitlementpolicy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `entitlements_courseentitlementpolicy` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `expiration_period` bigint(20) NOT NULL, + `refund_period` bigint(20) NOT NULL, + `regain_period` bigint(20) NOT NULL, + `site_id` int(11) DEFAULT NULL, + `mode` varchar(32) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `entitlements_coursee_site_id_c7a9e107_fk_django_si` (`site_id`), + CONSTRAINT `entitlements_coursee_site_id_c7a9e107_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entitlements_courseentitlementpolicy` +-- + +LOCK TABLES `entitlements_courseentitlementpolicy` WRITE; +/*!40000 ALTER TABLE `entitlements_courseentitlementpolicy` DISABLE KEYS */; +/*!40000 ALTER TABLE `entitlements_courseentitlementpolicy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entitlements_courseentitlementsupportdetail` +-- + +DROP TABLE IF EXISTS `entitlements_courseentitlementsupportdetail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `entitlements_courseentitlementsupportdetail` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `reason` varchar(15) NOT NULL, + `comments` longtext, + `entitlement_id` int(11) NOT NULL, + `support_user_id` int(11) NOT NULL, + `unenrolled_run_id` varchar(255) DEFAULT NULL, + `action` varchar(15) NOT NULL, + PRIMARY KEY (`id`), + KEY `entitlements_coursee_entitlement_id_93b9020b_fk_entitleme` (`entitlement_id`), + KEY `entitlements_coursee_support_user_id_97d3095e_fk_auth_user` (`support_user_id`), + KEY `entitlements_courseentitlem_unenrolled_run_id_d72860e3` (`unenrolled_run_id`), + CONSTRAINT `entitlements_coursee_entitlement_id_93b9020b_fk_entitleme` FOREIGN KEY (`entitlement_id`) REFERENCES `entitlements_courseentitlement` (`id`), + CONSTRAINT `entitlements_coursee_support_user_id_97d3095e_fk_auth_user` FOREIGN KEY (`support_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entitlements_courseentitlementsupportdetail` +-- + +LOCK TABLES `entitlements_courseentitlementsupportdetail` WRITE; +/*!40000 ALTER TABLE `entitlements_courseentitlementsupportdetail` DISABLE KEYS */; +/*!40000 ALTER TABLE `entitlements_courseentitlementsupportdetail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entitlements_historicalcourseentitlement` +-- + +DROP TABLE IF EXISTS `entitlements_historicalcourseentitlement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `entitlements_historicalcourseentitlement` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `course_uuid` char(32) NOT NULL, + `expired_at` datetime(6) DEFAULT NULL, + `mode` varchar(100) NOT NULL, + `order_number` varchar(128) DEFAULT NULL, + `refund_locked` tinyint(1) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `_policy_id` int(11) DEFAULT NULL, + `enrollment_course_run_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `entitlements_histori_history_user_id_a3bc1823_fk_auth_user` (`history_user_id`), + KEY `entitlements_historicalcourseentitlement_id_e3740062` (`id`), + KEY `entitlements_historicalcourseentitlement_uuid_54fd331f` (`uuid`), + KEY `entitlements_historicalcourseentitlement__policy_id_71c21d43` (`_policy_id`), + KEY `entitlements_historicalcour_enrollment_course_run_id_1b92719b` (`enrollment_course_run_id`), + KEY `entitlements_historicalcourseentitlement_user_id_c770997b` (`user_id`), + CONSTRAINT `entitlements_histori_history_user_id_a3bc1823_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entitlements_historicalcourseentitlement` +-- + +LOCK TABLES `entitlements_historicalcourseentitlement` WRITE; +/*!40000 ALTER TABLE `entitlements_historicalcourseentitlement` DISABLE KEYS */; +/*!40000 ALTER TABLE `entitlements_historicalcourseentitlement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `entitlements_historicalcourseentitlementsupportdetail` +-- + +DROP TABLE IF EXISTS `entitlements_historicalcourseentitlementsupportdetail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `entitlements_historicalcourseentitlementsupportdetail` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `reason` varchar(15) NOT NULL, + `action` varchar(15) NOT NULL, + `comments` longtext, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `entitlement_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `support_user_id` int(11) DEFAULT NULL, + `unenrolled_run_id` varchar(255) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `entitlements_histori_history_user_id_b00a74ce_fk_auth_user` (`history_user_id`), + KEY `entitlements_historicalcour_id_d019368b` (`id`), + KEY `entitlements_historicalcour_entitlement_id_a5a6c6cc` (`entitlement_id`), + KEY `entitlements_historicalcour_support_user_id_8788841f` (`support_user_id`), + KEY `entitlements_historicalcour_unenrolled_run_id_67b11a08` (`unenrolled_run_id`), + CONSTRAINT `entitlements_histori_history_user_id_b00a74ce_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `entitlements_historicalcourseentitlementsupportdetail` +-- + +LOCK TABLES `entitlements_historicalcourseentitlementsupportdetail` WRITE; +/*!40000 ALTER TABLE `entitlements_historicalcourseentitlementsupportdetail` DISABLE KEYS */; +/*!40000 ALTER TABLE `entitlements_historicalcourseentitlementsupportdetail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `experiments_experimentdata` +-- + +DROP TABLE IF EXISTS `experiments_experimentdata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `experiments_experimentdata` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `experiment_id` smallint(5) unsigned NOT NULL, + `key` varchar(255) NOT NULL, + `value` longtext NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq` (`user_id`,`experiment_id`,`key`), + KEY `experiments_experimentdata_user_id_experiment_id_15bd1b30_idx` (`user_id`,`experiment_id`), + KEY `experiments_experimentdata_experiment_id_e816cee5` (`experiment_id`), + CONSTRAINT `experiments_experimentdata_user_id_bd6f4720_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `experiments_experimentdata` +-- + +LOCK TABLES `experiments_experimentdata` WRITE; +/*!40000 ALTER TABLE `experiments_experimentdata` DISABLE KEYS */; +/*!40000 ALTER TABLE `experiments_experimentdata` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `experiments_experimentkeyvalue` +-- + +DROP TABLE IF EXISTS `experiments_experimentkeyvalue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `experiments_experimentkeyvalue` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `experiment_id` smallint(5) unsigned NOT NULL, + `key` varchar(255) NOT NULL, + `value` longtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `experiments_experimentkeyvalue_experiment_id_key_15347f43_uniq` (`experiment_id`,`key`), + KEY `experiments_experimentkeyvalue_experiment_id_741d1a4b` (`experiment_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `experiments_experimentkeyvalue` +-- + +LOCK TABLES `experiments_experimentkeyvalue` WRITE; +/*!40000 ALTER TABLE `experiments_experimentkeyvalue` DISABLE KEYS */; +/*!40000 ALTER TABLE `experiments_experimentkeyvalue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `experiments_historicalexperimentkeyvalue` +-- + +DROP TABLE IF EXISTS `experiments_historicalexperimentkeyvalue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `experiments_historicalexperimentkeyvalue` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `experiment_id` smallint(5) unsigned NOT NULL, + `key` varchar(255) NOT NULL, + `value` longtext NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `experiments_historic_history_user_id_3892eb1a_fk_auth_user` (`history_user_id`), + KEY `experiments_historicalexperimentkeyvalue_id_13f6f6d3` (`id`), + KEY `experiments_historicalexperimentkeyvalue_experiment_id_6a3c1624` (`experiment_id`), + CONSTRAINT `experiments_historic_history_user_id_3892eb1a_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `experiments_historicalexperimentkeyvalue` +-- + +LOCK TABLES `experiments_historicalexperimentkeyvalue` WRITE; +/*!40000 ALTER TABLE `experiments_historicalexperimentkeyvalue` DISABLE KEYS */; +/*!40000 ALTER TABLE `experiments_historicalexperimentkeyvalue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `external_user_ids_externalid` +-- + +DROP TABLE IF EXISTS `external_user_ids_externalid`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `external_user_ids_externalid` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `external_user_id` char(32) NOT NULL, + `external_id_type_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `external_user_id` (`external_user_id`), + UNIQUE KEY `external_user_ids_extern_user_id_external_id_type_cf1d16bc_uniq` (`user_id`,`external_id_type_id`), + KEY `external_user_ids_ex_external_id_type_id_421db1af_fk_external_` (`external_id_type_id`), + CONSTRAINT `external_user_ids_ex_external_id_type_id_421db1af_fk_external_` FOREIGN KEY (`external_id_type_id`) REFERENCES `external_user_ids_externalidtype` (`id`), + CONSTRAINT `external_user_ids_externalid_user_id_7789441b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `external_user_ids_externalid` +-- + +LOCK TABLES `external_user_ids_externalid` WRITE; +/*!40000 ALTER TABLE `external_user_ids_externalid` DISABLE KEYS */; +/*!40000 ALTER TABLE `external_user_ids_externalid` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `external_user_ids_externalidtype` +-- + +DROP TABLE IF EXISTS `external_user_ids_externalidtype`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `external_user_ids_externalidtype` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(32) NOT NULL, + `description` longtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `external_user_ids_externalidtype` +-- + +LOCK TABLES `external_user_ids_externalidtype` WRITE; +/*!40000 ALTER TABLE `external_user_ids_externalidtype` DISABLE KEYS */; +INSERT INTO `external_user_ids_externalidtype` VALUES (1,'2020-04-06 20:31:16.403857','2020-04-06 20:31:16.403857','mb_coaching','MicroBachelors Coaching'),(2,'2020-07-23 17:24:39.061759','2020-07-23 17:24:39.061759','lti','LTI Xblock launches'); +/*!40000 ALTER TABLE `external_user_ids_externalidtype` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `external_user_ids_historicalexternalid` +-- + +DROP TABLE IF EXISTS `external_user_ids_historicalexternalid`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `external_user_ids_historicalexternalid` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `external_user_id` char(32) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `external_id_type_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `external_user_ids_hi_history_user_id_fd67f897_fk_auth_user` (`history_user_id`), + KEY `external_user_ids_historicalexternalid_id_1444e43e` (`id`), + KEY `external_user_ids_historicalexternalid_external_user_id_03a5f871` (`external_user_id`), + KEY `external_user_ids_historica_external_id_type_id_74b65da9` (`external_id_type_id`), + KEY `external_user_ids_historicalexternalid_user_id_64337ddb` (`user_id`), + CONSTRAINT `external_user_ids_hi_history_user_id_fd67f897_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `external_user_ids_historicalexternalid` +-- + +LOCK TABLES `external_user_ids_historicalexternalid` WRITE; +/*!40000 ALTER TABLE `external_user_ids_historicalexternalid` DISABLE KEYS */; +/*!40000 ALTER TABLE `external_user_ids_historicalexternalid` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `external_user_ids_historicalexternalidtype` +-- + +DROP TABLE IF EXISTS `external_user_ids_historicalexternalidtype`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `external_user_ids_historicalexternalidtype` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(32) NOT NULL, + `description` longtext NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `external_user_ids_hi_history_user_id_6a2c78fc_fk_auth_user` (`history_user_id`), + KEY `external_user_ids_historicalexternalidtype_id_4cc44c83` (`id`), + KEY `external_user_ids_historicalexternalidtype_name_a2e9fa4e` (`name`), + CONSTRAINT `external_user_ids_hi_history_user_id_6a2c78fc_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `external_user_ids_historicalexternalidtype` +-- + +LOCK TABLES `external_user_ids_historicalexternalidtype` WRITE; +/*!40000 ALTER TABLE `external_user_ids_historicalexternalidtype` DISABLE KEYS */; +/*!40000 ALTER TABLE `external_user_ids_historicalexternalidtype` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_computegradessetting` +-- + +DROP TABLE IF EXISTS `grades_computegradessetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_computegradessetting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `batch_size` int(11) NOT NULL, + `course_ids` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `grades_computegrades_changed_by_id_f2bf3678_fk_auth_user` (`changed_by_id`), + CONSTRAINT `grades_computegrades_changed_by_id_f2bf3678_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_computegradessetting` +-- + +LOCK TABLES `grades_computegradessetting` WRITE; +/*!40000 ALTER TABLE `grades_computegradessetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_computegradessetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_coursepersistentgradesflag` +-- + +DROP TABLE IF EXISTS `grades_coursepersistentgradesflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_coursepersistentgradesflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user` (`changed_by_id`), + KEY `grades_coursepersistentgradesflag_course_id_b494f1e7` (`course_id`), + CONSTRAINT `grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_coursepersistentgradesflag` +-- + +LOCK TABLES `grades_coursepersistentgradesflag` WRITE; +/*!40000 ALTER TABLE `grades_coursepersistentgradesflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_coursepersistentgradesflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_historicalpersistentsubsectiongradeoverride` +-- + +DROP TABLE IF EXISTS `grades_historicalpersistentsubsectiongradeoverride`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_historicalpersistentsubsectiongradeoverride` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `earned_all_override` double DEFAULT NULL, + `possible_all_override` double DEFAULT NULL, + `earned_graded_override` double DEFAULT NULL, + `possible_graded_override` double DEFAULT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `grade_id` bigint(20) unsigned DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `override_reason` varchar(300) DEFAULT NULL, + `system` varchar(100) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `grades_historicalper_history_user_id_05000562_fk_auth_user` (`history_user_id`), + KEY `grades_historicalpersistentsubsectiongradeoverride_id_e30d8953` (`id`), + KEY `grades_historicalpersistent_created_e5fb4d96` (`created`), + KEY `grades_historicalpersistent_modified_7355e846` (`modified`), + KEY `grades_historicalpersistent_grade_id_ecfb45cc` (`grade_id`), + CONSTRAINT `grades_historicalper_history_user_id_05000562_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_historicalpersistentsubsectiongradeoverride` +-- + +LOCK TABLES `grades_historicalpersistentsubsectiongradeoverride` WRITE; +/*!40000 ALTER TABLE `grades_historicalpersistentsubsectiongradeoverride` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_historicalpersistentsubsectiongradeoverride` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_persistentcoursegrade` +-- + +DROP TABLE IF EXISTS `grades_persistentcoursegrade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_persistentcoursegrade` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_edited_timestamp` datetime(6) DEFAULT NULL, + `course_version` varchar(255) NOT NULL, + `grading_policy_hash` varchar(255) NOT NULL, + `percent_grade` double NOT NULL, + `letter_grade` varchar(255) NOT NULL, + `passed_timestamp` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `grades_persistentcoursegrade_course_id_user_id_d7b585c9_uniq` (`course_id`,`user_id`), + KEY `grades_persistentcoursegrade_user_id_b2296589` (`user_id`), + KEY `grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx` (`passed_timestamp`,`course_id`), + KEY `grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx` (`modified`,`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_persistentcoursegrade` +-- + +LOCK TABLES `grades_persistentcoursegrade` WRITE; +/*!40000 ALTER TABLE `grades_persistentcoursegrade` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_persistentcoursegrade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_persistentgradesenabledflag` +-- + +DROP TABLE IF EXISTS `grades_persistentgradesenabledflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_persistentgradesenabledflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `enabled_for_all_courses` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user` (`changed_by_id`), + CONSTRAINT `grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_persistentgradesenabledflag` +-- + +LOCK TABLES `grades_persistentgradesenabledflag` WRITE; +/*!40000 ALTER TABLE `grades_persistentgradesenabledflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_persistentgradesenabledflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_persistentsubsectiongrade` +-- + +DROP TABLE IF EXISTS `grades_persistentsubsectiongrade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_persistentsubsectiongrade` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` int(11) NOT NULL, + `course_id` varchar(255) NOT NULL, + `usage_key` varchar(255) NOT NULL, + `subtree_edited_timestamp` datetime(6) DEFAULT NULL, + `course_version` varchar(255) NOT NULL, + `earned_all` double NOT NULL, + `possible_all` double NOT NULL, + `earned_graded` double NOT NULL, + `possible_graded` double NOT NULL, + `visible_blocks_hash` varchar(100) NOT NULL, + `first_attempted` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `grades_persistentsubsect_course_id_user_id_usage__42820224_uniq` (`course_id`,`user_id`,`usage_key`), + KEY `grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi` (`visible_blocks_hash`), + KEY `grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx` (`modified`,`course_id`,`usage_key`), + KEY `grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx` (`first_attempted`,`course_id`,`user_id`), + CONSTRAINT `grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi` FOREIGN KEY (`visible_blocks_hash`) REFERENCES `grades_visibleblocks` (`hashed`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_persistentsubsectiongrade` +-- + +LOCK TABLES `grades_persistentsubsectiongrade` WRITE; +/*!40000 ALTER TABLE `grades_persistentsubsectiongrade` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_persistentsubsectiongrade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_persistentsubsectiongradeoverride` +-- + +DROP TABLE IF EXISTS `grades_persistentsubsectiongradeoverride`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_persistentsubsectiongradeoverride` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `earned_all_override` double DEFAULT NULL, + `possible_all_override` double DEFAULT NULL, + `earned_graded_override` double DEFAULT NULL, + `possible_graded_override` double DEFAULT NULL, + `grade_id` bigint(20) unsigned NOT NULL, + `override_reason` varchar(300) DEFAULT NULL, + `system` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `grade_id` (`grade_id`), + KEY `grades_persistentsubsectiongradeoverride_created_f80819d0` (`created`), + KEY `grades_persistentsubsectiongradeoverride_modified_21efde2a` (`modified`), + CONSTRAINT `grades_persistentsub_grade_id_74123016_fk_grades_pe` FOREIGN KEY (`grade_id`) REFERENCES `grades_persistentsubsectiongrade` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_persistentsubsectiongradeoverride` +-- + +LOCK TABLES `grades_persistentsubsectiongradeoverride` WRITE; +/*!40000 ALTER TABLE `grades_persistentsubsectiongradeoverride` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_persistentsubsectiongradeoverride` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grades_visibleblocks` +-- + +DROP TABLE IF EXISTS `grades_visibleblocks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grades_visibleblocks` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `blocks_json` longtext NOT NULL, + `hashed` varchar(100) NOT NULL, + `course_id` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `hashed` (`hashed`), + KEY `grades_visibleblocks_course_id_d5f8e206` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grades_visibleblocks` +-- + +LOCK TABLES `grades_visibleblocks` WRITE; +/*!40000 ALTER TABLE `grades_visibleblocks` DISABLE KEYS */; +/*!40000 ALTER TABLE `grades_visibleblocks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `instructor_task_gradereportsetting` +-- + +DROP TABLE IF EXISTS `instructor_task_gradereportsetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `instructor_task_gradereportsetting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `batch_size` int(11) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `instructor_task_grad_changed_by_id_dae9a995_fk_auth_user` (`changed_by_id`), + CONSTRAINT `instructor_task_grad_changed_by_id_dae9a995_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `instructor_task_gradereportsetting` +-- + +LOCK TABLES `instructor_task_gradereportsetting` WRITE; +/*!40000 ALTER TABLE `instructor_task_gradereportsetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `instructor_task_gradereportsetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `instructor_task_instructortask` +-- + +DROP TABLE IF EXISTS `instructor_task_instructortask`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `instructor_task_instructortask` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `task_type` varchar(50) NOT NULL, + `course_id` varchar(255) NOT NULL, + `task_key` varchar(255) NOT NULL, + `task_input` longtext NOT NULL, + `task_id` varchar(255) NOT NULL, + `task_state` varchar(50) DEFAULT NULL, + `task_output` varchar(1024) DEFAULT NULL, + `created` datetime(6) DEFAULT NULL, + `updated` datetime(6) NOT NULL, + `subtasks` longtext NOT NULL, + `requester_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `instructor_task_inst_requester_id_307f955d_fk_auth_user` (`requester_id`), + KEY `instructor_task_instructortask_task_type_cefe183d` (`task_type`), + KEY `instructor_task_instructortask_course_id_b160f709` (`course_id`), + KEY `instructor_task_instructortask_task_key_c1af3961` (`task_key`), + KEY `instructor_task_instructortask_task_id_4aa92d04` (`task_id`), + KEY `instructor_task_instructortask_task_state_3ee4e9cb` (`task_state`), + CONSTRAINT `instructor_task_inst_requester_id_307f955d_fk_auth_user` FOREIGN KEY (`requester_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `instructor_task_instructortask` +-- + +LOCK TABLES `instructor_task_instructortask` WRITE; +/*!40000 ALTER TABLE `instructor_task_instructortask` DISABLE KEYS */; +/*!40000 ALTER TABLE `instructor_task_instructortask` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `integrated_channel_contentmetadataitemtransmission` +-- + +DROP TABLE IF EXISTS `integrated_channel_contentmetadataitemtransmission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `integrated_channel_contentmetadataitemtransmission` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `integrated_channel_code` varchar(30) NOT NULL, + `content_id` varchar(255) NOT NULL, + `channel_metadata` longtext NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq` (`enterprise_customer_id`,`integrated_channel_code`,`content_id`), + CONSTRAINT `integrated_channel_c_enterprise_customer__f6439bfb_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `integrated_channel_contentmetadataitemtransmission` +-- + +LOCK TABLES `integrated_channel_contentmetadataitemtransmission` WRITE; +/*!40000 ALTER TABLE `integrated_channel_contentmetadataitemtransmission` DISABLE KEYS */; +/*!40000 ALTER TABLE `integrated_channel_contentmetadataitemtransmission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `integrated_channel_learnerdatatransmissionaudit` +-- + +DROP TABLE IF EXISTS `integrated_channel_learnerdatatransmissionaudit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `integrated_channel_learnerdatatransmissionaudit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `enterprise_course_enrollment_id` int(10) unsigned NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_completed` tinyint(1) NOT NULL, + `completed_timestamp` bigint(20) NOT NULL, + `instructor_name` varchar(255) NOT NULL, + `grade` varchar(100) NOT NULL, + `status` varchar(100) NOT NULL, + `error_message` longtext NOT NULL, + `created` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + KEY `integrated_channel_learnerd_enterprise_course_enrollmen_c2e6c2e0` (`enterprise_course_enrollment_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `integrated_channel_learnerdatatransmissionaudit` +-- + +LOCK TABLES `integrated_channel_learnerdatatransmissionaudit` WRITE; +/*!40000 ALTER TABLE `integrated_channel_learnerdatatransmissionaudit` DISABLE KEYS */; +/*!40000 ALTER TABLE `integrated_channel_learnerdatatransmissionaudit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `learning_sequences_coursesection` +-- + +DROP TABLE IF EXISTS `learning_sequences_coursesection`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `learning_sequences_coursesection` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `ordering` int(10) unsigned NOT NULL, + `usage_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `title` varchar(1000) NOT NULL, + `hide_from_toc` tinyint(1) NOT NULL, + `visible_to_staff_only` tinyint(1) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `learning_context_id` bigint(20) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `learning_sequences_cours_learning_context_id_usag_9348bc89_uniq` (`learning_context_id`,`usage_key`), + KEY `learning_sequences_course_learning_context_id_order_46e992d3_idx` (`learning_context_id`,`ordering`), + CONSTRAINT `learning_sequences_c_learning_context_id_bf86e237_fk_learning_` FOREIGN KEY (`learning_context_id`) REFERENCES `learning_sequences_learningcontext` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `learning_sequences_coursesection` +-- + +LOCK TABLES `learning_sequences_coursesection` WRITE; +/*!40000 ALTER TABLE `learning_sequences_coursesection` DISABLE KEYS */; +/*!40000 ALTER TABLE `learning_sequences_coursesection` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `learning_sequences_coursesectionsequence` +-- + +DROP TABLE IF EXISTS `learning_sequences_coursesectionsequence`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `learning_sequences_coursesectionsequence` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `ordering` int(10) unsigned NOT NULL, + `hide_from_toc` tinyint(1) NOT NULL, + `visible_to_staff_only` tinyint(1) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `learning_context_id` bigint(20) NOT NULL, + `section_id` bigint(20) NOT NULL, + `sequence_id` bigint(20) NOT NULL, + `inaccessible_after_due` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `learning_sequences_cours_learning_context_id_orde_ad7604bd_uniq` (`learning_context_id`,`ordering`), + KEY `learning_sequences_c_section_id_646c2074_fk_learning_` (`section_id`), + KEY `learning_sequences_c_sequence_id_e6a12a64_fk_learning_` (`sequence_id`), + CONSTRAINT `learning_sequences_c_learning_context_id_25d18335_fk_learning_` FOREIGN KEY (`learning_context_id`) REFERENCES `learning_sequences_learningcontext` (`id`), + CONSTRAINT `learning_sequences_c_section_id_646c2074_fk_learning_` FOREIGN KEY (`section_id`) REFERENCES `learning_sequences_coursesection` (`id`), + CONSTRAINT `learning_sequences_c_sequence_id_e6a12a64_fk_learning_` FOREIGN KEY (`sequence_id`) REFERENCES `learning_sequences_learningsequence` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `learning_sequences_coursesectionsequence` +-- + +LOCK TABLES `learning_sequences_coursesectionsequence` WRITE; +/*!40000 ALTER TABLE `learning_sequences_coursesectionsequence` DISABLE KEYS */; +/*!40000 ALTER TABLE `learning_sequences_coursesectionsequence` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `learning_sequences_learningcontext` +-- + +DROP TABLE IF EXISTS `learning_sequences_learningcontext`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `learning_sequences_learningcontext` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `context_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `title` varchar(255) NOT NULL, + `published_at` datetime(6) NOT NULL, + `published_version` varchar(255) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `context_key` (`context_key`), + KEY `learning_se_publish_62319b_idx` (`published_at`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `learning_sequences_learningcontext` +-- + +LOCK TABLES `learning_sequences_learningcontext` WRITE; +/*!40000 ALTER TABLE `learning_sequences_learningcontext` DISABLE KEYS */; +/*!40000 ALTER TABLE `learning_sequences_learningcontext` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `learning_sequences_learningsequence` +-- + +DROP TABLE IF EXISTS `learning_sequences_learningsequence`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `learning_sequences_learningsequence` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `learning_context_id` bigint(20) NOT NULL, + `usage_key` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `title` varchar(1000) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `learning_sequences_learn_learning_context_id_usag_6a13230f_uniq` (`learning_context_id`,`usage_key`), + CONSTRAINT `learning_sequences_l_learning_context_id_25f3e4ab_fk_learning_` FOREIGN KEY (`learning_context_id`) REFERENCES `learning_sequences_learningcontext` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `learning_sequences_learningsequence` +-- + +LOCK TABLES `learning_sequences_learningsequence` WRITE; +/*!40000 ALTER TABLE `learning_sequences_learningsequence` DISABLE KEYS */; +/*!40000 ALTER TABLE `learning_sequences_learningsequence` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lms_xblock_xblockasidesconfig` +-- + +DROP TABLE IF EXISTS `lms_xblock_xblockasidesconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `lms_xblock_xblockasidesconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `disabled_blocks` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user` (`changed_by_id`), + CONSTRAINT `lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lms_xblock_xblockasidesconfig` +-- + +LOCK TABLES `lms_xblock_xblockasidesconfig` WRITE; +/*!40000 ALTER TABLE `lms_xblock_xblockasidesconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `lms_xblock_xblockasidesconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lx_pathway_plugin_pathway` +-- + +DROP TABLE IF EXISTS `lx_pathway_plugin_pathway`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `lx_pathway_plugin_pathway` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uuid` char(32) NOT NULL, + `draft_data` longtext NOT NULL, + `published_data` longtext NOT NULL, + `owner_group_id` int(11) DEFAULT NULL, + `owner_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uuid` (`uuid`), + KEY `lx_pathway_plugin_pa_owner_group_id_b20ab5de_fk_auth_grou` (`owner_group_id`), + KEY `lx_pathway_plugin_pathway_owner_user_id_bd987df6_fk_auth_user_id` (`owner_user_id`), + CONSTRAINT `lx_pathway_plugin_pa_owner_group_id_b20ab5de_fk_auth_grou` FOREIGN KEY (`owner_group_id`) REFERENCES `auth_group` (`id`), + CONSTRAINT `lx_pathway_plugin_pathway_owner_user_id_bd987df6_fk_auth_user_id` FOREIGN KEY (`owner_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lx_pathway_plugin_pathway` +-- + +LOCK TABLES `lx_pathway_plugin_pathway` WRITE; +/*!40000 ALTER TABLE `lx_pathway_plugin_pathway` DISABLE KEYS */; +/*!40000 ALTER TABLE `lx_pathway_plugin_pathway` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `milestones_coursecontentmilestone` +-- + +DROP TABLE IF EXISTS `milestones_coursecontentmilestone`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `milestones_coursecontentmilestone` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `content_id` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `milestone_id` int(11) NOT NULL, + `milestone_relationship_type_id` int(11) NOT NULL, + `requirements` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq` (`course_id`,`content_id`,`milestone_id`), + KEY `milestones_coursecontentmilestone_course_id_6fd3fad0` (`course_id`), + KEY `milestones_coursecontentmilestone_content_id_21f4c95f` (`content_id`), + KEY `milestones_coursecon_milestone_id_bd7a608b_fk_milestone` (`milestone_id`), + KEY `milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone` (`milestone_relationship_type_id`), + KEY `milestones_coursecontentmilestone_active_b7ab709d` (`active`), + CONSTRAINT `milestones_coursecon_milestone_id_bd7a608b_fk_milestone` FOREIGN KEY (`milestone_id`) REFERENCES `milestones_milestone` (`id`), + CONSTRAINT `milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone` FOREIGN KEY (`milestone_relationship_type_id`) REFERENCES `milestones_milestonerelationshiptype` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `milestones_coursecontentmilestone` +-- + +LOCK TABLES `milestones_coursecontentmilestone` WRITE; +/*!40000 ALTER TABLE `milestones_coursecontentmilestone` DISABLE KEYS */; +/*!40000 ALTER TABLE `milestones_coursecontentmilestone` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `milestones_coursemilestone` +-- + +DROP TABLE IF EXISTS `milestones_coursemilestone`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `milestones_coursemilestone` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `milestone_id` int(11) NOT NULL, + `milestone_relationship_type_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `milestones_coursemilestone_course_id_milestone_id_36b21ae8_uniq` (`course_id`,`milestone_id`), + KEY `milestones_coursemilestone_course_id_ce46a0fc` (`course_id`), + KEY `milestones_coursemil_milestone_id_03d9ef01_fk_milestone` (`milestone_id`), + KEY `milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone` (`milestone_relationship_type_id`), + KEY `milestones_coursemilestone_active_c590442e` (`active`), + CONSTRAINT `milestones_coursemil_milestone_id_03d9ef01_fk_milestone` FOREIGN KEY (`milestone_id`) REFERENCES `milestones_milestone` (`id`), + CONSTRAINT `milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone` FOREIGN KEY (`milestone_relationship_type_id`) REFERENCES `milestones_milestonerelationshiptype` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `milestones_coursemilestone` +-- + +LOCK TABLES `milestones_coursemilestone` WRITE; +/*!40000 ALTER TABLE `milestones_coursemilestone` DISABLE KEYS */; +/*!40000 ALTER TABLE `milestones_coursemilestone` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `milestones_milestone` +-- + +DROP TABLE IF EXISTS `milestones_milestone`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `milestones_milestone` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `namespace` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `display_name` varchar(255) NOT NULL, + `description` longtext NOT NULL, + `active` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `milestones_milestone_namespace_name_0b80f867_uniq` (`namespace`,`name`), + KEY `milestones_milestone_namespace_a8e8807c` (`namespace`), + KEY `milestones_milestone_name_23fb0698` (`name`), + KEY `milestones_milestone_active_9a6c1703` (`active`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `milestones_milestone` +-- + +LOCK TABLES `milestones_milestone` WRITE; +/*!40000 ALTER TABLE `milestones_milestone` DISABLE KEYS */; +/*!40000 ALTER TABLE `milestones_milestone` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `milestones_milestonerelationshiptype` +-- + +DROP TABLE IF EXISTS `milestones_milestonerelationshiptype`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `milestones_milestonerelationshiptype` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(25) NOT NULL, + `description` longtext NOT NULL, + `active` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `milestones_milestonerelationshiptype` +-- + +LOCK TABLES `milestones_milestonerelationshiptype` WRITE; +/*!40000 ALTER TABLE `milestones_milestonerelationshiptype` DISABLE KEYS */; +INSERT INTO `milestones_milestonerelationshiptype` VALUES (1,'2020-04-06 20:32:25.997516','2020-04-06 20:32:25.997516','fulfills','Autogenerated milestone relationship type \"fulfills\"',1),(2,'2020-04-06 20:32:26.007000','2020-04-06 20:32:26.007000','requires','Autogenerated milestone relationship type \"requires\"',1); +/*!40000 ALTER TABLE `milestones_milestonerelationshiptype` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `milestones_usermilestone` +-- + +DROP TABLE IF EXISTS `milestones_usermilestone`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `milestones_usermilestone` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `user_id` int(11) NOT NULL, + `source` longtext NOT NULL, + `collected` datetime(6) DEFAULT NULL, + `active` tinyint(1) NOT NULL, + `milestone_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `milestones_usermilestone_user_id_milestone_id_02197f01_uniq` (`user_id`,`milestone_id`), + KEY `milestones_usermiles_milestone_id_f90f9430_fk_milestone` (`milestone_id`), + KEY `milestones_usermilestone_user_id_b3e9aef4` (`user_id`), + KEY `milestones_usermilestone_active_93a18e7f` (`active`), + CONSTRAINT `milestones_usermiles_milestone_id_f90f9430_fk_milestone` FOREIGN KEY (`milestone_id`) REFERENCES `milestones_milestone` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `milestones_usermilestone` +-- + +LOCK TABLES `milestones_usermilestone` WRITE; +/*!40000 ALTER TABLE `milestones_usermilestone` DISABLE KEYS */; +/*!40000 ALTER TABLE `milestones_usermilestone` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mobile_api_appversionconfig` +-- + +DROP TABLE IF EXISTS `mobile_api_appversionconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mobile_api_appversionconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `platform` varchar(50) NOT NULL, + `version` varchar(50) NOT NULL, + `major_version` int(11) NOT NULL, + `minor_version` int(11) NOT NULL, + `patch_version` int(11) NOT NULL, + `expire_at` datetime(6) DEFAULT NULL, + `enabled` tinyint(1) NOT NULL, + `created_at` datetime(6) NOT NULL, + `updated_at` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mobile_api_appversionconfig_platform_version_6b577430_uniq` (`platform`,`version`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mobile_api_appversionconfig` +-- + +LOCK TABLES `mobile_api_appversionconfig` WRITE; +/*!40000 ALTER TABLE `mobile_api_appversionconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `mobile_api_appversionconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mobile_api_ignoremobileavailableflagconfig` +-- + +DROP TABLE IF EXISTS `mobile_api_ignoremobileavailableflagconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mobile_api_ignoremobileavailableflagconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user` (`changed_by_id`), + CONSTRAINT `mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mobile_api_ignoremobileavailableflagconfig` +-- + +LOCK TABLES `mobile_api_ignoremobileavailableflagconfig` WRITE; +/*!40000 ALTER TABLE `mobile_api_ignoremobileavailableflagconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `mobile_api_ignoremobileavailableflagconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mobile_api_mobileapiconfig` +-- + +DROP TABLE IF EXISTS `mobile_api_mobileapiconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mobile_api_mobileapiconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `video_profiles` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user` (`changed_by_id`), + CONSTRAINT `mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mobile_api_mobileapiconfig` +-- + +LOCK TABLES `mobile_api_mobileapiconfig` WRITE; +/*!40000 ALTER TABLE `mobile_api_mobileapiconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `mobile_api_mobileapiconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notify_notification` +-- + +DROP TABLE IF EXISTS `notify_notification`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notify_notification` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `message` longtext NOT NULL, + `url` varchar(200) DEFAULT NULL, + `is_viewed` tinyint(1) NOT NULL, + `is_emailed` tinyint(1) NOT NULL, + `created` datetime(6) NOT NULL, + `subscription_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `notify_notification_subscription_id_0eae0084_fk_notify_su` (`subscription_id`), + CONSTRAINT `notify_notification_subscription_id_0eae0084_fk_notify_su` FOREIGN KEY (`subscription_id`) REFERENCES `notify_subscription` (`subscription_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notify_notification` +-- + +LOCK TABLES `notify_notification` WRITE; +/*!40000 ALTER TABLE `notify_notification` DISABLE KEYS */; +/*!40000 ALTER TABLE `notify_notification` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notify_notificationtype` +-- + +DROP TABLE IF EXISTS `notify_notificationtype`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notify_notificationtype` ( + `key` varchar(128) NOT NULL, + `label` varchar(128) DEFAULT NULL, + `content_type_id` int(11) DEFAULT NULL, + PRIMARY KEY (`key`), + KEY `notify_notificationt_content_type_id_f575bac5_fk_django_co` (`content_type_id`), + CONSTRAINT `notify_notificationt_content_type_id_f575bac5_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notify_notificationtype` +-- + +LOCK TABLES `notify_notificationtype` WRITE; +/*!40000 ALTER TABLE `notify_notificationtype` DISABLE KEYS */; +/*!40000 ALTER TABLE `notify_notificationtype` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notify_settings` +-- + +DROP TABLE IF EXISTS `notify_settings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notify_settings` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `interval` smallint(6) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `notify_settings_user_id_088ebffc_fk_auth_user_id` (`user_id`), + CONSTRAINT `notify_settings_user_id_088ebffc_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notify_settings` +-- + +LOCK TABLES `notify_settings` WRITE; +/*!40000 ALTER TABLE `notify_settings` DISABLE KEYS */; +/*!40000 ALTER TABLE `notify_settings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notify_subscription` +-- + +DROP TABLE IF EXISTS `notify_subscription`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notify_subscription` ( + `subscription_id` int(11) NOT NULL AUTO_INCREMENT, + `object_id` varchar(64) DEFAULT NULL, + `send_emails` tinyint(1) NOT NULL, + `notification_type_id` varchar(128) NOT NULL, + `settings_id` int(11) NOT NULL, + PRIMARY KEY (`subscription_id`), + KEY `notify_subscription_notification_type_id_f73a8b13_fk_notify_no` (`notification_type_id`), + KEY `notify_subscription_settings_id_dbc3961d_fk_notify_settings_id` (`settings_id`), + CONSTRAINT `notify_subscription_notification_type_id_f73a8b13_fk_notify_no` FOREIGN KEY (`notification_type_id`) REFERENCES `notify_notificationtype` (`key`), + CONSTRAINT `notify_subscription_settings_id_dbc3961d_fk_notify_settings_id` FOREIGN KEY (`settings_id`) REFERENCES `notify_settings` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notify_subscription` +-- + +LOCK TABLES `notify_subscription` WRITE; +/*!40000 ALTER TABLE `notify_subscription` DISABLE KEYS */; +/*!40000 ALTER TABLE `notify_subscription` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth2_provider_accesstoken` +-- + +DROP TABLE IF EXISTS `oauth2_provider_accesstoken`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth2_provider_accesstoken` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `token` varchar(255) NOT NULL, + `expires` datetime(6) NOT NULL, + `scope` longtext NOT NULL, + `application_id` bigint(20) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + `created` datetime(6) NOT NULL, + `updated` datetime(6) NOT NULL, + `source_refresh_token_id` bigint(20) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `oauth2_provider_accesstoken_token_8af090f8_uniq` (`token`), + UNIQUE KEY `source_refresh_token_id` (`source_refresh_token_id`), + KEY `oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id` (`user_id`), + KEY `oauth2_provider_accesstoken_application_id_b22886e1_fk` (`application_id`), + CONSTRAINT `oauth2_provider_acce_source_refresh_token_e66fbc72_fk_oauth2_pr` FOREIGN KEY (`source_refresh_token_id`) REFERENCES `oauth2_provider_refreshtoken` (`id`), + CONSTRAINT `oauth2_provider_accesstoken_application_id_b22886e1_fk` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), + CONSTRAINT `oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth2_provider_accesstoken` +-- + +LOCK TABLES `oauth2_provider_accesstoken` WRITE; +/*!40000 ALTER TABLE `oauth2_provider_accesstoken` DISABLE KEYS */; +/*!40000 ALTER TABLE `oauth2_provider_accesstoken` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth2_provider_application` +-- + +DROP TABLE IF EXISTS `oauth2_provider_application`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth2_provider_application` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `client_id` varchar(100) NOT NULL, + `redirect_uris` longtext NOT NULL, + `client_type` varchar(32) NOT NULL, + `authorization_grant_type` varchar(32) NOT NULL, + `client_secret` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `user_id` int(11) DEFAULT NULL, + `skip_authorization` tinyint(1) NOT NULL, + `created` datetime(6) NOT NULL, + `updated` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `client_id` (`client_id`), + KEY `oauth2_provider_application_client_secret_53133678` (`client_secret`), + KEY `oauth2_provider_application_user_id_79829054_fk_auth_user_id` (`user_id`), + CONSTRAINT `oauth2_provider_application_user_id_79829054_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth2_provider_application` +-- + +LOCK TABLES `oauth2_provider_application` WRITE; +/*!40000 ALTER TABLE `oauth2_provider_application` DISABLE KEYS */; +INSERT INTO `oauth2_provider_application` VALUES (1,'login-service-client-id','','public','password','1A3inqwBllp1wYBohpSnYv62169UbfoXPjNCFHgIG52ikLeLNGqfmWP1jNUSbdH9pKkOSbFciT655XgrZO7qvEug5YrnxMK05KjLX17jx7nVMl0xvqMF1dYiZfRwmGrj','Login Service for JWT Cookies',2,0,'2020-04-06 20:38:25.064155','2020-04-06 20:38:25.064195'),(2,'B9TfWz3glZl9r3oIlYO13qH1sprKf4cGmD5hlw4E','','confidential','client-credentials','d2wTpT3bjZCh3UlOuQDdZLuQiooCEXvAHKZ5Ztc1Ozs4SZ26GHt09BWWroqU010Ddwe9yvjP8XC38ww91S4sEqLiN6HhL0L6ZAxJlIFIOmXYDqh20p9TU077IeGpsPYL','retirement',9,0,'2020-04-06 21:00:01.396606','2020-04-06 21:00:01.396650'); +/*!40000 ALTER TABLE `oauth2_provider_application` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth2_provider_grant` +-- + +DROP TABLE IF EXISTS `oauth2_provider_grant`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth2_provider_grant` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `code` varchar(255) NOT NULL, + `expires` datetime(6) NOT NULL, + `redirect_uri` varchar(255) NOT NULL, + `scope` longtext NOT NULL, + `application_id` bigint(20) NOT NULL, + `user_id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `updated` datetime(6) NOT NULL, + `code_challenge` varchar(128) NOT NULL, + `code_challenge_method` varchar(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `oauth2_provider_grant_code_49ab4ddf_uniq` (`code`), + KEY `oauth2_provider_grant_application_id_81923564_fk` (`application_id`), + KEY `oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id` (`user_id`), + CONSTRAINT `oauth2_provider_grant_application_id_81923564_fk` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), + CONSTRAINT `oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth2_provider_grant` +-- + +LOCK TABLES `oauth2_provider_grant` WRITE; +/*!40000 ALTER TABLE `oauth2_provider_grant` DISABLE KEYS */; +/*!40000 ALTER TABLE `oauth2_provider_grant` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth2_provider_refreshtoken` +-- + +DROP TABLE IF EXISTS `oauth2_provider_refreshtoken`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth2_provider_refreshtoken` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `token` varchar(255) NOT NULL, + `access_token_id` bigint(20) DEFAULT NULL, + `application_id` bigint(20) NOT NULL, + `user_id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `updated` datetime(6) NOT NULL, + `revoked` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `access_token_id` (`access_token_id`), + UNIQUE KEY `oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq` (`token`,`revoked`), + KEY `oauth2_provider_refreshtoken_application_id_2d1c311b_fk` (`application_id`), + KEY `oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id` (`user_id`), + CONSTRAINT `oauth2_provider_refr_access_token_id_775e84e8_fk_oauth2_pr` FOREIGN KEY (`access_token_id`) REFERENCES `oauth2_provider_accesstoken` (`id`), + CONSTRAINT `oauth2_provider_refreshtoken_application_id_2d1c311b_fk` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), + CONSTRAINT `oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth2_provider_refreshtoken` +-- + +LOCK TABLES `oauth2_provider_refreshtoken` WRITE; +/*!40000 ALTER TABLE `oauth2_provider_refreshtoken` DISABLE KEYS */; +/*!40000 ALTER TABLE `oauth2_provider_refreshtoken` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth_dispatch_applicationaccess` +-- + +DROP TABLE IF EXISTS `oauth_dispatch_applicationaccess`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth_dispatch_applicationaccess` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `scopes` varchar(825) NOT NULL, + `application_id` bigint(20) NOT NULL, + `filters` varchar(825) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `application_id` (`application_id`), + CONSTRAINT `oauth_dispatch_appli_application_id_dcddee6e_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth_dispatch_applicationaccess` +-- + +LOCK TABLES `oauth_dispatch_applicationaccess` WRITE; +/*!40000 ALTER TABLE `oauth_dispatch_applicationaccess` DISABLE KEYS */; +/*!40000 ALTER TABLE `oauth_dispatch_applicationaccess` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth_dispatch_applicationorganization` +-- + +DROP TABLE IF EXISTS `oauth_dispatch_applicationorganization`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth_dispatch_applicationorganization` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `relation_type` varchar(32) NOT NULL, + `application_id` bigint(20) NOT NULL, + `organization_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq` (`application_id`,`relation_type`,`organization_id`), + KEY `oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat` (`organization_id`), + CONSTRAINT `oauth_dispatch_appli_application_id_dea619c6_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`), + CONSTRAINT `oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth_dispatch_applicationorganization` +-- + +LOCK TABLES `oauth_dispatch_applicationorganization` WRITE; +/*!40000 ALTER TABLE `oauth_dispatch_applicationorganization` DISABLE KEYS */; +/*!40000 ALTER TABLE `oauth_dispatch_applicationorganization` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `oauth_dispatch_restrictedapplication` +-- + +DROP TABLE IF EXISTS `oauth_dispatch_restrictedapplication`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `oauth_dispatch_restrictedapplication` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `application_id` bigint(20) NOT NULL, + PRIMARY KEY (`id`), + KEY `oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr` (`application_id`), + CONSTRAINT `oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr` FOREIGN KEY (`application_id`) REFERENCES `oauth2_provider_application` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `oauth_dispatch_restrictedapplication` +-- + +LOCK TABLES `oauth_dispatch_restrictedapplication` WRITE; +/*!40000 ALTER TABLE `oauth_dispatch_restrictedapplication` DISABLE KEYS */; +/*!40000 ALTER TABLE `oauth_dispatch_restrictedapplication` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `organizations_historicalorganization` +-- + +DROP TABLE IF EXISTS `organizations_historicalorganization`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `organizations_historicalorganization` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `short_name` varchar(255) NOT NULL, + `description` longtext, + `logo` longtext, + `active` tinyint(1) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `organizations_histor_history_user_id_bb516493_fk_auth_user` (`history_user_id`), + KEY `organizations_historicalorganization_id_4327d8f9` (`id`), + KEY `organizations_historicalorganization_name_5f4e354b` (`name`), + KEY `organizations_historicalorganization_short_name_07087b46` (`short_name`), + CONSTRAINT `organizations_histor_history_user_id_bb516493_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `organizations_historicalorganization` +-- + +LOCK TABLES `organizations_historicalorganization` WRITE; +/*!40000 ALTER TABLE `organizations_historicalorganization` DISABLE KEYS */; +/*!40000 ALTER TABLE `organizations_historicalorganization` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `organizations_organization` +-- + +DROP TABLE IF EXISTS `organizations_organization`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `organizations_organization` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `short_name` varchar(255) NOT NULL, + `description` longtext, + `logo` varchar(255) DEFAULT NULL, + `active` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + KEY `organizations_organization_name_71edc74b` (`name`), + KEY `organizations_organization_short_name_ef338963` (`short_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `organizations_organization` +-- + +LOCK TABLES `organizations_organization` WRITE; +/*!40000 ALTER TABLE `organizations_organization` DISABLE KEYS */; +/*!40000 ALTER TABLE `organizations_organization` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `organizations_organizationcourse` +-- + +DROP TABLE IF EXISTS `organizations_organizationcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `organizations_organizationcourse` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `organization_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `organizations_organizati_course_id_organization_i_06b1db31_uniq` (`course_id`,`organization_id`), + KEY `organizations_organi_organization_id_99e77fe0_fk_organizat` (`organization_id`), + KEY `organizations_organizationcourse_course_id_227b73bc` (`course_id`), + CONSTRAINT `organizations_organi_organization_id_99e77fe0_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `organizations_organizationcourse` +-- + +LOCK TABLES `organizations_organizationcourse` WRITE; +/*!40000 ALTER TABLE `organizations_organizationcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `organizations_organizationcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `problem_builder_answer` +-- + +DROP TABLE IF EXISTS `problem_builder_answer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `problem_builder_answer` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) NOT NULL, + `student_id` varchar(50) NOT NULL, + `student_input` longtext NOT NULL, + `created_on` datetime(6) NOT NULL, + `modified_on` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `problem_builder_answer_student_id_course_key_name_eaac343f_uniq` (`student_id`,`course_key`,`name`), + KEY `problem_builder_answer_name_af0a2a0d` (`name`), + KEY `problem_builder_answer_student_id_8b0fa669` (`student_id`), + KEY `problem_builder_answer_course_key_41ccad30` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `problem_builder_answer` +-- + +LOCK TABLES `problem_builder_answer` WRITE; +/*!40000 ALTER TABLE `problem_builder_answer` DISABLE KEYS */; +/*!40000 ALTER TABLE `problem_builder_answer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `problem_builder_share` +-- + +DROP TABLE IF EXISTS `problem_builder_share`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `problem_builder_share` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `submission_uid` varchar(32) NOT NULL, + `block_id` varchar(255) NOT NULL, + `notified` tinyint(1) NOT NULL, + `shared_by_id` int(11) NOT NULL, + `shared_with_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `problem_builder_share_shared_by_id_shared_with_812f19a2_uniq` (`shared_by_id`,`shared_with_id`,`block_id`), + KEY `problem_builder_share_shared_with_id_acab4570_fk_auth_user_id` (`shared_with_id`), + KEY `problem_builder_share_block_id_6f0dc5f7` (`block_id`), + KEY `problem_builder_share_notified_ad79eba9` (`notified`), + CONSTRAINT `problem_builder_share_shared_by_id_0b75382c_fk_auth_user_id` FOREIGN KEY (`shared_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `problem_builder_share_shared_with_id_acab4570_fk_auth_user_id` FOREIGN KEY (`shared_with_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `problem_builder_share` +-- + +LOCK TABLES `problem_builder_share` WRITE; +/*!40000 ALTER TABLE `problem_builder_share` DISABLE KEYS */; +/*!40000 ALTER TABLE `problem_builder_share` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexam` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexam`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexam` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `content_id` varchar(255) NOT NULL, + `external_id` varchar(255) DEFAULT NULL, + `exam_name` longtext NOT NULL, + `time_limit_mins` int(11) NOT NULL, + `due_date` datetime(6) DEFAULT NULL, + `is_proctored` tinyint(1) NOT NULL, + `is_practice_exam` tinyint(1) NOT NULL, + `is_active` tinyint(1) NOT NULL, + `hide_after_due` tinyint(1) NOT NULL, + `backend` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `proctoring_proctoredexam_course_id_content_id_1d8358cc_uniq` (`course_id`,`content_id`), + KEY `proctoring_proctoredexam_course_id_8787b34f` (`course_id`), + KEY `proctoring_proctoredexam_content_id_13d3bec4` (`content_id`), + KEY `proctoring_proctoredexam_external_id_0181c110` (`external_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexam` +-- + +LOCK TABLES `proctoring_proctoredexam` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexam` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexam` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamreviewpolicy` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamreviewpolicy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamreviewpolicy` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `review_policy` longtext NOT NULL, + `proctored_exam_id` int(11) NOT NULL, + `set_by_user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin` (`proctored_exam_id`), + KEY `proctoring_proctored_set_by_user_id_7c101300_fk_auth_user` (`set_by_user_id`), + CONSTRAINT `proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_set_by_user_id_7c101300_fk_auth_user` FOREIGN KEY (`set_by_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamreviewpolicy` +-- + +LOCK TABLES `proctoring_proctoredexamreviewpolicy` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicy` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamreviewpolicyhistory` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamreviewpolicyhistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamreviewpolicyhistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `original_id` int(11) NOT NULL, + `review_policy` longtext NOT NULL, + `proctored_exam_id` int(11) NOT NULL, + `set_by_user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin` (`proctored_exam_id`), + KEY `proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user` (`set_by_user_id`), + KEY `proctoring_proctoredexamreviewpolicyhistory_original_id_ca04913d` (`original_id`), + CONSTRAINT `proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user` FOREIGN KEY (`set_by_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamreviewpolicyhistory` +-- + +LOCK TABLES `proctoring_proctoredexamreviewpolicyhistory` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicyhistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamreviewpolicyhistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamsoftwaresecurereview` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamsoftwaresecurereview`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamsoftwaresecurereview` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `attempt_code` varchar(255) NOT NULL, + `review_status` varchar(255) NOT NULL, + `raw_data` longtext NOT NULL, + `video_url` longtext NOT NULL, + `exam_id` int(11) DEFAULT NULL, + `reviewed_by_id` int(11) DEFAULT NULL, + `student_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `proctoring_proctoredexam_attempt_code_706d3717_uniq` (`attempt_code`), + KEY `proctoring_proctored_exam_id_ea6095a3_fk_proctorin` (`exam_id`), + KEY `proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user` (`reviewed_by_id`), + KEY `proctoring_proctored_student_id_7e197288_fk_auth_user` (`student_id`), + CONSTRAINT `proctoring_proctored_exam_id_ea6095a3_fk_proctorin` FOREIGN KEY (`exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user` FOREIGN KEY (`reviewed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `proctoring_proctored_student_id_7e197288_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamsoftwaresecurereview` +-- + +LOCK TABLES `proctoring_proctoredexamsoftwaresecurereview` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereview` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereview` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamsoftwaresecurereviewhistory` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamsoftwaresecurereviewhistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamsoftwaresecurereviewhistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `attempt_code` varchar(255) NOT NULL, + `review_status` varchar(255) NOT NULL, + `raw_data` longtext NOT NULL, + `video_url` longtext NOT NULL, + `exam_id` int(11) DEFAULT NULL, + `reviewed_by_id` int(11) DEFAULT NULL, + `student_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `proctoring_proctored_exam_id_380d8588_fk_proctorin` (`exam_id`), + KEY `proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user` (`reviewed_by_id`), + KEY `proctoring_proctored_student_id_97a63653_fk_auth_user` (`student_id`), + KEY `proctoring_proctoredexamsof_attempt_code_695faa63` (`attempt_code`), + CONSTRAINT `proctoring_proctored_exam_id_380d8588_fk_proctorin` FOREIGN KEY (`exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user` FOREIGN KEY (`reviewed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `proctoring_proctored_student_id_97a63653_fk_auth_user` FOREIGN KEY (`student_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamsoftwaresecurereviewhistory` +-- + +LOCK TABLES `proctoring_proctoredexamsoftwaresecurereviewhistory` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereviewhistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamsoftwaresecurereviewhistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamstudentallowance` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamstudentallowance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamstudentallowance` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `key` varchar(255) NOT NULL, + `value` varchar(255) NOT NULL, + `proctored_exam_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq` (`user_id`,`proctored_exam_id`,`key`), + KEY `proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin` (`proctored_exam_id`), + CONSTRAINT `proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_user_id_f21ce9b6_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamstudentallowance` +-- + +LOCK TABLES `proctoring_proctoredexamstudentallowance` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowance` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamstudentallowancehistory` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamstudentallowancehistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamstudentallowancehistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `allowance_id` int(11) NOT NULL, + `key` varchar(255) NOT NULL, + `value` varchar(255) NOT NULL, + `proctored_exam_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin` (`proctored_exam_id`), + KEY `proctoring_proctored_user_id_29b863c1_fk_auth_user` (`user_id`), + CONSTRAINT `proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_user_id_29b863c1_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamstudentallowancehistory` +-- + +LOCK TABLES `proctoring_proctoredexamstudentallowancehistory` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowancehistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentallowancehistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamstudentattempt` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamstudentattempt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamstudentattempt` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `started_at` datetime(6) DEFAULT NULL, + `completed_at` datetime(6) DEFAULT NULL, + `last_poll_timestamp` datetime(6) DEFAULT NULL, + `last_poll_ipaddr` varchar(32) DEFAULT NULL, + `attempt_code` varchar(255) DEFAULT NULL, + `external_id` varchar(255) DEFAULT NULL, + `allowed_time_limit_mins` int(11) DEFAULT NULL, + `status` varchar(64) NOT NULL, + `taking_as_proctored` tinyint(1) NOT NULL, + `is_sample_attempt` tinyint(1) NOT NULL, + `student_name` varchar(255) NOT NULL, + `review_policy_id` int(11) DEFAULT NULL, + `proctored_exam_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + `is_status_acknowledged` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `proctoring_proctoredexam_user_id_proctored_exam_i_1464b206_uniq` (`user_id`,`proctored_exam_id`), + KEY `proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin` (`proctored_exam_id`), + KEY `proctoring_proctoredexamstudentattempt_attempt_code_b10ad854` (`attempt_code`), + KEY `proctoring_proctoredexamstudentattempt_external_id_9c302af3` (`external_id`), + CONSTRAINT `proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_user_id_2b58b7ed_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamstudentattempt` +-- + +LOCK TABLES `proctoring_proctoredexamstudentattempt` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempt` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamstudentattemptcomment` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamstudentattemptcomment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamstudentattemptcomment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `start_time` int(11) NOT NULL, + `stop_time` int(11) NOT NULL, + `duration` int(11) NOT NULL, + `comment` longtext NOT NULL, + `status` varchar(255) NOT NULL, + `review_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `proctoring_proctored_review_id_7f4eec67_fk_proctorin` (`review_id`), + CONSTRAINT `proctoring_proctored_review_id_7f4eec67_fk_proctorin` FOREIGN KEY (`review_id`) REFERENCES `proctoring_proctoredexamsoftwaresecurereview` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamstudentattemptcomment` +-- + +LOCK TABLES `proctoring_proctoredexamstudentattemptcomment` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattemptcomment` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattemptcomment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proctoring_proctoredexamstudentattempthistory` +-- + +DROP TABLE IF EXISTS `proctoring_proctoredexamstudentattempthistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proctoring_proctoredexamstudentattempthistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `attempt_id` int(11) DEFAULT NULL, + `started_at` datetime(6) DEFAULT NULL, + `completed_at` datetime(6) DEFAULT NULL, + `attempt_code` varchar(255) DEFAULT NULL, + `external_id` varchar(255) DEFAULT NULL, + `allowed_time_limit_mins` int(11) DEFAULT NULL, + `status` varchar(64) NOT NULL, + `taking_as_proctored` tinyint(1) NOT NULL, + `is_sample_attempt` tinyint(1) NOT NULL, + `student_name` varchar(255) NOT NULL, + `review_policy_id` int(11) DEFAULT NULL, + `last_poll_timestamp` datetime(6) DEFAULT NULL, + `last_poll_ipaddr` varchar(32) DEFAULT NULL, + `proctored_exam_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin` (`proctored_exam_id`), + KEY `proctoring_proctored_user_id_52fb8674_fk_auth_user` (`user_id`), + KEY `proctoring_proctoredexamstu_attempt_code_8db28074` (`attempt_code`), + KEY `proctoring_proctoredexamstu_external_id_65de5faf` (`external_id`), + CONSTRAINT `proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin` FOREIGN KEY (`proctored_exam_id`) REFERENCES `proctoring_proctoredexam` (`id`), + CONSTRAINT `proctoring_proctored_user_id_52fb8674_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proctoring_proctoredexamstudentattempthistory` +-- + +LOCK TABLES `proctoring_proctoredexamstudentattempthistory` WRITE; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempthistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `proctoring_proctoredexamstudentattempthistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `program_enrollments_courseaccessroleassignment` +-- + +DROP TABLE IF EXISTS `program_enrollments_courseaccessroleassignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `program_enrollments_courseaccessroleassignment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `role` varchar(64) NOT NULL, + `enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `program_enrollments_cour_role_enrollment_id_5a7bfa63_uniq` (`role`,`enrollment_id`), + KEY `program_enrollments__enrollment_id_4e0853f0_fk_program_e` (`enrollment_id`), + CONSTRAINT `program_enrollments__enrollment_id_4e0853f0_fk_program_e` FOREIGN KEY (`enrollment_id`) REFERENCES `program_enrollments_programcourseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `program_enrollments_courseaccessroleassignment` +-- + +LOCK TABLES `program_enrollments_courseaccessroleassignment` WRITE; +/*!40000 ALTER TABLE `program_enrollments_courseaccessroleassignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `program_enrollments_courseaccessroleassignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `program_enrollments_historicalprogramcourseenrollment` +-- + +DROP TABLE IF EXISTS `program_enrollments_historicalprogramcourseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `program_enrollments_historicalprogramcourseenrollment` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `status` varchar(9) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `course_enrollment_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `program_enrollment_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `program_enrollments__history_user_id_428d002e_fk_auth_user` (`history_user_id`), + KEY `program_enrollments_histori_id_fe3a72a7` (`id`), + KEY `program_enrollments_histori_course_enrollment_id_4014ff73` (`course_enrollment_id`), + KEY `program_enrollments_histori_program_enrollment_id_ebb94d42` (`program_enrollment_id`), + CONSTRAINT `program_enrollments__history_user_id_428d002e_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `program_enrollments_historicalprogramcourseenrollment` +-- + +LOCK TABLES `program_enrollments_historicalprogramcourseenrollment` WRITE; +/*!40000 ALTER TABLE `program_enrollments_historicalprogramcourseenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `program_enrollments_historicalprogramcourseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `program_enrollments_historicalprogramenrollment` +-- + +DROP TABLE IF EXISTS `program_enrollments_historicalprogramenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `program_enrollments_historicalprogramenrollment` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `external_user_key` varchar(255) DEFAULT NULL, + `program_uuid` char(32) NOT NULL, + `curriculum_uuid` char(32) NOT NULL, + `status` varchar(9) NOT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `program_enrollments__history_user_id_abf2d584_fk_auth_user` (`history_user_id`), + KEY `program_enrollments_historicalprogramenrollment_id_947c385f` (`id`), + KEY `program_enrollments_histori_external_user_key_5cd8d804` (`external_user_key`), + KEY `program_enrollments_histori_program_uuid_4c520e40` (`program_uuid`), + KEY `program_enrollments_histori_curriculum_uuid_a8325208` (`curriculum_uuid`), + KEY `program_enrollments_historicalprogramenrollment_user_id_e205ccdf` (`user_id`), + CONSTRAINT `program_enrollments__history_user_id_abf2d584_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `program_enrollments_historicalprogramenrollment` +-- + +LOCK TABLES `program_enrollments_historicalprogramenrollment` WRITE; +/*!40000 ALTER TABLE `program_enrollments_historicalprogramenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `program_enrollments_historicalprogramenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `program_enrollments_programcourseenrollment` +-- + +DROP TABLE IF EXISTS `program_enrollments_programcourseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `program_enrollments_programcourseenrollment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `status` varchar(9) NOT NULL, + `course_enrollment_id` int(11) DEFAULT NULL, + `program_enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `program_enrollments_prog_program_enrollment_id_co_7d2701fb_uniq` (`program_enrollment_id`,`course_key`), + KEY `program_enrollments_program_course_enrollment_id_d7890690` (`course_enrollment_id`), + CONSTRAINT `program_enrollments__course_enrollment_id_d7890690_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), + CONSTRAINT `program_enrollments__program_enrollment_i_02ce2c32_fk_program_e` FOREIGN KEY (`program_enrollment_id`) REFERENCES `program_enrollments_programenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `program_enrollments_programcourseenrollment` +-- + +LOCK TABLES `program_enrollments_programcourseenrollment` WRITE; +/*!40000 ALTER TABLE `program_enrollments_programcourseenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `program_enrollments_programcourseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `program_enrollments_programenrollment` +-- + +DROP TABLE IF EXISTS `program_enrollments_programenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `program_enrollments_programenrollment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `external_user_key` varchar(255) DEFAULT NULL, + `program_uuid` char(32) NOT NULL, + `curriculum_uuid` char(32) NOT NULL, + `status` varchar(9) NOT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `program_enrollments_prog_external_user_key_progra_ec52a567_uniq` (`external_user_key`,`program_uuid`,`curriculum_uuid`), + UNIQUE KEY `program_enrollments_prog_user_id_program_uuid_cur_ecf769fd_uniq` (`user_id`,`program_uuid`,`curriculum_uuid`), + KEY `program_enrollments_programenrollment_external_user_key_c27b83c5` (`external_user_key`), + KEY `program_enrollments_programenrollment_program_uuid_131378e0` (`program_uuid`), + KEY `program_enrollments_programenrollment_curriculum_uuid_da64e123` (`curriculum_uuid`), + KEY `program_enrollments_programenrollment_user_id_dcfde442` (`user_id`), + CONSTRAINT `program_enrollments__user_id_dcfde442_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `program_enrollments_programenrollment` +-- + +LOCK TABLES `program_enrollments_programenrollment` WRITE; +/*!40000 ALTER TABLE `program_enrollments_programenrollment` DISABLE KEYS */; +/*!40000 ALTER TABLE `program_enrollments_programenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `programs_customprogramsconfig` +-- + +DROP TABLE IF EXISTS `programs_customprogramsconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `programs_customprogramsconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `arguments` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `programs_customprogr_changed_by_id_ae95c36c_fk_auth_user` (`changed_by_id`), + CONSTRAINT `programs_customprogr_changed_by_id_ae95c36c_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `programs_customprogramsconfig` +-- + +LOCK TABLES `programs_customprogramsconfig` WRITE; +/*!40000 ALTER TABLE `programs_customprogramsconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `programs_customprogramsconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `programs_programsapiconfig` +-- + +DROP TABLE IF EXISTS `programs_programsapiconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `programs_programsapiconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `marketing_path` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `programs_programsapi_changed_by_id_93e09d74_fk_auth_user` (`changed_by_id`), + CONSTRAINT `programs_programsapi_changed_by_id_93e09d74_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `programs_programsapiconfig` +-- + +LOCK TABLES `programs_programsapiconfig` WRITE; +/*!40000 ALTER TABLE `programs_programsapiconfig` DISABLE KEYS */; +INSERT INTO `programs_programsapiconfig` VALUES (1,'2020-04-06 21:00:09.578257',1,NULL,''); +/*!40000 ALTER TABLE `programs_programsapiconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rss_proxy_whitelistedrssurl` +-- + +DROP TABLE IF EXISTS `rss_proxy_whitelistedrssurl`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rss_proxy_whitelistedrssurl` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `url` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `url` (`url`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rss_proxy_whitelistedrssurl` +-- + +LOCK TABLES `rss_proxy_whitelistedrssurl` WRITE; +/*!40000 ALTER TABLE `rss_proxy_whitelistedrssurl` DISABLE KEYS */; +/*!40000 ALTER TABLE `rss_proxy_whitelistedrssurl` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` +-- + +DROP TABLE IF EXISTS `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `sapsf_base_url` varchar(255) NOT NULL, + `key` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + `sapsf_company_id` varchar(255) NOT NULL, + `sapsf_user_id` varchar(255) NOT NULL, + `user_type` varchar(20) NOT NULL, + `transmission_chunk_size` int(11) NOT NULL, + `additional_locales` longtext NOT NULL, + `show_course_price` tinyint(1) NOT NULL, + `channel_worker_username` varchar(255) DEFAULT NULL, + `catalogs_to_transmit` longtext, + `transmit_total_hours` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `sap_success_factors__enterprise_customer__4819a28c_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` +-- + +LOCK TABLES `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` WRITE; +/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` DISABLE KEYS */; +/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sap_success_factors_sapsuccessfactorsglobalconfiguration` +-- + +DROP TABLE IF EXISTS `sap_success_factors_sapsuccessfactorsglobalconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sap_success_factors_sapsuccessfactorsglobalconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `completion_status_api_path` varchar(255) NOT NULL, + `course_api_path` varchar(255) NOT NULL, + `oauth_api_path` varchar(255) NOT NULL, + `provider_id` varchar(100) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `search_student_api_path` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `sap_success_factors__changed_by_id_e3241cc9_fk_auth_user` (`changed_by_id`), + CONSTRAINT `sap_success_factors__changed_by_id_e3241cc9_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sap_success_factors_sapsuccessfactorsglobalconfiguration` +-- + +LOCK TABLES `sap_success_factors_sapsuccessfactorsglobalconfiguration` WRITE; +/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsglobalconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorsglobalconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` +-- + +DROP TABLE IF EXISTS `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `enterprise_course_enrollment_id` int(10) unsigned NOT NULL, + `sapsf_user_id` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `course_completed` tinyint(1) NOT NULL, + `completed_timestamp` bigint(20) NOT NULL, + `instructor_name` varchar(255) NOT NULL, + `grade` varchar(100) NOT NULL, + `status` varchar(100) NOT NULL, + `error_message` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `total_hours` double DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `sap_success_factors_sapsucc_enterprise_course_enrollmen_99be77d5` (`enterprise_course_enrollment_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` +-- + +LOCK TABLES `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` WRITE; +/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` DISABLE KEYS */; +/*!40000 ALTER TABLE `sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `schedules_historicalschedule` +-- + +DROP TABLE IF EXISTS `schedules_historicalschedule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `schedules_historicalschedule` ( + `id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `start_date` datetime(6) DEFAULT NULL, + `upgrade_deadline` datetime(6) DEFAULT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `enrollment_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `schedules_historicalschedule_id_f1648c81` (`id`), + KEY `schedules_historicalschedule_start_date_8c02ff20` (`start_date`), + KEY `schedules_historicalschedule_upgrade_deadline_ba67bbd9` (`upgrade_deadline`), + KEY `schedules_historicalschedule_enrollment_id_cd620413` (`enrollment_id`), + KEY `schedules_historical_history_user_id_6f5d6d7b_fk_auth_user` (`history_user_id`), + CONSTRAINT `schedules_historical_history_user_id_6f5d6d7b_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `schedules_historicalschedule` +-- + +LOCK TABLES `schedules_historicalschedule` WRITE; +/*!40000 ALTER TABLE `schedules_historicalschedule` DISABLE KEYS */; +/*!40000 ALTER TABLE `schedules_historicalschedule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `schedules_schedule` +-- + +DROP TABLE IF EXISTS `schedules_schedule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `schedules_schedule` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `active` tinyint(1) NOT NULL, + `upgrade_deadline` datetime(6) DEFAULT NULL, + `enrollment_id` int(11) NOT NULL, + `start_date` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enrollment_id` (`enrollment_id`), + KEY `schedules_schedule_upgrade_deadline_0079081d` (`upgrade_deadline`), + KEY `schedules_schedule_start_date_3a1c341e` (`start_date`), + CONSTRAINT `schedules_schedule_enrollment_id_91bf8152_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `schedules_schedule` +-- + +LOCK TABLES `schedules_schedule` WRITE; +/*!40000 ALTER TABLE `schedules_schedule` DISABLE KEYS */; +/*!40000 ALTER TABLE `schedules_schedule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `schedules_scheduleconfig` +-- + +DROP TABLE IF EXISTS `schedules_scheduleconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `schedules_scheduleconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `create_schedules` tinyint(1) NOT NULL, + `enqueue_recurring_nudge` tinyint(1) NOT NULL, + `deliver_recurring_nudge` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `site_id` int(11) NOT NULL, + `deliver_upgrade_reminder` tinyint(1) NOT NULL, + `enqueue_upgrade_reminder` tinyint(1) NOT NULL, + `deliver_course_update` tinyint(1) NOT NULL, + `enqueue_course_update` tinyint(1) NOT NULL, + `hold_back_ratio` double NOT NULL, + PRIMARY KEY (`id`), + KEY `schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id` (`changed_by_id`), + KEY `schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id` (`site_id`), + CONSTRAINT `schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `schedules_scheduleconfig` +-- + +LOCK TABLES `schedules_scheduleconfig` WRITE; +/*!40000 ALTER TABLE `schedules_scheduleconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `schedules_scheduleconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `schedules_scheduleexperience` +-- + +DROP TABLE IF EXISTS `schedules_scheduleexperience`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `schedules_scheduleexperience` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `experience_type` smallint(5) unsigned NOT NULL, + `schedule_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `schedule_id` (`schedule_id`), + CONSTRAINT `schedules_scheduleex_schedule_id_ed95c8e7_fk_schedules` FOREIGN KEY (`schedule_id`) REFERENCES `schedules_schedule` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `schedules_scheduleexperience` +-- + +LOCK TABLES `schedules_scheduleexperience` WRITE; +/*!40000 ALTER TABLE `schedules_scheduleexperience` DISABLE KEYS */; +/*!40000 ALTER TABLE `schedules_scheduleexperience` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `self_paced_selfpacedconfiguration` +-- + +DROP TABLE IF EXISTS `self_paced_selfpacedconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `self_paced_selfpacedconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `enable_course_home_improvements` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user` (`changed_by_id`), + CONSTRAINT `self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `self_paced_selfpacedconfiguration` +-- + +LOCK TABLES `self_paced_selfpacedconfiguration` WRITE; +/*!40000 ALTER TABLE `self_paced_selfpacedconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `self_paced_selfpacedconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_certificateitem` +-- + +DROP TABLE IF EXISTS `shoppingcart_certificateitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_certificateitem` ( + `orderitem_ptr_id` int(11) NOT NULL, + `course_id` varchar(128) NOT NULL, + `mode` varchar(50) NOT NULL, + `course_enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`orderitem_ptr_id`), + KEY `shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c` (`course_enrollment_id`), + KEY `shoppingcart_certificateitem_course_id_a2a7b56c` (`course_id`), + KEY `shoppingcart_certificateitem_mode_0b5e8a8c` (`mode`), + CONSTRAINT `shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), + CONSTRAINT `shoppingcart_certifi_orderitem_ptr_id_7fee9beb_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_certificateitem` +-- + +LOCK TABLES `shoppingcart_certificateitem` WRITE; +/*!40000 ALTER TABLE `shoppingcart_certificateitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_certificateitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_coupon` +-- + +DROP TABLE IF EXISTS `shoppingcart_coupon`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_coupon` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `code` varchar(32) NOT NULL, + `description` varchar(255) DEFAULT NULL, + `course_id` varchar(255) NOT NULL, + `percentage_discount` int(11) NOT NULL, + `created_at` datetime(6) NOT NULL, + `is_active` tinyint(1) NOT NULL, + `expiration_date` datetime(6) DEFAULT NULL, + `created_by_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id` (`created_by_id`), + KEY `shoppingcart_coupon_code_67dfa4a3` (`code`), + CONSTRAINT `shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_coupon` +-- + +LOCK TABLES `shoppingcart_coupon` WRITE; +/*!40000 ALTER TABLE `shoppingcart_coupon` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_coupon` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_couponredemption` +-- + +DROP TABLE IF EXISTS `shoppingcart_couponredemption`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_couponredemption` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `coupon_id` int(11) NOT NULL, + `order_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc` (`coupon_id`), + KEY `shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc` (`order_id`), + KEY `shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id` (`user_id`), + CONSTRAINT `shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc` FOREIGN KEY (`coupon_id`) REFERENCES `shoppingcart_coupon` (`id`), + CONSTRAINT `shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`), + CONSTRAINT `shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_couponredemption` +-- + +LOCK TABLES `shoppingcart_couponredemption` WRITE; +/*!40000 ALTER TABLE `shoppingcart_couponredemption` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_couponredemption` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_courseregcodeitem` +-- + +DROP TABLE IF EXISTS `shoppingcart_courseregcodeitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_courseregcodeitem` ( + `orderitem_ptr_id` int(11) NOT NULL, + `course_id` varchar(128) NOT NULL, + `mode` varchar(50) NOT NULL, + PRIMARY KEY (`orderitem_ptr_id`), + KEY `shoppingcart_courseregcodeitem_course_id_7c18f431` (`course_id`), + KEY `shoppingcart_courseregcodeitem_mode_279aa3a8` (`mode`), + CONSTRAINT `shoppingcart_courser_orderitem_ptr_id_e35a50e9_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_courseregcodeitem` +-- + +LOCK TABLES `shoppingcart_courseregcodeitem` WRITE; +/*!40000 ALTER TABLE `shoppingcart_courseregcodeitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_courseregcodeitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_courseregcodeitemannotation` +-- + +DROP TABLE IF EXISTS `shoppingcart_courseregcodeitemannotation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_courseregcodeitemannotation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(128) NOT NULL, + `annotation` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_courseregcodeitemannotation` +-- + +LOCK TABLES `shoppingcart_courseregcodeitemannotation` WRITE; +/*!40000 ALTER TABLE `shoppingcart_courseregcodeitemannotation` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_courseregcodeitemannotation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_courseregistrationcode` +-- + +DROP TABLE IF EXISTS `shoppingcart_courseregistrationcode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_courseregistrationcode` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `code` varchar(32) NOT NULL, + `course_id` varchar(255) NOT NULL, + `created_at` datetime(6) NOT NULL, + `mode_slug` varchar(100) DEFAULT NULL, + `is_valid` tinyint(1) NOT NULL, + `created_by_id` int(11) NOT NULL, + `invoice_id` int(11) DEFAULT NULL, + `order_id` int(11) DEFAULT NULL, + `invoice_item_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `code` (`code`), + KEY `shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user` (`created_by_id`), + KEY `shoppingcart_courseregistrationcode_course_id_ebec7eb9` (`course_id`), + KEY `shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc` (`invoice_id`), + KEY `shoppingcart_courser_order_id_18d73357_fk_shoppingc` (`order_id`), + KEY `shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc` (`invoice_item_id`), + CONSTRAINT `shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`), + CONSTRAINT `shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc` FOREIGN KEY (`invoice_item_id`) REFERENCES `shoppingcart_courseregistrationcodeinvoiceitem` (`invoiceitem_ptr_id`), + CONSTRAINT `shoppingcart_courser_order_id_18d73357_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_courseregistrationcode` +-- + +LOCK TABLES `shoppingcart_courseregistrationcode` WRITE; +/*!40000 ALTER TABLE `shoppingcart_courseregistrationcode` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_courseregistrationcode` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_courseregistrationcodeinvoiceitem` +-- + +DROP TABLE IF EXISTS `shoppingcart_courseregistrationcodeinvoiceitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_courseregistrationcodeinvoiceitem` ( + `invoiceitem_ptr_id` int(11) NOT NULL, + `course_id` varchar(128) NOT NULL, + PRIMARY KEY (`invoiceitem_ptr_id`), + KEY `shoppingcart_courseregistra_course_id_e8c94aec` (`course_id`), + CONSTRAINT `shoppingcart_courser_invoiceitem_ptr_id_59b1f26d_fk_shoppingc` FOREIGN KEY (`invoiceitem_ptr_id`) REFERENCES `shoppingcart_invoiceitem` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_courseregistrationcodeinvoiceitem` +-- + +LOCK TABLES `shoppingcart_courseregistrationcodeinvoiceitem` WRITE; +/*!40000 ALTER TABLE `shoppingcart_courseregistrationcodeinvoiceitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_courseregistrationcodeinvoiceitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_donation` +-- + +DROP TABLE IF EXISTS `shoppingcart_donation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_donation` ( + `orderitem_ptr_id` int(11) NOT NULL, + `donation_type` varchar(32) NOT NULL, + `course_id` varchar(255) NOT NULL, + PRIMARY KEY (`orderitem_ptr_id`), + KEY `shoppingcart_donation_course_id_e0c7203c` (`course_id`), + CONSTRAINT `shoppingcart_donatio_orderitem_ptr_id_edf717c8_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_donation` +-- + +LOCK TABLES `shoppingcart_donation` WRITE; +/*!40000 ALTER TABLE `shoppingcart_donation` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_donation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_donationconfiguration` +-- + +DROP TABLE IF EXISTS `shoppingcart_donationconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_donationconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user` (`changed_by_id`), + CONSTRAINT `shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_donationconfiguration` +-- + +LOCK TABLES `shoppingcart_donationconfiguration` WRITE; +/*!40000 ALTER TABLE `shoppingcart_donationconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_donationconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_invoice` +-- + +DROP TABLE IF EXISTS `shoppingcart_invoice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_invoice` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `company_name` varchar(255) NOT NULL, + `company_contact_name` varchar(255) NOT NULL, + `company_contact_email` varchar(255) NOT NULL, + `recipient_name` varchar(255) NOT NULL, + `recipient_email` varchar(255) NOT NULL, + `address_line_1` varchar(255) NOT NULL, + `address_line_2` varchar(255) DEFAULT NULL, + `address_line_3` varchar(255) DEFAULT NULL, + `city` varchar(255) DEFAULT NULL, + `state` varchar(255) DEFAULT NULL, + `zip` varchar(15) DEFAULT NULL, + `country` varchar(64) DEFAULT NULL, + `total_amount` double NOT NULL, + `course_id` varchar(255) NOT NULL, + `internal_reference` varchar(255) DEFAULT NULL, + `customer_reference_number` varchar(63) DEFAULT NULL, + `is_valid` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_invoice_company_name_4d19b1d3` (`company_name`), + KEY `shoppingcart_invoice_course_id_eaefd2e0` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_invoice` +-- + +LOCK TABLES `shoppingcart_invoice` WRITE; +/*!40000 ALTER TABLE `shoppingcart_invoice` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_invoice` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_invoicehistory` +-- + +DROP TABLE IF EXISTS `shoppingcart_invoicehistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_invoicehistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `timestamp` datetime(6) NOT NULL, + `snapshot` longtext NOT NULL, + `invoice_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc` (`invoice_id`), + KEY `shoppingcart_invoicehistory_timestamp_61c10fc3` (`timestamp`), + CONSTRAINT `shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_invoicehistory` +-- + +LOCK TABLES `shoppingcart_invoicehistory` WRITE; +/*!40000 ALTER TABLE `shoppingcart_invoicehistory` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_invoicehistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_invoiceitem` +-- + +DROP TABLE IF EXISTS `shoppingcart_invoiceitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_invoiceitem` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `qty` int(11) NOT NULL, + `unit_price` decimal(30,2) NOT NULL, + `currency` varchar(8) NOT NULL, + `invoice_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc` (`invoice_id`), + CONSTRAINT `shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_invoiceitem` +-- + +LOCK TABLES `shoppingcart_invoiceitem` WRITE; +/*!40000 ALTER TABLE `shoppingcart_invoiceitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_invoiceitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_invoicetransaction` +-- + +DROP TABLE IF EXISTS `shoppingcart_invoicetransaction`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_invoicetransaction` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `amount` decimal(30,2) NOT NULL, + `currency` varchar(8) NOT NULL, + `comments` longtext, + `status` varchar(32) NOT NULL, + `created_by_id` int(11) NOT NULL, + `invoice_id` int(11) NOT NULL, + `last_modified_by_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user` (`created_by_id`), + KEY `shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc` (`invoice_id`), + KEY `shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user` (`last_modified_by_id`), + CONSTRAINT `shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user` FOREIGN KEY (`created_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc` FOREIGN KEY (`invoice_id`) REFERENCES `shoppingcart_invoice` (`id`), + CONSTRAINT `shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user` FOREIGN KEY (`last_modified_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_invoicetransaction` +-- + +LOCK TABLES `shoppingcart_invoicetransaction` WRITE; +/*!40000 ALTER TABLE `shoppingcart_invoicetransaction` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_invoicetransaction` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_order` +-- + +DROP TABLE IF EXISTS `shoppingcart_order`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_order` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `currency` varchar(8) NOT NULL, + `status` varchar(32) NOT NULL, + `purchase_time` datetime(6) DEFAULT NULL, + `refunded_time` datetime(6) DEFAULT NULL, + `bill_to_first` varchar(64) NOT NULL, + `bill_to_last` varchar(64) NOT NULL, + `bill_to_street1` varchar(128) NOT NULL, + `bill_to_street2` varchar(128) NOT NULL, + `bill_to_city` varchar(64) NOT NULL, + `bill_to_state` varchar(8) NOT NULL, + `bill_to_postalcode` varchar(16) NOT NULL, + `bill_to_country` varchar(64) NOT NULL, + `bill_to_ccnum` varchar(8) NOT NULL, + `bill_to_cardtype` varchar(32) NOT NULL, + `processor_reply_dump` longtext NOT NULL, + `company_name` varchar(255) DEFAULT NULL, + `company_contact_name` varchar(255) DEFAULT NULL, + `company_contact_email` varchar(255) DEFAULT NULL, + `recipient_name` varchar(255) DEFAULT NULL, + `recipient_email` varchar(255) DEFAULT NULL, + `customer_reference_number` varchar(63) DEFAULT NULL, + `order_type` varchar(32) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_order_user_id_ca2398bc_fk_auth_user_id` (`user_id`), + CONSTRAINT `shoppingcart_order_user_id_ca2398bc_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_order` +-- + +LOCK TABLES `shoppingcart_order` WRITE; +/*!40000 ALTER TABLE `shoppingcart_order` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_order` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_orderitem` +-- + +DROP TABLE IF EXISTS `shoppingcart_orderitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_orderitem` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `status` varchar(32) NOT NULL, + `qty` int(11) NOT NULL, + `unit_cost` decimal(30,2) NOT NULL, + `list_price` decimal(30,2) DEFAULT NULL, + `line_desc` varchar(1024) NOT NULL, + `currency` varchar(8) NOT NULL, + `fulfilled_time` datetime(6) DEFAULT NULL, + `refund_requested_time` datetime(6) DEFAULT NULL, + `service_fee` decimal(30,2) NOT NULL, + `report_comments` longtext NOT NULL, + `order_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_orderitem_status_f6dfbdae` (`status`), + KEY `shoppingcart_orderitem_fulfilled_time_336eded2` (`fulfilled_time`), + KEY `shoppingcart_orderitem_refund_requested_time_36e52146` (`refund_requested_time`), + KEY `shoppingcart_orderit_order_id_063915e1_fk_shoppingc` (`order_id`), + KEY `shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id` (`user_id`), + CONSTRAINT `shoppingcart_orderit_order_id_063915e1_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`), + CONSTRAINT `shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_orderitem` +-- + +LOCK TABLES `shoppingcart_orderitem` WRITE; +/*!40000 ALTER TABLE `shoppingcart_orderitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_orderitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_paidcourseregistration` +-- + +DROP TABLE IF EXISTS `shoppingcart_paidcourseregistration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_paidcourseregistration` ( + `orderitem_ptr_id` int(11) NOT NULL, + `course_id` varchar(128) NOT NULL, + `mode` varchar(50) NOT NULL, + `course_enrollment_id` int(11) DEFAULT NULL, + PRIMARY KEY (`orderitem_ptr_id`), + KEY `shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c` (`course_enrollment_id`), + KEY `shoppingcart_paidcourseregistration_course_id_33b51281` (`course_id`), + KEY `shoppingcart_paidcourseregistration_mode_8be64323` (`mode`), + CONSTRAINT `shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), + CONSTRAINT `shoppingcart_paidcou_orderitem_ptr_id_00c1dc3c_fk_shoppingc` FOREIGN KEY (`orderitem_ptr_id`) REFERENCES `shoppingcart_orderitem` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_paidcourseregistration` +-- + +LOCK TABLES `shoppingcart_paidcourseregistration` WRITE; +/*!40000 ALTER TABLE `shoppingcart_paidcourseregistration` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_paidcourseregistration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_paidcourseregistrationannotation` +-- + +DROP TABLE IF EXISTS `shoppingcart_paidcourseregistrationannotation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_paidcourseregistrationannotation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(128) NOT NULL, + `annotation` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `course_id` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_paidcourseregistrationannotation` +-- + +LOCK TABLES `shoppingcart_paidcourseregistrationannotation` WRITE; +/*!40000 ALTER TABLE `shoppingcart_paidcourseregistrationannotation` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_paidcourseregistrationannotation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `shoppingcart_registrationcoderedemption` +-- + +DROP TABLE IF EXISTS `shoppingcart_registrationcoderedemption`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `shoppingcart_registrationcoderedemption` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `redeemed_at` datetime(6) DEFAULT NULL, + `course_enrollment_id` int(11) DEFAULT NULL, + `order_id` int(11) DEFAULT NULL, + `redeemed_by_id` int(11) NOT NULL, + `registration_code_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c` (`course_enrollment_id`), + KEY `shoppingcart_registr_order_id_240ef603_fk_shoppingc` (`order_id`), + KEY `shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user` (`redeemed_by_id`), + KEY `shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc` (`registration_code_id`), + CONSTRAINT `shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c` FOREIGN KEY (`course_enrollment_id`) REFERENCES `student_courseenrollment` (`id`), + CONSTRAINT `shoppingcart_registr_order_id_240ef603_fk_shoppingc` FOREIGN KEY (`order_id`) REFERENCES `shoppingcart_order` (`id`), + CONSTRAINT `shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user` FOREIGN KEY (`redeemed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc` FOREIGN KEY (`registration_code_id`) REFERENCES `shoppingcart_courseregistrationcode` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `shoppingcart_registrationcoderedemption` +-- + +LOCK TABLES `shoppingcart_registrationcoderedemption` WRITE; +/*!40000 ALTER TABLE `shoppingcart_registrationcoderedemption` DISABLE KEYS */; +/*!40000 ALTER TABLE `shoppingcart_registrationcoderedemption` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `site_configuration_siteconfiguration` +-- + +DROP TABLE IF EXISTS `site_configuration_siteconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `site_configuration_siteconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `site_id` int(11) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `site_values` longtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `site_id` (`site_id`), + CONSTRAINT `site_configuration_s_site_id_84302d1f_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `site_configuration_siteconfiguration` +-- + +LOCK TABLES `site_configuration_siteconfiguration` WRITE; +/*!40000 ALTER TABLE `site_configuration_siteconfiguration` DISABLE KEYS */; +INSERT INTO `site_configuration_siteconfiguration` VALUES (1,1,1,'{\"COURSE_CATALOG_API_URL\":\"http://edx.devstack.discovery:18381/api/v1/\"}'); +/*!40000 ALTER TABLE `site_configuration_siteconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `site_configuration_siteconfigurationhistory` +-- + +DROP TABLE IF EXISTS `site_configuration_siteconfigurationhistory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `site_configuration_siteconfigurationhistory` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `site_id` int(11) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `site_values` longtext NOT NULL, + PRIMARY KEY (`id`), + KEY `site_configuration_s_site_id_272f5c1a_fk_django_si` (`site_id`), + CONSTRAINT `site_configuration_s_site_id_272f5c1a_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `site_configuration_siteconfigurationhistory` +-- + +LOCK TABLES `site_configuration_siteconfigurationhistory` WRITE; +/*!40000 ALTER TABLE `site_configuration_siteconfigurationhistory` DISABLE KEYS */; +INSERT INTO `site_configuration_siteconfigurationhistory` VALUES (1,'2020-04-06 21:00:11.028167','2020-04-06 21:00:11.028167',1,1,'{\"COURSE_CATALOG_API_URL\":\"http://edx.devstack.discovery:18381/api/v1/\"}'),(2,'2020-07-23 17:39:37.872350','2020-07-23 17:39:37.872350',1,1,'{\"COURSE_CATALOG_API_URL\":\"http://edx.devstack.discovery:18381/api/v1/\"}'); +/*!40000 ALTER TABLE `site_configuration_siteconfigurationhistory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `social_auth_association` +-- + +DROP TABLE IF EXISTS `social_auth_association`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `social_auth_association` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `server_url` varchar(255) NOT NULL, + `handle` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `issued` int(11) NOT NULL, + `lifetime` int(11) NOT NULL, + `assoc_type` varchar(64) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `social_auth_association_server_url_handle_078befa2_uniq` (`server_url`,`handle`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `social_auth_association` +-- + +LOCK TABLES `social_auth_association` WRITE; +/*!40000 ALTER TABLE `social_auth_association` DISABLE KEYS */; +/*!40000 ALTER TABLE `social_auth_association` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `social_auth_code` +-- + +DROP TABLE IF EXISTS `social_auth_code`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `social_auth_code` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `email` varchar(254) NOT NULL, + `code` varchar(32) NOT NULL, + `verified` tinyint(1) NOT NULL, + `timestamp` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `social_auth_code_email_code_801b2d02_uniq` (`email`,`code`), + KEY `social_auth_code_code_a2393167` (`code`), + KEY `social_auth_code_timestamp_176b341f` (`timestamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `social_auth_code` +-- + +LOCK TABLES `social_auth_code` WRITE; +/*!40000 ALTER TABLE `social_auth_code` DISABLE KEYS */; +/*!40000 ALTER TABLE `social_auth_code` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `social_auth_nonce` +-- + +DROP TABLE IF EXISTS `social_auth_nonce`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `social_auth_nonce` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `server_url` varchar(255) NOT NULL, + `timestamp` int(11) NOT NULL, + `salt` varchar(65) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `social_auth_nonce_server_url_timestamp_salt_f6284463_uniq` (`server_url`,`timestamp`,`salt`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `social_auth_nonce` +-- + +LOCK TABLES `social_auth_nonce` WRITE; +/*!40000 ALTER TABLE `social_auth_nonce` DISABLE KEYS */; +/*!40000 ALTER TABLE `social_auth_nonce` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `social_auth_partial` +-- + +DROP TABLE IF EXISTS `social_auth_partial`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `social_auth_partial` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `token` varchar(32) NOT NULL, + `next_step` smallint(5) unsigned NOT NULL, + `backend` varchar(32) NOT NULL, + `data` longtext NOT NULL, + `timestamp` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + KEY `social_auth_partial_token_3017fea3` (`token`), + KEY `social_auth_partial_timestamp_50f2119f` (`timestamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `social_auth_partial` +-- + +LOCK TABLES `social_auth_partial` WRITE; +/*!40000 ALTER TABLE `social_auth_partial` DISABLE KEYS */; +/*!40000 ALTER TABLE `social_auth_partial` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `social_auth_usersocialauth` +-- + +DROP TABLE IF EXISTS `social_auth_usersocialauth`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `social_auth_usersocialauth` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `provider` varchar(32) NOT NULL, + `uid` varchar(255) NOT NULL, + `extra_data` longtext NOT NULL, + `user_id` int(11) NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `social_auth_usersocialauth_provider_uid_e6b5e668_uniq` (`provider`,`uid`), + KEY `social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id` (`user_id`), + KEY `social_auth_usersocialauth_uid_796e51dc` (`uid`), + CONSTRAINT `social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `social_auth_usersocialauth` +-- + +LOCK TABLES `social_auth_usersocialauth` WRITE; +/*!40000 ALTER TABLE `social_auth_usersocialauth` DISABLE KEYS */; +/*!40000 ALTER TABLE `social_auth_usersocialauth` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `splash_splashconfig` +-- + +DROP TABLE IF EXISTS `splash_splashconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `splash_splashconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `cookie_name` longtext NOT NULL, + `cookie_allowed_values` longtext NOT NULL, + `unaffected_usernames` longtext NOT NULL, + `unaffected_url_paths` longtext NOT NULL, + `redirect_url` varchar(200) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `splash_splashconfig` +-- + +LOCK TABLES `splash_splashconfig` WRITE; +/*!40000 ALTER TABLE `splash_splashconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `splash_splashconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `static_replace_assetbaseurlconfig` +-- + +DROP TABLE IF EXISTS `static_replace_assetbaseurlconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `static_replace_assetbaseurlconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `base_url` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `static_replace_asset_changed_by_id_f592e050_fk_auth_user` (`changed_by_id`), + CONSTRAINT `static_replace_asset_changed_by_id_f592e050_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `static_replace_assetbaseurlconfig` +-- + +LOCK TABLES `static_replace_assetbaseurlconfig` WRITE; +/*!40000 ALTER TABLE `static_replace_assetbaseurlconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `static_replace_assetbaseurlconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `static_replace_assetexcludedextensionsconfig` +-- + +DROP TABLE IF EXISTS `static_replace_assetexcludedextensionsconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `static_replace_assetexcludedextensionsconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `excluded_extensions` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `static_replace_asset_changed_by_id_e58299b3_fk_auth_user` (`changed_by_id`), + CONSTRAINT `static_replace_asset_changed_by_id_e58299b3_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `static_replace_assetexcludedextensionsconfig` +-- + +LOCK TABLES `static_replace_assetexcludedextensionsconfig` WRITE; +/*!40000 ALTER TABLE `static_replace_assetexcludedextensionsconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `static_replace_assetexcludedextensionsconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `status_coursemessage` +-- + +DROP TABLE IF EXISTS `status_coursemessage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `status_coursemessage` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `message` longtext, + `global_message_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `status_coursemessage_course_key_90c77a2e` (`course_key`), + KEY `status_coursemessage_global_message_id_01bbfbe6_fk_status_gl` (`global_message_id`), + CONSTRAINT `status_coursemessage_global_message_id_01bbfbe6_fk_status_gl` FOREIGN KEY (`global_message_id`) REFERENCES `status_globalstatusmessage` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `status_coursemessage` +-- + +LOCK TABLES `status_coursemessage` WRITE; +/*!40000 ALTER TABLE `status_coursemessage` DISABLE KEYS */; +/*!40000 ALTER TABLE `status_coursemessage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `status_globalstatusmessage` +-- + +DROP TABLE IF EXISTS `status_globalstatusmessage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `status_globalstatusmessage` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `message` longtext, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `status_globalstatusm_changed_by_id_3c627848_fk_auth_user` (`changed_by_id`), + CONSTRAINT `status_globalstatusm_changed_by_id_3c627848_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `status_globalstatusmessage` +-- + +LOCK TABLES `status_globalstatusmessage` WRITE; +/*!40000 ALTER TABLE `status_globalstatusmessage` DISABLE KEYS */; +/*!40000 ALTER TABLE `status_globalstatusmessage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_accountrecoveryconfiguration` +-- + +DROP TABLE IF EXISTS `student_accountrecoveryconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_accountrecoveryconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `csv_file` varchar(100) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_accountrecov_changed_by_id_d9d1ddf6_fk_auth_user` (`changed_by_id`), + CONSTRAINT `student_accountrecov_changed_by_id_d9d1ddf6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_accountrecoveryconfiguration` +-- + +LOCK TABLES `student_accountrecoveryconfiguration` WRITE; +/*!40000 ALTER TABLE `student_accountrecoveryconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_accountrecoveryconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_allowedauthuser` +-- + +DROP TABLE IF EXISTS `student_allowedauthuser`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_allowedauthuser` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `email` varchar(254) NOT NULL, + `site_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `email` (`email`), + KEY `student_allowedauthuser_site_id_9a6aae9b_fk_django_site_id` (`site_id`), + CONSTRAINT `student_allowedauthuser_site_id_9a6aae9b_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_allowedauthuser` +-- + +LOCK TABLES `student_allowedauthuser` WRITE; +/*!40000 ALTER TABLE `student_allowedauthuser` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_allowedauthuser` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_anonymoususerid` +-- + +DROP TABLE IF EXISTS `student_anonymoususerid`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_anonymoususerid` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `anonymous_user_id` varchar(32) NOT NULL, + `course_id` varchar(255) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `anonymous_user_id` (`anonymous_user_id`), + KEY `student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id` (`user_id`), + KEY `student_anonymoususerid_course_id_99cc6a18` (`course_id`), + CONSTRAINT `student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_anonymoususerid` +-- + +LOCK TABLES `student_anonymoususerid` WRITE; +/*!40000 ALTER TABLE `student_anonymoususerid` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_anonymoususerid` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_bulkunenrollconfiguration` +-- + +DROP TABLE IF EXISTS `student_bulkunenrollconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_bulkunenrollconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `csv_file` varchar(100) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_bulkunenroll_changed_by_id_7b6131b9_fk_auth_user` (`changed_by_id`), + CONSTRAINT `student_bulkunenroll_changed_by_id_7b6131b9_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_bulkunenrollconfiguration` +-- + +LOCK TABLES `student_bulkunenrollconfiguration` WRITE; +/*!40000 ALTER TABLE `student_bulkunenrollconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_bulkunenrollconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_courseaccessrole` +-- + +DROP TABLE IF EXISTS `student_courseaccessrole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_courseaccessrole` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `org` varchar(64) NOT NULL, + `course_id` varchar(255) NOT NULL, + `role` varchar(64) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq` (`user_id`,`org`,`course_id`,`role`), + KEY `student_courseaccessrole_org_6d2dbb7a` (`org`), + KEY `student_courseaccessrole_course_id_60fb355e` (`course_id`), + KEY `student_courseaccessrole_role_1ac888ea` (`role`), + CONSTRAINT `student_courseaccessrole_user_id_90cf21fe_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_courseaccessrole` +-- + +LOCK TABLES `student_courseaccessrole` WRITE; +/*!40000 ALTER TABLE `student_courseaccessrole` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_courseaccessrole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_courseenrollment` +-- + +DROP TABLE IF EXISTS `student_courseenrollment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_courseenrollment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `created` datetime(6) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL, + `mode` varchar(100) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_courseenrollment_user_id_course_id_5d34a47f_uniq` (`user_id`,`course_id`), + KEY `student_courseenrollment_course_id_a6f93be8` (`course_id`), + KEY `student_courseenrollment_created_79829893` (`created`), + KEY `student_cou_user_id_b19dcd_idx` (`user_id`,`created`), + CONSTRAINT `student_courseenrollment_user_id_4263a8e2_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_courseenrollment` +-- + +LOCK TABLES `student_courseenrollment` WRITE; +/*!40000 ALTER TABLE `student_courseenrollment` DISABLE KEYS */; +INSERT INTO `student_courseenrollment` VALUES (1,'course-v1:edX+DemoX+Demo_Course','2020-04-06 20:49:35.218383',1,'audit',5),(2,'course-v1:edX+DemoX+Demo_Course','2020-04-06 20:49:44.227208',1,'audit',6),(3,'course-v1:edX+DemoX+Demo_Course','2020-04-06 20:49:53.428771',1,'audit',7),(4,'course-v1:edX+DemoX+Demo_Course','2020-04-06 20:50:02.554052',1,'audit',8); +/*!40000 ALTER TABLE `student_courseenrollment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_courseenrollment_history` +-- + +DROP TABLE IF EXISTS `student_courseenrollment_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_courseenrollment_history` ( + `id` int(11) NOT NULL, + `created` datetime(6) DEFAULT NULL, + `is_active` tinyint(1) NOT NULL, + `mode` varchar(100) NOT NULL, + `history_id` char(32) NOT NULL, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `course_id` varchar(255) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `student_courseenroll_history_user_id_7065c772_fk_auth_user` (`history_user_id`), + KEY `student_courseenrollment_history_id_2d80b9b3` (`id`), + KEY `student_courseenrollment_history_created_6b3154af` (`created`), + KEY `student_courseenrollment_history_course_id_98f13917` (`course_id`), + KEY `student_courseenrollment_history_user_id_5f94c628` (`user_id`), + CONSTRAINT `student_courseenroll_history_user_id_7065c772_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_courseenrollment_history` +-- + +LOCK TABLES `student_courseenrollment_history` WRITE; +/*!40000 ALTER TABLE `student_courseenrollment_history` DISABLE KEYS */; +INSERT INTO `student_courseenrollment_history` VALUES (1,'2020-04-06 20:49:35.218383',1,'audit','0bb7e2e7ac5b4725b9b58ece0460e33d','2020-04-06 20:49:35.444929',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,5),(4,'2020-04-06 20:50:02.554052',1,'audit','163ec52d5d1649a6bde63e00321d5055','2020-04-06 20:50:02.808327',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,8),(3,'2020-04-06 20:49:53.428771',1,'audit','294d4ec52cfc47cea264a9f4650faa9d','2020-04-06 20:49:53.536871',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,7),(1,'2020-04-06 20:49:35.218383',0,'audit','2c866bea12e14d06b1b8f1de46899098','2020-04-06 20:49:35.218849',NULL,'+','course-v1:edX+DemoX+Demo_Course',NULL,5),(3,'2020-04-06 20:49:53.428771',0,'audit','407321748eb546cf834388c9057252c5','2020-04-06 20:49:53.429392',NULL,'+','course-v1:edX+DemoX+Demo_Course',NULL,7),(1,'2020-04-06 20:49:35.218383',1,'audit','43487d915e6b4f5eac02c00ddaa91f1b','2020-04-06 20:49:35.300194',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,5),(2,'2020-04-06 20:49:44.227208',1,'audit','6993361856424a3ea3d6c1d4d2cbeb40','2020-04-06 20:49:44.567022',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,6),(3,'2020-04-06 20:49:53.428771',1,'audit','6c0f62ad2c3a49ccada8f3bc98a88791','2020-04-06 20:49:53.625677',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,7),(2,'2020-04-06 20:49:44.227208',1,'audit','90b521fda98c4896bbc290f2de5d3ba0','2020-04-06 20:49:44.433086',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,6),(2,'2020-04-06 20:49:44.227208',0,'audit','d05402c728864cd2a03732f5b77495f1','2020-04-06 20:49:44.227821',NULL,'+','course-v1:edX+DemoX+Demo_Course',NULL,6),(4,'2020-04-06 20:50:02.554052',1,'audit','e5a0961250114e9f955ded510555f9c9','2020-04-06 20:50:02.897336',NULL,'~','course-v1:edX+DemoX+Demo_Course',NULL,8),(4,'2020-04-06 20:50:02.554052',0,'audit','ffdfe45f9dc8450fb504400d1bd0eb3d','2020-04-06 20:50:02.554680',NULL,'+','course-v1:edX+DemoX+Demo_Course',NULL,8); +/*!40000 ALTER TABLE `student_courseenrollment_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_courseenrollmentallowed` +-- + +DROP TABLE IF EXISTS `student_courseenrollmentallowed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_courseenrollmentallowed` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `email` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `auto_enroll` tinyint(1) NOT NULL, + `created` datetime(6) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_courseenrollmentallowed_email_course_id_1e23ed5e_uniq` (`email`,`course_id`), + KEY `student_courseenrollmentallowed_email_969706a0` (`email`), + KEY `student_courseenrollmentallowed_course_id_67eff667` (`course_id`), + KEY `student_courseenrollmentallowed_created_b2066658` (`created`), + KEY `student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id` (`user_id`), + CONSTRAINT `student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_courseenrollmentallowed` +-- + +LOCK TABLES `student_courseenrollmentallowed` WRITE; +/*!40000 ALTER TABLE `student_courseenrollmentallowed` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_courseenrollmentallowed` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_courseenrollmentattribute` +-- + +DROP TABLE IF EXISTS `student_courseenrollmentattribute`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_courseenrollmentattribute` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `namespace` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `value` varchar(255) NOT NULL, + `enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `student_courseenroll_enrollment_id_b2173db0_fk_student_c` (`enrollment_id`), + CONSTRAINT `student_courseenroll_enrollment_id_b2173db0_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_courseenrollmentattribute` +-- + +LOCK TABLES `student_courseenrollmentattribute` WRITE; +/*!40000 ALTER TABLE `student_courseenrollmentattribute` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_courseenrollmentattribute` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_courseenrollmentcelebration` +-- + +DROP TABLE IF EXISTS `student_courseenrollmentcelebration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_courseenrollmentcelebration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `celebrate_first_section` tinyint(1) NOT NULL, + `enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enrollment_id` (`enrollment_id`), + CONSTRAINT `student_courseenroll_enrollment_id_c697e4ce_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_courseenrollmentcelebration` +-- + +LOCK TABLES `student_courseenrollmentcelebration` WRITE; +/*!40000 ALTER TABLE `student_courseenrollmentcelebration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_courseenrollmentcelebration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_dashboardconfiguration` +-- + +DROP TABLE IF EXISTS `student_dashboardconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_dashboardconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `recent_enrollment_time_delta` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_dashboardcon_changed_by_id_1960484b_fk_auth_user` (`changed_by_id`), + CONSTRAINT `student_dashboardcon_changed_by_id_1960484b_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_dashboardconfiguration` +-- + +LOCK TABLES `student_dashboardconfiguration` WRITE; +/*!40000 ALTER TABLE `student_dashboardconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_dashboardconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_enrollmentrefundconfiguration` +-- + +DROP TABLE IF EXISTS `student_enrollmentrefundconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_enrollmentrefundconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `refund_window_microseconds` bigint(20) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user` (`changed_by_id`), + CONSTRAINT `student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_enrollmentrefundconfiguration` +-- + +LOCK TABLES `student_enrollmentrefundconfiguration` WRITE; +/*!40000 ALTER TABLE `student_enrollmentrefundconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_enrollmentrefundconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_entranceexamconfiguration` +-- + +DROP TABLE IF EXISTS `student_entranceexamconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_entranceexamconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` varchar(255) NOT NULL, + `created` datetime(6) DEFAULT NULL, + `updated` datetime(6) NOT NULL, + `skip_entrance_exam` tinyint(1) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_entranceexamconf_user_id_course_id_23bbcf9b_uniq` (`user_id`,`course_id`), + KEY `student_entranceexamconfiguration_course_id_eca5c3d4` (`course_id`), + KEY `student_entranceexamconfiguration_created_27e80637` (`created`), + KEY `student_entranceexamconfiguration_updated_d560d552` (`updated`), + CONSTRAINT `student_entranceexam_user_id_387a35d6_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_entranceexamconfiguration` +-- + +LOCK TABLES `student_entranceexamconfiguration` WRITE; +/*!40000 ALTER TABLE `student_entranceexamconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_entranceexamconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_fbeenrollmentexclusion` +-- + +DROP TABLE IF EXISTS `student_fbeenrollmentexclusion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_fbeenrollmentexclusion` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `enrollment_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enrollment_id` (`enrollment_id`), + CONSTRAINT `student_fbeenrollmen_enrollment_id_28537ff8_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_fbeenrollmentexclusion` +-- + +LOCK TABLES `student_fbeenrollmentexclusion` WRITE; +/*!40000 ALTER TABLE `student_fbeenrollmentexclusion` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_fbeenrollmentexclusion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_historicalmanualenrollmentaudit` +-- + +DROP TABLE IF EXISTS `student_historicalmanualenrollmentaudit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_historicalmanualenrollmentaudit` ( + `id` int(11) NOT NULL, + `enrolled_email` varchar(255) NOT NULL, + `time_stamp` datetime(6) DEFAULT NULL, + `state_transition` varchar(255) NOT NULL, + `reason` longtext, + `role` varchar(64) DEFAULT NULL, + `history_id` int(11) NOT NULL AUTO_INCREMENT, + `history_date` datetime(6) NOT NULL, + `history_change_reason` varchar(100) DEFAULT NULL, + `history_type` varchar(1) NOT NULL, + `enrolled_by_id` int(11) DEFAULT NULL, + `enrollment_id` int(11) DEFAULT NULL, + `history_user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`history_id`), + KEY `student_historicalma_history_user_id_b5f488c2_fk_auth_user` (`history_user_id`), + KEY `student_historicalmanualenrollmentaudit_id_18eb7e98` (`id`), + KEY `student_historicalmanualenrollmentaudit_enrolled_email_bfaa34b3` (`enrolled_email`), + KEY `student_historicalmanualenrollmentaudit_enrolled_by_id_0838a44b` (`enrolled_by_id`), + KEY `student_historicalmanualenrollmentaudit_enrollment_id_b74f8923` (`enrollment_id`), + CONSTRAINT `student_historicalma_history_user_id_b5f488c2_fk_auth_user` FOREIGN KEY (`history_user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_historicalmanualenrollmentaudit` +-- + +LOCK TABLES `student_historicalmanualenrollmentaudit` WRITE; +/*!40000 ALTER TABLE `student_historicalmanualenrollmentaudit` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_historicalmanualenrollmentaudit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_languageproficiency` +-- + +DROP TABLE IF EXISTS `student_languageproficiency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_languageproficiency` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `code` varchar(16) NOT NULL, + `user_profile_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_languageproficiency_code_user_profile_id_9aa4e2f5_uniq` (`code`,`user_profile_id`), + KEY `student_languageprof_user_profile_id_768cd3eb_fk_auth_user` (`user_profile_id`), + CONSTRAINT `student_languageprof_user_profile_id_768cd3eb_fk_auth_user` FOREIGN KEY (`user_profile_id`) REFERENCES `auth_userprofile` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_languageproficiency` +-- + +LOCK TABLES `student_languageproficiency` WRITE; +/*!40000 ALTER TABLE `student_languageproficiency` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_languageproficiency` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_linkedinaddtoprofileconfiguration` +-- + +DROP TABLE IF EXISTS `student_linkedinaddtoprofileconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_linkedinaddtoprofileconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `company_identifier` longtext NOT NULL, + `dashboard_tracking_code` longtext NOT NULL, + `trk_partner_name` varchar(10) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user` (`changed_by_id`), + CONSTRAINT `student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_linkedinaddtoprofileconfiguration` +-- + +LOCK TABLES `student_linkedinaddtoprofileconfiguration` WRITE; +/*!40000 ALTER TABLE `student_linkedinaddtoprofileconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_linkedinaddtoprofileconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_loginfailures` +-- + +DROP TABLE IF EXISTS `student_loginfailures`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_loginfailures` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `failure_count` int(11) NOT NULL, + `lockout_until` datetime(6) DEFAULT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `student_loginfailures_user_id_50d85202_fk_auth_user_id` (`user_id`), + CONSTRAINT `student_loginfailures_user_id_50d85202_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_loginfailures` +-- + +LOCK TABLES `student_loginfailures` WRITE; +/*!40000 ALTER TABLE `student_loginfailures` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_loginfailures` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_manualenrollmentaudit` +-- + +DROP TABLE IF EXISTS `student_manualenrollmentaudit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_manualenrollmentaudit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `enrolled_email` varchar(255) NOT NULL, + `time_stamp` datetime(6) DEFAULT NULL, + `state_transition` varchar(255) NOT NULL, + `reason` longtext, + `enrolled_by_id` int(11) DEFAULT NULL, + `enrollment_id` int(11) DEFAULT NULL, + `role` varchar(64) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user` (`enrolled_by_id`), + KEY `student_manualenroll_enrollment_id_decc94fe_fk_student_c` (`enrollment_id`), + KEY `student_manualenrollmentaudit_enrolled_email_47ce6524` (`enrolled_email`), + CONSTRAINT `student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user` FOREIGN KEY (`enrolled_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `student_manualenroll_enrollment_id_decc94fe_fk_student_c` FOREIGN KEY (`enrollment_id`) REFERENCES `student_courseenrollment` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_manualenrollmentaudit` +-- + +LOCK TABLES `student_manualenrollmentaudit` WRITE; +/*!40000 ALTER TABLE `student_manualenrollmentaudit` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_manualenrollmentaudit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_pendingemailchange` +-- + +DROP TABLE IF EXISTS `student_pendingemailchange`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_pendingemailchange` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `new_email` varchar(255) NOT NULL, + `activation_key` varchar(32) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `activation_key` (`activation_key`), + UNIQUE KEY `user_id` (`user_id`), + KEY `student_pendingemailchange_new_email_6887bdea` (`new_email`), + CONSTRAINT `student_pendingemailchange_user_id_8f2778c5_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_pendingemailchange` +-- + +LOCK TABLES `student_pendingemailchange` WRITE; +/*!40000 ALTER TABLE `student_pendingemailchange` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_pendingemailchange` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_pendingnamechange` +-- + +DROP TABLE IF EXISTS `student_pendingnamechange`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_pendingnamechange` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `new_name` varchar(255) NOT NULL, + `rationale` varchar(1024) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + CONSTRAINT `student_pendingnamechange_user_id_e2cd8b70_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_pendingnamechange` +-- + +LOCK TABLES `student_pendingnamechange` WRITE; +/*!40000 ALTER TABLE `student_pendingnamechange` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_pendingnamechange` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_pendingsecondaryemailchange` +-- + +DROP TABLE IF EXISTS `student_pendingsecondaryemailchange`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_pendingsecondaryemailchange` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `new_secondary_email` varchar(255) NOT NULL, + `activation_key` varchar(32) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `activation_key` (`activation_key`), + UNIQUE KEY `user_id` (`user_id`), + KEY `student_pendingsecondaryemailchange_new_secondary_email_5e79db59` (`new_secondary_email`), + CONSTRAINT `student_pendingsecon_user_id_deacc54f_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_pendingsecondaryemailchange` +-- + +LOCK TABLES `student_pendingsecondaryemailchange` WRITE; +/*!40000 ALTER TABLE `student_pendingsecondaryemailchange` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_pendingsecondaryemailchange` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_registrationcookieconfiguration` +-- + +DROP TABLE IF EXISTS `student_registrationcookieconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_registrationcookieconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `utm_cookie_name` varchar(255) NOT NULL, + `affiliate_cookie_name` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `student_registration_changed_by_id_52ac88b0_fk_auth_user` (`changed_by_id`), + CONSTRAINT `student_registration_changed_by_id_52ac88b0_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_registrationcookieconfiguration` +-- + +LOCK TABLES `student_registrationcookieconfiguration` WRITE; +/*!40000 ALTER TABLE `student_registrationcookieconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_registrationcookieconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_sociallink` +-- + +DROP TABLE IF EXISTS `student_sociallink`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_sociallink` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `platform` varchar(30) NOT NULL, + `social_link` varchar(100) NOT NULL, + `user_profile_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `student_sociallink_user_profile_id_19f54475_fk_auth_user` (`user_profile_id`), + CONSTRAINT `student_sociallink_user_profile_id_19f54475_fk_auth_user` FOREIGN KEY (`user_profile_id`) REFERENCES `auth_userprofile` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_sociallink` +-- + +LOCK TABLES `student_sociallink` WRITE; +/*!40000 ALTER TABLE `student_sociallink` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_sociallink` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_userattribute` +-- + +DROP TABLE IF EXISTS `student_userattribute`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_userattribute` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `value` varchar(255) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_userattribute_user_id_name_70e18f46_uniq` (`user_id`,`name`), + KEY `student_userattribute_name_a55155e3` (`name`), + CONSTRAINT `student_userattribute_user_id_19c01f5e_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_userattribute` +-- + +LOCK TABLES `student_userattribute` WRITE; +/*!40000 ALTER TABLE `student_userattribute` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_userattribute` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_usersignupsource` +-- + +DROP TABLE IF EXISTS `student_usersignupsource`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_usersignupsource` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `site` varchar(255) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `student_usersignupsource_user_id_4979dd6e_fk_auth_user_id` (`user_id`), + KEY `student_usersignupsource_site_beb4d383` (`site`), + CONSTRAINT `student_usersignupsource_user_id_4979dd6e_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_usersignupsource` +-- + +LOCK TABLES `student_usersignupsource` WRITE; +/*!40000 ALTER TABLE `student_usersignupsource` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_usersignupsource` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_userstanding` +-- + +DROP TABLE IF EXISTS `student_userstanding`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_userstanding` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `account_status` varchar(31) NOT NULL, + `standing_last_changed_at` datetime(6) NOT NULL, + `changed_by_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + KEY `student_userstanding_changed_by_id_469252b4_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `student_userstanding_changed_by_id_469252b4_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `student_userstanding_user_id_00b147e5_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_userstanding` +-- + +LOCK TABLES `student_userstanding` WRITE; +/*!40000 ALTER TABLE `student_userstanding` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_userstanding` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_usertestgroup` +-- + +DROP TABLE IF EXISTS `student_usertestgroup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_usertestgroup` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(32) NOT NULL, + `description` longtext NOT NULL, + PRIMARY KEY (`id`), + KEY `student_usertestgroup_name_94f48ddb` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_usertestgroup` +-- + +LOCK TABLES `student_usertestgroup` WRITE; +/*!40000 ALTER TABLE `student_usertestgroup` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_usertestgroup` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `student_usertestgroup_users` +-- + +DROP TABLE IF EXISTS `student_usertestgroup_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `student_usertestgroup_users` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `usertestgroup_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_usertestgroup_us_usertestgroup_id_user_id_2bbf095a_uniq` (`usertestgroup_id`,`user_id`), + KEY `student_usertestgroup_users_user_id_81b93062_fk_auth_user_id` (`user_id`), + CONSTRAINT `student_usertestgrou_usertestgroup_id_a9097958_fk_student_u` FOREIGN KEY (`usertestgroup_id`) REFERENCES `student_usertestgroup` (`id`), + CONSTRAINT `student_usertestgroup_users_user_id_81b93062_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `student_usertestgroup_users` +-- + +LOCK TABLES `student_usertestgroup_users` WRITE; +/*!40000 ALTER TABLE `student_usertestgroup_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `student_usertestgroup_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `submissions_score` +-- + +DROP TABLE IF EXISTS `submissions_score`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `submissions_score` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `points_earned` int(10) unsigned NOT NULL, + `points_possible` int(10) unsigned NOT NULL, + `created_at` datetime(6) NOT NULL, + `reset` tinyint(1) NOT NULL, + `student_item_id` int(11) NOT NULL, + `submission_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `submissions_score_created_at_b65f0390` (`created_at`), + KEY `submissions_score_student_item_id_de4f5954_fk_submissio` (`student_item_id`), + KEY `submissions_score_submission_id_ba095829_fk_submissio` (`submission_id`), + CONSTRAINT `submissions_score_student_item_id_de4f5954_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`), + CONSTRAINT `submissions_score_submission_id_ba095829_fk_submissio` FOREIGN KEY (`submission_id`) REFERENCES `submissions_submission` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `submissions_score` +-- + +LOCK TABLES `submissions_score` WRITE; +/*!40000 ALTER TABLE `submissions_score` DISABLE KEYS */; +/*!40000 ALTER TABLE `submissions_score` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `submissions_scoreannotation` +-- + +DROP TABLE IF EXISTS `submissions_scoreannotation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `submissions_scoreannotation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `annotation_type` varchar(255) NOT NULL, + `creator` varchar(255) NOT NULL, + `reason` longtext NOT NULL, + `score_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `submissions_scoreann_score_id_2dda6e02_fk_submissio` (`score_id`), + KEY `submissions_scoreannotation_annotation_type_117a2607` (`annotation_type`), + KEY `submissions_scoreannotation_creator_5cc126cc` (`creator`), + CONSTRAINT `submissions_scoreann_score_id_2dda6e02_fk_submissio` FOREIGN KEY (`score_id`) REFERENCES `submissions_score` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `submissions_scoreannotation` +-- + +LOCK TABLES `submissions_scoreannotation` WRITE; +/*!40000 ALTER TABLE `submissions_scoreannotation` DISABLE KEYS */; +/*!40000 ALTER TABLE `submissions_scoreannotation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `submissions_scoresummary` +-- + +DROP TABLE IF EXISTS `submissions_scoresummary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `submissions_scoresummary` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `highest_id` int(11) NOT NULL, + `latest_id` int(11) NOT NULL, + `student_item_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `student_item_id` (`student_item_id`), + KEY `submissions_scoresum_highest_id_3efe897d_fk_submissio` (`highest_id`), + KEY `submissions_scoresum_latest_id_dd8a17bb_fk_submissio` (`latest_id`), + CONSTRAINT `submissions_scoresum_highest_id_3efe897d_fk_submissio` FOREIGN KEY (`highest_id`) REFERENCES `submissions_score` (`id`), + CONSTRAINT `submissions_scoresum_latest_id_dd8a17bb_fk_submissio` FOREIGN KEY (`latest_id`) REFERENCES `submissions_score` (`id`), + CONSTRAINT `submissions_scoresum_student_item_id_35f8ef06_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `submissions_scoresummary` +-- + +LOCK TABLES `submissions_scoresummary` WRITE; +/*!40000 ALTER TABLE `submissions_scoresummary` DISABLE KEYS */; +/*!40000 ALTER TABLE `submissions_scoresummary` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `submissions_studentitem` +-- + +DROP TABLE IF EXISTS `submissions_studentitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `submissions_studentitem` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `student_id` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `item_id` varchar(255) NOT NULL, + `item_type` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq` (`course_id`,`student_id`,`item_id`), + KEY `submissions_studentitem_student_id_8e72bcd9` (`student_id`), + KEY `submissions_studentitem_course_id_05ee1efe` (`course_id`), + KEY `submissions_studentitem_item_id_6c409784` (`item_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `submissions_studentitem` +-- + +LOCK TABLES `submissions_studentitem` WRITE; +/*!40000 ALTER TABLE `submissions_studentitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `submissions_studentitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `submissions_submission` +-- + +DROP TABLE IF EXISTS `submissions_submission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `submissions_submission` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uuid` char(32) NOT NULL, + `attempt_number` int(10) unsigned NOT NULL, + `submitted_at` datetime(6) NOT NULL, + `created_at` datetime(6) NOT NULL, + `raw_answer` longtext NOT NULL, + `student_item_id` int(11) NOT NULL, + `status` varchar(1) NOT NULL, + `team_submission_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `submissions_submissi_student_item_id_9d087470_fk_submissio` (`student_item_id`), + KEY `submissions_submission_uuid_210428ab` (`uuid`), + KEY `submissions_submission_submitted_at_9653124d` (`submitted_at`), + KEY `submissions_submission_created_at_01c4bf22` (`created_at`), + KEY `submissions_submissi_team_submission_id_40e6bc97_fk_submissio` (`team_submission_id`), + CONSTRAINT `submissions_submissi_student_item_id_9d087470_fk_submissio` FOREIGN KEY (`student_item_id`) REFERENCES `submissions_studentitem` (`id`), + CONSTRAINT `submissions_submissi_team_submission_id_40e6bc97_fk_submissio` FOREIGN KEY (`team_submission_id`) REFERENCES `submissions_teamsubmission` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `submissions_submission` +-- + +LOCK TABLES `submissions_submission` WRITE; +/*!40000 ALTER TABLE `submissions_submission` DISABLE KEYS */; +/*!40000 ALTER TABLE `submissions_submission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `submissions_teamsubmission` +-- + +DROP TABLE IF EXISTS `submissions_teamsubmission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `submissions_teamsubmission` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `attempt_number` int(10) unsigned NOT NULL, + `submitted_at` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `item_id` varchar(255) NOT NULL, + `team_id` varchar(255) NOT NULL, + `status` varchar(1) NOT NULL, + `submitted_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `submissions_teamsubm_submitted_by_id_5a27162a_fk_auth_user` (`submitted_by_id`), + KEY `submissions_teamsubmission_uuid_4d1aef87` (`uuid`), + KEY `submissions_teamsubmission_submitted_at_74e28ed6` (`submitted_at`), + KEY `submissions_teamsubmission_course_id_68c6908d` (`course_id`), + KEY `submissions_teamsubmission_item_id_2bdcb26c` (`item_id`), + KEY `submissions_teamsubmission_team_id_5fda0e54` (`team_id`), + CONSTRAINT `submissions_teamsubm_submitted_by_id_5a27162a_fk_auth_user` FOREIGN KEY (`submitted_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `submissions_teamsubmission` +-- + +LOCK TABLES `submissions_teamsubmission` WRITE; +/*!40000 ALTER TABLE `submissions_teamsubmission` DISABLE KEYS */; +/*!40000 ALTER TABLE `submissions_teamsubmission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `super_csv_csvoperation` +-- + +DROP TABLE IF EXISTS `super_csv_csvoperation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `super_csv_csvoperation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `class_name` varchar(255) NOT NULL, + `unique_id` varchar(255) NOT NULL, + `operation` varchar(255) NOT NULL, + `data` varchar(255) NOT NULL, + `user_id` int(11) DEFAULT NULL, + `original_filename` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + KEY `super_csv_csvoperation_class_name_c8b5b4e2` (`class_name`), + KEY `super_csv_csvoperation_unique_id_08aa974e` (`unique_id`), + KEY `super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id` (`user_id`), + CONSTRAINT `super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `super_csv_csvoperation` +-- + +LOCK TABLES `super_csv_csvoperation` WRITE; +/*!40000 ALTER TABLE `super_csv_csvoperation` DISABLE KEYS */; +/*!40000 ALTER TABLE `super_csv_csvoperation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `survey_surveyanswer` +-- + +DROP TABLE IF EXISTS `survey_surveyanswer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `survey_surveyanswer` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `field_name` varchar(255) NOT NULL, + `field_value` varchar(1024) NOT NULL, + `course_key` varchar(255) DEFAULT NULL, + `form_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `survey_surveyanswer_field_name_7123dc3d` (`field_name`), + KEY `survey_surveyanswer_course_key_497ade68` (`course_key`), + KEY `survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id` (`form_id`), + KEY `survey_surveyanswer_user_id_4c028d25_fk_auth_user_id` (`user_id`), + CONSTRAINT `survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id` FOREIGN KEY (`form_id`) REFERENCES `survey_surveyform` (`id`), + CONSTRAINT `survey_surveyanswer_user_id_4c028d25_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `survey_surveyanswer` +-- + +LOCK TABLES `survey_surveyanswer` WRITE; +/*!40000 ALTER TABLE `survey_surveyanswer` DISABLE KEYS */; +/*!40000 ALTER TABLE `survey_surveyanswer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `survey_surveyform` +-- + +DROP TABLE IF EXISTS `survey_surveyform`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `survey_surveyform` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `form` longtext NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `survey_surveyform` +-- + +LOCK TABLES `survey_surveyform` WRITE; +/*!40000 ALTER TABLE `survey_surveyform` DISABLE KEYS */; +/*!40000 ALTER TABLE `survey_surveyform` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_wide_roles_systemwiderole` +-- + +DROP TABLE IF EXISTS `system_wide_roles_systemwiderole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `system_wide_roles_systemwiderole` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `description` longtext, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_wide_roles_systemwiderole` +-- + +LOCK TABLES `system_wide_roles_systemwiderole` WRITE; +/*!40000 ALTER TABLE `system_wide_roles_systemwiderole` DISABLE KEYS */; +INSERT INTO `system_wide_roles_systemwiderole` VALUES (1,'2020-04-06 20:36:45.115041','2020-04-06 20:36:45.115041','student_support_admin',NULL); +/*!40000 ALTER TABLE `system_wide_roles_systemwiderole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_wide_roles_systemwideroleassignment` +-- + +DROP TABLE IF EXISTS `system_wide_roles_systemwideroleassignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `system_wide_roles_systemwideroleassignment` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `role_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `system_wide_roles_sy_role_id_b553068b_fk_system_wi` (`role_id`), + KEY `system_wide_roles_sy_user_id_8ec7ad0d_fk_auth_user` (`user_id`), + CONSTRAINT `system_wide_roles_sy_role_id_b553068b_fk_system_wi` FOREIGN KEY (`role_id`) REFERENCES `system_wide_roles_systemwiderole` (`id`), + CONSTRAINT `system_wide_roles_sy_user_id_8ec7ad0d_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_wide_roles_systemwideroleassignment` +-- + +LOCK TABLES `system_wide_roles_systemwideroleassignment` WRITE; +/*!40000 ALTER TABLE `system_wide_roles_systemwideroleassignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `system_wide_roles_systemwideroleassignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tagging_tagavailablevalues` +-- + +DROP TABLE IF EXISTS `tagging_tagavailablevalues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tagging_tagavailablevalues` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `value` varchar(255) NOT NULL, + `category_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `tagging_tagavailable_category_id_9cc60a44_fk_tagging_t` (`category_id`), + CONSTRAINT `tagging_tagavailable_category_id_9cc60a44_fk_tagging_t` FOREIGN KEY (`category_id`) REFERENCES `tagging_tagcategories` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tagging_tagavailablevalues` +-- + +LOCK TABLES `tagging_tagavailablevalues` WRITE; +/*!40000 ALTER TABLE `tagging_tagavailablevalues` DISABLE KEYS */; +/*!40000 ALTER TABLE `tagging_tagavailablevalues` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tagging_tagcategories` +-- + +DROP TABLE IF EXISTS `tagging_tagcategories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tagging_tagcategories` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `title` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tagging_tagcategories` +-- + +LOCK TABLES `tagging_tagcategories` WRITE; +/*!40000 ALTER TABLE `tagging_tagcategories` DISABLE KEYS */; +/*!40000 ALTER TABLE `tagging_tagcategories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `teams_courseteam` +-- + +DROP TABLE IF EXISTS `teams_courseteam`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `teams_courseteam` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `team_id` varchar(255) NOT NULL, + `discussion_topic_id` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `topic_id` varchar(255) NOT NULL, + `date_created` datetime(6) NOT NULL, + `description` varchar(300) NOT NULL, + `country` varchar(2) NOT NULL, + `language` varchar(16) NOT NULL, + `last_activity_at` datetime(6) NOT NULL, + `team_size` int(11) NOT NULL, + `organization_protected` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `team_id` (`team_id`), + UNIQUE KEY `discussion_topic_id` (`discussion_topic_id`), + KEY `teams_courseteam_name_3bef5f8c` (`name`), + KEY `teams_courseteam_course_id_1e7dbede` (`course_id`), + KEY `teams_courseteam_topic_id_4d4f5d0d` (`topic_id`), + KEY `teams_courseteam_last_activity_at_376db5d3` (`last_activity_at`), + KEY `teams_courseteam_team_size_d264574e` (`team_size`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `teams_courseteam` +-- + +LOCK TABLES `teams_courseteam` WRITE; +/*!40000 ALTER TABLE `teams_courseteam` DISABLE KEYS */; +/*!40000 ALTER TABLE `teams_courseteam` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `teams_courseteammembership` +-- + +DROP TABLE IF EXISTS `teams_courseteammembership`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `teams_courseteammembership` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `date_joined` datetime(6) NOT NULL, + `last_activity_at` datetime(6) NOT NULL, + `team_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `teams_courseteammembership_user_id_team_id_aa45a20c_uniq` (`user_id`,`team_id`), + KEY `teams_courseteammemb_team_id_b021eccd_fk_teams_cou` (`team_id`), + CONSTRAINT `teams_courseteammemb_team_id_b021eccd_fk_teams_cou` FOREIGN KEY (`team_id`) REFERENCES `teams_courseteam` (`id`), + CONSTRAINT `teams_courseteammembership_user_id_18f9ff5d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `teams_courseteammembership` +-- + +LOCK TABLES `teams_courseteammembership` WRITE; +/*!40000 ALTER TABLE `teams_courseteammembership` DISABLE KEYS */; +/*!40000 ALTER TABLE `teams_courseteammembership` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `theming_sitetheme` +-- + +DROP TABLE IF EXISTS `theming_sitetheme`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `theming_sitetheme` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `theme_dir_name` varchar(255) NOT NULL, + `site_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `theming_sitetheme_site_id_fe93d039_fk_django_site_id` (`site_id`), + CONSTRAINT `theming_sitetheme_site_id_fe93d039_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `theming_sitetheme` +-- + +LOCK TABLES `theming_sitetheme` WRITE; +/*!40000 ALTER TABLE `theming_sitetheme` DISABLE KEYS */; +/*!40000 ALTER TABLE `theming_sitetheme` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `third_party_auth_ltiproviderconfig` +-- + +DROP TABLE IF EXISTS `third_party_auth_ltiproviderconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `third_party_auth_ltiproviderconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `name` varchar(50) NOT NULL, + `skip_registration_form` tinyint(1) NOT NULL, + `skip_email_verification` tinyint(1) NOT NULL, + `lti_consumer_key` varchar(255) NOT NULL, + `lti_hostname` varchar(255) NOT NULL, + `lti_consumer_secret` varchar(255) NOT NULL, + `lti_max_timestamp_age` int(11) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `visible` tinyint(1) NOT NULL, + `site_id` int(11) NOT NULL, + `max_session_length` int(10) unsigned DEFAULT NULL, + `skip_hinted_login_dialog` tinyint(1) NOT NULL, + `send_to_registration_first` tinyint(1) NOT NULL, + `sync_learner_profile_data` tinyint(1) NOT NULL, + `send_welcome_email` tinyint(1) NOT NULL, + `slug` varchar(30) NOT NULL, + `enable_sso_id_verification` tinyint(1) NOT NULL, + `organization_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user` (`changed_by_id`), + KEY `third_party_auth_ltiproviderconfig_lti_hostname_540ce676` (`lti_hostname`), + KEY `third_party_auth_lti_site_id_c8442a80_fk_django_si` (`site_id`), + KEY `third_party_auth_ltiproviderconfig_slug_9cd23a79` (`slug`), + KEY `third_party_auth_ltiproviderconfig_organization_id_7494c417` (`organization_id`), + CONSTRAINT `third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `third_party_auth_lti_organization_id_7494c417_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`), + CONSTRAINT `third_party_auth_lti_site_id_c8442a80_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `third_party_auth_ltiproviderconfig` +-- + +LOCK TABLES `third_party_auth_ltiproviderconfig` WRITE; +/*!40000 ALTER TABLE `third_party_auth_ltiproviderconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `third_party_auth_ltiproviderconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `third_party_auth_oauth2providerconfig` +-- + +DROP TABLE IF EXISTS `third_party_auth_oauth2providerconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `third_party_auth_oauth2providerconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `icon_class` varchar(50) NOT NULL, + `name` varchar(50) NOT NULL, + `secondary` tinyint(1) NOT NULL, + `skip_registration_form` tinyint(1) NOT NULL, + `skip_email_verification` tinyint(1) NOT NULL, + `backend_name` varchar(50) NOT NULL, + `key` longtext NOT NULL, + `secret` longtext NOT NULL, + `other_settings` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `icon_image` varchar(100) NOT NULL, + `visible` tinyint(1) NOT NULL, + `site_id` int(11) NOT NULL, + `max_session_length` int(10) unsigned DEFAULT NULL, + `skip_hinted_login_dialog` tinyint(1) NOT NULL, + `send_to_registration_first` tinyint(1) NOT NULL, + `sync_learner_profile_data` tinyint(1) NOT NULL, + `send_welcome_email` tinyint(1) NOT NULL, + `slug` varchar(30) NOT NULL, + `enable_sso_id_verification` tinyint(1) NOT NULL, + `organization_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `third_party_auth_oau_changed_by_id_55219296_fk_auth_user` (`changed_by_id`), + KEY `third_party_auth_oauth2providerconfig_backend_name_0c14d294` (`backend_name`), + KEY `third_party_auth_oau_site_id_a4ae3e66_fk_django_si` (`site_id`), + KEY `third_party_auth_oauth2providerconfig_slug_226038d8` (`slug`), + KEY `third_party_auth_oauth2providerconfig_organization_id_cc8874ba` (`organization_id`), + CONSTRAINT `third_party_auth_oau_changed_by_id_55219296_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `third_party_auth_oau_organization_id_cc8874ba_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`), + CONSTRAINT `third_party_auth_oau_site_id_a4ae3e66_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `third_party_auth_oauth2providerconfig` +-- + +LOCK TABLES `third_party_auth_oauth2providerconfig` WRITE; +/*!40000 ALTER TABLE `third_party_auth_oauth2providerconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `third_party_auth_oauth2providerconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `third_party_auth_samlconfiguration` +-- + +DROP TABLE IF EXISTS `third_party_auth_samlconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `third_party_auth_samlconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `private_key` longtext NOT NULL, + `public_key` longtext NOT NULL, + `entity_id` varchar(255) NOT NULL, + `org_info_str` longtext NOT NULL, + `other_config_str` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `site_id` int(11) NOT NULL, + `slug` varchar(30) NOT NULL, + PRIMARY KEY (`id`), + KEY `third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user` (`changed_by_id`), + KEY `third_party_auth_sam_site_id_8fab01ee_fk_django_si` (`site_id`), + KEY `third_party_auth_samlconfiguration_slug_f9008e26` (`slug`), + CONSTRAINT `third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `third_party_auth_sam_site_id_8fab01ee_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `third_party_auth_samlconfiguration` +-- + +LOCK TABLES `third_party_auth_samlconfiguration` WRITE; +/*!40000 ALTER TABLE `third_party_auth_samlconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `third_party_auth_samlconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `third_party_auth_samlproviderconfig` +-- + +DROP TABLE IF EXISTS `third_party_auth_samlproviderconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `third_party_auth_samlproviderconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `icon_class` varchar(50) NOT NULL, + `name` varchar(50) NOT NULL, + `secondary` tinyint(1) NOT NULL, + `skip_registration_form` tinyint(1) NOT NULL, + `skip_email_verification` tinyint(1) NOT NULL, + `backend_name` varchar(50) NOT NULL, + `entity_id` varchar(255) NOT NULL, + `metadata_source` varchar(255) NOT NULL, + `attr_user_permanent_id` varchar(128) NOT NULL, + `attr_full_name` varchar(128) NOT NULL, + `attr_first_name` varchar(128) NOT NULL, + `attr_last_name` varchar(128) NOT NULL, + `attr_username` varchar(128) NOT NULL, + `attr_email` varchar(128) NOT NULL, + `other_settings` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `icon_image` varchar(100) NOT NULL, + `debug_mode` tinyint(1) NOT NULL, + `visible` tinyint(1) NOT NULL, + `site_id` int(11) NOT NULL, + `automatic_refresh_enabled` tinyint(1) NOT NULL, + `identity_provider_type` varchar(128) NOT NULL, + `max_session_length` int(10) unsigned DEFAULT NULL, + `skip_hinted_login_dialog` tinyint(1) NOT NULL, + `send_to_registration_first` tinyint(1) NOT NULL, + `sync_learner_profile_data` tinyint(1) NOT NULL, + `archived` tinyint(1) NOT NULL, + `saml_configuration_id` int(11) DEFAULT NULL, + `send_welcome_email` tinyint(1) NOT NULL, + `slug` varchar(30) NOT NULL, + `enable_sso_id_verification` tinyint(1) NOT NULL, + `default_email` varchar(255) NOT NULL, + `default_first_name` varchar(255) NOT NULL, + `default_full_name` varchar(255) NOT NULL, + `default_last_name` varchar(255) NOT NULL, + `default_username` varchar(255) NOT NULL, + `organization_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user` (`changed_by_id`), + KEY `third_party_auth_sam_site_id_b7e2af73_fk_django_si` (`site_id`), + KEY `third_party_auth_samlproviderconfig_slug_95883dea` (`slug`), + KEY `third_party_auth_samlproviderconfig_organization_id_8a7f5596` (`organization_id`), + KEY `third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par` (`saml_configuration_id`), + CONSTRAINT `third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `third_party_auth_sam_organization_id_8a7f5596_fk_organizat` FOREIGN KEY (`organization_id`) REFERENCES `organizations_organization` (`id`), + CONSTRAINT `third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par` FOREIGN KEY (`saml_configuration_id`) REFERENCES `third_party_auth_samlconfiguration` (`id`), + CONSTRAINT `third_party_auth_sam_site_id_b7e2af73_fk_django_si` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `third_party_auth_samlproviderconfig` +-- + +LOCK TABLES `third_party_auth_samlproviderconfig` WRITE; +/*!40000 ALTER TABLE `third_party_auth_samlproviderconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `third_party_auth_samlproviderconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `third_party_auth_samlproviderdata` +-- + +DROP TABLE IF EXISTS `third_party_auth_samlproviderdata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `third_party_auth_samlproviderdata` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `fetched_at` datetime(6) NOT NULL, + `expires_at` datetime(6) DEFAULT NULL, + `entity_id` varchar(255) NOT NULL, + `sso_url` varchar(200) NOT NULL, + `public_key` longtext NOT NULL, + PRIMARY KEY (`id`), + KEY `third_party_auth_samlproviderdata_fetched_at_2286ac32` (`fetched_at`), + KEY `third_party_auth_samlproviderdata_expires_at_eaf594c7` (`expires_at`), + KEY `third_party_auth_samlproviderdata_entity_id_b163c6fc` (`entity_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `third_party_auth_samlproviderdata` +-- + +LOCK TABLES `third_party_auth_samlproviderdata` WRITE; +/*!40000 ALTER TABLE `third_party_auth_samlproviderdata` DISABLE KEYS */; +/*!40000 ALTER TABLE `third_party_auth_samlproviderdata` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `thumbnail_kvstore` +-- + +DROP TABLE IF EXISTS `thumbnail_kvstore`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `thumbnail_kvstore` ( + `key` varchar(200) NOT NULL, + `value` longtext NOT NULL, + PRIMARY KEY (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `thumbnail_kvstore` +-- + +LOCK TABLES `thumbnail_kvstore` WRITE; +/*!40000 ALTER TABLE `thumbnail_kvstore` DISABLE KEYS */; +/*!40000 ALTER TABLE `thumbnail_kvstore` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_retirementstate` +-- + +DROP TABLE IF EXISTS `user_api_retirementstate`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_retirementstate` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `state_name` varchar(30) NOT NULL, + `state_execution_order` smallint(6) NOT NULL, + `is_dead_end_state` tinyint(1) NOT NULL, + `required` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `state_name` (`state_name`), + UNIQUE KEY `state_execution_order` (`state_execution_order`), + KEY `user_api_retirementstate_is_dead_end_state_62eaf9b7` (`is_dead_end_state`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_retirementstate` +-- + +LOCK TABLES `user_api_retirementstate` WRITE; +/*!40000 ALTER TABLE `user_api_retirementstate` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_retirementstate` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_usercoursetag` +-- + +DROP TABLE IF EXISTS `user_api_usercoursetag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_usercoursetag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `key` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `value` longtext NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq` (`user_id`,`course_id`,`key`), + KEY `user_api_usercoursetag_key_d6420575` (`key`), + KEY `user_api_usercoursetag_course_id_a336d583` (`course_id`), + CONSTRAINT `user_api_usercoursetag_user_id_106a4cbc_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_usercoursetag` +-- + +LOCK TABLES `user_api_usercoursetag` WRITE; +/*!40000 ALTER TABLE `user_api_usercoursetag` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_usercoursetag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_userorgtag` +-- + +DROP TABLE IF EXISTS `user_api_userorgtag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_userorgtag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `key` varchar(255) NOT NULL, + `org` varchar(255) NOT NULL, + `value` longtext NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_api_userorgtag_user_id_org_key_d4df9ac1_uniq` (`user_id`,`org`,`key`), + KEY `user_api_userorgtag_key_b1f2bafe` (`key`), + KEY `user_api_userorgtag_org_41caa15c` (`org`), + CONSTRAINT `user_api_userorgtag_user_id_cc0d415d_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_userorgtag` +-- + +LOCK TABLES `user_api_userorgtag` WRITE; +/*!40000 ALTER TABLE `user_api_userorgtag` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_userorgtag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_userpreference` +-- + +DROP TABLE IF EXISTS `user_api_userpreference`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_userpreference` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `key` varchar(255) NOT NULL, + `value` longtext NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_api_userpreference_user_id_key_17924c0d_uniq` (`user_id`,`key`), + KEY `user_api_userpreference_key_9c8a8f6b` (`key`), + CONSTRAINT `user_api_userpreference_user_id_68f8a34b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_userpreference` +-- + +LOCK TABLES `user_api_userpreference` WRITE; +/*!40000 ALTER TABLE `user_api_userpreference` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_userpreference` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_userretirementpartnerreportingstatus` +-- + +DROP TABLE IF EXISTS `user_api_userretirementpartnerreportingstatus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_userretirementpartnerreportingstatus` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `original_username` varchar(150) NOT NULL, + `original_email` varchar(254) NOT NULL, + `original_name` varchar(255) NOT NULL, + `is_being_processed` tinyint(1) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + KEY `user_api_userretirementpart_original_username_6bf5d3d1` (`original_username`), + KEY `user_api_userretirementpart_original_email_aaab0bc9` (`original_email`), + KEY `user_api_userretirementpart_original_name_9aedd7f0` (`original_name`), + CONSTRAINT `user_api_userretirem_user_id_272c8f78_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_userretirementpartnerreportingstatus` +-- + +LOCK TABLES `user_api_userretirementpartnerreportingstatus` WRITE; +/*!40000 ALTER TABLE `user_api_userretirementpartnerreportingstatus` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_userretirementpartnerreportingstatus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_userretirementrequest` +-- + +DROP TABLE IF EXISTS `user_api_userretirementrequest`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_userretirementrequest` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + CONSTRAINT `user_api_userretirementrequest_user_id_7f7ca22f_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_userretirementrequest` +-- + +LOCK TABLES `user_api_userretirementrequest` WRITE; +/*!40000 ALTER TABLE `user_api_userretirementrequest` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_userretirementrequest` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_api_userretirementstatus` +-- + +DROP TABLE IF EXISTS `user_api_userretirementstatus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_api_userretirementstatus` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `original_username` varchar(150) NOT NULL, + `original_email` varchar(254) NOT NULL, + `original_name` varchar(255) NOT NULL, + `retired_username` varchar(150) NOT NULL, + `retired_email` varchar(254) NOT NULL, + `responses` longtext NOT NULL, + `current_state_id` int(11) NOT NULL, + `last_state_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `user_id` (`user_id`), + KEY `user_api_userretirem_current_state_id_e37bb094_fk_user_api_` (`current_state_id`), + KEY `user_api_userretirem_last_state_id_359e74cd_fk_user_api_` (`last_state_id`), + KEY `user_api_userretirementstatus_original_username_fa5d4a21` (`original_username`), + KEY `user_api_userretirementstatus_original_email_a7203bff` (`original_email`), + KEY `user_api_userretirementstatus_original_name_17c2846b` (`original_name`), + KEY `user_api_userretirementstatus_retired_username_52067a53` (`retired_username`), + KEY `user_api_userretirementstatus_retired_email_ee7c1579` (`retired_email`), + CONSTRAINT `user_api_userretirem_current_state_id_e37bb094_fk_user_api_` FOREIGN KEY (`current_state_id`) REFERENCES `user_api_retirementstate` (`id`), + CONSTRAINT `user_api_userretirem_last_state_id_359e74cd_fk_user_api_` FOREIGN KEY (`last_state_id`) REFERENCES `user_api_retirementstate` (`id`), + CONSTRAINT `user_api_userretirementstatus_user_id_aca4dc7b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_api_userretirementstatus` +-- + +LOCK TABLES `user_api_userretirementstatus` WRITE; +/*!40000 ALTER TABLE `user_api_userretirementstatus` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_api_userretirementstatus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_tasks_usertaskartifact` +-- + +DROP TABLE IF EXISTS `user_tasks_usertaskartifact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_tasks_usertaskartifact` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `name` varchar(255) NOT NULL, + `file` varchar(100) DEFAULT NULL, + `url` longtext NOT NULL, + `text` longtext NOT NULL, + `status_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uuid` (`uuid`), + KEY `user_tasks_usertaska_status_id_641f31be_fk_user_task` (`status_id`), + CONSTRAINT `user_tasks_usertaska_status_id_641f31be_fk_user_task` FOREIGN KEY (`status_id`) REFERENCES `user_tasks_usertaskstatus` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_tasks_usertaskartifact` +-- + +LOCK TABLES `user_tasks_usertaskartifact` WRITE; +/*!40000 ALTER TABLE `user_tasks_usertaskartifact` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_tasks_usertaskartifact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_tasks_usertaskstatus` +-- + +DROP TABLE IF EXISTS `user_tasks_usertaskstatus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_tasks_usertaskstatus` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `uuid` char(32) NOT NULL, + `task_id` varchar(128) NOT NULL, + `is_container` tinyint(1) NOT NULL, + `task_class` varchar(128) NOT NULL, + `name` varchar(255) NOT NULL, + `state` varchar(128) NOT NULL, + `completed_steps` smallint(5) unsigned NOT NULL, + `total_steps` smallint(5) unsigned NOT NULL, + `attempts` smallint(5) unsigned NOT NULL, + `parent_id` int(11) DEFAULT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `uuid` (`uuid`), + UNIQUE KEY `task_id` (`task_id`), + KEY `user_tasks_usertasks_parent_id_5009f727_fk_user_task` (`parent_id`), + KEY `user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id` (`user_id`), + CONSTRAINT `user_tasks_usertasks_parent_id_5009f727_fk_user_task` FOREIGN KEY (`parent_id`) REFERENCES `user_tasks_usertaskstatus` (`id`), + CONSTRAINT `user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_tasks_usertaskstatus` +-- + +LOCK TABLES `user_tasks_usertaskstatus` WRITE; +/*!40000 ALTER TABLE `user_tasks_usertaskstatus` DISABLE KEYS */; +/*!40000 ALTER TABLE `user_tasks_usertaskstatus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `util_ratelimitconfiguration` +-- + +DROP TABLE IF EXISTS `util_ratelimitconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `util_ratelimitconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user` (`changed_by_id`), + CONSTRAINT `util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `util_ratelimitconfiguration` +-- + +LOCK TABLES `util_ratelimitconfiguration` WRITE; +/*!40000 ALTER TABLE `util_ratelimitconfiguration` DISABLE KEYS */; +INSERT INTO `util_ratelimitconfiguration` VALUES (1,'2020-04-06 20:38:27.009443',1,NULL); +/*!40000 ALTER TABLE `util_ratelimitconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verified_track_content_migrateverifiedtrackcohortssetting` +-- + +DROP TABLE IF EXISTS `verified_track_content_migrateverifiedtrackcohortssetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verified_track_content_migrateverifiedtrackcohortssetting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `old_course_key` varchar(255) NOT NULL, + `rerun_course_key` varchar(255) NOT NULL, + `audit_cohort_names` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `verified_track_conte_changed_by_id_29944bff_fk_auth_user` (`changed_by_id`), + CONSTRAINT `verified_track_conte_changed_by_id_29944bff_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verified_track_content_migrateverifiedtrackcohortssetting` +-- + +LOCK TABLES `verified_track_content_migrateverifiedtrackcohortssetting` WRITE; +/*!40000 ALTER TABLE `verified_track_content_migrateverifiedtrackcohortssetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `verified_track_content_migrateverifiedtrackcohortssetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verified_track_content_verifiedtrackcohortedcourse` +-- + +DROP TABLE IF EXISTS `verified_track_content_verifiedtrackcohortedcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verified_track_content_verifiedtrackcohortedcourse` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_key` varchar(255) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `verified_cohort_name` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_key` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verified_track_content_verifiedtrackcohortedcourse` +-- + +LOCK TABLES `verified_track_content_verifiedtrackcohortedcourse` WRITE; +/*!40000 ALTER TABLE `verified_track_content_verifiedtrackcohortedcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `verified_track_content_verifiedtrackcohortedcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verify_student_manualverification` +-- + +DROP TABLE IF EXISTS `verify_student_manualverification`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verify_student_manualverification` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `status` varchar(100) NOT NULL, + `status_changed` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `created_at` datetime(6) NOT NULL, + `updated_at` datetime(6) NOT NULL, + `reason` varchar(255) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `verify_student_manua_user_id_f38b72b4_fk_auth_user` (`user_id`), + KEY `verify_student_manualverification_created_at_e4e3731a` (`created_at`), + KEY `verify_student_manualverification_updated_at_1a350690` (`updated_at`), + CONSTRAINT `verify_student_manua_user_id_f38b72b4_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verify_student_manualverification` +-- + +LOCK TABLES `verify_student_manualverification` WRITE; +/*!40000 ALTER TABLE `verify_student_manualverification` DISABLE KEYS */; +/*!40000 ALTER TABLE `verify_student_manualverification` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verify_student_softwaresecurephotoverification` +-- + +DROP TABLE IF EXISTS `verify_student_softwaresecurephotoverification`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verify_student_softwaresecurephotoverification` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `status` varchar(100) NOT NULL, + `status_changed` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `face_image_url` varchar(255) NOT NULL, + `photo_id_image_url` varchar(255) NOT NULL, + `receipt_id` varchar(255) NOT NULL, + `created_at` datetime(6) NOT NULL, + `updated_at` datetime(6) NOT NULL, + `display` tinyint(1) NOT NULL, + `submitted_at` datetime(6) DEFAULT NULL, + `reviewing_service` varchar(255) NOT NULL, + `error_msg` longtext NOT NULL, + `error_code` varchar(50) NOT NULL, + `photo_id_key` longtext NOT NULL, + `copy_id_photo_from_id` int(11) DEFAULT NULL, + `reviewing_user_id` int(11) DEFAULT NULL, + `user_id` int(11) NOT NULL, + `expiry_date` datetime(6) DEFAULT NULL, + `expiry_email_date` datetime(6) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st` (`copy_id_photo_from_id`), + KEY `verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user` (`reviewing_user_id`), + KEY `verify_student_softw_user_id_66ca4f6d_fk_auth_user` (`user_id`), + KEY `verify_student_softwaresecu_receipt_id_2160ce88` (`receipt_id`), + KEY `verify_student_softwaresecu_created_at_566f779f` (`created_at`), + KEY `verify_student_softwaresecu_updated_at_8f5cf2d7` (`updated_at`), + KEY `verify_student_softwaresecurephotoverification_display_287287f8` (`display`), + KEY `verify_student_softwaresecu_submitted_at_f3d5cd03` (`submitted_at`), + KEY `verify_student_softwaresecu_expiry_date_5c297927` (`expiry_date`), + KEY `verify_student_softwaresecu_expiry_email_date_6ae6d6c9` (`expiry_email_date`), + CONSTRAINT `verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st` FOREIGN KEY (`copy_id_photo_from_id`) REFERENCES `verify_student_softwaresecurephotoverification` (`id`), + CONSTRAINT `verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user` FOREIGN KEY (`reviewing_user_id`) REFERENCES `auth_user` (`id`), + CONSTRAINT `verify_student_softw_user_id_66ca4f6d_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verify_student_softwaresecurephotoverification` +-- + +LOCK TABLES `verify_student_softwaresecurephotoverification` WRITE; +/*!40000 ALTER TABLE `verify_student_softwaresecurephotoverification` DISABLE KEYS */; +/*!40000 ALTER TABLE `verify_student_softwaresecurephotoverification` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verify_student_ssoverification` +-- + +DROP TABLE IF EXISTS `verify_student_ssoverification`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verify_student_ssoverification` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `status` varchar(100) NOT NULL, + `status_changed` datetime(6) NOT NULL, + `name` varchar(255) NOT NULL, + `created_at` datetime(6) NOT NULL, + `updated_at` datetime(6) NOT NULL, + `identity_provider_type` varchar(100) NOT NULL, + `identity_provider_slug` varchar(30) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id` (`user_id`), + KEY `verify_student_ssoverification_created_at_6381e5a4` (`created_at`), + KEY `verify_student_ssoverification_updated_at_9d6cc952` (`updated_at`), + KEY `verify_student_ssoverification_identity_provider_slug_56c53eb6` (`identity_provider_slug`), + CONSTRAINT `verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verify_student_ssoverification` +-- + +LOCK TABLES `verify_student_ssoverification` WRITE; +/*!40000 ALTER TABLE `verify_student_ssoverification` DISABLE KEYS */; +/*!40000 ALTER TABLE `verify_student_ssoverification` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verify_student_sspverificationretryconfig` +-- + +DROP TABLE IF EXISTS `verify_student_sspverificationretryconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verify_student_sspverificationretryconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `arguments` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `verify_student_sspve_changed_by_id_c035fbe5_fk_auth_user` (`changed_by_id`), + CONSTRAINT `verify_student_sspve_changed_by_id_c035fbe5_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verify_student_sspverificationretryconfig` +-- + +LOCK TABLES `verify_student_sspverificationretryconfig` WRITE; +/*!40000 ALTER TABLE `verify_student_sspverificationretryconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `verify_student_sspverificationretryconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `verify_student_verificationdeadline` +-- + +DROP TABLE IF EXISTS `verify_student_verificationdeadline`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `verify_student_verificationdeadline` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_key` varchar(255) NOT NULL, + `deadline` datetime(6) NOT NULL, + `deadline_is_explicit` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `course_key` (`course_key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `verify_student_verificationdeadline` +-- + +LOCK TABLES `verify_student_verificationdeadline` WRITE; +/*!40000 ALTER TABLE `verify_student_verificationdeadline` DISABLE KEYS */; +/*!40000 ALTER TABLE `verify_student_verificationdeadline` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_coursehlsplaybackenabledflag` +-- + +DROP TABLE IF EXISTS `video_config_coursehlsplaybackenabledflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_coursehlsplaybackenabledflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_config_courseh_changed_by_id_fa268d53_fk_auth_user` (`changed_by_id`), + KEY `video_config_coursehlsplaybackenabledflag_course_id_c0fcaead` (`course_id`), + CONSTRAINT `video_config_courseh_changed_by_id_fa268d53_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_coursehlsplaybackenabledflag` +-- + +LOCK TABLES `video_config_coursehlsplaybackenabledflag` WRITE; +/*!40000 ALTER TABLE `video_config_coursehlsplaybackenabledflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_coursehlsplaybackenabledflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_coursevideotranscriptenabledflag` +-- + +DROP TABLE IF EXISTS `video_config_coursevideotranscriptenabledflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_coursevideotranscriptenabledflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user` (`changed_by_id`), + KEY `video_config_coursevideotranscriptenabledflag_course_id_fcfacf5b` (`course_id`), + CONSTRAINT `video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_coursevideotranscriptenabledflag` +-- + +LOCK TABLES `video_config_coursevideotranscriptenabledflag` WRITE; +/*!40000 ALTER TABLE `video_config_coursevideotranscriptenabledflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_coursevideotranscriptenabledflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_courseyoutubeblockedflag` +-- + +DROP TABLE IF EXISTS `video_config_courseyoutubeblockedflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_courseyoutubeblockedflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_config_coursey_changed_by_id_3496713f_fk_auth_user` (`changed_by_id`), + KEY `video_config_courseyoutubeblockedflag_course_id_4c9395c6` (`course_id`), + CONSTRAINT `video_config_coursey_changed_by_id_3496713f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_courseyoutubeblockedflag` +-- + +LOCK TABLES `video_config_courseyoutubeblockedflag` WRITE; +/*!40000 ALTER TABLE `video_config_courseyoutubeblockedflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_courseyoutubeblockedflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_hlsplaybackenabledflag` +-- + +DROP TABLE IF EXISTS `video_config_hlsplaybackenabledflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_hlsplaybackenabledflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `enabled_for_all_courses` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_hlsplaybackenabledflag` +-- + +LOCK TABLES `video_config_hlsplaybackenabledflag` WRITE; +/*!40000 ALTER TABLE `video_config_hlsplaybackenabledflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_hlsplaybackenabledflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_migrationenqueuedcourse` +-- + +DROP TABLE IF EXISTS `video_config_migrationenqueuedcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_migrationenqueuedcourse` ( + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `command_run` int(10) unsigned NOT NULL, + PRIMARY KEY (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_migrationenqueuedcourse` +-- + +LOCK TABLES `video_config_migrationenqueuedcourse` WRITE; +/*!40000 ALTER TABLE `video_config_migrationenqueuedcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_migrationenqueuedcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_transcriptmigrationsetting` +-- + +DROP TABLE IF EXISTS `video_config_transcriptmigrationsetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_transcriptmigrationsetting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `force_update` tinyint(1) NOT NULL, + `commit` tinyint(1) NOT NULL, + `all_courses` tinyint(1) NOT NULL, + `course_ids` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `command_run` int(10) unsigned NOT NULL, + `batch_size` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `video_config_transcr_changed_by_id_4c7817bd_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_config_transcr_changed_by_id_4c7817bd_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_transcriptmigrationsetting` +-- + +LOCK TABLES `video_config_transcriptmigrationsetting` WRITE; +/*!40000 ALTER TABLE `video_config_transcriptmigrationsetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_transcriptmigrationsetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_updatedcoursevideos` +-- + +DROP TABLE IF EXISTS `video_config_updatedcoursevideos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_updatedcoursevideos` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `course_id` varchar(255) NOT NULL, + `edx_video_id` varchar(100) NOT NULL, + `command_run` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `video_config_updatedcour_course_id_edx_video_id_455a73ff_uniq` (`course_id`,`edx_video_id`), + KEY `video_config_updatedcoursevideos_course_id_e72703a3` (`course_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_updatedcoursevideos` +-- + +LOCK TABLES `video_config_updatedcoursevideos` WRITE; +/*!40000 ALTER TABLE `video_config_updatedcoursevideos` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_updatedcoursevideos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_videothumbnailsetting` +-- + +DROP TABLE IF EXISTS `video_config_videothumbnailsetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_videothumbnailsetting` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `command_run` int(10) unsigned NOT NULL, + `batch_size` int(10) unsigned NOT NULL, + `videos_per_task` int(10) unsigned NOT NULL, + `commit` tinyint(1) NOT NULL, + `all_course_videos` tinyint(1) NOT NULL, + `course_ids` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `offset` int(10) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `video_config_videoth_changed_by_id_9385a0b2_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_config_videoth_changed_by_id_9385a0b2_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_videothumbnailsetting` +-- + +LOCK TABLES `video_config_videothumbnailsetting` WRITE; +/*!40000 ALTER TABLE `video_config_videothumbnailsetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_videothumbnailsetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_config_videotranscriptenabledflag` +-- + +DROP TABLE IF EXISTS `video_config_videotranscriptenabledflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_config_videotranscriptenabledflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `enabled_for_all_courses` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_config_videotranscriptenabledflag` +-- + +LOCK TABLES `video_config_videotranscriptenabledflag` WRITE; +/*!40000 ALTER TABLE `video_config_videotranscriptenabledflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_config_videotranscriptenabledflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_pipeline_coursevideouploadsenabledbydefault` +-- + +DROP TABLE IF EXISTS `video_pipeline_coursevideouploadsenabledbydefault`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_pipeline_coursevideouploadsenabledbydefault` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user` (`changed_by_id`), + KEY `video_pipeline_coursevideou_course_id_9fd1b18b` (`course_id`), + CONSTRAINT `video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_pipeline_coursevideouploadsenabledbydefault` +-- + +LOCK TABLES `video_pipeline_coursevideouploadsenabledbydefault` WRITE; +/*!40000 ALTER TABLE `video_pipeline_coursevideouploadsenabledbydefault` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_pipeline_coursevideouploadsenabledbydefault` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_pipeline_vempipelineintegration` +-- + +DROP TABLE IF EXISTS `video_pipeline_vempipelineintegration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_pipeline_vempipelineintegration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `client_name` varchar(100) NOT NULL, + `api_url` varchar(200) NOT NULL, + `service_username` varchar(100) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `vem_enabled_courses_percentage` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `video_pipeline_vempi_changed_by_id_cadc1895_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_pipeline_vempi_changed_by_id_cadc1895_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_pipeline_vempipelineintegration` +-- + +LOCK TABLES `video_pipeline_vempipelineintegration` WRITE; +/*!40000 ALTER TABLE `video_pipeline_vempipelineintegration` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_pipeline_vempipelineintegration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_pipeline_videopipelineintegration` +-- + +DROP TABLE IF EXISTS `video_pipeline_videopipelineintegration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_pipeline_videopipelineintegration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `api_url` varchar(200) NOT NULL, + `service_username` varchar(100) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + `client_name` varchar(100) NOT NULL, + PRIMARY KEY (`id`), + KEY `video_pipeline_video_changed_by_id_b169f329_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_pipeline_video_changed_by_id_b169f329_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_pipeline_videopipelineintegration` +-- + +LOCK TABLES `video_pipeline_videopipelineintegration` WRITE; +/*!40000 ALTER TABLE `video_pipeline_videopipelineintegration` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_pipeline_videopipelineintegration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `video_pipeline_videouploadsenabledbydefault` +-- + +DROP TABLE IF EXISTS `video_pipeline_videouploadsenabledbydefault`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `video_pipeline_videouploadsenabledbydefault` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `enabled_for_all_courses` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `video_pipeline_video_changed_by_id_3d066822_fk_auth_user` (`changed_by_id`), + CONSTRAINT `video_pipeline_video_changed_by_id_3d066822_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `video_pipeline_videouploadsenabledbydefault` +-- + +LOCK TABLES `video_pipeline_videouploadsenabledbydefault` WRITE; +/*!40000 ALTER TABLE `video_pipeline_videouploadsenabledbydefault` DISABLE KEYS */; +/*!40000 ALTER TABLE `video_pipeline_videouploadsenabledbydefault` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `waffle_flag` +-- + +DROP TABLE IF EXISTS `waffle_flag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `waffle_flag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `everyone` tinyint(1) DEFAULT NULL, + `percent` decimal(3,1) DEFAULT NULL, + `testing` tinyint(1) NOT NULL, + `superusers` tinyint(1) NOT NULL, + `staff` tinyint(1) NOT NULL, + `authenticated` tinyint(1) NOT NULL, + `languages` longtext NOT NULL, + `rollout` tinyint(1) NOT NULL, + `note` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + KEY `waffle_flag_created_4a6e8cef` (`created`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `waffle_flag` +-- + +LOCK TABLES `waffle_flag` WRITE; +/*!40000 ALTER TABLE `waffle_flag` DISABLE KEYS */; +INSERT INTO `waffle_flag` VALUES (2,'grades.rejected_exam_overrides_grade',1,NULL,0,1,0,0,'',0,'','2020-07-23 17:24:39.621287','2020-07-23 17:24:39.621308'),(3,'grades.enforce_freeze_grade_after_course_end',1,NULL,0,1,0,0,'',0,'','2020-07-23 17:24:39.625494','2020-07-23 17:24:39.625518'),(4,'grades.writable_gradebook',1,NULL,0,1,0,0,'',0,'','2020-07-23 17:24:39.628285','2020-07-23 17:24:39.628302'),(5,'studio.enable_checklists_quality',1,NULL,0,1,0,0,'',0,'','2020-07-23 17:25:18.834340','2020-07-23 17:25:18.834361'); +/*!40000 ALTER TABLE `waffle_flag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `waffle_flag_groups` +-- + +DROP TABLE IF EXISTS `waffle_flag_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `waffle_flag_groups` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `flag_id` int(11) NOT NULL, + `group_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `waffle_flag_groups_flag_id_group_id_8ba0c71b_uniq` (`flag_id`,`group_id`), + KEY `waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id` (`group_id`), + CONSTRAINT `waffle_flag_groups_flag_id_c11c0c05_fk_waffle_flag_id` FOREIGN KEY (`flag_id`) REFERENCES `waffle_flag` (`id`), + CONSTRAINT `waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `waffle_flag_groups` +-- + +LOCK TABLES `waffle_flag_groups` WRITE; +/*!40000 ALTER TABLE `waffle_flag_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `waffle_flag_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `waffle_flag_users` +-- + +DROP TABLE IF EXISTS `waffle_flag_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `waffle_flag_users` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `flag_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `waffle_flag_users_flag_id_user_id_b46f76b0_uniq` (`flag_id`,`user_id`), + KEY `waffle_flag_users_user_id_8026df9b_fk_auth_user_id` (`user_id`), + CONSTRAINT `waffle_flag_users_flag_id_833c37b0_fk_waffle_flag_id` FOREIGN KEY (`flag_id`) REFERENCES `waffle_flag` (`id`), + CONSTRAINT `waffle_flag_users_user_id_8026df9b_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `waffle_flag_users` +-- + +LOCK TABLES `waffle_flag_users` WRITE; +/*!40000 ALTER TABLE `waffle_flag_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `waffle_flag_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `waffle_sample` +-- + +DROP TABLE IF EXISTS `waffle_sample`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `waffle_sample` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `percent` decimal(4,1) NOT NULL, + `note` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + KEY `waffle_sample_created_76198bd5` (`created`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `waffle_sample` +-- + +LOCK TABLES `waffle_sample` WRITE; +/*!40000 ALTER TABLE `waffle_sample` DISABLE KEYS */; +INSERT INTO `waffle_sample` VALUES (1,'use_enterprise_catalog',0.0,'','2020-07-23 17:24:34.495697','2020-07-23 17:24:34.495721'); +/*!40000 ALTER TABLE `waffle_sample` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `waffle_switch` +-- + +DROP TABLE IF EXISTS `waffle_switch`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `waffle_switch` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `active` tinyint(1) NOT NULL, + `note` longtext NOT NULL, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + KEY `waffle_switch_created_c004e77e` (`created`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `waffle_switch` +-- + +LOCK TABLES `waffle_switch` WRITE; +/*!40000 ALTER TABLE `waffle_switch` DISABLE KEYS */; +/*!40000 ALTER TABLE `waffle_switch` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `waffle_utils_waffleflagcourseoverridemodel` +-- + +DROP TABLE IF EXISTS `waffle_utils_waffleflagcourseoverridemodel`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `waffle_utils_waffleflagcourseoverridemodel` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `waffle_flag` varchar(255) NOT NULL, + `course_id` varchar(255) NOT NULL, + `override_choice` varchar(3) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user` (`changed_by_id`), + KEY `waffle_utils_waffleflagcourseoverridemodel_waffle_flag_d261aad1` (`waffle_flag`), + KEY `waffle_utils_waffleflagcourseoverridemodel_course_id_e94a9fc3` (`course_id`), + CONSTRAINT `waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `waffle_utils_waffleflagcourseoverridemodel` +-- + +LOCK TABLES `waffle_utils_waffleflagcourseoverridemodel` WRITE; +/*!40000 ALTER TABLE `waffle_utils_waffleflagcourseoverridemodel` DISABLE KEYS */; +/*!40000 ALTER TABLE `waffle_utils_waffleflagcourseoverridemodel` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_article` +-- + +DROP TABLE IF EXISTS `wiki_article`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_article` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `group_read` tinyint(1) NOT NULL, + `group_write` tinyint(1) NOT NULL, + `other_read` tinyint(1) NOT NULL, + `other_write` tinyint(1) NOT NULL, + `current_revision_id` int(11) DEFAULT NULL, + `group_id` int(11) DEFAULT NULL, + `owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `current_revision_id` (`current_revision_id`), + KEY `wiki_article_group_id_bf035c83_fk_auth_group_id` (`group_id`), + KEY `wiki_article_owner_id_956bc94a_fk_auth_user_id` (`owner_id`), + CONSTRAINT `wiki_article_current_revision_id_fc83ea0a_fk_wiki_arti` FOREIGN KEY (`current_revision_id`) REFERENCES `wiki_articlerevision` (`id`), + CONSTRAINT `wiki_article_group_id_bf035c83_fk_auth_group_id` FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`), + CONSTRAINT `wiki_article_owner_id_956bc94a_fk_auth_user_id` FOREIGN KEY (`owner_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_article` +-- + +LOCK TABLES `wiki_article` WRITE; +/*!40000 ALTER TABLE `wiki_article` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_article` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_articleforobject` +-- + +DROP TABLE IF EXISTS `wiki_articleforobject`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_articleforobject` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `object_id` int(10) unsigned NOT NULL, + `is_mptt` tinyint(1) NOT NULL, + `article_id` int(11) NOT NULL, + `content_type_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `wiki_articleforobject_content_type_id_object_id_046be756_uniq` (`content_type_id`,`object_id`), + KEY `wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id` (`article_id`), + CONSTRAINT `wiki_articleforobjec_content_type_id_ba569059_fk_django_co` FOREIGN KEY (`content_type_id`) REFERENCES `django_content_type` (`id`), + CONSTRAINT `wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_articleforobject` +-- + +LOCK TABLES `wiki_articleforobject` WRITE; +/*!40000 ALTER TABLE `wiki_articleforobject` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_articleforobject` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_articleplugin` +-- + +DROP TABLE IF EXISTS `wiki_articleplugin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_articleplugin` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `deleted` tinyint(1) NOT NULL, + `created` datetime(6) NOT NULL, + `article_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id` (`article_id`), + CONSTRAINT `wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_articleplugin` +-- + +LOCK TABLES `wiki_articleplugin` WRITE; +/*!40000 ALTER TABLE `wiki_articleplugin` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_articleplugin` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_articlerevision` +-- + +DROP TABLE IF EXISTS `wiki_articlerevision`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_articlerevision` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `revision_number` int(11) NOT NULL, + `user_message` longtext NOT NULL, + `automatic_log` longtext NOT NULL, + `ip_address` char(39) DEFAULT NULL, + `modified` datetime(6) NOT NULL, + `created` datetime(6) NOT NULL, + `deleted` tinyint(1) NOT NULL, + `locked` tinyint(1) NOT NULL, + `content` longtext NOT NULL, + `title` varchar(512) NOT NULL, + `article_id` int(11) NOT NULL, + `previous_revision_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `wiki_articlerevision_article_id_revision_number_5bcd5334_uniq` (`article_id`,`revision_number`), + KEY `wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti` (`previous_revision_id`), + KEY `wiki_articlerevision_user_id_c687e4de_fk_auth_user_id` (`user_id`), + CONSTRAINT `wiki_articlerevision_article_id_e0fb2474_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`), + CONSTRAINT `wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti` FOREIGN KEY (`previous_revision_id`) REFERENCES `wiki_articlerevision` (`id`), + CONSTRAINT `wiki_articlerevision_user_id_c687e4de_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_articlerevision` +-- + +LOCK TABLES `wiki_articlerevision` WRITE; +/*!40000 ALTER TABLE `wiki_articlerevision` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_articlerevision` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_reusableplugin` +-- + +DROP TABLE IF EXISTS `wiki_reusableplugin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_reusableplugin` ( + `articleplugin_ptr_id` int(11) NOT NULL, + PRIMARY KEY (`articleplugin_ptr_id`), + CONSTRAINT `wiki_reusableplugin_articleplugin_ptr_id_c1737239_fk_wiki_arti` FOREIGN KEY (`articleplugin_ptr_id`) REFERENCES `wiki_articleplugin` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_reusableplugin` +-- + +LOCK TABLES `wiki_reusableplugin` WRITE; +/*!40000 ALTER TABLE `wiki_reusableplugin` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_reusableplugin` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_reusableplugin_articles` +-- + +DROP TABLE IF EXISTS `wiki_reusableplugin_articles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_reusableplugin_articles` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `reusableplugin_id` int(11) NOT NULL, + `article_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `wiki_reusableplugin_arti_reusableplugin_id_articl_302a7a01_uniq` (`reusableplugin_id`,`article_id`), + KEY `wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti` (`article_id`), + CONSTRAINT `wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`), + CONSTRAINT `wiki_reusableplugin__reusableplugin_id_52618a1c_fk_wiki_reus` FOREIGN KEY (`reusableplugin_id`) REFERENCES `wiki_reusableplugin` (`articleplugin_ptr_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_reusableplugin_articles` +-- + +LOCK TABLES `wiki_reusableplugin_articles` WRITE; +/*!40000 ALTER TABLE `wiki_reusableplugin_articles` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_reusableplugin_articles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_revisionplugin` +-- + +DROP TABLE IF EXISTS `wiki_revisionplugin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_revisionplugin` ( + `articleplugin_ptr_id` int(11) NOT NULL, + `current_revision_id` int(11) DEFAULT NULL, + PRIMARY KEY (`articleplugin_ptr_id`), + UNIQUE KEY `current_revision_id` (`current_revision_id`), + CONSTRAINT `wiki_revisionplugin_articleplugin_ptr_id_95c295f2_fk_wiki_arti` FOREIGN KEY (`articleplugin_ptr_id`) REFERENCES `wiki_articleplugin` (`id`), + CONSTRAINT `wiki_revisionplugin_current_revision_id_46514536_fk_wiki_revi` FOREIGN KEY (`current_revision_id`) REFERENCES `wiki_revisionpluginrevision` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_revisionplugin` +-- + +LOCK TABLES `wiki_revisionplugin` WRITE; +/*!40000 ALTER TABLE `wiki_revisionplugin` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_revisionplugin` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_revisionpluginrevision` +-- + +DROP TABLE IF EXISTS `wiki_revisionpluginrevision`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_revisionpluginrevision` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `revision_number` int(11) NOT NULL, + `user_message` longtext NOT NULL, + `automatic_log` longtext NOT NULL, + `ip_address` char(39) DEFAULT NULL, + `modified` datetime(6) NOT NULL, + `created` datetime(6) NOT NULL, + `deleted` tinyint(1) NOT NULL, + `locked` tinyint(1) NOT NULL, + `plugin_id` int(11) NOT NULL, + `previous_revision_id` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi` (`plugin_id`), + KEY `wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi` (`previous_revision_id`), + KEY `wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id` (`user_id`), + CONSTRAINT `wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi` FOREIGN KEY (`plugin_id`) REFERENCES `wiki_revisionplugin` (`articleplugin_ptr_id`), + CONSTRAINT `wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi` FOREIGN KEY (`previous_revision_id`) REFERENCES `wiki_revisionpluginrevision` (`id`), + CONSTRAINT `wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_revisionpluginrevision` +-- + +LOCK TABLES `wiki_revisionpluginrevision` WRITE; +/*!40000 ALTER TABLE `wiki_revisionpluginrevision` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_revisionpluginrevision` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_simpleplugin` +-- + +DROP TABLE IF EXISTS `wiki_simpleplugin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_simpleplugin` ( + `articleplugin_ptr_id` int(11) NOT NULL, + `article_revision_id` int(11) NOT NULL, + PRIMARY KEY (`articleplugin_ptr_id`), + KEY `wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti` (`article_revision_id`), + CONSTRAINT `wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti` FOREIGN KEY (`article_revision_id`) REFERENCES `wiki_articlerevision` (`id`), + CONSTRAINT `wiki_simpleplugin_articleplugin_ptr_id_2b99b828_fk_wiki_arti` FOREIGN KEY (`articleplugin_ptr_id`) REFERENCES `wiki_articleplugin` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_simpleplugin` +-- + +LOCK TABLES `wiki_simpleplugin` WRITE; +/*!40000 ALTER TABLE `wiki_simpleplugin` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_simpleplugin` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wiki_urlpath` +-- + +DROP TABLE IF EXISTS `wiki_urlpath`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wiki_urlpath` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `slug` varchar(255) DEFAULT NULL, + `lft` int(10) unsigned NOT NULL, + `rght` int(10) unsigned NOT NULL, + `tree_id` int(10) unsigned NOT NULL, + `level` int(10) unsigned NOT NULL, + `article_id` int(11) NOT NULL, + `parent_id` int(11) DEFAULT NULL, + `site_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq` (`site_id`,`parent_id`,`slug`), + KEY `wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id` (`article_id`), + KEY `wiki_urlpath_slug_39d212eb` (`slug`), + KEY `wiki_urlpath_tree_id_090b475d` (`tree_id`), + KEY `wiki_urlpath_parent_id_a6e675ac` (`parent_id`), + CONSTRAINT `wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id` FOREIGN KEY (`article_id`) REFERENCES `wiki_article` (`id`), + CONSTRAINT `wiki_urlpath_parent_id_a6e675ac_fk_wiki_urlpath_id` FOREIGN KEY (`parent_id`) REFERENCES `wiki_urlpath` (`id`), + CONSTRAINT `wiki_urlpath_site_id_319be912_fk_django_site_id` FOREIGN KEY (`site_id`) REFERENCES `django_site` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wiki_urlpath` +-- + +LOCK TABLES `wiki_urlpath` WRITE; +/*!40000 ALTER TABLE `wiki_urlpath` DISABLE KEYS */; +/*!40000 ALTER TABLE `wiki_urlpath` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `workflow_assessmentworkflow` +-- + +DROP TABLE IF EXISTS `workflow_assessmentworkflow`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `workflow_assessmentworkflow` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `status` varchar(100) NOT NULL, + `status_changed` datetime(6) NOT NULL, + `submission_uuid` varchar(36) NOT NULL, + `uuid` char(32) NOT NULL, + `course_id` varchar(255) NOT NULL, + `item_id` varchar(255) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `submission_uuid` (`submission_uuid`), + UNIQUE KEY `uuid` (`uuid`), + KEY `workflow_assessmentworkflow_course_id_8c2d171b` (`course_id`), + KEY `workflow_assessmentworkflow_item_id_3ad0d291` (`item_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `workflow_assessmentworkflow` +-- + +LOCK TABLES `workflow_assessmentworkflow` WRITE; +/*!40000 ALTER TABLE `workflow_assessmentworkflow` DISABLE KEYS */; +/*!40000 ALTER TABLE `workflow_assessmentworkflow` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `workflow_assessmentworkflowcancellation` +-- + +DROP TABLE IF EXISTS `workflow_assessmentworkflowcancellation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `workflow_assessmentworkflowcancellation` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `comments` longtext NOT NULL, + `cancelled_by_id` varchar(40) NOT NULL, + `created_at` datetime(6) NOT NULL, + `workflow_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `workflow_assessmentw_workflow_id_5e534711_fk_workflow_` (`workflow_id`), + KEY `workflow_assessmentworkflowcancellation_cancelled_by_id_8467736a` (`cancelled_by_id`), + KEY `workflow_assessmentworkflowcancellation_created_at_9da54d83` (`created_at`), + CONSTRAINT `workflow_assessmentw_workflow_id_5e534711_fk_workflow_` FOREIGN KEY (`workflow_id`) REFERENCES `workflow_assessmentworkflow` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `workflow_assessmentworkflowcancellation` +-- + +LOCK TABLES `workflow_assessmentworkflowcancellation` WRITE; +/*!40000 ALTER TABLE `workflow_assessmentworkflowcancellation` DISABLE KEYS */; +/*!40000 ALTER TABLE `workflow_assessmentworkflowcancellation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `workflow_assessmentworkflowstep` +-- + +DROP TABLE IF EXISTS `workflow_assessmentworkflowstep`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `workflow_assessmentworkflowstep` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(20) NOT NULL, + `submitter_completed_at` datetime(6) DEFAULT NULL, + `assessment_completed_at` datetime(6) DEFAULT NULL, + `order_num` int(10) unsigned NOT NULL, + `workflow_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_` (`workflow_id`), + CONSTRAINT `workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_` FOREIGN KEY (`workflow_id`) REFERENCES `workflow_assessmentworkflow` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `workflow_assessmentworkflowstep` +-- + +LOCK TABLES `workflow_assessmentworkflowstep` WRITE; +/*!40000 ALTER TABLE `workflow_assessmentworkflowstep` DISABLE KEYS */; +/*!40000 ALTER TABLE `workflow_assessmentworkflowstep` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `workflow_teamassessmentworkflow` +-- + +DROP TABLE IF EXISTS `workflow_teamassessmentworkflow`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `workflow_teamassessmentworkflow` ( + `assessmentworkflow_ptr_id` int(11) NOT NULL, + `team_submission_uuid` varchar(128) NOT NULL, + PRIMARY KEY (`assessmentworkflow_ptr_id`), + UNIQUE KEY `team_submission_uuid` (`team_submission_uuid`), + CONSTRAINT `workflow_teamassessm_assessmentworkflow_p_53110fc3_fk_workflow_` FOREIGN KEY (`assessmentworkflow_ptr_id`) REFERENCES `workflow_assessmentworkflow` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `workflow_teamassessmentworkflow` +-- + +LOCK TABLES `workflow_teamassessmentworkflow` WRITE; +/*!40000 ALTER TABLE `workflow_teamassessmentworkflow` DISABLE KEYS */; +/*!40000 ALTER TABLE `workflow_teamassessmentworkflow` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xapi_xapilearnerdatatransmissionaudit` +-- + +DROP TABLE IF EXISTS `xapi_xapilearnerdatatransmissionaudit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xapi_xapilearnerdatatransmissionaudit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `enterprise_course_enrollment_id` int(10) unsigned DEFAULT NULL, + `course_id` varchar(255) NOT NULL, + `course_completed` tinyint(1) NOT NULL, + `completed_timestamp` datetime(6) DEFAULT NULL, + `grade` varchar(255) DEFAULT NULL, + `status` varchar(100) NOT NULL, + `error_message` longtext, + `user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `xapi_xapilearnerdatatran_user_id_course_id_557488b4_uniq` (`user_id`,`course_id`), + KEY `xapi_xapilearnerdatatransmi_enterprise_course_enrollmen_0a180d75` (`enterprise_course_enrollment_id`), + KEY `xapi_xapilearnerdatatransmissionaudit_course_id_c18248d2` (`course_id`), + CONSTRAINT `xapi_xapilearnerdata_user_id_6a49eb25_fk_auth_user` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xapi_xapilearnerdatatransmissionaudit` +-- + +LOCK TABLES `xapi_xapilearnerdatatransmissionaudit` WRITE; +/*!40000 ALTER TABLE `xapi_xapilearnerdatatransmissionaudit` DISABLE KEYS */; +/*!40000 ALTER TABLE `xapi_xapilearnerdatatransmissionaudit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xapi_xapilrsconfiguration` +-- + +DROP TABLE IF EXISTS `xapi_xapilrsconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xapi_xapilrsconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `created` datetime(6) NOT NULL, + `modified` datetime(6) NOT NULL, + `version` varchar(16) NOT NULL, + `endpoint` varchar(200) NOT NULL, + `key` varchar(255) NOT NULL, + `secret` varchar(255) NOT NULL, + `active` tinyint(1) NOT NULL, + `enterprise_customer_id` char(32) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `enterprise_customer_id` (`enterprise_customer_id`), + CONSTRAINT `xapi_xapilrsconfigur_enterprise_customer__90c03ad5_fk_enterpris` FOREIGN KEY (`enterprise_customer_id`) REFERENCES `enterprise_enterprisecustomer` (`uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xapi_xapilrsconfiguration` +-- + +LOCK TABLES `xapi_xapilrsconfiguration` WRITE; +/*!40000 ALTER TABLE `xapi_xapilrsconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `xapi_xapilrsconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xblock_config_courseeditltifieldsenabledflag` +-- + +DROP TABLE IF EXISTS `xblock_config_courseeditltifieldsenabledflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xblock_config_courseeditltifieldsenabledflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `course_id` varchar(255) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `xblock_config_course_changed_by_id_09761e15_fk_auth_user` (`changed_by_id`), + KEY `xblock_config_courseeditltifieldsenabledflag_course_id_4f2393b4` (`course_id`), + CONSTRAINT `xblock_config_course_changed_by_id_09761e15_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xblock_config_courseeditltifieldsenabledflag` +-- + +LOCK TABLES `xblock_config_courseeditltifieldsenabledflag` WRITE; +/*!40000 ALTER TABLE `xblock_config_courseeditltifieldsenabledflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `xblock_config_courseeditltifieldsenabledflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xblock_config_studioconfig` +-- + +DROP TABLE IF EXISTS `xblock_config_studioconfig`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xblock_config_studioconfig` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `disabled_blocks` longtext NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user` (`changed_by_id`), + CONSTRAINT `xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xblock_config_studioconfig` +-- + +LOCK TABLES `xblock_config_studioconfig` WRITE; +/*!40000 ALTER TABLE `xblock_config_studioconfig` DISABLE KEYS */; +/*!40000 ALTER TABLE `xblock_config_studioconfig` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xblock_django_xblockconfiguration` +-- + +DROP TABLE IF EXISTS `xblock_django_xblockconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xblock_django_xblockconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `name` varchar(255) NOT NULL, + `deprecated` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user` (`changed_by_id`), + KEY `xblock_django_xblockconfiguration_name_9596c362` (`name`), + CONSTRAINT `xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xblock_django_xblockconfiguration` +-- + +LOCK TABLES `xblock_django_xblockconfiguration` WRITE; +/*!40000 ALTER TABLE `xblock_django_xblockconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `xblock_django_xblockconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xblock_django_xblockstudioconfiguration` +-- + +DROP TABLE IF EXISTS `xblock_django_xblockstudioconfiguration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xblock_django_xblockstudioconfiguration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `name` varchar(255) NOT NULL, + `template` varchar(255) NOT NULL, + `support_level` varchar(2) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `xblock_django_xblock_changed_by_id_641b0905_fk_auth_user` (`changed_by_id`), + KEY `xblock_django_xblockstudioconfiguration_name_1450bfa3` (`name`), + CONSTRAINT `xblock_django_xblock_changed_by_id_641b0905_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xblock_django_xblockstudioconfiguration` +-- + +LOCK TABLES `xblock_django_xblockstudioconfiguration` WRITE; +/*!40000 ALTER TABLE `xblock_django_xblockstudioconfiguration` DISABLE KEYS */; +/*!40000 ALTER TABLE `xblock_django_xblockstudioconfiguration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `xblock_django_xblockstudioconfigurationflag` +-- + +DROP TABLE IF EXISTS `xblock_django_xblockstudioconfigurationflag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `xblock_django_xblockstudioconfigurationflag` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user` (`changed_by_id`), + CONSTRAINT `xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `xblock_django_xblockstudioconfigurationflag` +-- + +LOCK TABLES `xblock_django_xblockstudioconfigurationflag` WRITE; +/*!40000 ALTER TABLE `xblock_django_xblockstudioconfigurationflag` DISABLE KEYS */; +/*!40000 ALTER TABLE `xblock_django_xblockstudioconfigurationflag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Current Database: `edxapp_csmh` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `edxapp_csmh` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `edxapp_csmh`; + +-- +-- Table structure for table `coursewarehistoryextended_studentmodulehistoryextended` +-- + +DROP TABLE IF EXISTS `coursewarehistoryextended_studentmodulehistoryextended`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `coursewarehistoryextended_studentmodulehistoryextended` ( + `version` varchar(255) DEFAULT NULL, + `created` datetime(6) NOT NULL, + `state` longtext, + `grade` double DEFAULT NULL, + `max_grade` double DEFAULT NULL, + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `student_module_id` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `coursewarehistoryextended_s_version_d66288c3` (`version`), + KEY `coursewarehistoryextended_s_created_2cf0c3be` (`created`), + KEY `coursewarehistoryextended_s_student_module_id_48320e41` (`student_module_id`), + KEY `coursewarehistoryextended_student_module_id_48320e41_idx` (`student_module_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `coursewarehistoryextended_studentmodulehistoryextended` +-- + +LOCK TABLES `coursewarehistoryextended_studentmodulehistoryextended` WRITE; +/*!40000 ALTER TABLE `coursewarehistoryextended_studentmodulehistoryextended` DISABLE KEYS */; +/*!40000 ALTER TABLE `coursewarehistoryextended_studentmodulehistoryextended` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `django_migrations` +-- + +DROP TABLE IF EXISTS `django_migrations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `django_migrations` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `app` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `applied` datetime(6) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=719 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `django_migrations` +-- + +LOCK TABLES `django_migrations` WRITE; +/*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; +INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2020-04-06 20:41:25.737508'),(2,'auth','0001_initial','2020-04-06 20:41:25.885345'),(3,'admin','0001_initial','2020-04-06 20:41:26.017909'),(4,'admin','0002_logentry_remove_auto_add','2020-04-06 20:41:26.082125'),(5,'announcements','0001_initial','2020-04-06 20:41:26.154691'),(6,'sites','0001_initial','2020-04-06 20:41:26.217910'),(7,'contenttypes','0002_remove_content_type_name','2020-04-06 20:41:26.337745'),(8,'api_admin','0001_initial','2020-04-06 20:41:26.447741'),(9,'api_admin','0002_auto_20160325_1604','2020-04-06 20:41:26.490932'),(10,'api_admin','0003_auto_20160404_1618','2020-04-06 20:41:26.674584'),(11,'api_admin','0004_auto_20160412_1506','2020-04-06 20:41:26.828306'),(12,'api_admin','0005_auto_20160414_1232','2020-04-06 20:41:26.894681'),(13,'api_admin','0006_catalog','2020-04-06 20:41:26.946451'),(14,'api_admin','0007_delete_historical_api_records','2020-04-06 20:41:27.081453'),(15,'assessment','0001_initial','2020-04-06 20:41:27.417674'),(16,'assessment','0002_staffworkflow','2020-04-06 20:41:27.463344'),(17,'assessment','0003_expand_course_id','2020-04-06 20:41:27.556057'),(18,'assessment','0004_historicalsharedfileupload_sharedfileupload','2020-04-06 20:41:27.625115'),(19,'assessment','0005_add_filename_to_sharedupload','2020-04-06 20:41:27.695806'),(20,'assessment','0006_TeamWorkflows','2020-04-06 20:41:27.768426'),(21,'auth','0002_alter_permission_name_max_length','2020-04-06 20:41:27.843162'),(22,'auth','0003_alter_user_email_max_length','2020-04-06 20:41:27.898660'),(23,'auth','0004_alter_user_username_opts','2020-04-06 20:41:27.977101'),(24,'auth','0005_alter_user_last_login_null','2020-04-06 20:41:28.049568'),(25,'auth','0006_require_contenttypes_0002','2020-04-06 20:41:28.088401'),(26,'auth','0007_alter_validators_add_error_messages','2020-04-06 20:41:28.155246'),(27,'auth','0008_alter_user_username_max_length','2020-04-06 20:41:28.228665'),(28,'instructor_task','0001_initial','2020-04-06 20:41:28.309443'),(29,'certificates','0001_initial','2020-04-06 20:41:28.626997'),(30,'certificates','0002_data__certificatehtmlviewconfiguration_data','2020-04-06 20:41:28.678802'),(31,'certificates','0003_data__default_modes','2020-04-06 20:41:28.724224'),(32,'certificates','0004_certificategenerationhistory','2020-04-06 20:41:28.799053'),(33,'certificates','0005_auto_20151208_0801','2020-04-06 20:41:28.865252'),(34,'certificates','0006_certificatetemplateasset_asset_slug','2020-04-06 20:41:28.943732'),(35,'certificates','0007_certificateinvalidation','2020-04-06 20:41:29.051998'),(36,'badges','0001_initial','2020-04-06 20:41:29.202353'),(37,'badges','0002_data__migrate_assertions','2020-04-06 20:41:29.255335'),(38,'badges','0003_schema__add_event_configuration','2020-04-06 20:41:29.375298'),(39,'block_structure','0001_config','2020-04-06 20:41:29.473345'),(40,'block_structure','0002_blockstructuremodel','2020-04-06 20:41:29.542320'),(41,'block_structure','0003_blockstructuremodel_storage','2020-04-06 20:41:29.626963'),(42,'block_structure','0004_blockstructuremodel_usagekeywithrun','2020-04-06 20:41:29.702326'),(43,'bookmarks','0001_initial','2020-04-06 20:41:29.882961'),(44,'branding','0001_initial','2020-04-06 20:41:30.028769'),(45,'course_modes','0001_initial','2020-04-06 20:41:30.135125'),(46,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2020-04-06 20:41:30.191931'),(47,'course_modes','0003_auto_20151113_1443','2020-04-06 20:41:30.238910'),(48,'course_modes','0004_auto_20151113_1457','2020-04-06 20:41:30.349849'),(49,'course_modes','0005_auto_20151217_0958','2020-04-06 20:41:30.406815'),(50,'course_modes','0006_auto_20160208_1407','2020-04-06 20:41:30.493964'),(51,'course_modes','0007_coursemode_bulk_sku','2020-04-06 20:41:30.770059'),(52,'course_groups','0001_initial','2020-04-06 20:41:31.181168'),(53,'bulk_email','0001_initial','2020-04-06 20:41:31.397557'),(54,'bulk_email','0002_data__load_course_email_template','2020-04-06 20:41:31.458184'),(55,'bulk_email','0003_config_model_feature_flag','2020-04-06 20:41:31.575883'),(56,'bulk_email','0004_add_email_targets','2020-04-06 20:41:31.794678'),(57,'bulk_email','0005_move_target_data','2020-04-06 20:41:31.850524'),(58,'bulk_email','0006_course_mode_targets','2020-04-06 20:41:31.980052'),(59,'courseware','0001_initial','2020-04-06 20:41:32.716755'),(60,'bulk_grades','0001_initial','2020-04-06 20:41:32.825636'),(61,'bulk_grades','0002_auto_20190703_1526','2020-04-06 20:41:32.932478'),(62,'calendar_sync','0001_initial','2020-04-06 20:41:33.422251'),(63,'catalog','0001_initial','2020-04-06 20:41:33.798114'),(64,'catalog','0002_catalogintegration_username','2020-04-06 20:41:33.910209'),(65,'catalog','0003_catalogintegration_page_size','2020-04-06 20:41:34.015794'),(66,'catalog','0004_auto_20170616_0618','2020-04-06 20:41:34.114256'),(67,'catalog','0005_catalogintegration_long_term_cache_ttl','2020-04-06 20:41:34.215954'),(68,'celery_utils','0001_initial','2020-04-06 20:41:34.275600'),(69,'celery_utils','0002_chordable_django_backend','2020-04-06 20:41:34.314264'),(70,'certificates','0008_schema__remove_badges','2020-04-06 20:41:34.522887'),(71,'certificates','0009_certificategenerationcoursesetting_language_self_generation','2020-04-06 20:41:34.632104'),(72,'certificates','0010_certificatetemplate_language','2020-04-06 20:41:34.704088'),(73,'certificates','0011_certificatetemplate_alter_unique','2020-04-06 20:41:34.801284'),(74,'certificates','0012_certificategenerationcoursesetting_include_hours_of_effort','2020-04-06 20:41:34.885620'),(75,'certificates','0013_remove_certificategenerationcoursesetting_enabled','2020-04-06 20:41:34.965472'),(76,'certificates','0014_change_eligible_certs_manager','2020-04-06 20:41:35.099106'),(77,'certificates','0015_add_masters_choice','2020-04-06 20:41:35.246075'),(78,'certificates','0016_historicalgeneratedcertificate','2020-04-06 20:41:35.373768'),(79,'commerce','0001_data__add_ecommerce_service_user','2020-04-06 20:41:35.460010'),(80,'commerce','0002_commerceconfiguration','2020-04-06 20:41:35.600511'),(81,'commerce','0003_auto_20160329_0709','2020-04-06 20:41:35.741315'),(82,'commerce','0004_auto_20160531_0950','2020-04-06 20:41:35.925970'),(83,'commerce','0005_commerceconfiguration_enable_automatic_refund_approval','2020-04-06 20:41:36.036642'),(84,'commerce','0006_auto_20170424_1734','2020-04-06 20:41:36.172497'),(85,'commerce','0007_auto_20180313_0609','2020-04-06 20:41:36.360893'),(86,'commerce','0008_auto_20191024_2048','2020-04-06 20:41:36.430839'),(87,'completion','0001_initial','2020-04-06 20:41:36.699644'),(88,'completion','0002_auto_20180125_1510','2020-04-06 20:41:36.803266'),(89,'completion','0003_learning_context','2020-04-06 20:41:37.373845'),(90,'enterprise','0001_initial','2020-04-06 20:41:37.546992'),(91,'enterprise','0002_enterprisecustomerbrandingconfiguration','2020-04-06 20:41:37.608089'),(92,'enterprise','0003_auto_20161104_0937','2020-04-06 20:41:37.904114'),(93,'enterprise','0004_auto_20161114_0434','2020-04-06 20:41:38.040498'),(94,'enterprise','0005_pendingenterprisecustomeruser','2020-04-06 20:41:38.178957'),(95,'enterprise','0006_auto_20161121_0241','2020-04-06 20:41:38.257249'),(96,'enterprise','0007_auto_20161109_1511','2020-04-06 20:41:38.389118'),(97,'enterprise','0008_auto_20161124_2355','2020-04-06 20:41:38.623633'),(98,'enterprise','0009_auto_20161130_1651','2020-04-06 20:41:39.055180'),(99,'enterprise','0010_auto_20161222_1212','2020-04-06 20:41:39.142034'),(100,'enterprise','0011_enterprisecustomerentitlement_historicalenterprisecustomerentitlement','2020-04-06 20:41:39.321810'),(101,'enterprise','0012_auto_20170125_1033','2020-04-06 20:41:39.467306'),(102,'enterprise','0013_auto_20170125_1157','2020-04-06 20:41:40.004278'),(103,'enterprise','0014_enrollmentnotificationemailtemplate_historicalenrollmentnotificationemailtemplate','2020-04-06 20:41:40.224657'),(104,'enterprise','0015_auto_20170130_0003','2020-04-06 20:41:40.487550'),(105,'enterprise','0016_auto_20170405_0647','2020-04-06 20:41:41.275007'),(106,'enterprise','0017_auto_20170508_1341','2020-04-06 20:41:41.518982'),(107,'enterprise','0018_auto_20170511_1357','2020-04-06 20:41:41.662841'),(108,'enterprise','0019_auto_20170606_1853','2020-04-06 20:41:41.805050'),(109,'enterprise','0020_auto_20170624_2316','2020-04-06 20:41:42.533592'),(110,'enterprise','0021_auto_20170711_0712','2020-04-06 20:41:42.990885'),(111,'enterprise','0022_auto_20170720_1543','2020-04-06 20:41:43.134039'),(112,'enterprise','0023_audit_data_reporting_flag','2020-04-06 20:41:43.278518'),(113,'enterprise','0024_enterprisecustomercatalog_historicalenterprisecustomercatalog','2020-04-06 20:41:43.509975'),(114,'enterprise','0025_auto_20170828_1412','2020-04-06 20:41:43.872626'),(115,'enterprise','0026_make_require_account_level_consent_nullable','2020-04-06 20:41:44.033594'),(116,'enterprise','0027_remove_account_level_consent','2020-04-06 20:41:44.887277'),(117,'enterprise','0028_link_enterprise_to_enrollment_template','2020-04-06 20:41:45.217362'),(118,'enterprise','0029_auto_20170925_1909','2020-04-06 20:41:45.369311'),(119,'enterprise','0030_auto_20171005_1600','2020-04-06 20:41:45.620039'),(120,'enterprise','0031_auto_20171012_1249','2020-04-06 20:41:45.797972'),(121,'enterprise','0032_reporting_model','2020-04-06 20:41:45.983145'),(122,'enterprise','0033_add_history_change_reason_field','2020-04-06 20:41:46.457316'),(123,'enterprise','0034_auto_20171023_0727','2020-04-06 20:41:46.652118'),(124,'enterprise','0035_auto_20171212_1129','2020-04-06 20:41:46.798660'),(125,'enterprise','0036_sftp_reporting_support','2020-04-06 20:41:47.014978'),(126,'enterprise','0037_auto_20180110_0450','2020-04-06 20:41:47.187872'),(127,'enterprise','0038_auto_20180122_1427','2020-04-06 20:41:47.284406'),(128,'enterprise','0039_auto_20180129_1034','2020-04-06 20:41:47.374034'),(129,'enterprise','0040_auto_20180129_1428','2020-04-06 20:41:47.492886'),(130,'enterprise','0041_auto_20180212_1507','2020-04-06 20:41:47.556545'),(131,'consent','0001_initial','2020-04-06 20:41:48.165849'),(132,'consent','0002_migrate_to_new_data_sharing_consent','2020-04-06 20:41:48.337994'),(133,'consent','0003_historicaldatasharingconsent_history_change_reason','2020-04-06 20:41:48.522191'),(134,'consent','0004_datasharingconsenttextoverrides','2020-04-06 20:41:48.666429'),(135,'organizations','0001_initial','2020-04-06 20:41:48.754941'),(136,'organizations','0002_auto_20170117_1434','2020-04-06 20:41:48.824136'),(137,'organizations','0003_auto_20170221_1138','2020-04-06 20:41:48.914918'),(138,'organizations','0004_auto_20170413_2315','2020-04-06 20:41:48.983707'),(139,'organizations','0005_auto_20171116_0640','2020-04-06 20:41:49.066673'),(140,'organizations','0006_auto_20171207_0259','2020-04-06 20:41:49.121906'),(141,'organizations','0007_historicalorganization','2020-04-06 20:41:49.267678'),(142,'content_libraries','0001_initial','2020-04-06 20:41:49.749912'),(143,'content_libraries','0002_group_permissions','2020-04-06 20:41:50.402221'),(144,'sites','0002_alter_domain_unique','2020-04-06 20:41:50.469458'),(145,'course_overviews','0001_initial','2020-04-06 20:41:50.535172'),(146,'course_overviews','0002_add_course_catalog_fields','2020-04-06 20:41:50.678970'),(147,'course_overviews','0003_courseoverviewgeneratedhistory','2020-04-06 20:41:50.723447'),(148,'course_overviews','0004_courseoverview_org','2020-04-06 20:41:50.780464'),(149,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2020-04-06 20:41:50.843089'),(150,'course_overviews','0006_courseoverviewimageset','2020-04-06 20:41:50.931502'),(151,'course_overviews','0007_courseoverviewimageconfig','2020-04-06 20:41:51.100049'),(152,'course_overviews','0008_remove_courseoverview_facebook_url','2020-04-06 20:41:51.142036'),(153,'course_overviews','0009_readd_facebook_url','2020-04-06 20:41:51.228869'),(154,'course_overviews','0010_auto_20160329_2317','2020-04-06 20:41:51.325477'),(155,'course_overviews','0011_courseoverview_marketing_url','2020-04-06 20:41:51.406833'),(156,'course_overviews','0012_courseoverview_eligible_for_financial_aid','2020-04-06 20:41:51.481791'),(157,'course_overviews','0013_courseoverview_language','2020-04-06 20:41:51.581206'),(158,'course_overviews','0014_courseoverview_certificate_available_date','2020-04-06 20:41:51.666957'),(159,'content_type_gating','0001_initial','2020-04-06 20:41:51.842210'),(160,'content_type_gating','0002_auto_20181119_0959','2020-04-06 20:41:52.089156'),(161,'content_type_gating','0003_auto_20181128_1407','2020-04-06 20:41:52.602628'),(162,'content_type_gating','0004_auto_20181128_1521','2020-04-06 20:41:52.741232'),(163,'content_type_gating','0005_auto_20190306_1547','2020-04-06 20:41:52.873900'),(164,'content_type_gating','0006_auto_20190308_1447','2020-04-06 20:41:53.008546'),(165,'content_type_gating','0007_auto_20190311_1919','2020-04-06 20:41:53.549579'),(166,'content_type_gating','0008_auto_20190313_1634','2020-04-06 20:41:53.684913'),(167,'contentserver','0001_initial','2020-04-06 20:41:53.830128'),(168,'contentserver','0002_cdnuseragentsconfig','2020-04-06 20:41:53.985036'),(169,'waffle','0001_initial','2020-04-06 20:41:54.171807'),(170,'enterprise','0042_replace_sensitive_sso_username','2020-04-06 20:41:54.359820'),(171,'enterprise','0043_auto_20180507_0138','2020-04-06 20:41:54.676599'),(172,'enterprise','0044_reporting_config_multiple_types','2020-04-06 20:41:54.847360'),(173,'enterprise','0045_report_type_json','2020-04-06 20:41:54.911662'),(174,'enterprise','0046_remove_unique_constraints','2020-04-06 20:41:54.977939'),(175,'enterprise','0047_auto_20180517_0457','2020-04-06 20:41:55.161350'),(176,'enterprise','0048_enterprisecustomeruser_active','2020-04-06 20:41:55.252734'),(177,'enterprise','0049_auto_20180531_0321','2020-04-06 20:41:55.424885'),(178,'enterprise','0050_progress_v2','2020-04-06 20:41:55.490395'),(179,'enterprise','0051_add_enterprise_slug','2020-04-06 20:41:55.686802'),(180,'enterprise','0052_create_unique_slugs','2020-04-06 20:41:56.339370'),(181,'enterprise','0053_pendingenrollment_cohort_name','2020-04-06 20:41:56.407678'),(182,'enterprise','0053_auto_20180911_0811','2020-04-06 20:41:56.649843'),(183,'enterprise','0054_merge_20180914_1511','2020-04-06 20:41:56.684860'),(184,'enterprise','0055_auto_20181015_1112','2020-04-06 20:41:56.939814'),(185,'enterprise','0056_enterprisecustomerreportingconfiguration_pgp_encryption_key','2020-04-06 20:41:57.036170'),(186,'enterprise','0057_enterprisecustomerreportingconfiguration_enterprise_customer_catalogs','2020-04-06 20:41:57.243486'),(187,'enterprise','0058_auto_20181212_0145','2020-04-06 20:41:57.640249'),(188,'enterprise','0059_add_code_management_portal_config','2020-04-06 20:41:57.898110'),(189,'enterprise','0060_upgrade_django_simple_history','2020-04-06 20:41:58.262648'),(190,'enterprise','0061_systemwideenterpriserole_systemwideenterpriseuserroleassignment','2020-04-06 20:41:58.489012'),(191,'enterprise','0062_add_system_wide_enterprise_roles','2020-04-06 20:41:58.548445'),(192,'enterprise','0063_systemwideenterpriserole_description','2020-04-06 20:41:58.600836'),(193,'enterprise','0064_enterprisefeaturerole_enterprisefeatureuserroleassignment','2020-04-06 20:41:58.821806'),(194,'enterprise','0065_add_enterprise_feature_roles','2020-04-06 20:41:58.868395'),(195,'enterprise','0066_add_system_wide_enterprise_operator_role','2020-04-06 20:41:58.932295'),(196,'enterprise','0067_add_role_based_access_control_switch','2020-04-06 20:41:58.979172'),(197,'cornerstone','0001_initial','2020-04-06 20:42:00.184509'),(198,'cornerstone','0002_cornerstoneglobalconfiguration_subject_mapping','2020-04-06 20:42:00.368086'),(199,'cornerstone','0003_auto_20190621_1000','2020-04-06 20:42:00.905137'),(200,'cornerstone','0004_cornerstoneglobalconfiguration_languages','2020-04-06 20:42:01.101143'),(201,'cornerstone','0005_auto_20190925_0730','2020-04-06 20:42:01.370879'),(202,'cornerstone','0006_auto_20191001_0742','2020-04-06 20:42:01.658761'),(203,'cors_csrf','0001_initial','2020-04-06 20:42:01.888376'),(204,'course_action_state','0001_initial','2020-04-06 20:42:02.239575'),(205,'course_overviews','0015_historicalcourseoverview','2020-04-06 20:42:02.455756'),(206,'course_overviews','0016_simulatecoursepublishconfig','2020-04-06 20:42:02.678941'),(207,'course_overviews','0017_auto_20191002_0823','2020-04-06 20:42:02.850470'),(208,'course_overviews','0018_add_start_end_in_CourseOverview','2020-04-06 20:42:03.613443'),(209,'course_overviews','0019_improve_courseoverviewtab','2020-04-06 20:42:03.917706'),(210,'course_date_signals','0001_initial','2020-04-06 20:42:04.497076'),(211,'course_duration_limits','0001_initial','2020-04-06 20:42:04.736993'),(212,'course_duration_limits','0002_auto_20181119_0959','2020-04-06 20:42:04.943959'),(213,'course_duration_limits','0003_auto_20181128_1407','2020-04-06 20:42:05.140764'),(214,'course_duration_limits','0004_auto_20181128_1521','2020-04-06 20:42:05.339721'),(215,'course_duration_limits','0005_auto_20190306_1546','2020-04-06 20:42:05.546042'),(216,'course_duration_limits','0006_auto_20190308_1447','2020-04-06 20:42:05.764330'),(217,'course_duration_limits','0007_auto_20190311_1919','2020-04-06 20:42:06.986095'),(218,'course_duration_limits','0008_auto_20190313_1634','2020-04-06 20:42:07.188960'),(219,'course_goals','0001_initial','2020-04-06 20:42:07.544550'),(220,'course_goals','0002_auto_20171010_1129','2020-04-06 20:42:07.721412'),(221,'course_groups','0002_change_inline_default_cohort_value','2020-04-06 20:42:07.796606'),(222,'course_groups','0003_auto_20170609_1455','2020-04-06 20:42:08.043522'),(223,'course_modes','0008_course_key_field_to_foreign_key','2020-04-06 20:42:08.353623'),(224,'course_modes','0009_suggested_prices_to_charfield','2020-04-06 20:42:08.425882'),(225,'course_modes','0010_archived_suggested_prices_to_charfield','2020-04-06 20:42:08.508061'),(226,'course_modes','0011_change_regex_for_comma_separated_ints','2020-04-06 20:42:08.598596'),(227,'course_modes','0012_historicalcoursemode','2020-04-06 20:42:08.818948'),(228,'course_modes','0013_auto_20200115_2022','2020-04-06 20:42:09.056840'),(229,'course_overviews','0020_courseoverviewtab_url_slug','2020-04-06 20:42:09.142761'),(230,'coursewarehistoryextended','0001_initial','2020-04-06 20:42:10.501682'),(231,'coursewarehistoryextended','0002_force_studentmodule_index','2020-04-06 20:42:10.803093'),(232,'courseware','0002_coursedynamicupgradedeadlineconfiguration_dynamicupgradedeadlineconfiguration','2020-04-06 20:42:10.954495'),(233,'courseware','0003_auto_20170825_0935','2020-04-06 20:42:11.069245'),(234,'courseware','0004_auto_20171010_1639','2020-04-06 20:42:11.177034'),(235,'courseware','0005_orgdynamicupgradedeadlineconfiguration','2020-04-06 20:42:11.319555'),(236,'courseware','0006_remove_module_id_index','2020-04-06 20:42:11.436704'),(237,'courseware','0007_remove_done_index','2020-04-06 20:42:11.541678'),(238,'courseware','0008_move_idde_to_edx_when','2020-04-06 20:42:11.628767'),(239,'courseware','0009_auto_20190703_1955','2020-04-06 20:42:12.182593'),(240,'courseware','0010_auto_20190709_1559','2020-04-06 20:42:12.413463'),(241,'courseware','0011_csm_id_bigint','2020-04-06 20:42:13.450654'),(242,'courseware','0012_adjust_fields','2020-04-06 20:42:13.744535'),(243,'courseware','0013_auto_20191001_1858','2020-04-06 20:42:14.004940'),(244,'courseware','0014_fix_nan_value_for_global_speed','2020-04-06 20:42:14.063309'),(245,'crawlers','0001_initial','2020-04-06 20:42:14.262230'),(246,'crawlers','0002_auto_20170419_0018','2020-04-06 20:42:14.461748'),(247,'credentials','0001_initial','2020-04-06 20:42:14.660219'),(248,'credentials','0002_auto_20160325_0631','2020-04-06 20:42:14.818969'),(249,'credentials','0003_auto_20170525_1109','2020-04-06 20:42:15.105551'),(250,'credentials','0004_notifycredentialsconfig','2020-04-06 20:42:15.381037'),(251,'credit','0001_initial','2020-04-06 20:42:16.013429'),(252,'credit','0002_creditconfig','2020-04-06 20:42:16.239175'),(253,'credit','0003_auto_20160511_2227','2020-04-06 20:42:16.316056'),(254,'credit','0004_delete_historical_credit_records','2020-04-06 20:42:17.479112'),(255,'credit','0005_creditrequirement_sort_value','2020-04-06 20:42:17.577102'),(256,'credit','0006_creditrequirement_alter_ordering','2020-04-06 20:42:17.680015'),(257,'credit','0007_creditrequirement_copy_values','2020-04-06 20:42:17.765665'),(258,'credit','0008_creditrequirement_remove_order','2020-04-06 20:42:17.864642'),(259,'dark_lang','0001_initial','2020-04-06 20:42:18.089326'),(260,'dark_lang','0002_data__enable_on_install','2020-04-06 20:42:18.223657'),(261,'dark_lang','0003_auto_20180425_0359','2020-04-06 20:42:18.531472'),(262,'database_fixups','0001_initial','2020-04-06 20:42:18.589339'),(263,'degreed','0001_initial','2020-04-06 20:42:19.141187'),(264,'degreed','0002_auto_20180104_0103','2020-04-06 20:42:19.553032'),(265,'degreed','0003_auto_20180109_0712','2020-04-06 20:42:19.789886'),(266,'degreed','0004_auto_20180306_1251','2020-04-06 20:42:20.020230'),(267,'degreed','0005_auto_20180807_1302','2020-04-06 20:42:21.725637'),(268,'degreed','0006_upgrade_django_simple_history','2020-04-06 20:42:21.959471'),(269,'degreed','0007_auto_20190925_0730','2020-04-06 20:42:22.218027'),(270,'degreed','0008_auto_20191001_0742','2020-04-06 20:42:22.470516'),(271,'discounts','0001_initial','2020-04-06 20:42:22.971413'),(272,'discounts','0002_auto_20191022_1720','2020-04-06 20:42:23.496119'),(273,'django_comment_common','0001_initial','2020-04-06 20:42:24.289784'),(274,'django_comment_common','0002_forumsconfig','2020-04-06 20:42:24.510684'),(275,'django_comment_common','0003_enable_forums','2020-04-06 20:42:24.565966'),(276,'django_comment_common','0004_auto_20161117_1209','2020-04-06 20:42:24.727531'),(277,'django_comment_common','0005_coursediscussionsettings','2020-04-06 20:42:24.796740'),(278,'django_comment_common','0006_coursediscussionsettings_discussions_id_map','2020-04-06 20:42:24.877822'),(279,'django_comment_common','0007_discussionsidmapping','2020-04-06 20:42:24.938424'),(280,'django_comment_common','0008_role_user_index','2020-04-06 20:42:24.991002'),(281,'django_notify','0001_initial','2020-04-06 20:42:25.762148'),(282,'djcelery','0001_initial','2020-04-06 20:42:25.994405'),(283,'edx_proctoring','0001_initial','2020-04-06 20:42:28.465485'),(284,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2020-04-06 20:42:28.668450'),(285,'edx_proctoring','0003_auto_20160101_0525','2020-04-06 20:42:29.020018'),(286,'edx_proctoring','0004_auto_20160201_0523','2020-04-06 20:42:29.212788'),(287,'edx_proctoring','0005_proctoredexam_hide_after_due','2020-04-06 20:42:29.308896'),(288,'edx_proctoring','0006_allowed_time_limit_mins','2020-04-06 20:42:29.647931'),(289,'edx_proctoring','0007_proctoredexam_backend','2020-04-06 20:42:29.772771'),(290,'edx_proctoring','0008_auto_20181116_1551','2020-04-06 20:42:30.260722'),(291,'edx_proctoring','0009_proctoredexamreviewpolicy_remove_rules','2020-04-06 20:42:30.600047'),(292,'edx_proctoring','0010_update_backend','2020-04-06 20:42:30.650601'),(293,'edx_when','0001_initial','2020-04-06 20:42:31.562426'),(294,'edx_when','0002_auto_20190318_1736','2020-04-06 20:42:32.128923'),(295,'edx_when','0003_auto_20190402_1501','2020-04-06 20:42:32.808352'),(296,'edx_when','0004_datepolicy_rel_date','2020-04-06 20:42:32.878549'),(297,'edx_when','0005_auto_20190911_1056','2020-04-06 20:42:33.123732'),(298,'edx_when','0006_drop_active_index','2020-04-06 20:42:33.209602'),(299,'edx_zoom','0001_initial','2020-04-06 20:42:33.258267'),(300,'edx_zoom','0002_lticredential_launch_url','2020-04-06 20:42:33.338182'),(301,'edx_zoom','0003_add_launchlog','2020-04-06 20:42:33.717822'),(302,'edxval','0001_initial','2020-04-06 20:42:33.979238'),(303,'edxval','0002_data__default_profiles','2020-04-06 20:42:34.045420'),(304,'edxval','0003_coursevideo_is_hidden','2020-04-06 20:42:34.116700'),(305,'edxval','0004_data__add_hls_profile','2020-04-06 20:42:34.173802'),(306,'edxval','0005_videoimage','2020-04-06 20:42:34.271717'),(307,'edxval','0006_auto_20171009_0725','2020-04-06 20:42:34.386684'),(308,'edxval','0007_transcript_credentials_state','2020-04-06 20:42:34.476488'),(309,'edxval','0008_remove_subtitles','2020-04-06 20:42:34.566001'),(310,'edxval','0009_auto_20171127_0406','2020-04-06 20:42:34.650381'),(311,'edxval','0010_add_video_as_foreign_key','2020-04-06 20:42:34.801448'),(312,'edxval','0011_data__add_audio_mp3_profile','2020-04-06 20:42:34.971440'),(313,'edxval','0012_thirdpartytranscriptcredentialsstate_has_creds','2020-04-06 20:42:35.026780'),(314,'edxval','0013_thirdpartytranscriptcredentialsstate_copy_values','2020-04-06 20:42:35.090668'),(315,'edxval','0014_transcript_credentials_state_retype_exists','2020-04-06 20:42:35.149160'),(316,'edxval','0015_remove_thirdpartytranscriptcredentialsstate_exists','2020-04-06 20:42:35.225317'),(317,'edxval','0016_add_transcript_credentials_model','2020-04-06 20:42:35.322701'),(318,'email_marketing','0001_initial','2020-04-06 20:42:35.559481'),(319,'email_marketing','0002_auto_20160623_1656','2020-04-06 20:42:37.457165'),(320,'email_marketing','0003_auto_20160715_1145','2020-04-06 20:42:38.383009'),(321,'email_marketing','0004_emailmarketingconfiguration_welcome_email_send_delay','2020-04-06 20:42:38.579145'),(322,'email_marketing','0005_emailmarketingconfiguration_user_registration_cookie_timeout_delay','2020-04-06 20:42:38.798107'),(323,'email_marketing','0006_auto_20170711_0615','2020-04-06 20:42:39.020811'),(324,'email_marketing','0007_auto_20170809_0653','2020-04-06 20:42:39.971758'),(325,'email_marketing','0008_auto_20170809_0539','2020-04-06 20:42:40.026938'),(326,'email_marketing','0009_remove_emailmarketingconfiguration_sailthru_activation_template','2020-04-06 20:42:40.246265'),(327,'email_marketing','0010_auto_20180425_0800','2020-04-06 20:42:40.593591'),(328,'embargo','0001_initial','2020-04-06 20:42:41.279897'),(329,'embargo','0002_data__add_countries','2020-04-06 20:42:41.337238'),(330,'enterprise','0068_remove_role_based_access_control_switch','2020-04-06 20:42:41.412939'),(331,'enterprise','0069_auto_20190613_0607','2020-04-06 20:42:41.719036'),(332,'enterprise','0070_enterprise_catalog_query','2020-04-06 20:42:42.277011'),(333,'enterprise','0071_historicalpendingenrollment_historicalpendingenterprisecustomeruser','2020-04-06 20:42:42.816434'),(334,'enterprise','0072_add_enterprise_report_config_feature_role','2020-04-06 20:42:42.885004'),(335,'enterprise','0073_enterprisecustomerreportingconfiguration_uuid','2020-04-06 20:42:43.110793'),(336,'enterprise','0074_auto_20190904_1143','2020-04-06 20:42:43.851564'),(337,'enterprise','0075_auto_20190916_1030','2020-04-06 20:42:44.492908'),(338,'enterprise','0076_auto_20190918_2037','2020-04-06 20:42:45.139370'),(339,'enterprise','0077_auto_20191002_1529','2020-04-06 20:42:45.733343'),(340,'enterprise','0078_auto_20191107_1536','2020-04-06 20:42:45.838680'),(341,'enterprise','0079_AddEnterpriseEnrollmentSource','2020-04-06 20:42:47.391959'),(342,'enterprise','0080_auto_20191113_1708','2020-04-06 20:42:47.508865'),(343,'enterprise','0081_UpdateEnterpriseEnrollmentSource','2020-04-06 20:42:47.561089'),(344,'enterprise','0082_AddManagementEnterpriseEnrollmentSource','2020-04-06 20:42:47.643765'),(345,'enterprise','0083_enterprisecustomerreportingconfiguration_include_date','2020-04-06 20:42:47.752439'),(346,'enterprise','0084_auto_20200120_1137','2020-04-06 20:42:47.878894'),(347,'enterprise','0085_enterprisecustomeruser_linked','2020-04-06 20:42:47.984085'),(348,'enterprise','0086_auto_20200128_1726','2020-04-06 20:42:48.439317'),(349,'enterprise','0087_auto_20200206_1151','2020-04-06 20:42:48.781604'),(350,'enterprise','0088_auto_20200224_1341','2020-04-06 20:42:49.451427'),(351,'enterprise','0089_auto_20200305_0652','2020-04-06 20:42:49.573501'),(352,'enterprise','0090_update_content_filter','2020-04-06 20:42:49.951617'),(353,'enterprise','0091_add_sales_force_id_in_pendingenrollment','2020-04-06 20:42:50.262808'),(354,'enterprise','0092_auto_20200312_1650','2020-04-06 20:42:50.598018'),(355,'student','0001_initial','2020-04-06 20:42:57.292640'),(356,'student','0002_auto_20151208_1034','2020-04-06 20:42:57.460249'),(357,'student','0003_auto_20160516_0938','2020-04-06 20:42:57.676302'),(358,'student','0004_auto_20160531_1422','2020-04-06 20:42:57.776744'),(359,'student','0005_auto_20160531_1653','2020-04-06 20:42:57.890490'),(360,'student','0006_logoutviewconfiguration','2020-04-06 20:42:57.993332'),(361,'student','0007_registrationcookieconfiguration','2020-04-06 20:42:58.094905'),(362,'student','0008_auto_20161117_1209','2020-04-06 20:42:58.201771'),(363,'student','0009_auto_20170111_0422','2020-04-06 20:42:58.298703'),(364,'student','0010_auto_20170207_0458','2020-04-06 20:42:58.331701'),(365,'student','0011_course_key_field_to_foreign_key','2020-04-06 20:43:00.280168'),(366,'student','0012_sociallink','2020-04-06 20:43:00.674113'),(367,'student','0013_delete_historical_enrollment_records','2020-04-06 20:43:01.619808'),(368,'student','0014_courseenrollmentallowed_user','2020-04-06 20:43:01.953045'),(369,'student','0015_manualenrollmentaudit_add_role','2020-04-06 20:43:02.238865'),(370,'student','0016_coursenrollment_course_on_delete_do_nothing','2020-04-06 20:43:02.574961'),(371,'student','0017_accountrecovery','2020-04-06 20:43:02.906743'),(372,'student','0018_remove_password_history','2020-04-06 20:43:03.790453'),(373,'student','0019_auto_20181221_0540','2020-04-06 20:43:04.374586'),(374,'student','0020_auto_20190227_2019','2020-04-06 20:43:04.653553'),(375,'student','0021_historicalcourseenrollment','2020-04-06 20:43:04.990595'),(376,'entitlements','0001_initial','2020-04-06 20:43:05.335175'),(377,'entitlements','0002_auto_20171102_0719','2020-04-06 20:43:06.387825'),(378,'entitlements','0003_auto_20171205_1431','2020-04-06 20:43:08.157390'),(379,'entitlements','0004_auto_20171206_1729','2020-04-06 20:43:08.437973'),(380,'entitlements','0005_courseentitlementsupportdetail','2020-04-06 20:43:08.775766'),(381,'entitlements','0006_courseentitlementsupportdetail_action','2020-04-06 20:43:09.072347'),(382,'entitlements','0007_change_expiration_period_default','2020-04-06 20:43:09.215719'),(383,'entitlements','0008_auto_20180328_1107','2020-04-06 20:43:09.656127'),(384,'entitlements','0009_courseentitlement_refund_locked','2020-04-06 20:43:09.951269'),(385,'entitlements','0010_backfill_refund_lock','2020-04-06 20:43:10.038236'),(386,'entitlements','0011_historicalcourseentitlement','2020-04-06 20:43:10.413415'),(387,'entitlements','0012_allow_blank_order_number_values','2020-04-06 20:43:10.974706'),(388,'entitlements','0013_historicalcourseentitlementsupportdetail','2020-04-06 20:43:11.338998'),(389,'entitlements','0014_auto_20200115_2022','2020-04-06 20:43:11.698621'),(390,'entitlements','0015_add_unique_together_constraint','2020-04-06 20:43:13.182759'),(391,'experiments','0001_initial','2020-04-06 20:43:14.038646'),(392,'experiments','0002_auto_20170627_1402','2020-04-06 20:43:14.128507'),(393,'experiments','0003_auto_20170713_1148','2020-04-06 20:43:14.190206'),(394,'experiments','0004_historicalexperimentkeyvalue','2020-04-06 20:43:14.557937'),(395,'external_user_ids','0001_initial','2020-04-06 20:43:15.908497'),(396,'external_user_ids','0002_mb_coaching_20200210_1754','2020-04-06 20:43:15.966544'),(397,'external_user_ids','0003_auto_20200224_1836','2020-04-06 20:43:16.255769'),(398,'grades','0001_initial','2020-04-06 20:43:16.396239'),(399,'grades','0002_rename_last_edited_field','2020-04-06 20:43:16.495202'),(400,'grades','0003_coursepersistentgradesflag_persistentgradesenabledflag','2020-04-06 20:43:17.832399'),(401,'grades','0004_visibleblocks_course_id','2020-04-06 20:43:17.902749'),(402,'grades','0005_multiple_course_flags','2020-04-06 20:43:18.211003'),(403,'grades','0006_persistent_course_grades','2020-04-06 20:43:18.319586'),(404,'grades','0007_add_passed_timestamp_column','2020-04-06 20:43:18.415354'),(405,'grades','0008_persistentsubsectiongrade_first_attempted','2020-04-06 20:43:18.501741'),(406,'grades','0009_auto_20170111_1507','2020-04-06 20:43:18.607810'),(407,'grades','0010_auto_20170112_1156','2020-04-06 20:43:18.672517'),(408,'grades','0011_null_edited_time','2020-04-06 20:43:18.823759'),(409,'grades','0012_computegradessetting','2020-04-06 20:43:19.187588'),(410,'grades','0013_persistentsubsectiongradeoverride','2020-04-06 20:43:19.266553'),(411,'grades','0014_persistentsubsectiongradeoverridehistory','2020-04-06 20:43:19.663045'),(412,'grades','0015_historicalpersistentsubsectiongradeoverride','2020-04-06 20:43:20.036687'),(413,'grades','0016_auto_20190703_1446','2020-04-06 20:43:20.688367'),(414,'grades','0017_delete_manual_psgoverride_table','2020-04-06 20:43:21.085964'),(415,'instructor_task','0002_gradereportsetting','2020-04-06 20:43:21.481209'),(416,'instructor_task','0003_alter_task_input_field','2020-04-06 20:43:21.804886'),(417,'sap_success_factors','0001_initial','2020-04-06 20:43:23.523206'),(418,'sap_success_factors','0002_auto_20170224_1545','2020-04-06 20:43:24.652451'),(419,'sap_success_factors','0003_auto_20170317_1402','2020-04-06 20:43:25.168568'),(420,'sap_success_factors','0004_catalogtransmissionaudit_audit_summary','2020-04-06 20:43:25.234211'),(421,'sap_success_factors','0005_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2020-04-06 20:43:25.558204'),(422,'sap_success_factors','0006_sapsuccessfactors_use_enterprise_enrollment_page_waffle_flag','2020-04-06 20:43:25.618493'),(423,'sap_success_factors','0007_remove_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2020-04-06 20:43:25.950275'),(424,'sap_success_factors','0008_historicalsapsuccessfactorsenterprisecustomerconfiguration_history_change_reason','2020-04-06 20:43:26.336730'),(425,'sap_success_factors','0009_sapsuccessfactors_remove_enterprise_enrollment_page_waffle_flag','2020-04-06 20:43:26.406873'),(426,'sap_success_factors','0010_move_audit_tables_to_base_integrated_channel','2020-04-06 20:43:26.559955'),(427,'integrated_channel','0001_initial','2020-04-06 20:43:26.649818'),(428,'integrated_channel','0002_delete_enterpriseintegratedchannel','2020-04-06 20:43:26.705205'),(429,'integrated_channel','0003_catalogtransmissionaudit_learnerdatatransmissionaudit','2020-04-06 20:43:26.789282'),(430,'integrated_channel','0004_catalogtransmissionaudit_channel','2020-04-06 20:43:26.862130'),(431,'integrated_channel','0005_auto_20180306_1251','2020-04-06 20:43:27.929878'),(432,'integrated_channel','0006_delete_catalogtransmissionaudit','2020-04-06 20:43:27.991213'),(433,'integrated_channel','0007_auto_20190925_0730','2020-04-06 20:43:28.075871'),(434,'lms_xblock','0001_initial','2020-04-06 20:43:28.455990'),(435,'lx_pathway_plugin','0001_initial','2020-04-06 20:43:28.890351'),(436,'milestones','0001_initial','2020-04-06 20:43:29.321280'),(437,'milestones','0002_data__seed_relationship_types','2020-04-06 20:43:29.400590'),(438,'milestones','0003_coursecontentmilestone_requirements','2020-04-06 20:43:29.472334'),(439,'milestones','0004_auto_20151221_1445','2020-04-06 20:43:29.658237'),(440,'mobile_api','0001_initial','2020-04-06 20:43:30.026460'),(441,'mobile_api','0002_auto_20160406_0904','2020-04-06 20:43:30.121941'),(442,'mobile_api','0003_ignore_mobile_available_flag','2020-04-06 20:43:30.795129'),(443,'oauth2_provider','0001_initial','2020-04-06 20:43:32.854961'),(444,'oauth_dispatch','0001_initial','2020-04-06 20:43:33.258323'),(445,'oauth_dispatch','0002_scopedapplication_scopedapplicationorganization','2020-04-06 20:43:33.999426'),(446,'oauth_dispatch','0003_application_data','2020-04-06 20:43:34.063070'),(447,'oauth_dispatch','0004_auto_20180626_1349','2020-04-06 20:43:35.609062'),(448,'oauth_dispatch','0005_applicationaccess_type','2020-04-06 20:43:35.729462'),(449,'oauth_dispatch','0006_drop_application_id_constraints','2020-04-06 20:43:35.953111'),(450,'oauth2_provider','0002_08_updates','2020-04-06 20:43:36.185655'),(451,'oauth2_provider','0003_auto_20160316_1503','2020-04-06 20:43:36.309374'),(452,'oauth2_provider','0004_auto_20160525_1623','2020-04-06 20:43:36.523533'),(453,'oauth2_provider','0005_auto_20170514_1141','2020-04-06 20:43:38.080160'),(454,'oauth2_provider','0006_auto_20171214_2232','2020-04-06 20:43:38.408199'),(455,'oauth_dispatch','0007_restore_application_id_constraints','2020-04-06 20:43:38.638003'),(456,'oauth_dispatch','0008_applicationaccess_filters','2020-04-06 20:43:38.720250'),(457,'oauth_dispatch','0009_delete_enable_scopes_waffle_switch','2020-04-06 20:43:38.789100'),(458,'problem_builder','0001_initial','2020-04-06 20:43:38.886492'),(459,'problem_builder','0002_auto_20160121_1525','2020-04-06 20:43:39.035634'),(460,'problem_builder','0003_auto_20161124_0755','2020-04-06 20:43:39.135626'),(461,'problem_builder','0004_copy_course_ids','2020-04-06 20:43:39.191517'),(462,'problem_builder','0005_auto_20170112_1021','2020-04-06 20:43:39.294442'),(463,'problem_builder','0006_remove_deprecated_course_id','2020-04-06 20:43:39.405082'),(464,'problem_builder','0007_lengthen_student_id_field','2020-04-06 20:43:39.472290'),(465,'program_enrollments','0001_initial','2020-04-06 20:43:39.650391'),(466,'program_enrollments','0002_historicalprogramcourseenrollment_programcourseenrollment','2020-04-06 20:43:40.410211'),(467,'program_enrollments','0003_auto_20190424_1622','2020-04-06 20:43:40.752103'),(468,'program_enrollments','0004_add_programcourseenrollment_relatedname','2020-04-06 20:43:41.184954'),(469,'program_enrollments','0005_canceled_not_withdrawn','2020-04-06 20:43:42.363273'),(470,'program_enrollments','0006_add_the_correct_constraints','2020-04-06 20:43:42.693271'),(471,'program_enrollments','0007_waiting_programcourseenrollment_constraint','2020-04-06 20:43:42.781632'),(472,'program_enrollments','0008_add_ended_programenrollment_status','2020-04-06 20:43:42.919689'),(473,'program_enrollments','0009_update_course_enrollment_field_to_foreign_key','2020-04-06 20:43:43.134740'),(474,'program_enrollments','0010_add_courseaccessroleassignment','2020-04-06 20:43:43.376493'),(475,'programs','0001_initial','2020-04-06 20:43:43.585363'),(476,'programs','0002_programsapiconfig_cache_ttl','2020-04-06 20:43:43.742461'),(477,'programs','0003_auto_20151120_1613','2020-04-06 20:43:44.238401'),(478,'programs','0004_programsapiconfig_enable_certification','2020-04-06 20:43:44.396359'),(479,'programs','0005_programsapiconfig_max_retries','2020-04-06 20:43:44.550393'),(480,'programs','0006_programsapiconfig_xseries_ad_enabled','2020-04-06 20:43:44.727364'),(481,'programs','0007_programsapiconfig_program_listing_enabled','2020-04-06 20:43:44.886060'),(482,'programs','0008_programsapiconfig_program_details_enabled','2020-04-06 20:43:45.037371'),(483,'programs','0009_programsapiconfig_marketing_path','2020-04-06 20:43:45.199181'),(484,'programs','0010_auto_20170204_2332','2020-04-06 20:43:45.468441'),(485,'programs','0011_auto_20170301_1844','2020-04-06 20:43:47.702853'),(486,'programs','0012_auto_20170419_0018','2020-04-06 20:43:47.868019'),(487,'programs','0013_customprogramsconfig','2020-04-06 20:43:48.091712'),(488,'redirects','0001_initial','2020-04-06 20:43:48.294936'),(489,'rss_proxy','0001_initial','2020-04-06 20:43:48.379495'),(490,'sap_success_factors','0011_auto_20180104_0103','2020-04-06 20:43:50.282230'),(491,'sap_success_factors','0012_auto_20180109_0712','2020-04-06 20:43:50.544693'),(492,'sap_success_factors','0013_auto_20180306_1251','2020-04-06 20:43:50.820628'),(493,'sap_success_factors','0014_drop_historical_table','2020-04-06 20:43:50.895818'),(494,'sap_success_factors','0015_auto_20180510_1259','2020-04-06 20:43:51.282912'),(495,'sap_success_factors','0016_sapsuccessfactorsenterprisecustomerconfiguration_additional_locales','2020-04-06 20:43:51.423773'),(496,'sap_success_factors','0017_sapsuccessfactorsglobalconfiguration_search_student_api_path','2020-04-06 20:43:51.619393'),(497,'sap_success_factors','0018_sapsuccessfactorsenterprisecustomerconfiguration_show_course_price','2020-04-06 20:43:51.787739'),(498,'sap_success_factors','0019_auto_20190925_0730','2020-04-06 20:43:51.964917'),(499,'sap_success_factors','0020_sapsuccessfactorsenterprisecustomerconfiguration_catalogs_to_transmit','2020-04-06 20:43:52.089242'),(500,'sap_success_factors','0021_sapsuccessfactorsenterprisecustomerconfiguration_show_total_hours','2020-04-06 20:43:52.239610'),(501,'sap_success_factors','0022_auto_20200206_1046','2020-04-06 20:43:52.477051'),(502,'schedules','0001_initial','2020-04-06 20:43:52.749835'),(503,'schedules','0002_auto_20170816_1532','2020-04-06 20:43:52.899427'),(504,'schedules','0003_scheduleconfig','2020-04-06 20:43:53.761831'),(505,'schedules','0004_auto_20170922_1428','2020-04-06 20:43:54.077980'),(506,'schedules','0005_auto_20171010_1722','2020-04-06 20:43:54.395871'),(507,'schedules','0006_scheduleexperience','2020-04-06 20:43:54.620646'),(508,'schedules','0007_scheduleconfig_hold_back_ratio','2020-04-06 20:43:54.798713'),(509,'schedules','0008_add_new_start_date_field','2020-04-06 20:43:54.889997'),(510,'schedules','0009_schedule_copy_column_values','2020-04-06 20:43:54.965415'),(511,'schedules','0010_remove_null_blank_from_schedules_date','2020-04-06 20:43:55.057992'),(512,'schedules','0011_auto_20200228_2018','2020-04-06 20:43:55.247354'),(513,'schedules','0012_auto_20200302_1914','2020-04-06 20:43:55.433627'),(514,'schedules','0013_historicalschedule','2020-04-06 20:43:55.624723'),(515,'schedules','0014_historicalschedule_drop_fk','2020-04-06 20:43:55.827033'),(516,'schedules','0015_schedules_start_nullable','2020-04-06 20:43:56.033727'),(517,'schedules','0016_remove_start_from_schedules','2020-04-06 20:43:56.124978'),(518,'schedules','0017_remove_start_from_historicalschedule','2020-04-06 20:43:56.218400'),(519,'schedules','0018_readd_historicalschedule_fks','2020-04-06 20:43:56.497882'),(520,'schedules','0019_auto_20200316_1935','2020-04-06 20:43:56.878490'),(521,'self_paced','0001_initial','2020-04-06 20:43:57.117645'),(522,'sessions','0001_initial','2020-04-06 20:43:57.175967'),(523,'shoppingcart','0001_initial','2020-04-06 20:44:01.374935'),(524,'shoppingcart','0002_auto_20151208_1034','2020-04-06 20:44:01.560201'),(525,'shoppingcart','0003_auto_20151217_0958','2020-04-06 20:44:01.738582'),(526,'shoppingcart','0004_change_meta_options','2020-04-06 20:44:01.895915'),(527,'site_configuration','0001_initial','2020-04-06 20:44:02.307994'),(528,'site_configuration','0002_auto_20160720_0231','2020-04-06 20:44:02.546752'),(529,'site_configuration','0003_auto_20200217_1058','2020-04-06 20:44:02.776109'),(530,'site_configuration','0004_add_site_values_field','2020-04-06 20:44:03.012378'),(531,'site_configuration','0005_populate_siteconfig_history_site_values','2020-04-06 20:44:03.081383'),(532,'site_configuration','0006_copy_values_to_site_values','2020-04-06 20:44:03.171722'),(533,'site_configuration','0007_remove_values_field','2020-04-06 20:44:03.399326'),(534,'default','0001_initial','2020-04-06 20:44:03.907292'),(535,'social_auth','0001_initial','2020-04-06 20:44:03.942082'),(536,'default','0002_add_related_name','2020-04-06 20:44:04.179796'),(537,'social_auth','0002_add_related_name','2020-04-06 20:44:04.208211'),(538,'default','0003_alter_email_max_length','2020-04-06 20:44:04.296536'),(539,'social_auth','0003_alter_email_max_length','2020-04-06 20:44:04.329808'),(540,'default','0004_auto_20160423_0400','2020-04-06 20:44:04.525787'),(541,'social_auth','0004_auto_20160423_0400','2020-04-06 20:44:04.563563'),(542,'social_auth','0005_auto_20160727_2333','2020-04-06 20:44:04.660779'),(543,'social_django','0006_partial','2020-04-06 20:44:04.728205'),(544,'social_django','0007_code_timestamp','2020-04-06 20:44:04.803759'),(545,'social_django','0008_partial_timestamp','2020-04-06 20:44:04.900228'),(546,'splash','0001_initial','2020-04-06 20:44:05.110972'),(547,'static_replace','0001_initial','2020-04-06 20:44:05.340609'),(548,'static_replace','0002_assetexcludedextensionsconfig','2020-04-06 20:44:06.248577'),(549,'status','0001_initial','2020-04-06 20:44:06.690486'),(550,'status','0002_update_help_text','2020-04-06 20:44:06.865820'),(551,'student','0022_indexing_in_courseenrollment','2020-04-06 20:44:07.059744'),(552,'student','0023_bulkunenrollconfiguration','2020-04-06 20:44:07.298650'),(553,'student','0024_fbeenrollmentexclusion','2020-04-06 20:44:07.524322'),(554,'student','0025_auto_20191101_1846','2020-04-06 20:44:07.582004'),(555,'student','0026_allowedauthuser','2020-04-06 20:44:07.799008'),(556,'student','0027_courseenrollment_mode_callable_default','2020-04-06 20:44:08.119401'),(557,'student','0028_historicalmanualenrollmentaudit','2020-04-06 20:44:08.362301'),(558,'student','0029_add_data_researcher','2020-04-06 20:44:08.443079'),(559,'student','0030_userprofile_phone_number','2020-04-06 20:44:08.636305'),(560,'student','0031_auto_20200317_1122','2020-04-06 20:44:08.887617'),(561,'submissions','0001_initial','2020-04-06 20:44:09.205090'),(562,'submissions','0002_auto_20151119_0913','2020-04-06 20:44:09.324956'),(563,'submissions','0003_submission_status','2020-04-06 20:44:09.404805'),(564,'submissions','0004_remove_django_extensions','2020-04-06 20:44:09.515561'),(565,'submissions','0005_CreateTeamModel','2020-04-06 20:44:09.980233'),(566,'super_csv','0001_initial','2020-04-06 20:44:10.048411'),(567,'super_csv','0002_csvoperation_user','2020-04-06 20:44:10.305239'),(568,'super_csv','0003_csvoperation_original_filename','2020-04-06 20:44:10.507282'),(569,'survey','0001_initial','2020-04-06 20:44:10.848189'),(570,'system_wide_roles','0001_SystemWideRole_SystemWideRoleAssignment','2020-04-06 20:44:11.142829'),(571,'system_wide_roles','0002_add_system_wide_student_support_role','2020-04-06 20:44:11.225488'),(572,'teams','0001_initial','2020-04-06 20:44:12.679409'),(573,'teams','0002_slug_field_ids','2020-04-06 20:44:13.184800'),(574,'teams','0003_courseteam_organization_protected','2020-04-06 20:44:13.430855'),(575,'teams','0004_alter_defaults','2020-04-06 20:44:14.228415'),(576,'theming','0001_initial','2020-04-06 20:44:14.519801'),(577,'third_party_auth','0001_initial','2020-04-06 20:44:15.600542'),(578,'third_party_auth','0002_schema__provider_icon_image','2020-04-06 20:44:16.803717'),(579,'third_party_auth','0003_samlproviderconfig_debug_mode','2020-04-06 20:44:17.047192'),(580,'third_party_auth','0004_add_visible_field','2020-04-06 20:44:19.023814'),(581,'third_party_auth','0005_add_site_field','2020-04-06 20:44:20.310875'),(582,'third_party_auth','0006_samlproviderconfig_automatic_refresh_enabled','2020-04-06 20:44:20.566580'),(583,'third_party_auth','0007_auto_20170406_0912','2020-04-06 20:44:21.053389'),(584,'third_party_auth','0008_auto_20170413_1455','2020-04-06 20:44:21.750512'),(585,'third_party_auth','0009_auto_20170415_1144','2020-04-06 20:44:22.457051'),(586,'third_party_auth','0010_add_skip_hinted_login_dialog_field','2020-04-06 20:44:23.149930'),(587,'third_party_auth','0011_auto_20170616_0112','2020-04-06 20:44:23.414402'),(588,'third_party_auth','0012_auto_20170626_1135','2020-04-06 20:44:24.110837'),(589,'third_party_auth','0013_sync_learner_profile_data','2020-04-06 20:44:25.586131'),(590,'third_party_auth','0014_auto_20171222_1233','2020-04-06 20:44:26.306407'),(591,'third_party_auth','0015_samlproviderconfig_archived','2020-04-06 20:44:26.569232'),(592,'third_party_auth','0016_auto_20180130_0938','2020-04-06 20:44:27.097260'),(593,'third_party_auth','0017_remove_icon_class_image_secondary_fields','2020-04-06 20:44:27.802847'),(594,'third_party_auth','0018_auto_20180327_1631','2020-04-06 20:44:28.521422'),(595,'third_party_auth','0019_consolidate_slug','2020-04-06 20:44:29.251385'),(596,'third_party_auth','0020_cleanup_slug_fields','2020-04-06 20:44:29.737635'),(597,'third_party_auth','0021_sso_id_verification','2020-04-06 20:44:30.453846'),(598,'third_party_auth','0022_auto_20181012_0307','2020-04-06 20:44:32.383113'),(599,'third_party_auth','0023_auto_20190418_2033','2020-04-06 20:44:33.205053'),(600,'third_party_auth','0024_fix_edit_disallowed','2020-04-06 20:44:34.010094'),(601,'third_party_auth','0025_auto_20200303_1448','2020-04-06 20:44:34.284229'),(602,'third_party_auth','0026_auto_20200401_1932','2020-04-06 20:44:34.654188'),(603,'thumbnail','0001_initial','2020-04-06 20:44:34.721160'),(604,'track','0001_initial','2020-04-06 20:44:34.802207'),(605,'track','0002_delete_trackinglog','2020-04-06 20:44:34.870937'),(606,'user_api','0001_initial','2020-04-06 20:44:36.279560'),(607,'user_api','0002_retirementstate_userretirementstatus','2020-04-06 20:44:36.621920'),(608,'user_api','0003_userretirementrequest','2020-04-06 20:44:36.914707'),(609,'user_api','0004_userretirementpartnerreportingstatus','2020-04-06 20:44:37.272344'),(610,'user_authn','0001_data__add_login_service','2020-04-06 20:44:37.335455'),(611,'util','0001_initial','2020-04-06 20:44:38.390211'),(612,'util','0002_data__default_rate_limit_config','2020-04-06 20:44:38.458173'),(613,'verified_track_content','0001_initial','2020-04-06 20:44:38.530883'),(614,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2020-04-06 20:44:38.605633'),(615,'verified_track_content','0003_migrateverifiedtrackcohortssetting','2020-04-06 20:44:38.937558'),(616,'verify_student','0001_initial','2020-04-06 20:44:41.331111'),(617,'verify_student','0002_auto_20151124_1024','2020-04-06 20:44:41.461169'),(618,'verify_student','0003_auto_20151113_1443','2020-04-06 20:44:41.612452'),(619,'verify_student','0004_delete_historical_records','2020-04-06 20:44:41.733083'),(620,'verify_student','0005_remove_deprecated_models','2020-04-06 20:44:44.600684'),(621,'verify_student','0006_ssoverification','2020-04-06 20:44:44.851551'),(622,'verify_student','0007_idverificationaggregate','2020-04-06 20:44:45.097115'),(623,'verify_student','0008_populate_idverificationaggregate','2020-04-06 20:44:45.158541'),(624,'verify_student','0009_remove_id_verification_aggregate','2020-04-06 20:44:45.643231'),(625,'verify_student','0010_manualverification','2020-04-06 20:44:45.903903'),(626,'verify_student','0011_add_fields_to_sspv','2020-04-06 20:44:46.251539'),(627,'verify_student','0012_sspverificationretryconfig','2020-04-06 20:44:46.536068'),(628,'video_config','0001_initial','2020-04-06 20:44:47.035565'),(629,'video_config','0002_coursevideotranscriptenabledflag_videotranscriptenabledflag','2020-04-06 20:44:47.504415'),(630,'video_config','0003_transcriptmigrationsetting','2020-04-06 20:44:47.759028'),(631,'video_config','0004_transcriptmigrationsetting_command_run','2020-04-06 20:44:47.962474'),(632,'video_config','0005_auto_20180719_0752','2020-04-06 20:44:48.225103'),(633,'video_config','0006_videothumbnailetting_updatedcoursevideos','2020-04-06 20:44:48.556234'),(634,'video_config','0007_videothumbnailsetting_offset','2020-04-06 20:44:48.806164'),(635,'video_config','0008_courseyoutubeblockedflag','2020-04-06 20:44:49.074071'),(636,'video_pipeline','0001_initial','2020-04-06 20:44:49.355925'),(637,'video_pipeline','0002_auto_20171114_0704','2020-04-06 20:44:49.745299'),(638,'video_pipeline','0003_coursevideouploadsenabledbydefault_videouploadsenabledbydefault','2020-04-06 20:44:51.008815'),(639,'waffle','0002_auto_20161201_0958','2020-04-06 20:44:51.134649'),(640,'waffle','0003_update_strings_for_i18n','2020-04-06 20:44:54.227536'),(641,'waffle_utils','0001_initial','2020-04-06 20:44:54.493848'),(642,'wiki','0001_initial','2020-04-06 20:45:01.796427'),(643,'wiki','0002_remove_article_subscription','2020-04-06 20:45:01.883121'),(644,'wiki','0003_ip_address_conv','2020-04-06 20:45:02.487977'),(645,'wiki','0004_increase_slug_size','2020-04-06 20:45:02.662982'),(646,'wiki','0005_remove_attachments_and_images','2020-04-06 20:45:03.996087'),(647,'wiki','0006_auto_20200110_1003','2020-04-06 20:45:04.409154'),(648,'workflow','0001_initial','2020-04-06 20:45:04.570267'),(649,'workflow','0002_remove_django_extensions','2020-04-06 20:45:04.688054'),(650,'workflow','0003_TeamWorkflows','2020-04-06 20:45:04.787860'),(651,'xapi','0001_initial','2020-04-06 20:45:05.017547'),(652,'xapi','0002_auto_20180726_0142','2020-04-06 20:45:05.255071'),(653,'xapi','0003_auto_20190807_1006','2020-04-06 20:45:05.634617'),(654,'xapi','0004_auto_20190830_0710','2020-04-06 20:45:05.822727'),(655,'xblock_django','0001_initial','2020-04-06 20:45:06.075026'),(656,'xblock_django','0002_auto_20160204_0809','2020-04-06 20:45:06.279347'),(657,'xblock_django','0003_add_new_config_models','2020-04-06 20:45:06.905856'),(658,'xblock_django','0004_delete_xblock_disable_config','2020-04-06 20:45:07.175760'),(659,'social_django','0005_auto_20160727_2333','2020-04-06 20:45:07.222042'),(660,'social_django','0001_initial','2020-04-06 20:45:07.261947'),(661,'social_django','0004_auto_20160423_0400','2020-04-06 20:45:07.306071'),(662,'social_django','0002_add_related_name','2020-04-06 20:45:07.350401'),(663,'social_django','0003_alter_email_max_length','2020-04-06 20:45:07.394858'),(664,'contentstore','0001_initial','2020-04-06 20:45:57.559821'),(665,'contentstore','0002_add_assets_page_flag','2020-04-06 20:45:58.394836'),(666,'contentstore','0003_remove_assets_page_flag','2020-04-06 20:45:59.538456'),(667,'contentstore','0004_remove_push_notification_configmodel_table','2020-04-06 20:45:59.983791'),(668,'course_creators','0001_initial','2020-04-06 20:46:00.403870'),(669,'tagging','0001_initial','2020-04-06 20:46:00.518213'),(670,'tagging','0002_auto_20170116_1541','2020-04-06 20:46:00.670323'),(671,'user_tasks','0001_initial','2020-04-06 20:46:01.817041'),(672,'user_tasks','0002_artifact_file_storage','2020-04-06 20:46:01.895776'),(673,'user_tasks','0003_url_max_length','2020-04-06 20:46:01.993099'),(674,'user_tasks','0004_url_textfield','2020-04-06 20:46:02.076091'),(675,'xblock_config','0001_initial','2020-04-06 20:46:02.330844'),(676,'xblock_config','0002_courseeditltifieldsenabledflag','2020-04-06 20:46:02.581567'),(677,'admin','0003_logentry_add_action_flag_choices','2020-07-23 17:25:00.179922'),(678,'auth','0009_alter_user_last_name_max_length','2020-07-23 17:25:00.505609'),(679,'auth','0010_alter_group_name_max_length','2020-07-23 17:25:00.564894'),(680,'auth','0011_update_proxy_permissions','2020-07-23 17:25:00.593516'),(681,'calendar_sync','0002_auto_20200709_1743','2020-07-23 17:25:00.701188'),(682,'course_overviews','0021_courseoverviewtab_link','2020-07-23 17:25:00.801625'),(683,'course_overviews','0022_courseoverviewtab_is_hidden','2020-07-23 17:25:00.857289'),(684,'edx_when','0007_meta_tweaks','2020-07-23 17:25:00.893068'),(685,'edxval','0002_add_error_description_field','2020-07-23 17:25:00.929717'),(686,'edxval','0003_delete_transcriptcredentials','2020-07-23 17:25:00.983204'),(687,'enterprise','0093_add_use_enterprise_catalog_flag','2020-07-23 17:25:01.004976'),(688,'enterprise','0094_add_use_enterprise_catalog_sample','2020-07-23 17:25:01.046620'),(689,'enterprise','0095_auto_20200507_1138','2020-07-23 17:25:01.267271'),(690,'enterprise','0096_enterprise_catalog_admin_role','2020-07-23 17:25:01.289516'),(691,'enterprise','0097_auto_20200619_1130','2020-07-23 17:25:01.477600'),(692,'enterprise','0098_auto_20200629_1756','2020-07-23 17:25:01.946970'),(693,'enterprise','0099_auto_20200702_1537','2020-07-23 17:25:02.131422'),(694,'enterprise','0100_add_licensed_enterprise_course_enrollment','2020-07-23 17:25:02.409138'),(695,'enterprise','0101_move_data_to_saved_for_later','2020-07-23 17:25:02.434499'),(696,'enterprise','0102_auto_20200708_1615','2020-07-23 17:25:02.682995'),(697,'enterprise','0103_remove_marked_done','2020-07-23 17:25:02.898711'),(698,'external_user_ids','0004_add_lti_type','2020-07-23 17:25:02.929607'),(699,'grades','0018_add_waffle_flag_defaults','2020-07-23 17:25:02.960358'),(700,'learning_sequences','0001_initial','2020-07-23 17:25:03.507508'),(701,'learning_sequences','0002_coursesectionsequence_inaccessible_after_due','2020-07-23 17:25:03.552017'),(702,'oauth2_provider','0002_auto_20190406_1805','2020-07-23 17:25:03.759902'),(703,'social_django','0009_auto_20191118_0520','2020-07-23 17:25:03.981568'),(704,'social_django','0010_uid_db_index','2020-07-23 17:25:04.537067'),(705,'student','0032_removed_logout_view_configuration','2020-07-23 17:25:05.028705'),(706,'student','0033_userprofile_state','2020-07-23 17:25:05.329812'),(707,'student','0034_courseenrollmentcelebration','2020-07-23 17:25:05.726497'),(708,'video_pipeline','0004_vempipelineintegration','2020-07-23 17:25:06.102203'),(709,'video_pipeline','0005_add_vem_course_percentage','2020-07-23 17:25:06.446973'),(710,'student','0001_squashed_0031_auto_20200317_1122','2020-07-23 17:25:06.454312'),(711,'sap_success_factors','0001_squashed_0022_auto_20200206_1046','2020-07-23 17:25:06.457305'),(712,'organizations','0001_squashed_0007_historicalorganization','2020-07-23 17:25:06.460046'),(713,'third_party_auth','0001_squashed_0026_auto_20200401_1932','2020-07-23 17:25:06.462721'),(714,'integrated_channel','0001_squashed_0007_auto_20190925_0730','2020-07-23 17:25:06.465417'),(715,'edxval','0001_squashed_0016_add_transcript_credentials_model','2020-07-23 17:25:06.467577'),(716,'submissions','0001_squashed_0005_CreateTeamModel','2020-07-23 17:25:06.470857'),(717,'enterprise','0001_squashed_0092_auto_20200312_1650','2020-07-23 17:25:06.473303'),(718,'contentstore','0005_add_enable_checklists_quality_waffle_flag','2020-07-23 17:25:29.878698'); +/*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Current Database: `edxmktg` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `edxmktg` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `edxmktg`; + +-- +-- Current Database: `mysql` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `mysql` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `mysql`; + +-- +-- Table structure for table `columns_priv` +-- + +DROP TABLE IF EXISTS `columns_priv`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `columns_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', + PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `columns_priv` +-- + +LOCK TABLES `columns_priv` WRITE; +/*!40000 ALTER TABLE `columns_priv` DISABLE KEYS */; +/*!40000 ALTER TABLE `columns_priv` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `db` +-- + +DROP TABLE IF EXISTS `db`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `db` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + PRIMARY KEY (`Host`,`Db`,`User`), + KEY `User` (`User`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `db` +-- + +LOCK TABLES `db` WRITE; +/*!40000 ALTER TABLE `db` DISABLE KEYS */; +INSERT INTO `db` VALUES ('%','discovery','discov001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','credentials','credentials001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','ecommerce','ecomm001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','edxmktg','edxmktg001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','notes','notes001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','registrar','registrar001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','xqueue','xqueue001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','edxapp','edxapp001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','edxapp_csmh','edxapp001','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); +/*!40000 ALTER TABLE `db` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `event` +-- + +DROP TABLE IF EXISTS `event`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `event` ( + `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `name` char(64) NOT NULL DEFAULT '', + `body` longblob NOT NULL, + `definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `execute_at` datetime DEFAULT NULL, + `interval_value` int(11) DEFAULT NULL, + `interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL, + `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + `last_executed` datetime DEFAULT NULL, + `starts` datetime DEFAULT NULL, + `ends` datetime DEFAULT NULL, + `status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED', + `on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP', + `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', + `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `originator` int(10) unsigned NOT NULL, + `time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM', + `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `body_utf8` longblob, + PRIMARY KEY (`db`,`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `event` +-- + +LOCK TABLES `event` WRITE; +/*!40000 ALTER TABLE `event` DISABLE KEYS */; +/*!40000 ALTER TABLE `event` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `func` +-- + +DROP TABLE IF EXISTS `func`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `func` ( + `name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `ret` tinyint(1) NOT NULL DEFAULT '0', + `dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '', + `type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL, + PRIMARY KEY (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `func` +-- + +LOCK TABLES `func` WRITE; +/*!40000 ALTER TABLE `func` DISABLE KEYS */; +/*!40000 ALTER TABLE `func` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `help_category` +-- + +DROP TABLE IF EXISTS `help_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `help_category` ( + `help_category_id` smallint(5) unsigned NOT NULL, + `name` char(64) NOT NULL, + `parent_category_id` smallint(5) unsigned DEFAULT NULL, + `url` text NOT NULL, + PRIMARY KEY (`help_category_id`), + UNIQUE KEY `name` (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help categories'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `help_category` +-- + +LOCK TABLES `help_category` WRITE; +/*!40000 ALTER TABLE `help_category` DISABLE KEYS */; +INSERT INTO `help_category` VALUES (0,'Contents',0,''),(1,'Help Metadata',0,''),(2,'Data Types',0,''),(3,'Administration',0,''),(4,'Procedures',0,''),(5,'Language Structure',0,''),(6,'Geographic Features',0,''),(7,'MBR',6,''),(8,'WKT',6,''),(9,'Functions',0,''),(10,'Comparison Operators',9,''),(11,'Logical Operators',9,''),(12,'Control Flow Functions',9,''),(13,'Numeric Functions',9,''),(14,'Date and Time Functions',9,''),(15,'String Functions',9,''),(16,'Bit Functions',9,''),(17,'Encryption Functions',9,''),(18,'Locking Functions',9,''),(19,'Information Functions',9,''),(20,'Spatial Functions',9,''),(21,'WKT Functions',20,''),(22,'WKB Functions',20,''),(23,'Geometry Constructors',20,''),(24,'Geometry Property Functions',20,''),(25,'Point Property Functions',20,''),(26,'LineString Property Functions',20,''),(27,'Polygon Property Functions',20,''),(28,'GeometryCollection Property Functions',20,''),(29,'Geometry Relation Functions',20,''),(30,'MBR Functions',20,''),(31,'GROUP BY Functions and Modifiers',9,''),(32,'Miscellaneous Functions',9,''),(33,'Data Definition',0,''),(34,'Data Manipulation',0,''),(35,'Transactions',0,''),(36,'Compound Statements',0,''),(37,'Account Management',0,''),(38,'Table Maintenance',0,''),(39,'User-Defined Functions',0,''),(40,'Plugins',0,''),(41,'Utility',0,''),(42,'Storage Engines',0,''); +/*!40000 ALTER TABLE `help_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `help_keyword` +-- + +DROP TABLE IF EXISTS `help_keyword`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `help_keyword` ( + `help_keyword_id` int(10) unsigned NOT NULL, + `name` char(64) NOT NULL, + PRIMARY KEY (`help_keyword_id`), + UNIQUE KEY `name` (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help keywords'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `help_keyword` +-- + +LOCK TABLES `help_keyword` WRITE; +/*!40000 ALTER TABLE `help_keyword` DISABLE KEYS */; +INSERT INTO `help_keyword` VALUES (0,'HELP_DATE'),(1,'HELP_VERSION'),(2,'DEFAULT'),(3,'SERIAL'),(4,'VALUE'),(5,'HELP'),(6,'ANALYSE'),(7,'PROCEDURE'),(8,'CACHE'),(9,'FLUSH'),(10,'QUERY'),(11,'RESET'),(12,'FALSE'),(13,'TRUE'),(14,'BOOL'),(15,'BOOLEAN'),(16,'INT1'),(17,'UNSIGNED'),(18,'ZEROFILL'),(19,'INT2'),(20,'INT3'),(21,'MIDDLEINT'),(22,'INT4'),(23,'INTEGER'),(24,'INT8'),(25,'DEC'),(26,'FIXED'),(27,'NUMERIC'),(28,'DECIMAL'),(29,'FLOAT4'),(30,'FLOAT8'),(31,'PRECISION'),(32,'REAL'),(33,'DATE'),(34,'TIMESTAMP'),(35,'TIME'),(36,'CHARACTER'),(37,'NATIONAL'),(38,'NCHAR'),(39,'BYTE'),(40,'CHAR'),(41,'NVARCHAR'),(42,'VARCHARACTER'),(43,'VARYING'),(44,'LONG'),(45,'LONGBINARY'),(46,'ADD'),(47,'ALTER'),(48,'CREATE'),(49,'INDEX'),(50,'KEY'),(51,'TABLE'),(52,'='),(53,'<=>'),(54,'<>'),(55,'<='),(56,'<'),(57,'>='),(58,'>'),(59,'AND'),(60,'BETWEEN'),(61,'NOT'),(62,'COALESCE'),(63,'GREATEST'),(64,'IN'),(65,'INTERVAL'),(66,'IS'),(67,'NULL'),(68,'ISNULL'),(69,'LEAST'),(70,'OR'),(71,'XOR'),(72,':='),(73,'CASE'),(74,'ELSE'),(75,'END'),(76,'THEN'),(77,'WHEN'),(78,'IF'),(79,'IFNULL'),(80,'NULLIF'),(81,'+'),(82,'-'),(83,'*'),(84,'/'),(85,'DIV'),(86,'MOD'),(87,'ABS'),(88,'ACOS'),(89,'ASIN'),(90,'ATAN'),(91,'ATAN2'),(92,'CEIL'),(93,'CEILING'),(94,'CONV'),(95,'COS'),(96,'COT'),(97,'CRC32'),(98,'DEGREES'),(99,'EXP'),(100,'FLOOR'),(101,'LN'),(102,'LOG'),(103,'LOG2'),(104,'LOG10'),(105,'%'),(106,'PI'),(107,'POW'),(108,'POWER'),(109,'RADIANS'),(110,'RAND'),(111,'ROUND'),(112,'SIGN'),(113,'SIN'),(114,'SQRT'),(115,'TAN'),(116,'TRUNCATE'),(117,'ADDDATE'),(118,'ADDTIME'),(119,'CONVERT_TZ'),(120,'CURDATE'),(121,'CURRENT_DATE'),(122,'CURRENT_TIME'),(123,'CURRENT_TIMESTAMP'),(124,'CURTIME'),(125,'DATEDIFF'),(126,'DATE_ADD'),(127,'DATE_SUB'),(128,'DAY'),(129,'DAY_HOUR'),(130,'DAY_MINUTE'),(131,'DAY_SECOND'),(132,'HOUR'),(133,'HOUR_MINUTE'),(134,'HOUR_SECOND'),(135,'MINUTE'),(136,'MINUTE_SECOND'),(137,'MONTH'),(138,'SECOND'),(139,'YEAR'),(140,'YEAR_MONTH'),(141,'DATE_FORMAT'),(142,'DAYNAME'),(143,'DAYOFMONTH'),(144,'DAYOFWEEK'),(145,'DAYOFYEAR'),(146,'EXTRACT'),(147,'FROM_DAYS'),(148,'FROM_UNIXTIME'),(149,'GET_FORMAT'),(150,'LAST_DAY'),(151,'LOCALTIME'),(152,'LOCALTIMESTAMP'),(153,'MAKEDATE'),(154,'MAKETIME'),(155,'MICROSECOND'),(156,'MONTHNAME'),(157,'NOW'),(158,'PERIOD_ADD'),(159,'PERIOD_DIFF'),(160,'QUARTER'),(161,'SEC_TO_TIME'),(162,'STR_TO_DATE'),(163,'SUBDATE'),(164,'SUBTIME'),(165,'SYSDATE'),(166,'FUNCTION'),(167,'TIMEDIFF'),(168,'TIMESTAMPADD'),(169,'TIMESTAMPDIFF'),(170,'TIME_FORMAT'),(171,'TIME_TO_SEC'),(172,'TO_DAYS'),(173,'TO_SECONDS'),(174,'UNIX_TIMESTAMP'),(175,'UTC_DATE'),(176,'UTC_TIME'),(177,'UTC_TIMESTAMP'),(178,'WEEK'),(179,'WEEKDAY'),(180,'WEEKOFYEAR'),(181,'YEARWEEK'),(182,'ASCII'),(183,'BIN'),(184,'BIT_LENGTH'),(185,'CHAR_LENGTH'),(186,'CHARACTER_LENGTH'),(187,'CONCAT'),(188,'CONCAT_WS'),(189,'ELT'),(190,'EXPORT_SET'),(191,'FIELD'),(192,'FIND_IN_SET'),(193,'FORMAT'),(194,'FROM_BASE64'),(195,'HEX'),(196,'INSERT'),(197,'INSTR'),(198,'LCASE'),(199,'LEFT'),(200,'LENGTH'),(201,'LOAD_FILE'),(202,'LOCATE'),(203,'LOWER'),(204,'LPAD'),(205,'LTRIM'),(206,'MAKE_SET'),(207,'MID'),(208,'OCT'),(209,'OCTET_LENGTH'),(210,'ORD'),(211,'POSITION'),(212,'QUOTE'),(213,'REPEAT'),(214,'REPLACE'),(215,'REVERSE'),(216,'RIGHT'),(217,'RPAD'),(218,'RTRIM'),(219,'SOUNDEX'),(220,'LIKE'),(221,'SOUNDS'),(222,'SPACE'),(223,'SUBSTR'),(224,'SUBSTRING'),(225,'SUBSTRING_INDEX'),(226,'TO_BASE64'),(227,'BOTH'),(228,'FROM'),(229,'LEADING'),(230,'TRAILING'),(231,'TRIM'),(232,'UCASE'),(233,'UNHEX'),(234,'UPPER'),(235,'WEIGHT_STRING'),(236,'ESCAPE'),(237,'STRCMP'),(238,'REGEXP'),(239,'RLIKE'),(240,'AGAINST'),(241,'EXPANSION'),(242,'MATCH'),(243,'MODE'),(244,'WITH'),(245,'BINARY'),(246,'CAST'),(247,'CONVERT'),(248,'DATETIME'),(249,'SIGNED'),(250,'EXTRACTVALUE'),(251,'UPDATEXML'),(252,'|'),(253,'&'),(254,'^'),(255,'<<'),(256,'>>'),(257,'~'),(258,'BIT_COUNT'),(259,'AES_DECRYPT'),(260,'AES_ENCRYPT'),(261,'COMPRESS'),(262,'DECODE'),(263,'DES_DECRYPT'),(264,'DES_ENCRYPT'),(265,'ENCODE'),(266,'ENCRYPT'),(267,'MD5'),(268,'OLD_PASSWORD'),(269,'PASSWORD'),(270,'RANDOM_BYTES'),(271,'SHA'),(272,'SHA1'),(273,'SHA2'),(274,'UNCOMPRESS'),(275,'UNCOMPRESSED_LENGTH'),(276,'VALIDATE_PASSWORD_STRENGTH'),(277,'GET_LOCK'),(278,'IS_FREE_LOCK'),(279,'IS_USED_LOCK'),(280,'RELEASE_LOCK'),(281,'BENCHMARK'),(282,'CHARSET'),(283,'COERCIBILITY'),(284,'COLLATION'),(285,'CONNECTION_ID'),(286,'CURRENT_USER'),(287,'DATABASE'),(288,'FOUND_ROWS'),(289,'LAST_INSERT_ID'),(290,'ROW_COUNT'),(291,'SCHEMA'),(292,'SESSION_USER'),(293,'SYSTEM_USER'),(294,'USER'),(295,'VERSION'),(296,'GEOMCOLLFROMTEXT'),(297,'GEOMETRYCOLLECTIONFROMTEXT'),(298,'GEOMETRYFROMTEXT'),(299,'GEOMFROMTEXT'),(300,'LINEFROMTEXT'),(301,'LINESTRINGFROMTEXT'),(302,'MLINEFROMTEXT'),(303,'MULTILINESTRINGFROMTEXT'),(304,'MPOINTFROMTEXT'),(305,'MULTIPOINTFROMTEXT'),(306,'MPOLYFROMTEXT'),(307,'MULTIPOLYGONFROMTEXT'),(308,'POINTFROMTEXT'),(309,'POLYFROMTEXT'),(310,'POLYGONFROMTEXT'),(311,'ST_GEOMCOLLFROMTEXT'),(312,'ST_GEOMETRYCOLLECTIONFROMTEXT'),(313,'ST_GEOMETRYFROMTEXT'),(314,'ST_GEOMFROMTEXT'),(315,'ST_LINEFROMTEXT'),(316,'ST_LINESTRINGFROMTEXT'),(317,'ST_POINTFROMTEXT'),(318,'ST_POLYFROMTEXT'),(319,'ST_POLYGONFROMTEXT'),(320,'GEOMCOLLFROMWKB'),(321,'GEOMETRYCOLLECTIONFROMWKB'),(322,'GEOMETRYFROMWKB'),(323,'GEOMFROMWKB'),(324,'LINEFROMWKB'),(325,'LINESTRINGFROMWKB'),(326,'MLINEFROMWKB'),(327,'MULTILINESTRINGFROMWKB'),(328,'MPOINTFROMWKB'),(329,'MULTIPOINTFROMWKB'),(330,'MPOLYFROMWKB'),(331,'MULTIPOLYGONFROMWKB'),(332,'POINTFROMWKB'),(333,'POLYFROMWKB'),(334,'POLYGONFROMWKB'),(335,'ST_GEOMCOLLFROMWKB'),(336,'ST_GEOMETRYCOLLECTIONFROMWKB'),(337,'ST_GEOMETRYFROMWKB'),(338,'ST_GEOMFROMWKB'),(339,'ST_LINEFROMWKB'),(340,'ST_LINESTRINGFROMWKB'),(341,'ST_POINTFROMWKB'),(342,'ST_POLYFROMWKB'),(343,'ST_POLYGONFROMWKB'),(344,'GEOMETRYCOLLECTION'),(345,'LINESTRING'),(346,'MULTILINESTRING'),(347,'MULTIPOINT'),(348,'MULTIPOLYGON'),(349,'POINT'),(350,'POLYGON'),(351,'ASBINARY'),(352,'ASWKB'),(353,'ASTEXT'),(354,'ASWKT'),(355,'ST_ASBINARY'),(356,'ST_ASWKB'),(357,'ST_ASTEXT'),(358,'ST_ASWKT'),(359,'DIMENSION'),(360,'ENVELOPE'),(361,'GEOMETRYTYPE'),(362,'ISEMPTY'),(363,'ISSIMPLE'),(364,'SRID'),(365,'ST_DIMENSION'),(366,'ST_ENVELOPE'),(367,'ST_GEOMETRYTYPE'),(368,'ST_ISEMPTY'),(369,'ST_ISSIMPLE'),(370,'ST_SRID'),(371,'ST_X'),(372,'ST_Y'),(373,'X'),(374,'Y'),(375,'ENDPOINT'),(376,'GLENGTH'),(377,'ISCLOSED'),(378,'NUMPOINTS'),(379,'POINTN'),(380,'ST_ENDPOINT'),(381,'ST_ISCLOSED'),(382,'ST_NUMPOINTS'),(383,'ST_POINTN'),(384,'ST_STARTPOINT'),(385,'STARTPOINT'),(386,'AREA'),(387,'CENTROID'),(388,'EXTERIORRING'),(389,'INTERIORRINGN'),(390,'NUMINTERIORRINGS'),(391,'ST_AREA'),(392,'ST_CENTROID'),(393,'ST_EXTERIORRING'),(394,'ST_INTERIORRINGN'),(395,'ST_NUMINTERIORRINGS'),(396,'GEOMETRYN'),(397,'NUMGEOMETRIES'),(398,'ST_GEOMETRYN'),(399,'ST_NUMGEOMETRIES'),(400,'BUFFER'),(401,'ST_BUFFER'),(402,'ST_DIFFERENCE'),(403,'ST_INTERSECTION'),(404,'ST_SYMDIFFERENCE'),(405,'ST_UNION'),(406,'ST_CONTAINS'),(407,'CROSSES'),(408,'ST_CROSSES'),(409,'ST_DISJOINT'),(410,'ST_DISTANCE'),(411,'ST_EQUALS'),(412,'ST_INTERSECTS'),(413,'ST_OVERLAPS'),(414,'ST_TOUCHES'),(415,'ST_WITHIN'),(416,'TOUCHES'),(417,'MBRCONTAINS'),(418,'MBRDISJOINT'),(419,'MBREQUAL'),(420,'MBRINTERSECTS'),(421,'MBROVERLAPS'),(422,'MBRTOUCHES'),(423,'MBRWITHIN'),(424,'CONTAINS'),(425,'DISJOINT'),(426,'EQUALS'),(427,'INTERSECTS'),(428,'OVERLAPS'),(429,'WITHIN'),(430,'GTID_SUBSET'),(431,'GTID_SUBTRACT'),(432,'SQL_THREAD_WAIT_AFTER_GTIDS'),(433,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS'),(434,'ASYMMETRIC_DECRYPT'),(435,'ASYMMETRIC_DERIVE'),(436,'ASYMMETRIC_ENCRYPT'),(437,'ASYMMETRIC_SIGN'),(438,'ASYMMETRIC_VERIFY'),(439,'CREATE_ASYMMETRIC_PRIV_KEY'),(440,'CREATE_ASYMMETRIC_PUB_KEY'),(441,'CREATE_DH_PARAMETERS'),(442,'CREATE_DIGEST'),(443,'AVG'),(444,'DISTINCT'),(445,'BIT_AND'),(446,'BIT_OR'),(447,'BIT_XOR'),(448,'COUNT'),(449,'ASC'),(450,'BY'),(451,'DESC'),(452,'GROUP_CONCAT'),(453,'ORDER'),(454,'SEPARATOR'),(455,'MAX'),(456,'MIN'),(457,'STD'),(458,'STDDEV'),(459,'STDDEV_POP'),(460,'STDDEV_SAMP'),(461,'SUM'),(462,'VAR_POP'),(463,'VAR_SAMP'),(464,'VARIANCE'),(465,'INET_ATON'),(466,'INET_NTOA'),(467,'INET6_ATON'),(468,'INET6_NTOA'),(469,'IS_IPV4'),(470,'IS_IPV4_COMPAT'),(471,'IS_IPV4_MAPPED'),(472,'IS_IPV6'),(473,'MASTER_POS_WAIT'),(474,'NAME_CONST'),(475,'SLEEP'),(476,'UUID'),(477,'UUID_SHORT'),(478,'VALUES'),(479,'COLLATE'),(480,'DATA'),(481,'DIRECTORY'),(482,'NAME'),(483,'SET'),(484,'UPGRADE'),(485,'COMMENT'),(486,'COMPLETION'),(487,'DEFINER'),(488,'DISABLE'),(489,'DO'),(490,'ENABLE'),(491,'EVENT'),(492,'ON'),(493,'PRESERVE'),(494,'RENAME'),(495,'SCHEDULE'),(496,'SLAVE'),(497,'GROUP'),(498,'LOGFILE'),(499,'OPTIONS'),(500,'SERVER'),(501,'AFTER'),(502,'ALGORITHM'),(503,'ANALYZE'),(504,'AUTO_INCREMENT'),(505,'AVG_ROW_LENGTH'),(506,'CHANGE'),(507,'CHECK'),(508,'CHECKSUM'),(509,'COLUMN'),(510,'COLUMNS'),(511,'CONNECTION'),(512,'CONSTRAINT'),(513,'DELAY_KEY_WRITE'),(514,'DISCARD'),(515,'DROP'),(516,'ENGINE'),(517,'EXCHANGE'),(518,'FIRST'),(519,'FOREIGN'),(520,'FULLTEXT'),(521,'IGNORE'),(522,'IMPORT'),(523,'INSERT_METHOD'),(524,'KEYS'),(525,'KEY_BLOCK_SIZE'),(526,'LOCK'),(527,'MAX_ROWS'),(528,'MIN_ROWS'),(529,'MODIFY'),(530,'OPTIMIZE'),(531,'PACK_KEYS'),(532,'PARSER'),(533,'PARTITION'),(534,'PRIMARY'),(535,'REBUILD'),(536,'REMOVE'),(537,'REORGANIZE'),(538,'REPAIR'),(539,'ROW_FORMAT'),(540,'SPATIAL'),(541,'STATS_AUTO_RECALC'),(542,'STATS_PERSISTENT'),(543,'STATS_SAMPLE_PAGES'),(544,'TABLESPACE'),(545,'TYPE'),(546,'UNION'),(547,'UNIQUE'),(548,'DATAFILE'),(549,'INITIAL_SIZE'),(550,'WAIT'),(551,'VIEW'),(552,'EXISTS'),(553,'AT'),(554,'ENDS'),(555,'EVERY'),(556,'STARTS'),(557,'BTREE'),(558,'HOST'),(559,'OWNER'),(560,'PORT'),(561,'SOCKET'),(562,'WRAPPER'),(563,'ACTION'),(564,'ARCHIVE'),(565,'CASCADE'),(566,'COMPACT'),(567,'COMPRESSED'),(568,'CSV'),(569,'DELETE'),(570,'DYNAMIC'),(571,'FEDERATED'),(572,'FULL'),(573,'HEAP'),(574,'INNODB'),(575,'MERGE'),(576,'MRG_MYISAM'),(577,'MYISAM'),(578,'NDB'),(579,'NDBCLUSTER'),(580,'NO'),(581,'PARTIAL'),(582,'REDUNDANT'),(583,'REFERENCES'),(584,'RESTRICT'),(585,'UPDATE'),(586,'AUTOEXTEND_SIZE'),(587,'EXTENT_SIZE'),(588,'MAX_SIZE'),(589,'NODEGROUP'),(590,'USE'),(591,'TRIGGER'),(592,'TEMPORARY'),(593,'CALL'),(594,'LIMIT'),(595,'LOW_PRIORITY'),(596,'QUICK'),(597,'USING'),(598,'WHERE'),(599,'CLOSE'),(600,'HANDLER'),(601,'LAST'),(602,'NEXT'),(603,'OPEN'),(604,'PREV'),(605,'READ'),(606,'DELAYED'),(607,'DUPLICATE'),(608,'HIGH_PRIORITY'),(609,'INTO'),(610,'SELECT'),(611,'CONCURRENT'),(612,'ENCLOSED'),(613,'ESCAPED'),(614,'FIELDS'),(615,'INFILE'),(616,'LINES'),(617,'LOAD'),(618,'LOCAL'),(619,'OPTIONALLY'),(620,'STARTING'),(621,'TERMINATED'),(622,'IDENTIFIED'),(623,'ROWS'),(624,'ALL'),(625,'AS'),(626,'DISTINCTROW'),(627,'DUMPFILE'),(628,'FOR'),(629,'HAVING'),(630,'JOIN'),(631,'MEMORY'),(632,'OFFSET'),(633,'OUTFILE'),(634,'SHARE'),(635,'SQL_BIG_RESULT'),(636,'SQL_BUFFER_RESULT'),(637,'SQL_CACHE'),(638,'SQL_CALC_FOUND_ROWS'),(639,'SQL_NO_CACHE'),(640,'SQL_SMALL_RESULT'),(641,'STRAIGHT_JOIN'),(642,'DUAL'),(643,'CROSS'),(644,'FORCE'),(645,'INNER'),(646,'NATURAL'),(647,'OUTER'),(648,'AUTOCOMMIT'),(649,'BEGIN'),(650,'CHAIN'),(651,'COMMIT'),(652,'CONSISTENT'),(653,'ONLY'),(654,'RELEASE'),(655,'ROLLBACK'),(656,'SNAPSHOT'),(657,'START'),(658,'TRANSACTION'),(659,'WORK'),(660,'WRITE'),(661,'SAVEPOINT'),(662,'TO'),(663,'TABLES'),(664,'UNLOCK'),(665,'COMMITTED'),(666,'GLOBAL'),(667,'ISOLATION'),(668,'LEVEL'),(669,'REPEATABLE'),(670,'SERIALIZABLE'),(671,'SESSION'),(672,'UNCOMMITTED'),(673,'PREPARE'),(674,'RECOVER'),(675,'XA'),(676,'BEFORE'),(677,'LOGS'),(678,'MASTER'),(679,'PURGE'),(680,'SQL_LOG_BIN'),(681,'IGNORE_SERVER_IDS'),(682,'MASTER_AUTO_POSITION'),(683,'MASTER_BIND'),(684,'MASTER_CONNECT_RETRY'),(685,'MASTER_HEARTBEAT_PERIOD'),(686,'MASTER_HOST'),(687,'MASTER_LOG_FILE'),(688,'MASTER_LOG_POS'),(689,'MASTER_PASSWORD'),(690,'MASTER_PORT'),(691,'MASTER_RETRY_COUNT'),(692,'MASTER_SSL'),(693,'MASTER_SSL_CA'),(694,'MASTER_SSL_CERT'),(695,'MASTER_SSL_CIPHER'),(696,'MASTER_SSL_CRL'),(697,'MASTER_SSL_CRLPATH'),(698,'MASTER_SSL_KEY'),(699,'MASTER_SSL_VERIFY_SERVER_CERT'),(700,'MASTER_USER'),(701,'RELAY_LOG_FILE'),(702,'RELAY_LOG_POS'),(703,'SQL_SLAVE_SKIP_COUNTER'),(704,'DEFAULT_AUTH'),(705,'IO_THREAD'),(706,'PLUGIN_DIR'),(707,'SQL_AFTER_GTIDS'),(708,'SQL_AFTER_MTS_GAPS'),(709,'SQL_BEFORE_GTIDS'),(710,'SQL_THREAD'),(711,'STOP'),(712,'EXECUTE'),(713,'DEALLOCATE'),(714,'DECLARE'),(715,'ELSEIF'),(716,'ITERATE'),(717,'LEAVE'),(718,'LOOP'),(719,'UNTIL'),(720,'RETURN'),(721,'WHILE'),(722,'CURSOR'),(723,'FETCH'),(724,'CONDITION'),(725,'CONTINUE'),(726,'EXIT'),(727,'UNDO'),(728,'CATALOG_NAME'),(729,'CLASS_ORIGIN'),(730,'COLUMN_NAME'),(731,'CONSTRAINT_CATALOG'),(732,'CONSTRAINT_NAME'),(733,'CONSTRAINT_SCHEMA'),(734,'CURSOR_NAME'),(735,'DIAGNOSTICS'),(736,'GET'),(737,'MESSAGE_TEXT'),(738,'MYSQL_ERRNO'),(739,'NUMBER'),(740,'RETURNED_SQLSTATE'),(741,'SCHEMA_NAME'),(742,'SUBCLASS_ORIGIN'),(743,'TABLE_NAME'),(744,'RESIGNAL'),(745,'SQLSTATE'),(746,'SIGNAL'),(747,'EXPIRE'),(748,'CIPHER'),(749,'CLIENT'),(750,'FILE'),(751,'GRANT'),(752,'ISSUER'),(753,'MAX_CONNECTIONS_PER_HOUR'),(754,'MAX_QUERIES_PER_HOUR'),(755,'MAX_UPDATES_PER_HOUR'),(756,'MAX_USER_CONNECTIONS'),(757,'NONE'),(758,'OPTION'),(759,'PRIVILEGES'),(760,'PROCESS'),(761,'RELOAD'),(762,'REPLICATION'),(763,'REQUIRE'),(764,'SECURITY'),(765,'SHUTDOWN'),(766,'SSL'),(767,'SUBJECT'),(768,'SUPER'),(769,'USAGE'),(770,'X509'),(771,'PROXY'),(772,'REVOKE'),(773,'NO_WRITE_TO_BINLOG'),(774,'FAST'),(775,'MEDIUM'),(776,'EXTENDED'),(777,'USE_FRM'),(778,'AGGREGATE'),(779,'RETURNS'),(780,'SONAME'),(781,'STRING'),(782,'INSTALL'),(783,'PLUGIN'),(784,'UNINSTALL'),(785,'VARIABLE'),(786,'NAMES'),(787,'AUTHORS'),(788,'CONTRIBUTORS'),(789,'DATABASES'),(790,'ENGINES'),(791,'ERRORS'),(792,'GRANTS'),(793,'HOSTS'),(794,'INDEXES'),(795,'MUTEX'),(796,'PROCESSLIST'),(797,'SCHEMAS'),(798,'SHOW'),(799,'STATUS'),(800,'TRIGGERS'),(801,'VARIABLES'),(802,'WARNINGS'),(803,'BINLOG'),(804,'EVENTS'),(805,'STORAGE'),(806,'CODE'),(807,'PLUGINS'),(808,'PROFILE'),(809,'PROFILES'),(810,'RELAYLOG'),(811,'DES_KEY_FILE'),(812,'ERROR'),(813,'EXPORT'),(814,'GENERAL'),(815,'RELAY'),(816,'SLOW'),(817,'USER_RESOURCES'),(818,'KILL'),(819,'LEAVES'),(820,'DESCRIBE'),(821,'EXPLAIN'),(822,'JSON'),(823,'PARTITIONS'),(824,'TRADITIONAL'); +/*!40000 ALTER TABLE `help_keyword` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `help_relation` +-- + +DROP TABLE IF EXISTS `help_relation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `help_relation` ( + `help_topic_id` int(10) unsigned NOT NULL, + `help_keyword_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`help_keyword_id`,`help_topic_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keyword-topic relation'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `help_relation` +-- + +LOCK TABLES `help_relation` WRITE; +/*!40000 ALTER TABLE `help_relation` DISABLE KEYS */; +INSERT INTO `help_relation` VALUES (0,0),(1,1),(2,2),(416,2),(431,2),(432,2),(438,2),(441,2),(442,2),(449,2),(450,2),(471,2),(476,2),(507,2),(2,3),(449,3),(2,4),(471,4),(476,4),(523,4),(524,4),(3,5),(600,5),(4,6),(4,7),(436,7),(446,7),(447,7),(458,7),(459,7),(477,7),(545,7),(559,7),(577,7),(578,7),(5,8),(592,8),(593,8),(595,8),(596,8),(5,9),(593,9),(5,10),(229,10),(593,10),(594,10),(596,10),(5,11),(494,11),(497,11),(596,11),(6,12),(7,12),(6,13),(7,13),(9,14),(10,14),(9,15),(229,15),(9,16),(9,17),(13,17),(15,17),(16,17),(18,17),(19,17),(232,17),(9,18),(13,18),(15,18),(16,18),(18,18),(19,18),(11,19),(12,20),(12,21),(13,22),(13,23),(232,23),(537,23),(15,24),(16,25),(16,26),(449,26),(16,27),(17,28),(232,28),(537,28),(18,29),(19,30),(19,31),(19,32),(537,32),(21,33),(122,33),(124,33),(232,33),(23,34),(158,34),(24,35),(156,35),(232,35),(26,36),(28,36),(431,36),(432,36),(438,36),(441,36),(442,36),(449,36),(474,36),(475,36),(477,36),(542,36),(543,36),(545,36),(550,36),(26,37),(28,37),(26,38),(27,39),(27,40),(177,40),(232,40),(28,41),(28,42),(28,43),(37,44),(37,45),(46,46),(438,46),(439,46),(451,46),(46,47),(431,47),(432,47),(433,47),(434,47),(435,47),(436,47),(437,47),(438,47),(439,47),(440,47),(525,47),(528,47),(46,48),(441,48),(442,48),(443,48),(444,48),(445,48),(446,48),(447,48),(448,48),(449,48),(451,48),(452,48),(453,48),(526,48),(537,48),(545,48),(555,48),(556,48),(557,48),(558,48),(559,48),(560,48),(46,49),(438,49),(444,49),(449,49),(457,49),(479,49),(545,49),(572,49),(592,49),(595,49),(46,50),(438,50),(449,50),(450,50),(471,50),(46,51),(438,51),(449,51),(461,51),(465,51),(466,51),(532,51),(533,51),(534,51),(535,51),(536,51),(545,51),(560,51),(586,51),(47,52),(72,52),(48,53),(49,54),(50,55),(51,56),(52,57),(53,58),(54,59),(68,59),(54,60),(55,60),(55,61),(59,61),(62,61),(64,61),(67,61),(225,61),(227,61),(441,61),(442,61),(443,61),(56,62),(438,62),(57,63),(58,64),(59,64),(229,64),(477,64),(549,64),(552,64),(553,64),(572,64),(582,64),(60,65),(124,65),(443,65),(61,66),(62,66),(63,66),(64,66),(63,67),(64,67),(450,67),(65,68),(66,69),(69,70),(70,71),(71,72),(73,73),(508,73),(73,74),(508,74),(73,75),(491,75),(505,75),(508,75),(509,75),(512,75),(513,75),(515,75),(73,76),(508,76),(509,76),(73,77),(508,77),(74,78),(441,78),(442,78),(443,78),(454,78),(455,78),(456,78),(460,78),(461,78),(464,78),(509,78),(75,79),(76,80),(77,81),(78,82),(79,82),(80,83),(81,84),(82,85),(83,86),(102,86),(84,87),(85,88),(86,89),(87,90),(88,91),(89,92),(90,93),(91,94),(92,95),(93,96),(94,97),(95,98),(96,99),(97,100),(98,101),(99,102),(100,103),(101,104),(102,105),(103,106),(104,107),(105,108),(106,109),(107,110),(108,111),(109,112),(110,113),(111,114),(112,115),(113,116),(438,116),(466,116),(114,117),(115,118),(116,119),(117,120),(118,121),(119,122),(120,123),(121,124),(123,125),(124,126),(124,127),(126,127),(124,128),(127,128),(124,129),(124,130),(124,131),(124,132),(136,132),(124,133),(124,134),(124,135),(143,135),(124,136),(124,137),(144,137),(124,138),(150,138),(124,139),(172,139),(124,140),(125,141),(128,142),(129,143),(130,144),(131,145),(132,146),(133,147),(134,148),(135,149),(137,150),(138,151),(139,152),(140,153),(141,154),(142,155),(145,156),(146,157),(147,158),(148,159),(149,160),(151,161),(152,162),(153,163),(154,164),(155,165),(156,166),(158,166),(207,166),(434,166),(446,166),(447,166),(458,166),(459,166),(537,166),(538,166),(545,166),(558,166),(569,166),(570,166),(157,167),(159,168),(160,169),(161,170),(162,171),(163,172),(164,173),(165,174),(166,175),(167,176),(168,177),(169,178),(170,179),(171,180),(173,181),(174,182),(175,183),(176,184),(178,185),(179,186),(180,187),(181,188),(182,189),(183,190),(184,191),(185,192),(186,193),(597,193),(598,193),(599,193),(187,194),(188,195),(189,196),(471,196),(472,196),(473,196),(190,197),(191,198),(192,199),(479,199),(193,200),(194,201),(195,202),(196,203),(197,204),(198,205),(199,206),(200,207),(201,208),(202,209),(203,210),(204,211),(205,212),(206,213),(513,213),(207,214),(474,214),(475,214),(476,214),(208,215),(209,216),(479,216),(210,217),(211,218),(212,219),(213,220),(225,220),(545,220),(552,220),(553,220),(213,221),(214,222),(215,223),(216,224),(217,225),(218,226),(219,227),(219,228),(468,228),(477,228),(545,228),(549,228),(552,228),(553,228),(572,228),(582,228),(219,229),(219,230),(219,231),(220,232),(221,233),(222,234),(223,235),(224,236),(226,237),(227,238),(228,239),(229,240),(229,241),(229,242),(229,243),(477,243),(229,244),(438,244),(444,244),(449,244),(528,244),(593,244),(230,245),(232,245),(492,245),(493,245),(547,245),(548,245),(593,245),(231,246),(231,247),(232,247),(232,248),(232,249),(233,250),(234,251),(235,252),(236,253),(237,254),(238,255),(239,256),(240,257),(241,258),(242,259),(243,260),(244,261),(245,262),(246,263),(247,264),(248,265),(249,266),(250,267),(251,268),(252,269),(438,269),(448,269),(499,269),(525,269),(526,269),(528,269),(531,269),(253,270),(254,271),(254,272),(255,273),(256,274),(257,275),(258,276),(259,277),(260,278),(261,279),(262,280),(263,281),(264,282),(542,282),(543,282),(265,283),(266,284),(545,284),(551,284),(267,285),(268,286),(433,286),(443,286),(269,287),(431,287),(432,287),(441,287),(442,287),(448,287),(454,287),(455,287),(545,287),(555,287),(556,287),(270,288),(271,289),(272,290),(522,290),(273,291),(431,291),(432,291),(441,291),(442,291),(454,291),(455,291),(545,291),(555,291),(556,291),(274,292),(275,293),(276,294),(448,294),(499,294),(525,294),(526,294),(527,294),(529,294),(277,295),(278,296),(278,297),(279,298),(279,299),(280,300),(280,301),(281,302),(281,303),(282,304),(282,305),(283,306),(283,307),(284,308),(285,309),(285,310),(286,311),(286,312),(287,313),(287,314),(288,315),(288,316),(289,317),(290,318),(290,319),(291,320),(291,321),(292,322),(292,323),(293,324),(293,325),(294,326),(294,327),(295,328),(295,329),(296,330),(296,331),(297,332),(298,333),(298,334),(299,335),(299,336),(300,337),(300,338),(301,339),(301,340),(302,341),(303,342),(303,343),(304,344),(305,345),(306,346),(307,347),(308,348),(309,349),(310,350),(311,351),(311,352),(312,353),(312,354),(313,355),(313,356),(314,357),(314,358),(315,359),(316,360),(317,361),(318,362),(319,363),(320,364),(321,365),(322,366),(323,367),(324,368),(325,369),(326,370),(327,371),(328,372),(329,373),(330,374),(331,375),(332,376),(333,377),(334,378),(335,379),(336,380),(337,381),(338,382),(339,383),(340,384),(341,385),(342,386),(343,387),(344,388),(345,389),(346,390),(347,391),(348,392),(349,393),(350,394),(351,395),(352,396),(353,397),(354,398),(355,399),(356,400),(357,401),(358,402),(359,403),(360,404),(361,405),(362,406),(363,407),(364,408),(365,409),(366,410),(367,411),(368,412),(369,413),(370,414),(371,415),(372,416),(373,417),(374,418),(375,419),(376,420),(377,421),(378,422),(379,423),(380,424),(381,425),(382,426),(383,427),(384,428),(385,429),(386,430),(387,431),(388,432),(389,433),(390,434),(391,435),(392,436),(393,437),(394,438),(395,439),(396,440),(397,441),(398,442),(399,443),(399,444),(404,444),(405,444),(406,444),(407,444),(412,444),(477,444),(480,444),(400,445),(401,446),(402,447),(403,448),(404,448),(567,448),(590,448),(405,449),(477,449),(405,450),(438,450),(449,450),(468,450),(474,450),(475,450),(477,450),(481,450),(526,450),(528,450),(405,451),(477,451),(597,451),(598,451),(599,451),(405,452),(405,453),(438,453),(468,453),(477,453),(481,453),(405,454),(406,455),(407,456),(408,457),(409,458),(410,459),(411,460),(412,461),(413,462),(414,463),(415,464),(417,465),(418,466),(419,467),(420,468),(421,469),(422,470),(423,471),(424,472),(425,473),(426,474),(427,475),(428,476),(429,477),(430,478),(471,478),(476,478),(431,479),(432,479),(438,479),(441,479),(442,479),(449,479),(431,480),(432,480),(438,480),(448,480),(449,480),(474,480),(431,481),(432,481),(438,481),(449,481),(431,482),(432,482),(431,483),(432,483),(438,483),(441,483),(442,483),(449,483),(450,483),(471,483),(474,483),(475,483),(476,483),(477,483),(481,483),(482,483),(483,483),(484,483),(485,483),(495,483),(498,483),(523,483),(524,483),(531,483),(541,483),(542,483),(543,483),(544,483),(545,483),(550,483),(431,484),(432,484),(533,484),(433,485),(438,485),(443,485),(444,485),(449,485),(451,485),(433,486),(443,486),(433,487),(443,487),(433,488),(438,488),(443,488),(433,489),(443,489),(469,489),(515,489),(433,490),(438,490),(443,490),(433,491),(443,491),(456,491),(557,491),(433,492),(443,492),(450,492),(479,492),(433,493),(443,493),(433,494),(438,494),(465,494),(529,494),(433,495),(443,495),(433,496),(443,496),(497,496),(499,496),(500,496),(583,496),(584,496),(596,496),(435,497),(445,497),(451,497),(477,497),(435,498),(445,498),(451,498),(437,499),(448,499),(437,500),(448,500),(460,500),(438,501),(438,502),(444,502),(457,502),(438,503),(532,503),(438,504),(438,505),(449,505),(438,506),(496,506),(438,507),(449,507),(533,507),(438,508),(449,508),(534,508),(438,509),(438,510),(449,510),(474,510),(545,510),(552,510),(553,510),(438,511),(449,511),(594,511),(438,512),(449,512),(438,513),(449,513),(438,514),(438,515),(439,515),(454,515),(455,515),(456,515),(457,515),(458,515),(459,515),(460,515),(461,515),(462,515),(463,515),(464,515),(503,515),(504,515),(527,515),(538,515),(438,516),(439,516),(449,516),(451,516),(462,516),(545,516),(565,516),(593,516),(438,517),(438,518),(449,518),(470,518),(438,519),(448,519),(449,519),(450,519),(438,520),(444,520),(449,520),(438,521),(471,521),(474,521),(475,521),(477,521),(479,521),(481,521),(595,521),(438,522),(474,522),(438,523),(449,523),(438,524),(545,524),(572,524),(438,525),(449,525),(438,526),(444,526),(457,526),(477,526),(489,526),(593,526),(438,527),(449,527),(438,528),(449,528),(438,529),(438,530),(535,530),(438,531),(449,531),(438,532),(444,532),(449,532),(438,533),(449,533),(468,533),(471,533),(474,533),(476,533),(477,533),(479,533),(592,533),(595,533),(438,534),(438,535),(438,536),(438,537),(438,538),(536,538),(438,539),(449,539),(438,540),(444,540),(438,541),(449,541),(438,542),(449,542),(438,543),(449,543),(438,544),(439,544),(451,544),(462,544),(438,545),(438,546),(480,546),(438,547),(439,548),(451,548),(439,549),(451,549),(439,550),(451,550),(440,551),(453,551),(464,551),(441,552),(442,552),(443,552),(454,552),(455,552),(456,552),(460,552),(461,552),(464,552),(443,553),(443,554),(443,555),(443,556),(444,557),(448,558),(448,559),(448,560),(448,561),(448,562),(449,563),(450,563),(449,564),(449,565),(450,565),(461,565),(464,565),(449,566),(449,567),(449,568),(474,568),(449,569),(450,569),(468,569),(449,570),(449,571),(449,572),(545,572),(552,572),(553,572),(579,572),(587,572),(449,573),(449,574),(545,574),(449,575),(449,576),(449,577),(449,578),(449,579),(449,580),(450,580),(449,581),(449,582),(449,583),(450,583),(528,583),(450,584),(461,584),(464,584),(450,585),(471,585),(477,585),(481,585),(451,586),(451,587),(451,588),(451,589),(451,590),(479,590),(601,590),(452,591),(463,591),(545,591),(461,592),(467,593),(468,594),(470,594),(477,594),(481,594),(549,594),(582,594),(468,595),(471,595),(474,595),(475,595),(476,595),(481,595),(489,595),(468,596),(533,596),(536,596),(468,597),(479,597),(502,597),(468,598),(470,598),(481,598),(552,598),(553,598),(572,598),(470,599),(516,599),(470,600),(521,600),(470,601),(470,602),(470,603),(519,603),(545,603),(574,603),(470,604),(470,605),(482,605),(483,605),(484,605),(485,605),(489,605),(490,605),(491,605),(593,605),(471,606),(473,606),(476,606),(471,607),(471,608),(477,608),(471,609),(476,609),(477,609),(595,609),(471,610),(472,610),(476,610),(477,610),(597,610),(598,610),(599,610),(474,611),(475,611),(474,612),(474,613),(474,614),(545,614),(552,614),(553,614),(474,615),(475,615),(474,616),(475,616),(474,617),(595,617),(474,618),(475,618),(489,618),(532,618),(535,618),(536,618),(593,618),(474,619),(474,620),(474,621),(475,622),(526,622),(528,622),(475,623),(477,624),(480,624),(497,624),(528,624),(530,624),(592,624),(595,624),(477,625),(479,625),(489,625),(477,626),(477,627),(477,628),(517,628),(520,628),(521,628),(531,628),(545,628),(593,628),(477,629),(477,630),(479,630),(477,631),(477,632),(477,633),(477,634),(477,635),(477,636),(477,637),(477,638),(477,639),(477,640),(477,641),(479,641),(478,642),(479,643),(479,644),(479,645),(479,646),(479,647),(482,648),(483,648),(484,648),(485,648),(482,649),(483,649),(484,649),(485,649),(491,649),(505,649),(482,650),(483,650),(484,650),(485,650),(482,651),(483,651),(484,651),(485,651),(491,651),(482,652),(483,652),(484,652),(485,652),(491,652),(482,653),(483,653),(484,653),(485,653),(490,653),(491,653),(482,654),(483,654),(484,654),(485,654),(486,654),(487,654),(488,654),(491,654),(482,655),(483,655),(484,655),(485,655),(486,655),(487,655),(488,655),(491,655),(482,656),(483,656),(484,656),(485,656),(491,656),(482,657),(483,657),(484,657),(485,657),(491,657),(499,657),(482,658),(483,658),(484,658),(485,658),(490,658),(482,659),(483,659),(484,659),(485,659),(482,660),(483,660),(484,660),(485,660),(489,660),(490,660),(491,660),(486,661),(487,661),(488,661),(486,662),(487,662),(488,662),(492,662),(493,662),(496,662),(489,663),(545,663),(574,663),(587,663),(593,663),(489,664),(490,665),(490,666),(498,666),(541,666),(585,666),(589,666),(490,667),(490,668),(490,669),(490,670),(490,671),(541,671),(585,671),(589,671),(490,672),(491,673),(501,673),(503,673),(504,673),(491,674),(491,675),(492,676),(493,676),(492,677),(493,677),(545,677),(547,677),(548,677),(593,677),(492,678),(493,678),(494,678),(496,678),(547,678),(548,678),(573,678),(596,678),(492,679),(493,679),(495,680),(496,681),(496,682),(496,683),(496,684),(496,685),(496,686),(496,687),(496,688),(496,689),(496,690),(496,691),(496,692),(496,693),(496,694),(496,695),(496,696),(496,697),(496,698),(496,699),(496,700),(496,701),(496,702),(498,703),(499,704),(499,705),(500,705),(499,706),(499,707),(499,708),(499,709),(499,710),(500,710),(500,711),(502,712),(528,712),(503,713),(504,713),(507,714),(517,714),(520,714),(521,714),(509,715),(510,716),(511,717),(512,718),(513,719),(514,720),(515,721),(517,722),(518,723),(520,724),(521,725),(521,726),(521,727),(522,728),(523,728),(524,728),(522,729),(523,729),(524,729),(522,730),(523,730),(524,730),(522,731),(523,731),(524,731),(522,732),(523,732),(524,732),(522,733),(523,733),(524,733),(522,734),(523,734),(524,734),(522,735),(522,736),(522,737),(523,737),(524,737),(522,738),(523,738),(524,738),(522,739),(522,740),(522,741),(523,741),(524,741),(522,742),(523,742),(524,742),(522,743),(523,743),(524,743),(523,744),(523,745),(524,745),(524,746),(525,747),(528,748),(528,749),(528,750),(528,751),(530,751),(528,752),(528,753),(528,754),(528,755),(528,756),(528,757),(528,758),(530,758),(528,759),(530,759),(576,759),(593,759),(528,760),(528,761),(528,762),(528,763),(528,764),(528,765),(528,766),(528,767),(528,768),(528,769),(528,770),(530,771),(530,772),(532,773),(535,773),(536,773),(593,773),(533,774),(533,775),(536,776),(597,776),(598,776),(599,776),(536,777),(537,778),(537,779),(537,780),(537,781),(539,782),(539,783),(540,783),(545,783),(540,784),(541,785),(544,786),(545,787),(546,787),(545,788),(554,788),(545,789),(563,789),(564,789),(545,790),(566,790),(545,791),(567,791),(545,792),(571,792),(545,793),(583,793),(593,793),(545,794),(545,795),(565,795),(545,796),(579,796),(545,797),(563,797),(564,797),(545,798),(546,798),(547,798),(548,798),(549,798),(550,798),(551,798),(552,798),(553,798),(554,798),(555,798),(556,798),(557,798),(558,798),(559,798),(560,798),(563,798),(564,798),(565,798),(566,798),(567,798),(568,798),(569,798),(570,798),(571,798),(572,798),(573,798),(574,798),(575,798),(576,798),(577,798),(578,798),(579,798),(580,798),(581,798),(582,798),(583,798),(584,798),(585,798),(586,798),(587,798),(588,798),(589,798),(590,798),(545,799),(565,799),(570,799),(573,799),(578,799),(584,799),(585,799),(586,799),(593,799),(545,800),(588,800),(545,801),(589,801),(545,802),(590,802),(549,803),(591,803),(549,804),(568,804),(582,804),(566,805),(569,806),(577,806),(575,807),(580,808),(581,809),(582,810),(593,811),(593,812),(593,813),(593,814),(593,815),(593,816),(593,817),(594,818),(595,819),(597,820),(598,820),(599,820),(597,821),(598,821),(599,821),(597,822),(598,822),(599,822),(597,823),(598,823),(599,823),(597,824),(598,824),(599,824); +/*!40000 ALTER TABLE `help_relation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `help_topic` +-- + +DROP TABLE IF EXISTS `help_topic`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `help_topic` ( + `help_topic_id` int(10) unsigned NOT NULL, + `name` char(64) NOT NULL, + `help_category_id` smallint(5) unsigned NOT NULL, + `description` text NOT NULL, + `example` text NOT NULL, + `url` text NOT NULL, + PRIMARY KEY (`help_topic_id`), + UNIQUE KEY `name` (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `help_topic` +-- + +LOCK TABLES `help_topic` WRITE; +/*!40000 ALTER TABLE `help_topic` DISABLE KEYS */; +INSERT INTO `help_topic` VALUES (0,'HELP_DATE',1,'This help information was generated from the MySQL 5.6 Reference Manual\non: 2020-06-02\n','',''),(1,'HELP_VERSION',1,'This help information was generated from the MySQL 5.6 Reference Manual\non: 2020-06-02 (revision: 66161)\n\nThis information applies to MySQL 5.6 through 5.6.50.\n','',''),(2,'AUTO_INCREMENT',2,'The AUTO_INCREMENT attribute can be used to generate a unique identity\nfor new rows:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/example-auto-increment.html\n\n','CREATE TABLE animals (\n id MEDIUMINT NOT NULL AUTO_INCREMENT,\n name CHAR(30) NOT NULL,\n PRIMARY KEY (id)\n);\n\nINSERT INTO animals (name) VALUES\n (\'dog\'),(\'cat\'),(\'penguin\'),\n (\'lax\'),(\'whale\'),(\'ostrich\');\n\nSELECT * FROM animals;\n','https://dev.mysql.com/doc/refman/5.6/en/example-auto-increment.html'),(3,'HELP COMMAND',3,'Syntax:\nmysql> help search_string\n\nIf you provide an argument to the help command, mysql uses it as a\nsearch string to access server-side help from the contents of the MySQL\nReference Manual. The proper operation of this command requires that\nthe help tables in the mysql database be initialized with help topic\ninformation (see\nhttps://dev.mysql.com/doc/refman/5.6/en/server-side-help-support.html).\n\nIf there is no match for the search string, the search fails:\n\nmysql> help me\n\nNothing found\nPlease try to run \'help contents\' for a list of all accessible topics\n\nUse help contents to see a list of the help categories:\n\nmysql> help contents\nYou asked for help about help category: \"Contents\"\nFor more information, type \'help \', where is one of the\nfollowing categories:\n Account Management\n Administration\n Data Definition\n Data Manipulation\n Data Types\n Functions\n Functions and Modifiers for Use with GROUP BY\n Geographic Features\n Language Structure\n Plugins\n Storage Engines\n Stored Routines\n Table Maintenance\n Transactions\n Triggers\n\nIf the search string matches multiple items, mysql shows a list of\nmatching topics:\n\nmysql> help logs\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following topics:\n SHOW\n SHOW BINARY LOGS\n SHOW ENGINE\n SHOW LOGS\n\nUse a topic as the search string to see the help entry for that topic:\n\nmysql> help show binary logs\nName: \'SHOW BINARY LOGS\'\nDescription:\nSyntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [purge-binary-logs], that shows how\nto determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP rep% returns a list of topics that\nbegin with rep:\n\nmysql> HELP rep%\nMany help items for your request exist.\nTo make a more specific request, please type \'help \',\nwhere is one of the following\ntopics:\n REPAIR TABLE\n REPEAT FUNCTION\n REPEAT LOOP\n REPLACE\n REPLACE FUNCTION\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mysql-server-side-help.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/mysql-server-side-help.html'),(4,'PROCEDURE ANALYSE',4,'Syntax:\nANALYSE([max_elements[,max_memory]])\n\nANALYSE() examines the result from a query and returns an analysis of\nthe results that suggests optimal data types for each column that may\nhelp reduce table sizes. To obtain this analysis, append PROCEDURE\nANALYSE to the end of a SELECT statement:\n\nSELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]])\n\nFor example:\n\nSELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000);\n\nThe results show some statistics for the values returned by the query,\nand propose an optimal data type for the columns. This can be helpful\nfor checking your existing tables, or after importing new data. You may\nneed to try different settings for the arguments so that PROCEDURE\nANALYSE() does not suggest the ENUM data type when it is not\nappropriate.\n\nThe arguments are optional and are used as follows:\n\no max_elements (default 256) is the maximum number of distinct values\n that ANALYSE() notices per column. This is used by ANALYSE() to check\n whether the optimal data type should be of type ENUM; if there are\n more than max_elements distinct values, then ENUM is not a suggested\n type.\n\no max_memory (default 8192) is the maximum amount of memory that\n ANALYSE() should allocate per column while trying to find all\n distinct values.\n\nA PROCEDURE clause is not permitted in a UNION statement.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/procedure-analyse.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/procedure-analyse.html'),(5,'FLUSH QUERY CACHE',3,'You can defragment the query cache to better utilize its memory with\nthe FLUSH QUERY CACHE statement. The statement does not remove any\nqueries from the cache.\n\nThe RESET QUERY CACHE statement removes all query results from the\nquery cache. The FLUSH TABLES statement also does this.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/query-cache-status-and-maintenance.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/query-cache-status-and-maintenance.html'),(6,'TRUE',5,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/boolean-literals.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/boolean-literals.html'),(7,'FALSE',5,'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The\nconstant names can be written in any lettercase.\n\nmysql> SELECT TRUE, true, FALSE, false;\n -> 1, 1, 0, 0\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/boolean-literals.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/boolean-literals.html'),(8,'BIT',2,'BIT[(M)]\n\nA bit-value type. M indicates the number of bits per value, from 1 to\n64. The default is 1 if M is omitted.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(9,'TINYINT',2,'TINYINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA very small integer. The signed range is -128 to 127. The unsigned\nrange is 0 to 255.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(10,'BOOLEAN',2,'BOOL, BOOLEAN\n\nThese types are synonyms for TINYINT(1). A value of zero is considered\nfalse. Nonzero values are considered true:\n\nmysql> SELECT IF(0, \'true\', \'false\');\n+------------------------+\n| IF(0, \'true\', \'false\') |\n+------------------------+\n| false |\n+------------------------+\n\nmysql> SELECT IF(1, \'true\', \'false\');\n+------------------------+\n| IF(1, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nmysql> SELECT IF(2, \'true\', \'false\');\n+------------------------+\n| IF(2, \'true\', \'false\') |\n+------------------------+\n| true |\n+------------------------+\n\nHowever, the values TRUE and FALSE are merely aliases for 1 and 0,\nrespectively, as shown here:\n\nmysql> SELECT IF(0 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(0 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| true |\n+--------------------------------+\n\nmysql> SELECT IF(1 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(1 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT IF(2 = TRUE, \'true\', \'false\');\n+-------------------------------+\n| IF(2 = TRUE, \'true\', \'false\') |\n+-------------------------------+\n| false |\n+-------------------------------+\n\nmysql> SELECT IF(2 = FALSE, \'true\', \'false\');\n+--------------------------------+\n| IF(2 = FALSE, \'true\', \'false\') |\n+--------------------------------+\n| false |\n+--------------------------------+\n\nThe last two statements display the results shown because 2 is equal to\nneither 1 nor 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(11,'SMALLINT',2,'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(12,'MEDIUMINT',2,'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA medium-sized integer. The signed range is -8388608 to 8388607. The\nunsigned range is 0 to 16777215.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(13,'INT',2,'INT[(M)] [UNSIGNED] [ZEROFILL]\n\nA normal-size integer. The signed range is -2147483648 to 2147483647.\nThe unsigned range is 0 to 4294967295.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(14,'INTEGER',2,'INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis type is a synonym for INT.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(15,'BIGINT',2,'BIGINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA large integer. The signed range is -9223372036854775808 to\n9223372036854775807. The unsigned range is 0 to 18446744073709551615.\n\nSERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(16,'DECIMAL',2,'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nA packed \"exact\" fixed-point number. M is the total number of digits\n(the precision) and D is the number of digits after the decimal point\n(the scale). The decimal point and (for negative numbers) the - sign\nare not counted in M. If D is 0, values have no decimal point or\nfractional part. The maximum number of digits (M) for DECIMAL is 65.\nThe maximum number of supported decimals (D) is 30. If D is omitted,\nthe default is 0. If M is omitted, the default is 10.\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(17,'DEC',2,'DEC[(M[,D])] [UNSIGNED] [ZEROFILL], NUMERIC[(M[,D])] [UNSIGNED]\n[ZEROFILL], FIXED[(M[,D])] [UNSIGNED] [ZEROFILL]\n\nThese types are synonyms for DECIMAL. The FIXED synonym is available\nfor compatibility with other database systems.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(18,'FLOAT',2,'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA small (single-precision) floating-point number. Permissible values\nare -3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to\n3.402823466E+38. These are the theoretical limits, based on the IEEE\nstandard. The actual range might be slightly smaller depending on your\nhardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A single-precision floating-point\nnumber is accurate to approximately 7 decimal places.\n\nFLOAT(M,D) is a nonstandard MySQL extension.\n\nUNSIGNED, if specified, disallows negative values.\n\nUsing FLOAT might give you some unexpected problems because all\ncalculations in MySQL are done with double precision. See\nhttps://dev.mysql.com/doc/refman/5.6/en/no-matching-rows.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(19,'DOUBLE',2,'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]\n\nA normal-size (double-precision) floating-point number. Permissible\nvalues are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and\n2.2250738585072014E-308 to 1.7976931348623157E+308. These are the\ntheoretical limits, based on the IEEE standard. The actual range might\nbe slightly smaller depending on your hardware or operating system.\n\nM is the total number of digits and D is the number of digits following\nthe decimal point. If M and D are omitted, values are stored to the\nlimits permitted by the hardware. A double-precision floating-point\nnumber is accurate to approximately 15 decimal places.\n\nDOUBLE(M,D) is a nonstandard MySQL extension.\n\nUNSIGNED, if specified, disallows negative values.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(20,'DOUBLE PRECISION',2,'DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL], REAL[(M,D)] [UNSIGNED]\n[ZEROFILL]\n\nThese types are synonyms for DOUBLE. Exception: If the REAL_AS_FLOAT\nSQL mode is enabled, REAL is a synonym for FLOAT rather than DOUBLE.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/numeric-type-syntax.html'),(21,'DATE',2,'DATE\n\nA date. The supported range is \'1000-01-01\' to \'9999-12-31\'. MySQL\ndisplays DATE values in \'YYYY-MM-DD\' format, but permits assignment of\nvalues to DATE columns using either strings or numbers.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html'),(22,'DATETIME',2,'DATETIME[(fsp)]\n\nA date and time combination. The supported range is \'1000-01-01\n00:00:00.000000\' to \'9999-12-31 23:59:59.999999\'. MySQL displays\nDATETIME values in \'YYYY-MM-DD hh:mm:ss[.fraction]\' format, but permits\nassignment of values to DATETIME columns using either strings or\nnumbers.\n\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nAutomatic initialization and updating to the current date and time for\nDATETIME columns can be specified using DEFAULT and ON UPDATE column\ndefinition clauses, as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/timestamp-initialization.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html'),(23,'TIMESTAMP',2,'TIMESTAMP[(fsp)]\n\nA timestamp. The range is \'1970-01-01 00:00:01.000000\' UTC to\n\'2038-01-19 03:14:07.999999\' UTC. TIMESTAMP values are stored as the\nnumber of seconds since the epoch (\'1970-01-01 00:00:00\' UTC). A\nTIMESTAMP cannot represent the value \'1970-01-01 00:00:00\' because that\nis equivalent to 0 seconds from the epoch and the value 0 is reserved\nfor representing \'0000-00-00 00:00:00\', the \"zero\" TIMESTAMP value.\n\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nThe way the server handles TIMESTAMP definitions depends on the value\nof the explicit_defaults_for_timestamp system variable (see\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html).\n\nIf explicit_defaults_for_timestamp is enabled, there is no automatic\nassignment of the DEFAULT CURRENT_TIMESTAMP or ON UPDATE\nCURRENT_TIMESTAMP attributes to any TIMESTAMP column. They must be\nincluded explicitly in the column definition. Also, any TIMESTAMP not\nexplicitly declared as NOT NULL permits NULL values.\n\nIf explicit_defaults_for_timestamp is disabled, the server handles\nTIMESTAMP as follows:\n\nUnless specified otherwise, the first TIMESTAMP column in a table is\ndefined to be automatically set to the date and time of the most recent\nmodification if not explicitly assigned a value. This makes TIMESTAMP\nuseful for recording the timestamp of an INSERT or UPDATE operation.\nYou can also set any TIMESTAMP column to the current date and time by\nassigning it a NULL value, unless it has been defined with the NULL\nattribute to permit NULL values.\n\nAutomatic initialization and updating to the current date and time can\nbe specified using DEFAULT CURRENT_TIMESTAMP and ON UPDATE\nCURRENT_TIMESTAMP column definition clauses. By default, the first\nTIMESTAMP column has these properties, as previously noted. However,\nany TIMESTAMP column in a table can be defined to have these\nproperties.\n\nexplicit_defaults_for_timestamp is available as of MySQL 5.6.6. Before\n5.6.6, the server handles TIMESTAMP as discussed for\nexplicit_defaults_for_timestamp disabled. Those behaviors, while they\nremain the default, are nonstandard and are deprecated as of 5.6.6. For\ndiscussion regarding upgrading to an installation with\nexplicit_defaults_for_timestamp enabled, see\nhttps://dev.mysql.com/doc/refman/5.6/en/upgrading-from-previous-series.\nhtml.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html'),(24,'TIME',2,'TIME[(fsp)]\n\nA time. The range is \'-838:59:59.000000\' to \'838:59:59.000000\'. MySQL\ndisplays TIME values in \'hh:mm:ss[.fraction]\' format, but permits\nassignment of values to TIME columns using either strings or numbers.\n\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html'),(25,'YEAR DATA TYPE',2,'YEAR[(2|4)]\n\nA year in 2-digit or 4-digit format. The default is 4-digit format.\nYEAR(2) or YEAR(4) differ in display format, but have the same range of\nvalues. In 4-digit format, values display as 1901 to 2155, or 0000. In\n2-digit format, values display as 70 to 69, representing years from\n1970 to 2069. MySQL displays YEAR values in YYYY or YY format, but\npermits assignment of values to YEAR columns using either strings or\nnumbers.\n\n*Note*:\n\nThe 2-digit YEAR(2) data type has certain issues that you should\nconsider before choosing to use it. As of MySQL 5.6.6, YEAR(2) is\ndeprecated: 2-digit YEAR(2) columns in existing tables are treated as\nbefore, but 2-digit YEAR(2) columns in new or altered tables are\nconverted to 4-digit YEAR columns. For more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/migrating-from-year2.html.\n\nFor additional information about YEAR display format and interpretation\nof input values, see https://dev.mysql.com/doc/refman/5.6/en/year.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-type-syntax.html'),(26,'CHAR',2,'[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA fixed-length string that is always right-padded with spaces to the\nspecified length when stored. M represents the column length in\ncharacters. The range of M is 0 to 255. If M is omitted, the length is\n1.\n\n*Note*:\n\nTrailing spaces are removed when CHAR values are retrieved unless the\nPAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(27,'CHAR BYTE',2,'The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(28,'VARCHAR',2,'[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA variable-length string. M represents the maximum column length in\ncharacters. The range of M is 0 to 65,535. The effective maximum length\nof a VARCHAR is subject to the maximum row size (65,535 bytes, which is\nshared among all columns) and the character set used. For example, utf8\ncharacters can require up to three bytes per character, so a VARCHAR\ncolumn that uses the utf8 character set can be declared to be a maximum\nof 21,844 characters. See\nhttps://dev.mysql.com/doc/refman/5.6/en/column-count-limit.html.\n\nMySQL stores VARCHAR values as a 1-byte or 2-byte length prefix plus\ndata. The length prefix indicates the number of bytes in the value. A\nVARCHAR column uses one length byte if values require no more than 255\nbytes, two length bytes if values may require more than 255 bytes.\n\n*Note*:\n\nMySQL follows the standard SQL specification, and does not remove\ntrailing spaces from VARCHAR values.\n\nVARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the\nstandard SQL way to define that a VARCHAR column should use some\npredefined character set. MySQL uses utf8 as this predefined character\nset. https://dev.mysql.com/doc/refman/5.6/en/charset-national.html.\nNVARCHAR is shorthand for NATIONAL VARCHAR.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(29,'BINARY',2,'BINARY[(M)]\n\nThe BINARY type is similar to the CHAR type, but stores binary byte\nstrings rather than nonbinary character strings. An optional length M\nrepresents the column length in bytes. If omitted, M defaults to 1.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(30,'VARBINARY',2,'VARBINARY(M)\n\nThe VARBINARY type is similar to the VARCHAR type, but stores binary\nbyte strings rather than nonbinary character strings. M represents the\nmaximum column length in bytes.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(31,'TINYBLOB',2,'TINYBLOB\n\nA BLOB column with a maximum length of 255 (28 − 1) bytes. Each\nTINYBLOB value is stored using a 1-byte length prefix that indicates\nthe number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(32,'TINYTEXT',2,'TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 255 (28 − 1) characters. The\neffective maximum length is less if the value contains multibyte\ncharacters. Each TINYTEXT value is stored using a 1-byte length prefix\nthat indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(33,'BLOB',2,'BLOB[(M)]\n\nA BLOB column with a maximum length of 65,535 (216 − 1) bytes. Each\nBLOB value is stored using a 2-byte length prefix that indicates the\nnumber of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest BLOB type large enough to hold\nvalues M bytes long.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(34,'TEXT',2,'TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 65,535 (216 − 1) characters.\nThe effective maximum length is less if the value contains multibyte\ncharacters. Each TEXT value is stored using a 2-byte length prefix that\nindicates the number of bytes in the value.\n\nAn optional length M can be given for this type. If this is done, MySQL\ncreates the column as the smallest TEXT type large enough to hold\nvalues M characters long.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(35,'MEDIUMBLOB',2,'MEDIUMBLOB\n\nA BLOB column with a maximum length of 16,777,215 (224 − 1) bytes.\nEach MEDIUMBLOB value is stored using a 3-byte length prefix that\nindicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(36,'MEDIUMTEXT',2,'MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 16,777,215 (224 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. Each MEDIUMTEXT value is stored using a 3-byte\nlength prefix that indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(37,'LONGBLOB',2,'LONGBLOB\n\nA BLOB column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\nbytes. The effective maximum length of LONGBLOB columns depends on the\nconfigured maximum packet size in the client/server protocol and\navailable memory. Each LONGBLOB value is stored using a 4-byte length\nprefix that indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(38,'LONGTEXT',2,'LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name]\n\nA TEXT column with a maximum length of 4,294,967,295 or 4GB (232 − 1)\ncharacters. The effective maximum length is less if the value contains\nmultibyte characters. The effective maximum length of LONGTEXT columns\nalso depends on the configured maximum packet size in the client/server\nprotocol and available memory. Each LONGTEXT value is stored using a\n4-byte length prefix that indicates the number of bytes in the value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(39,'ENUM',2,'ENUM(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nAn enumeration. A string object that can have only one value, chosen\nfrom the list of values \'value1\', \'value2\', ..., NULL or the special \'\'\nerror value. ENUM values are represented internally as integers.\n\nAn ENUM column can have a maximum of 65,535 distinct elements. (The\npractical limit is less than 3000.) A table can have no more than 255\nunique element list definitions among its ENUM and SET columns\nconsidered as a group. For more information on these limits, see\nhttps://dev.mysql.com/doc/refman/5.6/en/create-table-files.html#limits-\nfrm-file.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(40,'SET DATA TYPE',2,'SET(\'value1\',\'value2\',...) [CHARACTER SET charset_name] [COLLATE\ncollation_name]\n\nA set. A string object that can have zero or more values, each of which\nmust be chosen from the list of values \'value1\', \'value2\', ... SET\nvalues are represented internally as integers.\n\nA SET column can have a maximum of 64 distinct members. A table can\nhave no more than 255 unique element list definitions among its ENUM\nand SET columns considered as a group. For more information on this\nlimit, see\nhttps://dev.mysql.com/doc/refman/5.6/en/create-table-files.html#limits-\nfrm-file.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-type-syntax.html'),(41,'BLOB DATA TYPE',2,'A BLOB is a binary large object that can hold a variable amount of\ndata. The four BLOB types are TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB.\nThese differ only in the maximum length of the values they can hold.\nThe four TEXT types are TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. These\ncorrespond to the four BLOB types and have the same maximum lengths and\nstorage requirements. See\nhttps://dev.mysql.com/doc/refman/5.6/en/storage-requirements.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/blob.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/blob.html'),(42,'GEOMETRY HIERARCHY',6,'Geometry is the base class. It is an abstract class. The instantiable\nsubclasses of Geometry are restricted to zero-, one-, and\ntwo-dimensional geometric objects that exist in two-dimensional\ncoordinate space. All instantiable geometry classes are defined so that\nvalid instances of a geometry class are topologically closed (that is,\nall defined geometries include their boundary).\n\nThe base Geometry class has subclasses for Point, Curve, Surface, and\nGeometryCollection:\n\no Point represents zero-dimensional objects.\n\no Curve represents one-dimensional objects, and has subclass\n LineString, with sub-subclasses Line and LinearRing.\n\no Surface is designed for two-dimensional objects and has subclass\n Polygon.\n\no GeometryCollection has specialized zero-, one-, and two-dimensional\n collection classes named MultiPoint, MultiLineString, and\n MultiPolygon for modeling geometries corresponding to collections of\n Points, LineStrings, and Polygons, respectively. MultiCurve and\n MultiSurface are introduced as abstract superclasses that generalize\n the collection interfaces to handle Curves and Surfaces.\n\nGeometry, Curve, Surface, MultiCurve, and MultiSurface are defined as\nnoninstantiable classes. They define a common set of methods for their\nsubclasses and are included for extensibility.\n\nPoint, LineString, Polygon, GeometryCollection, MultiPoint,\nMultiLineString, and MultiPolygon are instantiable classes.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html'),(43,'MBR DEFINITION',7,'Its MBR (minimum bounding rectangle), or envelope. This is the bounding\ngeometry, formed by the minimum and maximum (X,Y) coordinates:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-class-geometry.html\n\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','https://dev.mysql.com/doc/refman/5.6/en/gis-class-geometry.html'),(44,'WKT DEFINITION',8,'The Well-Known Text (WKT) representation of geometry values is designed\nfor exchanging geometry data in ASCII form. The OpenGIS specification\nprovides a Backus-Naur grammar that specifies the formal production\nrules for writing WKT values (see\nhttps://dev.mysql.com/doc/refman/5.6/en/spatial-types.html).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-data-formats.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-data-formats.html'),(45,'SPATIAL COLUMNS',6,'MySQL provides a standard way of creating spatial columns for geometry\ntypes, for example, with CREATE TABLE or ALTER TABLE. Spatial columns\nare supported for MyISAM, InnoDB, NDB, and ARCHIVE tables. See also the\nnotes about spatial indexes under [HELP SPATIAL indexes].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','https://dev.mysql.com/doc/refman/5.6/en/creating-spatial-columns.html'),(46,'SPATIAL INDEXES',6,'For MyISAM tables, MySQL can create spatial indexes using syntax\nsimilar to that for creating regular indexes, but using the SPATIAL\nkeyword. Columns in spatial indexes must be declared NOT NULL. The\nfollowing examples demonstrate how to create spatial indexes:\n\no With CREATE TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g)) ENGINE=MyISAM;\n\no With ALTER TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL) ENGINE=MyISAM;\nALTER TABLE geom ADD SPATIAL INDEX(g);\n\no With CREATE INDEX:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL) ENGINE=MyISAM;\nCREATE SPATIAL INDEX g ON geom (g);\n\nSPATIAL INDEX creates an R-tree index. For storage engines that support\nnonspatial indexing of spatial columns, the engine creates a B-tree\nindex. A B-tree index on spatial values is useful for exact-value\nlookups, but not for range scans.\n\nFor more information on indexing spatial columns, see [HELP CREATE\nINDEX].\n\nTo drop spatial indexes, use ALTER TABLE or DROP INDEX:\n\no With ALTER TABLE:\n\nALTER TABLE geom DROP INDEX g;\n\no With DROP INDEX:\n\nDROP INDEX g ON geom;\n\nExample: Suppose that a table geom contains more than 32,000\ngeometries, which are stored in the column g of type GEOMETRY. The\ntable also has an AUTO_INCREMENT column fid for storing object ID\nvalues.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/creating-spatial-indexes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/creating-spatial-indexes.html'),(47,'=',10,'=\n\nEqual:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 = 0;\n -> 0\nmysql> SELECT \'0\' = 0;\n -> 1\nmysql> SELECT \'0.0\' = 0;\n -> 1\nmysql> SELECT \'0.01\' = 0;\n -> 0\nmysql> SELECT \'.01\' = 0.01;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(48,'<=>',10,'Syntax:\n<=>\n\nNULL-safe equal. This operator performs an equality comparison like the\n= operator, but returns 1 rather than NULL if both operands are NULL,\nand 0 rather than NULL if one operand is NULL.\n\nThe <=> operator is equivalent to the standard SQL IS NOT DISTINCT FROM\noperator.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL;\n -> 1, 1, 0\nmysql> SELECT 1 = 1, NULL = NULL, 1 = NULL;\n -> 1, NULL, NULL\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(49,'!=',10,'Syntax:\n<>, !=\n\nNot equal:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT \'.01\' <> \'0.01\';\n -> 1\nmysql> SELECT .01 <> \'0.01\';\n -> 0\nmysql> SELECT \'zapp\' <> \'zappp\';\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(50,'<=',10,'Syntax:\n<=\n\nLess than or equal:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 0.1 <= 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(51,'<',10,'Syntax:\n<\n\nLess than:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(52,'>=',10,'Syntax:\n>=\n\nGreater than or equal:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 >= 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(53,'>',10,'Syntax:\n>\n\nGreater than:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 > 2;\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(54,'BETWEEN AND',10,'Syntax:\nexpr BETWEEN min AND max\n\nIf expr is greater than or equal to min and expr is less than or equal\nto max, BETWEEN returns 1, otherwise it returns 0. This is equivalent\nto the expression (min <= expr AND expr <= max) if all the arguments\nare of the same type. Otherwise type conversion takes place according\nto the rules described in\nhttps://dev.mysql.com/doc/refman/5.6/en/type-conversion.html, but\napplied to all the three arguments.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 BETWEEN 1 AND 3, 2 BETWEEN 3 and 1;\n -> 1, 0\nmysql> SELECT 1 BETWEEN 2 AND 3;\n -> 0\nmysql> SELECT \'b\' BETWEEN \'a\' AND \'c\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'3\';\n -> 1\nmysql> SELECT 2 BETWEEN 2 AND \'x-3\';\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(55,'NOT BETWEEN',10,'Syntax:\nexpr NOT BETWEEN min AND max\n\nThis is the same as NOT (expr BETWEEN min AND max).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(56,'COALESCE',10,'Syntax:\nCOALESCE(value,...)\n\nReturns the first non-NULL value in the list, or NULL if there are no\nnon-NULL values.\n\nThe return type of COALESCE() is the aggregated type of the argument\ntypes.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(57,'GREATEST',10,'Syntax:\nGREATEST(value1,value2,...)\n\nWith two or more arguments, returns the largest (maximum-valued)\nargument. The arguments are compared using the same rules as for\nLEAST().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT GREATEST(2,0);\n -> 2\nmysql> SELECT GREATEST(34.0,3.0,5.0,767.0);\n -> 767.0\nmysql> SELECT GREATEST(\'B\',\'A\',\'C\');\n -> \'C\'\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(58,'IN',10,'Syntax:\nexpr IN (value,...)\n\nReturns 1 (true) if expr is equal to any of the values in the IN()\nlist, else returns 0 (false).\n\nType conversion takes place according to the rules described in\nhttps://dev.mysql.com/doc/refman/5.6/en/type-conversion.html, applied\nto all the arguments. If no type conversion is needed for the values in\nthe IN() list, they are all constants of the same type, and expr can be\ncompared to each of them as a value of the same type (possibly after\ntype conversion), an optimization takes place. The values the list are\nsorted and the search for expr is done using a binary search, which\nmakes the IN() operation very quick.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 2 IN (0,3,5,7);\n -> 0\nmysql> SELECT \'wefwf\' IN (\'wee\',\'wefwf\',\'weg\');\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(59,'NOT IN',10,'Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(60,'INTERVAL',10,'Syntax:\nINTERVAL(N,N1,N2,N3,...)\n\nReturns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All\narguments are treated as integers. It is required that N1 < N2 < N3 <\n... < Nn for this function to work correctly. This is because a binary\nsearch is used (very fast).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200);\n -> 3\nmysql> SELECT INTERVAL(10, 1, 10, 100, 1000);\n -> 2\nmysql> SELECT INTERVAL(22, 23, 30, 44, 200);\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(61,'IS',10,'Syntax:\nIS boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(62,'IS NOT',10,'Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN;\n -> 1, 1, 0\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(63,'IS NULL',10,'Syntax:\nIS NULL\n\nTests whether a value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(64,'IS NOT NULL',10,'Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL;\n -> 1, 1, 0\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(65,'ISNULL',10,'Syntax:\nISNULL(expr)\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(66,'LEAST',10,'Syntax:\nLEAST(value1,value2,...)\n\nWith two or more arguments, returns the smallest (minimum-valued)\nargument. The arguments are compared using the following rules:\n\no If any argument is NULL, the result is NULL. No comparison is needed.\n\no If all arguments are integer-valued, they are compared as integers.\n\no If at least one argument is double precision, they are compared as\n double-precision values. Otherwise, if at least one argument is a\n DECIMAL value, they are compared as DECIMAL values.\n\no If the arguments comprise a mix of numbers and strings, they are\n compared as numbers.\n\no If any argument is a nonbinary (character) string, the arguments are\n compared as nonbinary strings.\n\no In all other cases, the arguments are compared as binary strings.\n\nThe return type of LEAST() is the aggregated type of the comparison\nargument types.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html\n\n','mysql> SELECT LEAST(2,0);\n -> 0\nmysql> SELECT LEAST(34.0,3.0,5.0,767.0);\n -> 3.0\nmysql> SELECT LEAST(\'B\',\'A\',\'C\');\n -> \'A\'\n','https://dev.mysql.com/doc/refman/5.6/en/comparison-operators.html'),(67,'!',11,'Syntax:\nNOT, !\n\nLogical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is\nnonzero, and NOT NULL returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT NOT 10;\n -> 0\nmysql> SELECT NOT 0;\n -> 1\nmysql> SELECT NOT NULL;\n -> NULL\nmysql> SELECT ! (1+1);\n -> 0\nmysql> SELECT ! 1+1;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(68,'AND',11,'Syntax:\nAND, &&\n\nLogical AND. Evaluates to 1 if all operands are nonzero and not NULL,\nto 0 if one or more operands are 0, otherwise NULL is returned.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT 1 AND 1;\n -> 1\nmysql> SELECT 1 AND 0;\n -> 0\nmysql> SELECT 1 AND NULL;\n -> NULL\nmysql> SELECT 0 AND NULL;\n -> 0\nmysql> SELECT NULL AND 0;\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(69,'OR',11,'Syntax:\nOR, ||\n\nLogical OR. When both operands are non-NULL, the result is 1 if any\noperand is nonzero, and 0 otherwise. With a NULL operand, the result is\n1 if the other operand is nonzero, and NULL otherwise. If both operands\nare NULL, the result is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT 1 OR 1;\n -> 1\nmysql> SELECT 1 OR 0;\n -> 1\nmysql> SELECT 0 OR 0;\n -> 0\nmysql> SELECT 0 OR NULL;\n -> NULL\nmysql> SELECT 1 OR NULL;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(70,'XOR',11,'Syntax:\nXOR\n\nLogical XOR. Returns NULL if either operand is NULL. For non-NULL\noperands, evaluates to 1 if an odd number of operands is nonzero,\notherwise 0 is returned.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html\n\n','mysql> SELECT 1 XOR 1;\n -> 0\nmysql> SELECT 1 XOR 0;\n -> 1\nmysql> SELECT 1 XOR NULL;\n -> NULL\nmysql> SELECT 1 XOR 1 XOR 1;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/logical-operators.html'),(71,'ASSIGN-VALUE',11,'Syntax:\n:=\n\nAssignment operator. Causes the user variable on the left hand side of\nthe operator to take on the value to its right. The value on the right\nhand side may be a literal value, another variable storing a value, or\nany legal expression that yields a scalar value, including the result\nof a query (provided that this value is a scalar value). You can\nperform multiple assignments in the same SET statement. You can perform\nmultiple assignments in the same statement.\n\nUnlike =, the := operator is never interpreted as a comparison\noperator. This means you can use := in any valid SQL statement (not\njust in SET statements) to assign a value to a variable.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n\nmysql> SELECT @var1:=COUNT(*) FROM t1;\n -> 4\nmysql> SELECT @var1;\n -> 4\n','https://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html'),(72,'ASSIGN-EQUAL',11,'Syntax:\n=\n\nThis operator is used to perform value assignments in two cases,\ndescribed in the next two paragraphs.\n\nWithin a SET statement, = is treated as an assignment operator that\ncauses the user variable on the left hand side of the operator to take\non the value to its right. (In other words, when used in a SET\nstatement, = is treated identically to :=.) The value on the right hand\nside may be a literal value, another variable storing a value, or any\nlegal expression that yields a scalar value, including the result of a\nquery (provided that this value is a scalar value). You can perform\nmultiple assignments in the same SET statement.\n\nIn the SET clause of an UPDATE statement, = also acts as an assignment\noperator; in this case, however, it causes the column named on the left\nhand side of the operator to assume the value given to the right,\nprovided any WHERE conditions that are part of the UPDATE are met. You\ncan make multiple assignments in the same SET clause of an UPDATE\nstatement.\n\nIn any other context, = is treated as a comparison operator.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html\n\n','mysql> SELECT @var1, @var2;\n -> NULL, NULL\nmysql> SELECT @var1 := 1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2;\n -> 1, NULL\nmysql> SELECT @var1, @var2 := @var1;\n -> 1, 1\nmysql> SELECT @var1, @var2;\n -> 1, 1\n','https://dev.mysql.com/doc/refman/5.6/en/assignment-operators.html'),(73,'CASE OPERATOR',12,'Syntax:\nCASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN\nresult ...] [ELSE result] END\n\nCASE WHEN [condition] THEN result [WHEN [condition] THEN result ...]\n[ELSE result] END\n\nThe first CASE syntax returns the result for the first\nvalue=compare_value comparison that is true. The second syntax returns\nthe result for the first condition that is true. If no comparison or\ncondition is true, the result after ELSE is returned, or NULL if there\nis no ELSE part.\n\n*Note*:\n\nThe syntax of the CASE expr described here differs slightly from that\nof the SQL CASE statement described in [HELP CASE statement], for use\ninside stored programs. The CASE statement cannot have an ELSE NULL\nclause, and it is terminated with END CASE instead of END.\n\nThe return type of a CASE expression result is the aggregated type of\nall result values.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT CASE 1 WHEN 1 THEN \'one\'\n -> WHEN 2 THEN \'two\' ELSE \'more\' END;\n -> \'one\'\nmysql> SELECT CASE WHEN 1>0 THEN \'true\' ELSE \'false\' END;\n -> \'true\'\nmysql> SELECT CASE BINARY \'B\'\n -> WHEN \'a\' THEN 1 WHEN \'b\' THEN 2 END;\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(74,'IF FUNCTION',12,'Syntax:\nIF(expr1,expr2,expr3)\n\nIf expr1 is TRUE (expr1 <> 0 and expr1 <> NULL), IF() returns expr2.\nOtherwise, it returns expr3.\n\n*Note*:\n\nThere is also an IF statement, which differs from the IF() function\ndescribed here. See [HELP IF statement].\n\nIf only one of expr2 or expr3 is explicitly NULL, the result type of\nthe IF() function is the type of the non-NULL expression.\n\nThe default return type of IF() (which may matter when it is stored\ninto a temporary table) is calculated as follows:\n\no If expr2 or expr3 produce a string, the result is a string.\n\n If expr2 and expr3 are both strings, the result is case-sensitive if\n either string is case-sensitive.\n\no If expr2 or expr3 produce a floating-point value, the result is a\n floating-point value.\n\no If expr2 or expr3 produce an integer, the result is an integer.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT IF(1>2,2,3);\n -> 3\nmysql> SELECT IF(1<2,\'yes\',\'no\');\n -> \'yes\'\nmysql> SELECT IF(STRCMP(\'test\',\'test1\'),\'no\',\'yes\');\n -> \'no\'\n','https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(75,'IFNULL',12,'Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT IFNULL(1,0);\n -> 1\nmysql> SELECT IFNULL(NULL,10);\n -> 10\nmysql> SELECT IFNULL(1/0,10);\n -> 10\nmysql> SELECT IFNULL(1/0,\'yes\');\n -> \'yes\'\n','https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(76,'NULLIF',12,'Syntax:\nNULLIF(expr1,expr2)\n\nReturns NULL if expr1 = expr2 is true, otherwise returns expr1. This is\nthe same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.\n\nThe return value has the same type as the first argument.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html'),(77,'+',13,'Syntax:\n+\n\nAddition:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3+5;\n -> 8\n','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(78,'- BINARY',13,'Syntax:\n-\n\nSubtraction:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n -> -2\n','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(79,'- UNARY',13,'Syntax:\n-\n\nUnary minus. This operator changes the sign of the operand.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n -> -2\n','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(80,'*',13,'Syntax:\n*\n\nMultiplication:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3*5;\n -> 15\nmysql> SELECT 18014398509481984*18014398509481984.0;\n -> 324518553658426726783156020576256.0\nmysql> SELECT 18014398509481984*18014398509481984;\n -> out-of-range error\n','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(81,'/',13,'Syntax:\n/\n\nDivision:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 3/5;\n -> 0.60\n','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(82,'DIV',13,'Syntax:\nDIV\n\nInteger division. Discards from the division result any fractional part\nto the right of the decimal point.\n\nIf either operand has a noninteger type, the operands are converted to\nDECIMAL and divided using DECIMAL arithmetic before converting the\nresult to BIGINT. If the result exceeds BIGINT range, an error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','mysql> SELECT 5 DIV 2, -5 DIV 2, 5 DIV -2, -5 DIV -2;\n -> 2, -2, -2, 2\n','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(83,'%',13,'Syntax:\nN % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M. For more\ninformation, see the description for the MOD() function in\nhttps://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/arithmetic-functions.html'),(84,'ABS',13,'Syntax:\nABS(X)\n\nReturns the absolute value of X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(85,'ACOS',13,'Syntax:\nACOS(X)\n\nReturns the arc cosine of X, that is, the value whose cosine is X.\nReturns NULL if X is not in the range -1 to 1.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ACOS(1);\n -> 0\nmysql> SELECT ACOS(1.0001);\n -> NULL\nmysql> SELECT ACOS(0);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(86,'ASIN',13,'Syntax:\nASIN(X)\n\nReturns the arc sine of X, that is, the value whose sine is X. Returns\nNULL if X is not in the range -1 to 1.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ASIN(0.2);\n -> 0.20135792079033\nmysql> SELECT ASIN(\'foo\');\n\n+-------------+\n| ASIN(\'foo\') |\n+-------------+\n| 0 |\n+-------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+---------+------+-----------------------------------------+\n| Level | Code | Message |\n+---------+------+-----------------------------------------+\n| Warning | 1292 | Truncated incorrect DOUBLE value: \'foo\' |\n+---------+------+-----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(87,'ATAN',13,'Syntax:\nATAN(X)\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(2);\n -> 1.1071487177941\nmysql> SELECT ATAN(-2);\n -> -1.1071487177941\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(88,'ATAN2',13,'Syntax:\nATAN(Y,X), ATAN2(Y,X)\n\nReturns the arc tangent of the two variables X and Y. It is similar to\ncalculating the arc tangent of Y / X, except that the signs of both\narguments are used to determine the quadrant of the result.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(89,'CEIL',13,'Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(90,'CEILING',13,'Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(91,'CONV',13,'Syntax:\nCONV(N,from_base,to_base)\n\nConverts numbers between different number bases. Returns a string\nrepresentation of the number N, converted from base from_base to base\nto_base. Returns NULL if any argument is NULL. The argument N is\ninterpreted as an integer, but may be specified as an integer or a\nstring. The minimum base is 2 and the maximum base is 36. If from_base\nis a negative number, N is regarded as a signed number. Otherwise, N is\ntreated as unsigned. CONV() works with 64-bit precision.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT CONV(\'a\',16,2);\n -> \'1010\'\nmysql> SELECT CONV(\'6E\',18,8);\n -> \'172\'\nmysql> SELECT CONV(-17,10,-18);\n -> \'-H\'\nmysql> SELECT CONV(10+\'10\'+\'10\'+X\'0a\',10,10);\n -> \'40\'\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(92,'COS',13,'Syntax:\nCOS(X)\n\nReturns the cosine of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT COS(PI());\n -> -1\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(93,'COT',13,'Syntax:\nCOT(X)\n\nReturns the cotangent of X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT COT(12);\n -> -1.5726734063977\nmysql> SELECT COT(0);\n -> out-of-range error\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(94,'CRC32',13,'Syntax:\nCRC32(expr)\n\nComputes a cyclic redundancy check value and returns a 32-bit unsigned\nvalue. The result is NULL if the argument is NULL. The argument is\nexpected to be a string and (if possible) is treated as one if it is\nnot.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(95,'DEGREES',13,'Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n -> 180\nmysql> SELECT DEGREES(PI() / 2);\n -> 90\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(96,'EXP',13,'Syntax:\nEXP(X)\n\nReturns the value of e (the base of natural logarithms) raised to the\npower of X. The inverse of this function is LOG() (using a single\nargument only) or LN().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT EXP(2);\n -> 7.3890560989307\nmysql> SELECT EXP(-2);\n -> 0.13533528323661\nmysql> SELECT EXP(0);\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(97,'FLOOR',13,'Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23), FLOOR(-1.23);\n -> 1, -2\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(98,'LN',13,'Syntax:\nLN(X)\n\nReturns the natural logarithm of X; that is, the base-e logarithm of X.\nIf X is less than or equal to 0, then NULL is returned.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(99,'LOG',13,'Syntax:\nLOG(X), LOG(B,X)\n\nIf called with one parameter, this function returns the natural\nlogarithm of X. If X is less than or equal to 0, then NULL is returned.\n\nThe inverse of this function (when called with a single argument) is\nthe EXP() function.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LOG(2);\n -> 0.69314718055995\nmysql> SELECT LOG(-2);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(100,'LOG2',13,'Syntax:\nLOG2(X)\n\nReturns the base-2 logarithm of X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LOG2(65536);\n -> 16\nmysql> SELECT LOG2(-100);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(101,'LOG10',13,'Syntax:\nLOG10(X)\n\nReturns the base-10 logarithm of X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT LOG10(2);\n -> 0.30102999566398\nmysql> SELECT LOG10(100);\n -> 2\nmysql> SELECT LOG10(-100);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(102,'MOD',13,'Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT MOD(234, 10);\n -> 4\nmysql> SELECT 253 % 7;\n -> 1\nmysql> SELECT MOD(29,9);\n -> 2\nmysql> SELECT 29 MOD 9;\n -> 2\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(103,'PI',13,'Syntax:\nPI()\n\nReturns the value of π (pi). The default number of decimal places\ndisplayed is seven, but MySQL uses the full double-precision value\ninternally.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(104,'POW',13,'Syntax:\nPOW(X,Y)\n\nReturns the value of X raised to the power of Y.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT POW(2,2);\n -> 4\nmysql> SELECT POW(2,-2);\n -> 0.25\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(105,'POWER',13,'Syntax:\nPOWER(X,Y)\n\nThis is a synonym for POW().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(106,'RADIANS',13,'Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians.\n\n*Note*:\n\nπ radians equals 180 degrees.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(107,'RAND',13,'Syntax:\nRAND([N])\n\nReturns a random floating-point value v in the range 0 <= v < 1.0. To\nobtain a random integer R in the range i <= R < j, use the expression\nFLOOR(i + RAND() * (j − i)). For example, to obtain a random integer\nin the range the range 7 <= R < 12, use the following statement:\n\nSELECT FLOOR(7 + (RAND() * 5));\n\nIf an integer argument N is specified, it is used as the seed value:\n\no With a constant initializer argument, the seed is initialized once\n when the statement is prepared, prior to execution.\n\no With a nonconstant initializer argument (such as a column name), the\n seed is initialized with the value for each invocation of RAND().\n\nOne implication of this behavior is that for equal argument values,\nRAND(N) returns the same value each time, and thus produces a\nrepeatable sequence of column values. In the following example, the\nsequence of values produced by RAND(3) is the same both places it\noccurs.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> CREATE TABLE t (i INT);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.61914388706828 |\n| 2 | 0.93845168309142 |\n| 3 | 0.83482678498591 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND() FROM t;\n+------+------------------+\n| i | RAND() |\n+------+------------------+\n| 1 | 0.35877890638893 |\n| 2 | 0.28941420772058 |\n| 3 | 0.37073435016976 |\n+------+------------------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT i, RAND(3) FROM t;\n+------+------------------+\n| i | RAND(3) |\n+------+------------------+\n| 1 | 0.90576975597606 |\n| 2 | 0.37307905813035 |\n| 3 | 0.14808605345719 |\n+------+------------------+\n3 rows in set (0.01 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(108,'ROUND',13,'Syntax:\nROUND(X), ROUND(X,D)\n\nRounds the argument X to D decimal places. The rounding algorithm\ndepends on the data type of X. D defaults to 0 if not specified. D can\nbe negative to cause D digits left of the decimal point of the value X\nto become zero. The maximum absolute value for D is 30; any digits in\nexcess of 30 (or -30) are truncated.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT ROUND(-1.23);\n -> -1\nmysql> SELECT ROUND(-1.58);\n -> -2\nmysql> SELECT ROUND(1.58);\n -> 2\nmysql> SELECT ROUND(1.298, 1);\n -> 1.3\nmysql> SELECT ROUND(1.298, 0);\n -> 1\nmysql> SELECT ROUND(23.298, -1);\n -> 20\nmysql> SELECT ROUND(.12345678901234567890123456789012345, 35);\n -> 0.123456789012345678901234567890\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(109,'SIGN',13,'Syntax:\nSIGN(X)\n\nReturns the sign of the argument as -1, 0, or 1, depending on whether X\nis negative, zero, or positive.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT SIGN(-32);\n -> -1\nmysql> SELECT SIGN(0);\n -> 0\nmysql> SELECT SIGN(234);\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(110,'SIN',13,'Syntax:\nSIN(X)\n\nReturns the sine of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT SIN(PI());\n -> 1.2246063538224e-16\nmysql> SELECT ROUND(SIN(PI()));\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(111,'SQRT',13,'Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT SQRT(4);\n -> 2\nmysql> SELECT SQRT(20);\n -> 4.4721359549996\nmysql> SELECT SQRT(-16);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(112,'TAN',13,'Syntax:\nTAN(X)\n\nReturns the tangent of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT TAN(PI());\n -> -1.2246063538224e-16\nmysql> SELECT TAN(PI()+1);\n -> 1.5574077246549\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(113,'TRUNCATE',13,'Syntax:\nTRUNCATE(X,D)\n\nReturns the number X, truncated to D decimal places. If D is 0, the\nresult has no decimal point or fractional part. D can be negative to\ncause D digits left of the decimal point of the value X to become zero.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html\n\n','mysql> SELECT TRUNCATE(1.223,1);\n -> 1.2\nmysql> SELECT TRUNCATE(1.999,1);\n -> 1.9\nmysql> SELECT TRUNCATE(1.999,0);\n -> 1\nmysql> SELECT TRUNCATE(-1.999,1);\n -> -1.9\nmysql> SELECT TRUNCATE(122,-2);\n -> 100\nmysql> SELECT TRUNCATE(10.28*100,0);\n -> 1028\n','https://dev.mysql.com/doc/refman/5.6/en/mathematical-functions.html'),(114,'ADDDATE',14,'Syntax:\nADDDATE(date,INTERVAL expr unit), ADDDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, ADDDATE()\nis a synonym for DATE_ADD(). The related function SUBDATE() is a\nsynonym for DATE_SUB(). For information on the INTERVAL unit argument,\nsee\nhttps://dev.mysql.com/doc/refman/5.6/en/expressions.html#temporal-inter\nvals.\n\nmysql> SELECT DATE_ADD(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\nmysql> SELECT ADDDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2008-02-02\'\n\nWhen invoked with the days form of the second argument, MySQL treats it\nas an integer number of days to be added to expr.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT ADDDATE(\'2008-01-02\', 31);\n -> \'2008-02-02\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(115,'ADDTIME',14,'Syntax:\nADDTIME(expr1,expr2)\n\nADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time\nor datetime expression, and expr2 is a time expression.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT ADDTIME(\'2007-12-31 23:59:59.999999\', \'1 1:1:1.000002\');\n -> \'2008-01-02 01:01:01.000001\'\nmysql> SELECT ADDTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'03:00:01.999997\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(116,'CONVERT_TZ',14,'Syntax:\nCONVERT_TZ(dt,from_tz,to_tz)\n\nCONVERT_TZ() converts a datetime value dt from the time zone given by\nfrom_tz to the time zone given by to_tz and returns the resulting\nvalue. Time zones are specified as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'GMT\',\'MET\');\n -> \'2004-01-01 13:00:00\'\nmysql> SELECT CONVERT_TZ(\'2004-01-01 12:00:00\',\'+00:00\',\'+10:00\');\n -> \'2004-01-01 22:00:00\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(117,'CURDATE',14,'Syntax:\nCURDATE()\n\nReturns the current date as a value in \'YYYY-MM-DD\' or YYYYMMDD format,\ndepending on whether the function is used in string or numeric context.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n -> 20080613\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(118,'CURRENT_DATE',14,'Syntax:\nCURRENT_DATE, CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(119,'CURRENT_TIME',14,'Syntax:\nCURRENT_TIME, CURRENT_TIME([fsp])\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(120,'CURRENT_TIMESTAMP',14,'Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP([fsp])\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(121,'CURTIME',14,'Syntax:\nCURTIME([fsp])\n\nReturns the current time as a value in \'hh:mm:ss\' or hhmmss format,\ndepending on whether the function is used in string or numeric context.\nThe value is expressed in the session time zone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(122,'DATE FUNCTION',14,'Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(123,'DATEDIFF',14,'Syntax:\nDATEDIFF(expr1,expr2)\n\nDATEDIFF() returns expr1 − expr2 expressed as a value in days from\none date to the other. expr1 and expr2 are date or date-and-time\nexpressions. Only the date parts of the values are used in the\ncalculation.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATEDIFF(\'2007-12-31 23:59:59\',\'2007-12-30\');\n -> 1\nmysql> SELECT DATEDIFF(\'2010-11-30 23:59:59\',\'2010-12-31\');\n -> -31\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(124,'DATE_ADD',14,'Syntax:\nDATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit)\n\nThese functions perform date arithmetic. The date argument specifies\nthe starting date or datetime value. expr is an expression specifying\nthe interval value to be added or subtracted from the starting date.\nexpr is evaluated as a string; it may start with a - for negative\nintervals. unit is a keyword indicating the units in which the\nexpression should be interpreted.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_ADD(\'2018-05-01\',INTERVAL 1 DAY);\n -> \'2018-05-02\'\nmysql> SELECT DATE_SUB(\'2018-05-01\',INTERVAL 1 YEAR);\n -> \'2017-05-01\'\nmysql> SELECT DATE_ADD(\'2020-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'2021-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2018-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'2019-01-01 23:59:59\'\nmysql> SELECT DATE_ADD(\'2100-12-31 23:59:59\',\n -> INTERVAL \'1:1\' MINUTE_SECOND);\n -> \'2101-01-01 00:01:00\'\nmysql> SELECT DATE_SUB(\'2025-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'2024-12-30 22:58:59\'\nmysql> SELECT DATE_ADD(\'1900-01-01 00:00:00\',\n -> INTERVAL \'-1 10\' DAY_HOUR);\n -> \'1899-12-30 14:00:00\'\nmysql> SELECT DATE_SUB(\'1998-01-02\', INTERVAL 31 DAY);\n -> \'1997-12-02\'\nmysql> SELECT DATE_ADD(\'1992-12-31 23:59:59.000002\',\n -> INTERVAL \'1.999999\' SECOND_MICROSECOND);\n -> \'1993-01-01 00:00:01.000001\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(125,'DATE_FORMAT',14,'Syntax:\nDATE_FORMAT(date,format)\n\nFormats the date value according to the format string.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2009-10-04 22:23:00\', \'%W %M %Y\');\n -> \'Sunday October 2009\'\nmysql> SELECT DATE_FORMAT(\'2007-10-04 22:23:00\', \'%H:%i:%s\');\n -> \'22:23:00\'\nmysql> SELECT DATE_FORMAT(\'1900-10-04 22:23:00\',\n -> \'%D %y %a %d %m %b %j\');\n -> \'4th 00 Thu 04 10 Oct 277\'\nmysql> SELECT DATE_FORMAT(\'1997-10-04 22:23:00\',\n -> \'%H %k %I %r %T %S %w\');\n -> \'22 22 10 10:23:00 PM 22:23:00 00 6\'\nmysql> SELECT DATE_FORMAT(\'1999-01-01\', \'%X %V\');\n -> \'1998 52\'\nmysql> SELECT DATE_FORMAT(\'2006-06-00\', \'%d\');\n -> \'00\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(126,'DATE_SUB',14,'Syntax:\nDATE_SUB(date,INTERVAL expr unit)\n\nSee the description for DATE_ADD().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(127,'DAY',14,'Syntax:\nDAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(128,'DAYNAME',14,'Syntax:\nDAYNAME(date)\n\nReturns the name of the weekday for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(https://dev.mysql.com/doc/refman/5.6/en/locale-support.html).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYNAME(\'2007-02-03\');\n -> \'Saturday\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(129,'DAYOFMONTH',14,'Syntax:\nDAYOFMONTH(date)\n\nReturns the day of the month for date, in the range 1 to 31, or 0 for\ndates such as \'0000-00-00\' or \'2008-00-00\' that have a zero day part.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n -> 3\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(130,'DAYOFWEEK',14,'Syntax:\nDAYOFWEEK(date)\n\nReturns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 =\nSaturday). These index values correspond to the ODBC standard.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFWEEK(\'2007-02-03\');\n -> 7\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(131,'DAYOFYEAR',14,'Syntax:\nDAYOFYEAR(date)\n\nReturns the day of the year for date, in the range 1 to 366.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFYEAR(\'2007-02-03\');\n -> 34\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(132,'EXTRACT',14,'Syntax:\nEXTRACT(unit FROM date)\n\nThe EXTRACT() function uses the same kinds of unit specifiers as\nDATE_ADD() or DATE_SUB(), but extracts parts from the date rather than\nperforming date arithmetic. For information on the unit argument, see\nhttps://dev.mysql.com/doc/refman/5.6/en/expressions.html#temporal-inter\nvals.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT EXTRACT(YEAR FROM \'2019-07-02\');\n -> 2019\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'2019-07-02 01:02:03\');\n -> 201907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'2019-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.000123\');\n -> 123\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(133,'FROM_DAYS',14,'Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2000-07-03\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(134,'FROM_UNIXTIME',14,'Syntax:\nFROM_UNIXTIME(unix_timestamp[,format])\n\nReturns a representation of the unix_timestamp argument as a value in\n\'YYYY-MM-DD hh:mm:ss\' or YYYYMMDDhhmmss format, depending on whether\nthe function is used in a string or numeric context. unix_timestamp is\nan internal timestamp value representing seconds since \'1970-01-01\n00:00:00\' UTC, such as produced by the UNIX_TIMESTAMP() function.\n\nThe return value is expressed in the session time zone. (Clients can\nset the session time zone as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/time-zone-support.html.) The\nformat string, if given, is used to format the result the same way as\ndescribed in the entry for the DATE_FORMAT() function.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_UNIXTIME(1447430881);\n -> \'2015-11-13 10:08:01\'\nmysql> SELECT FROM_UNIXTIME(1447430881) + 0;\n -> 20151113100801\nmysql> SELECT FROM_UNIXTIME(1447430881,\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2015 13th November 10:08:01 2015\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(135,'GET_FORMAT',14,'Syntax:\nGET_FORMAT({DATE|TIME|DATETIME}, {\'EUR\'|\'USA\'|\'JIS\'|\'ISO\'|\'INTERNAL\'})\n\nReturns a format string. This function is useful in combination with\nthe DATE_FORMAT() and the STR_TO_DATE() functions.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_FORMAT(\'2003-10-03\',GET_FORMAT(DATE,\'EUR\'));\n -> \'03.10.2003\'\nmysql> SELECT STR_TO_DATE(\'10.31.2003\',GET_FORMAT(DATE,\'USA\'));\n -> \'2003-10-31\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(136,'HOUR',14,'Syntax:\nHOUR(time)\n\nReturns the hour for time. The range of the return value is 0 to 23 for\ntime-of-day values. However, the range of TIME values actually is much\nlarger, so HOUR can return values greater than 23.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT HOUR(\'10:05:03\');\n -> 10\nmysql> SELECT HOUR(\'272:59:59\');\n -> 272\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(137,'LAST_DAY',14,'Syntax:\nLAST_DAY(date)\n\nTakes a date or datetime value and returns the corresponding value for\nthe last day of the month. Returns NULL if the argument is invalid.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT LAST_DAY(\'2003-02-05\');\n -> \'2003-02-28\'\nmysql> SELECT LAST_DAY(\'2004-02-05\');\n -> \'2004-02-29\'\nmysql> SELECT LAST_DAY(\'2004-01-01 01:01:01\');\n -> \'2004-01-31\'\nmysql> SELECT LAST_DAY(\'2003-03-32\');\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(138,'LOCALTIME',14,'Syntax:\nLOCALTIME, LOCALTIME([fsp])\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(139,'LOCALTIMESTAMP',14,'Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP([fsp])\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(140,'MAKEDATE',14,'Syntax:\nMAKEDATE(year,dayofyear)\n\nReturns a date, given year and day-of-year values. dayofyear must be\ngreater than 0 or the result is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32);\n -> \'2011-01-31\', \'2011-02-01\'\nmysql> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365);\n -> \'2011-12-31\', \'2014-12-31\'\nmysql> SELECT MAKEDATE(2011,0);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(141,'MAKETIME',14,'Syntax:\nMAKETIME(hour,minute,second)\n\nReturns a time value calculated from the hour, minute, and second\narguments.\n\nThe second argument can have a fractional part.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(142,'MICROSECOND',14,'Syntax:\nMICROSECOND(expr)\n\nReturns the microseconds from the time or datetime expression expr as a\nnumber in the range from 0 to 999999.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'2019-12-31 23:59:59.000010\');\n -> 10\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(143,'MINUTE',14,'Syntax:\nMINUTE(time)\n\nReturns the minute for time, in the range 0 to 59.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MINUTE(\'2008-02-03 10:05:03\');\n -> 5\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(144,'MONTH',14,'Syntax:\nMONTH(date)\n\nReturns the month for date, in the range 1 to 12 for January to\nDecember, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have\na zero month part.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(145,'MONTHNAME',14,'Syntax:\nMONTHNAME(date)\n\nReturns the full name of the month for date. The language used for the\nname is controlled by the value of the lc_time_names system variable\n(https://dev.mysql.com/doc/refman/5.6/en/locale-support.html).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT MONTHNAME(\'2008-02-03\');\n -> \'February\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(146,'NOW',14,'Syntax:\nNOW([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD hh:mm:ss\'\nor YYYYMMDDhhmmss format, depending on whether the function is used in\nstring or numeric context. The value is expressed in the session time\nzone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT NOW();\n -> \'2007-12-15 23:50:26\'\nmysql> SELECT NOW() + 0;\n -> 20071215235026.000000\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(147,'PERIOD_ADD',14,'Syntax:\nPERIOD_ADD(P,N)\n\nAdds N months to period P (in the format YYMM or YYYYMM). Returns a\nvalue in the format YYYYMM.\n\n*Note*:\n\nThe period argument P is not a date value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_ADD(200801,2);\n -> 200803\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(148,'PERIOD_DIFF',14,'Syntax:\nPERIOD_DIFF(P1,P2)\n\nReturns the number of months between periods P1 and P2. P1 and P2\nshould be in the format YYMM or YYYYMM. Note that the period arguments\nP1 and P2 are not date values.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n -> 11\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(149,'QUARTER',14,'Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(150,'SECOND',14,'Syntax:\nSECOND(time)\n\nReturns the second for time, in the range 0 to 59.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(151,'SEC_TO_TIME',14,'Syntax:\nSEC_TO_TIME(seconds)\n\nReturns the seconds argument, converted to hours, minutes, and seconds,\nas a TIME value. The range of the result is constrained to that of the\nTIME data type. A warning occurs if the argument corresponds to a value\noutside that range.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT SEC_TO_TIME(2378);\n -> \'00:39:38\'\nmysql> SELECT SEC_TO_TIME(2378) + 0;\n -> 3938\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(152,'STR_TO_DATE',14,'Syntax:\nSTR_TO_DATE(str,format)\n\nThis is the inverse of the DATE_FORMAT() function. It takes a string\nstr and a format string format. STR_TO_DATE() returns a DATETIME value\nif the format string contains both date and time parts, or a DATE or\nTIME value if the string contains only date or time parts. If the date,\ntime, or datetime value extracted from str is illegal, STR_TO_DATE()\nreturns NULL and produces a warning.\n\nThe server scans str attempting to match format to it. The format\nstring can contain literal characters and format specifiers beginning\nwith %. Literal characters in format must match literally in str.\nFormat specifiers in format must match a date or time part in str. For\nthe specifiers that can be used in format, see the DATE_FORMAT()\nfunction description.\n\nmysql> SELECT STR_TO_DATE(\'01,5,2013\',\'%d,%m,%Y\');\n -> \'2013-05-01\'\nmysql> SELECT STR_TO_DATE(\'May 1, 2013\',\'%M %d,%Y\');\n -> \'2013-05-01\'\n\nScanning starts at the beginning of str and fails if format is found\nnot to match. Extra characters at the end of str are ignored.\n\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'a%h:%i:%s\');\n -> \'09:30:17\'\nmysql> SELECT STR_TO_DATE(\'a09:30:17\',\'%h:%i:%s\');\n -> NULL\nmysql> SELECT STR_TO_DATE(\'09:30:17a\',\'%h:%i:%s\');\n -> \'09:30:17\'\n\nUnspecified date or time parts have a value of 0, so incompletely\nspecified values in str produce a result with some or all parts set to\n0:\n\nmysql> SELECT STR_TO_DATE(\'abc\',\'abc\');\n -> \'0000-00-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%m\');\n -> \'0000-09-00\'\nmysql> SELECT STR_TO_DATE(\'9\',\'%s\');\n -> \'00:00:09\'\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(153,'SUBDATE',14,'Syntax:\nSUBDATE(date,INTERVAL expr unit), SUBDATE(expr,days)\n\nWhen invoked with the INTERVAL form of the second argument, SUBDATE()\nis a synonym for DATE_SUB(). For information on the INTERVAL unit\nargument, see the discussion for DATE_ADD().\n\nmysql> SELECT DATE_SUB(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\nmysql> SELECT SUBDATE(\'2008-01-02\', INTERVAL 31 DAY);\n -> \'2007-12-02\'\n\nThe second form enables the use of an integer value for days. In such\ncases, it is interpreted as the number of days to be subtracted from\nthe date or datetime expression expr.\n\nmysql> SELECT SUBDATE(\'2008-01-02 12:00:00\', 31);\n -> \'2007-12-02 12:00:00\'\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(154,'SUBTIME',14,'Syntax:\nSUBTIME(expr1,expr2)\n\nSUBTIME() returns expr1 − expr2 expressed as a value in the same\nformat as expr1. expr1 is a time or datetime expression, and expr2 is a\ntime expression.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT SUBTIME(\'2007-12-31 23:59:59.999999\',\'1 1:1:1.000002\');\n -> \'2007-12-30 22:58:58.999997\'\nmysql> SELECT SUBTIME(\'01:00:00.999999\', \'02:00:00.999998\');\n -> \'-00:59:59.999999\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(155,'SYSDATE',14,'Syntax:\nSYSDATE([fsp])\n\nReturns the current date and time as a value in \'YYYY-MM-DD hh:mm:ss\'\nor YYYYMMDDhhmmss format, depending on whether the function is used in\nstring or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nSYSDATE() returns the time at which it executes. This differs from the\nbehavior for NOW(), which returns a constant time that indicates the\ntime at which the statement began to execute. (Within a stored function\nor trigger, NOW() returns the time at which the function or triggering\nstatement began to execute.)\n\nmysql> SELECT NOW(), SLEEP(2), NOW();\n+---------------------+----------+---------------------+\n| NOW() | SLEEP(2) | NOW() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:36 | 0 | 2006-04-12 13:47:36 |\n+---------------------+----------+---------------------+\n\nmysql> SELECT SYSDATE(), SLEEP(2), SYSDATE();\n+---------------------+----------+---------------------+\n| SYSDATE() | SLEEP(2) | SYSDATE() |\n+---------------------+----------+---------------------+\n| 2006-04-12 13:47:44 | 0 | 2006-04-12 13:47:46 |\n+---------------------+----------+---------------------+\n\nIn addition, the SET TIMESTAMP statement affects the value returned by\nNOW() but not by SYSDATE(). This means that timestamp settings in the\nbinary log have no effect on invocations of SYSDATE().\n\nBecause SYSDATE() can return different values even within the same\nstatement, and is not affected by SET TIMESTAMP, it is nondeterministic\nand therefore unsafe for replication if statement-based binary logging\nis used. If that is a problem, you can use row-based logging.\n\nAlternatively, you can use the --sysdate-is-now option to cause\nSYSDATE() to be an alias for NOW(). This works if the option is used on\nboth the master and the slave.\n\nThe nondeterministic nature of SYSDATE() also means that indexes cannot\nbe used for evaluating expressions that refer to it.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(156,'TIME FUNCTION',14,'Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIME(\'2003-12-31 01:02:03\');\n -> \'01:02:03\'\nmysql> SELECT TIME(\'2003-12-31 01:02:03.000123\');\n -> \'01:02:03.000123\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(157,'TIMEDIFF',14,'Syntax:\nTIMEDIFF(expr1,expr2)\n\nTIMEDIFF() returns expr1 − expr2 expressed as a time value. expr1 and\nexpr2 are time or date-and-time expressions, but both must be of the\nsame type.\n\nThe result returned by TIMEDIFF() is limited to the range allowed for\nTIME values. Alternatively, you can use either of the functions\nTIMESTAMPDIFF() and UNIX_TIMESTAMP(), both of which return integers.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMEDIFF(\'2000:01:01 00:00:00\',\n -> \'2000:01:01 00:00:00.000001\');\n -> \'-00:00:00.000001\'\nmysql> SELECT TIMEDIFF(\'2008-12-31 23:59:59.000001\',\n -> \'2008-12-30 01:01:01.000002\');\n -> \'46:58:57.999999\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(158,'TIMESTAMP FUNCTION',14,'Syntax:\nTIMESTAMP(expr), TIMESTAMP(expr1,expr2)\n\nWith a single argument, this function returns the date or datetime\nexpression expr as a datetime value. With two arguments, it adds the\ntime expression expr2 to the date or datetime expression expr1 and\nreturns the result as a datetime value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMP(\'2003-12-31\');\n -> \'2003-12-31 00:00:00\'\nmysql> SELECT TIMESTAMP(\'2003-12-31 12:00:00\',\'12:00:00\');\n -> \'2004-01-01 00:00:00\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(159,'TIMESTAMPADD',14,'Syntax:\nTIMESTAMPADD(unit,interval,datetime_expr)\n\nAdds the integer expression interval to the date or datetime expression\ndatetime_expr. The unit for interval is given by the unit argument,\nwhich should be one of the following values: MICROSECOND\n(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or\nYEAR.\n\nThe unit value may be specified using one of keywords as shown, or with\na prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPADD(MINUTE,1,\'2003-01-02\');\n -> \'2003-01-02 00:01:00\'\nmysql> SELECT TIMESTAMPADD(WEEK,1,\'2003-01-02\');\n -> \'2003-01-09\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(160,'TIMESTAMPDIFF',14,'Syntax:\nTIMESTAMPDIFF(unit,datetime_expr1,datetime_expr2)\n\nReturns datetime_expr2 − datetime_expr1, where datetime_expr1 and\ndatetime_expr2 are date or datetime expressions. One expression may be\na date and the other a datetime; a date value is treated as a datetime\nhaving the time part \'00:00:00\' where necessary. The unit for the\nresult (an integer) is given by the unit argument. The legal values for\nunit are the same as those listed in the description of the\nTIMESTAMPADD() function.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIMESTAMPDIFF(MONTH,\'2003-02-01\',\'2003-05-01\');\n -> 3\nmysql> SELECT TIMESTAMPDIFF(YEAR,\'2002-05-01\',\'2001-01-01\');\n -> -1\nmysql> SELECT TIMESTAMPDIFF(MINUTE,\'2003-02-01\',\'2003-05-01 12:05:55\');\n -> 128885\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(161,'TIME_FORMAT',14,'Syntax:\nTIME_FORMAT(time,format)\n\nThis is used like the DATE_FORMAT() function, but the format string may\ncontain format specifiers only for hours, minutes, seconds, and\nmicroseconds. Other specifiers produce a NULL value or 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_FORMAT(\'100:00:00\', \'%H %k %h %I %l\');\n -> \'100 100 04 04 4\'\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(162,'TIME_TO_SEC',14,'Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TIME_TO_SEC(\'22:23:00\');\n -> 80580\nmysql> SELECT TIME_TO_SEC(\'00:39:38\');\n -> 2378\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(163,'TO_DAYS',14,'Syntax:\nTO_DAYS(date)\n\nGiven a date date, returns a day number (the number of days since year\n0).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TO_DAYS(950501);\n -> 728779\nmysql> SELECT TO_DAYS(\'2007-10-07\');\n -> 733321\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(164,'TO_SECONDS',14,'Syntax:\nTO_SECONDS(expr)\n\nGiven a date or datetime expr, returns the number of seconds since the\nyear 0. If expr is not a valid date or datetime value, returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT TO_SECONDS(950501);\n -> 62966505600\nmysql> SELECT TO_SECONDS(\'2009-11-29\');\n -> 63426672000\nmysql> SELECT TO_SECONDS(\'2009-11-29 13:43:32\');\n -> 63426721412\nmysql> SELECT TO_SECONDS( NOW() );\n -> 63426721458\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(165,'UNIX_TIMESTAMP',14,'Syntax:\nUNIX_TIMESTAMP([date])\n\nIf UNIX_TIMESTAMP() is called with no date argument, it returns a Unix\ntimestamp representing seconds since \'1970-01-01 00:00:00\' UTC.\n\nIf UNIX_TIMESTAMP() is called with a date argument, it returns the\nvalue of the argument as seconds since \'1970-01-01 00:00:00\' UTC. The\nserver interprets date as a value in the session time zone and converts\nit to an internal Unix timestamp value in UTC. (Clients can set the\nsession time zone as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/time-zone-support.html.) The\ndate argument may be a DATE, DATETIME, or TIMESTAMP string, or a number\nin YYMMDD, YYMMDDhhmmss, YYYYMMDD, or YYYYMMDDhhmmss format. If the\nargument includes a time part, it may optionally include a fractional\nseconds part.\n\nThe return value is an integer if no argument is given or the argument\ndoes not include a fractional seconds part, or DECIMAL if an argument\nis given that includes a fractional seconds part.\n\nWhen the date argument is a TIMESTAMP column, UNIX_TIMESTAMP() returns\nthe internal timestamp value directly, with no implicit\n\"string-to-Unix-timestamp\" conversion.\n\nThe valid range of argument values is the same as for the TIMESTAMP\ndata type: \'1970-01-01 00:00:01.000000\' UTC to \'2038-01-19\n03:14:07.999999\' UTC. If you pass an out-of-range date to\nUNIX_TIMESTAMP(), it returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UNIX_TIMESTAMP();\n -> 1447431666\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19\');\n -> 1447431619\nmysql> SELECT UNIX_TIMESTAMP(\'2015-11-13 10:20:19.012\');\n -> 1447431619.012\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(166,'UTC_DATE',14,'Syntax:\nUTC_DATE, UTC_DATE()\n\nReturns the current UTC date as a value in \'YYYY-MM-DD\' or YYYYMMDD\nformat, depending on whether the function is used in string or numeric\ncontext.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(167,'UTC_TIME',14,'Syntax:\nUTC_TIME, UTC_TIME([fsp])\n\nReturns the current UTC time as a value in \'hh:mm:ss\' or hhmmss format,\ndepending on whether the function is used in string or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753.000000\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(168,'UTC_TIMESTAMP',14,'Syntax:\nUTC_TIMESTAMP, UTC_TIMESTAMP([fsp])\n\nReturns the current UTC date and time as a value in \'YYYY-MM-DD\nhh:mm:ss\' or YYYYMMDDhhmmss format, depending on whether the function\nis used in string or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0;\n -> \'2003-08-14 18:08:04\', 20030814180804.000000\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(169,'WEEK',14,'Syntax:\nWEEK(date[,mode])\n\nThis function returns the week number for date. The two-argument form\nof WEEK() enables you to specify whether the week starts on Sunday or\nMonday and whether the return value should be in the range from 0 to 53\nor from 1 to 53. If the mode argument is omitted, the value of the\ndefault_week_format system variable is used. See\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT WEEK(\'2008-02-20\');\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',0);\n -> 7\nmysql> SELECT WEEK(\'2008-02-20\',1);\n -> 8\nmysql> SELECT WEEK(\'2008-12-31\',1);\n -> 53\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(170,'WEEKDAY',14,'Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKDAY(\'2008-02-03 22:23:00\');\n -> 6\nmysql> SELECT WEEKDAY(\'2007-11-06\');\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(171,'WEEKOFYEAR',14,'Syntax:\nWEEKOFYEAR(date)\n\nReturns the calendar week of the date as a number in the range from 1\nto 53. WEEKOFYEAR() is a compatibility function that is equivalent to\nWEEK(date,3).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKOFYEAR(\'2008-02-20\');\n -> 8\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(172,'YEAR',14,'Syntax:\nYEAR(date)\n\nReturns the year for date, in the range 1000 to 9999, or 0 for the\n\"zero\" date.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT YEAR(\'1987-01-01\');\n -> 1987\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(173,'YEARWEEK',14,'Syntax:\nYEARWEEK(date), YEARWEEK(date,mode)\n\nReturns year and week for a date. The year in the result may be\ndifferent from the year in the date argument for the first and the last\nweek of the year.\n\nThe mode argument works exactly like the mode argument to WEEK(). For\nthe single-argument syntax, a mode value of 0 is used. Unlike WEEK(),\nthe value of default_week_format does not influence YEARWEEK().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\n\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198652\n','https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html'),(174,'ASCII',15,'Syntax:\nASCII(str)\n\nReturns the numeric value of the leftmost character of the string str.\nReturns 0 if str is the empty string. Returns NULL if str is NULL.\nASCII() works for 8-bit characters.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT ASCII(\'2\');\n -> 50\nmysql> SELECT ASCII(2);\n -> 50\nmysql> SELECT ASCII(\'dx\');\n -> 100\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(175,'BIN',15,'Syntax:\nBIN(N)\n\nReturns a string representation of the binary value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns\nNULL if N is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT BIN(12);\n -> \'1100\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(176,'BIT_LENGTH',15,'Syntax:\nBIT_LENGTH(str)\n\nReturns the length of the string str in bits.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(177,'CHAR FUNCTION',15,'Syntax:\nCHAR(N,... [USING charset_name])\n\nCHAR() interprets each argument N as an integer and returns a string\nconsisting of the characters given by the code values of those\nintegers. NULL values are skipped.\n\nBy default, CHAR() returns a binary string. To produce a string in a\ngiven character set, use the optional USING clause:\n\nmysql> SELECT CHARSET(CHAR(X\'65\')), CHARSET(CHAR(X\'65\' USING utf8));\n+----------------------+---------------------------------+\n| CHARSET(CHAR(X\'65\')) | CHARSET(CHAR(X\'65\' USING utf8)) |\n+----------------------+---------------------------------+\n| binary | utf8 |\n+----------------------+---------------------------------+\n\nIf USING is given and the result string is illegal for the given\ncharacter set, a warning is issued. Also, if strict SQL mode is\nenabled, the result from CHAR() becomes NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT CHAR(77,121,83,81,\'76\');\n -> \'MySQL\'\nmysql> SELECT CHAR(77,77.3,\'77.3\');\n -> \'MMM\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(178,'CHAR_LENGTH',15,'Syntax:\nCHAR_LENGTH(str)\n\nReturns the length of the string str, measured in characters. A\nmultibyte character counts as a single character. This means that for a\nstring containing five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(179,'CHARACTER_LENGTH',15,'Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(180,'CONCAT',15,'Syntax:\nCONCAT(str1,str2,...)\n\nReturns the string that results from concatenating the arguments. May\nhave one or more arguments. If all arguments are nonbinary strings, the\nresult is a nonbinary string. If the arguments include any binary\nstrings, the result is a binary string. A numeric argument is converted\nto its equivalent nonbinary string form.\n\nCONCAT() returns NULL if any argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT CONCAT(\'My\', \'S\', \'QL\');\n -> \'MySQL\'\nmysql> SELECT CONCAT(\'My\', NULL, \'QL\');\n -> NULL\nmysql> SELECT CONCAT(14.3);\n -> \'14.3\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(181,'CONCAT_WS',15,'Syntax:\nCONCAT_WS(separator,str1,str2,...)\n\nCONCAT_WS() stands for Concatenate With Separator and is a special form\nof CONCAT(). The first argument is the separator for the rest of the\narguments. The separator is added between the strings to be\nconcatenated. The separator can be a string, as can the rest of the\narguments. If the separator is NULL, the result is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT CONCAT_WS(\',\',\'First name\',\'Second name\',\'Last Name\');\n -> \'First name,Second name,Last Name\'\nmysql> SELECT CONCAT_WS(\',\',\'First name\',NULL,\'Last Name\');\n -> \'First name,Last Name\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(182,'ELT',15,'Syntax:\nELT(N,str1,str2,str3,...)\n\nELT() returns the Nth element of the list of strings: str1 if N = 1,\nstr2 if N = 2, and so on. Returns NULL if N is less than 1 or greater\nthan the number of arguments. ELT() is the complement of FIELD().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT ELT(1, \'Aa\', \'Bb\', \'Cc\', \'Dd\');\n -> \'Aa\'\nmysql> SELECT ELT(4, \'Aa\', \'Bb\', \'Cc\', \'Dd\');\n -> \'Dd\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(183,'EXPORT_SET',15,'Syntax:\nEXPORT_SET(bits,on,off[,separator[,number_of_bits]])\n\nReturns a string such that for every bit set in the value bits, you get\nan on string and for every bit not set in the value, you get an off\nstring. Bits in bits are examined from right to left (from low-order to\nhigh-order bits). Strings are added to the result from left to right,\nseparated by the separator string (the default being the comma\ncharacter ,). The number of bits examined is given by number_of_bits,\nwhich has a default of 64 if not specified. number_of_bits is silently\nclipped to 64 if larger than 64. It is treated as an unsigned integer,\nso a value of −1 is effectively the same as 64.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT EXPORT_SET(5,\'Y\',\'N\',\',\',4);\n -> \'Y,N,Y,N\'\nmysql> SELECT EXPORT_SET(6,\'1\',\'0\',\',\',10);\n -> \'0,1,1,0,0,0,0,0,0,0\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(184,'FIELD',15,'Syntax:\nFIELD(str,str1,str2,str3,...)\n\nReturns the index (position) of str in the str1, str2, str3, ... list.\nReturns 0 if str is not found.\n\nIf all arguments to FIELD() are strings, all arguments are compared as\nstrings. If all arguments are numbers, they are compared as numbers.\nOtherwise, the arguments are compared as double.\n\nIf str is NULL, the return value is 0 because NULL fails equality\ncomparison with any value. FIELD() is the complement of ELT().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT FIELD(\'Bb\', \'Aa\', \'Bb\', \'Cc\', \'Dd\', \'Ff\');\n -> 2\nmysql> SELECT FIELD(\'Gg\', \'Aa\', \'Bb\', \'Cc\', \'Dd\', \'Ff\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(185,'FIND_IN_SET',15,'Syntax:\nFIND_IN_SET(str,strlist)\n\nReturns a value in the range of 1 to N if the string str is in the\nstring list strlist consisting of N substrings. A string list is a\nstring composed of substrings separated by , characters. If the first\nargument is a constant string and the second is a column of type SET,\nthe FIND_IN_SET() function is optimized to use bit arithmetic. Returns\n0 if str is not in strlist or if strlist is the empty string. Returns\nNULL if either argument is NULL. This function does not work properly\nif the first argument contains a comma (,) character.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(186,'FORMAT',15,'Syntax:\nFORMAT(X,D[,locale])\n\nFormats the number X to a format like \'#,###,###.##\', rounded to D\ndecimal places, and returns the result as a string. If D is 0, the\nresult has no decimal point or fractional part.\n\nThe optional third parameter enables a locale to be specified to be\nused for the result number\'s decimal point, thousands separator, and\ngrouping between separators. Permissible locale values are the same as\nthe legal values for the lc_time_names system variable (see\nhttps://dev.mysql.com/doc/refman/5.6/en/locale-support.html). If no\nlocale is specified, the default is \'en_US\'.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT FORMAT(12332.123456, 4);\n -> \'12,332.1235\'\nmysql> SELECT FORMAT(12332.1,4);\n -> \'12,332.1000\'\nmysql> SELECT FORMAT(12332.2,0);\n -> \'12,332\'\nmysql> SELECT FORMAT(12332.2,2,\'de_DE\');\n -> \'12.332,20\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(187,'FROM_BASE64',15,'Syntax:\nFROM_BASE64(str)\n\nTakes a string encoded with the base-64 encoded rules used by\nTO_BASE64() and returns the decoded result as a binary string. The\nresult is NULL if the argument is NULL or not a valid base-64 string.\nSee the description of TO_BASE64() for details about the encoding and\ndecoding rules.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(188,'HEX',15,'Syntax:\nHEX(str), HEX(N)\n\nFor a string argument str, HEX() returns a hexadecimal string\nrepresentation of str where each byte of each character in str is\nconverted to two hexadecimal digits. (Multibyte characters therefore\nbecome more than two digits.) The inverse of this operation is\nperformed by the UNHEX() function.\n\nFor a numeric argument N, HEX() returns a hexadecimal string\nrepresentation of the value of N treated as a longlong (BIGINT) number.\nThis is equivalent to CONV(N,10,16). The inverse of this operation is\nperformed by CONV(HEX(N),16,10).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT X\'616263\', HEX(\'abc\'), UNHEX(HEX(\'abc\'));\n -> \'abc\', 616263, \'abc\'\nmysql> SELECT HEX(255), CONV(HEX(255),16,10);\n -> \'FF\', 255\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(189,'INSERT FUNCTION',15,'Syntax:\nINSERT(str,pos,len,newstr)\n\nReturns the string str, with the substring beginning at position pos\nand len characters long replaced by the string newstr. Returns the\noriginal string if pos is not within the length of the string. Replaces\nthe rest of the string from position pos if len is not within the\nlength of the rest of the string. Returns NULL if any argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT INSERT(\'Quadratic\', 3, 4, \'What\');\n -> \'QuWhattic\'\nmysql> SELECT INSERT(\'Quadratic\', -1, 4, \'What\');\n -> \'Quadratic\'\nmysql> SELECT INSERT(\'Quadratic\', 3, 100, \'What\');\n -> \'QuWhat\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(190,'INSTR',15,'Syntax:\nINSTR(str,substr)\n\nReturns the position of the first occurrence of substring substr in\nstring str. This is the same as the two-argument form of LOCATE(),\nexcept that the order of the arguments is reversed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(191,'LCASE',15,'Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(192,'LEFT',15,'Syntax:\nLEFT(str,len)\n\nReturns the leftmost len characters from the string str, or NULL if any\nargument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(193,'LENGTH',15,'Syntax:\nLENGTH(str)\n\nReturns the length of the string str, measured in bytes. A multibyte\ncharacter counts as multiple bytes. This means that for a string\ncontaining five 2-byte characters, LENGTH() returns 10, whereas\nCHAR_LENGTH() returns 5.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LENGTH(\'text\');\n -> 4\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(194,'LOAD_FILE',15,'Syntax:\nLOAD_FILE(file_name)\n\nReads the file and returns the file contents as a string. To use this\nfunction, the file must be located on the server host, you must specify\nthe full path name to the file, and you must have the FILE privilege.\nThe file must be readable by all and its size less than\nmax_allowed_packet bytes. If the secure_file_priv system variable is\nset to a nonempty directory name, the file to be loaded must be located\nin that directory.\n\nIf the file does not exist or cannot be read because one of the\npreceding conditions is not satisfied, the function returns NULL.\n\nThe character_set_filesystem system variable controls interpretation of\nfile names that are given as literal strings.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(195,'LOCATE',15,'Syntax:\nLOCATE(substr,str), LOCATE(substr,str,pos)\n\nThe first syntax returns the position of the first occurrence of\nsubstring substr in string str. The second syntax returns the position\nof the first occurrence of substring substr in string str, starting at\nposition pos. Returns 0 if substr is not in str. Returns NULL if substr\nor str is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LOCATE(\'bar\', \'foobarbar\');\n -> 4\nmysql> SELECT LOCATE(\'xbar\', \'foobar\');\n -> 0\nmysql> SELECT LOCATE(\'bar\', \'foobarbar\', 5);\n -> 7\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(196,'LOWER',15,'Syntax:\nLOWER(str)\n\nReturns the string str with all characters changed to lowercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT LOWER(\'QUADRATICALLY\');\n -> \'quadratically\'\n\nLOWER() (and UPPER()) are ineffective when applied to binary strings\n(BINARY, VARBINARY, BLOB). To perform lettercase conversion of a binary\nstring, first convert it to a nonbinary string using a character set\nappropriate for the data stored in the string:\n\nmysql> SET @str = BINARY \'New York\';\nmysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));\n+-------------+-----------------------------------+\n| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |\n+-------------+-----------------------------------+\n| New York | new york |\n+-------------+-----------------------------------+\n\nFor collations of Unicode character sets, LOWER() and UPPER() work\naccording to the Unicode Collation Algorithm (UCA) version in the\ncollation name, if there is one, and UCA 4.0.0 if no version is\nspecified. For example, utf8_unicode_520_ci works according to UCA\n5.2.0, whereas utf8_unicode_ci works according to UCA 4.0.0. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(197,'LPAD',15,'Syntax:\nLPAD(str,len,padstr)\n\nReturns the string str, left-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(198,'LTRIM',15,'Syntax:\nLTRIM(str)\n\nReturns the string str with leading space characters removed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(199,'MAKE_SET',15,'Syntax:\nMAKE_SET(bits,str1,str2,...)\n\nReturns a set value (a string containing substrings separated by ,\ncharacters) consisting of the strings that have the corresponding bit\nin bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL\nvalues in str1, str2, ... are not appended to the result.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT MAKE_SET(1,\'a\',\'b\',\'c\');\n -> \'a\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',\'world\');\n -> \'hello,world\'\nmysql> SELECT MAKE_SET(1 | 4,\'hello\',\'nice\',NULL,\'world\');\n -> \'hello\'\nmysql> SELECT MAKE_SET(0,\'a\',\'b\',\'c\');\n -> \'\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(200,'MID',15,'Syntax:\nMID(str,pos,len)\n\nMID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(201,'OCT',15,'Syntax:\nOCT(N)\n\nReturns a string representation of the octal value of N, where N is a\nlonglong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns\nNULL if N is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT OCT(12);\n -> \'14\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(202,'OCTET_LENGTH',15,'Syntax:\nOCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(203,'ORD',15,'Syntax:\nORD(str)\n\nIf the leftmost character of the string str is a multibyte character,\nreturns the code for that character, calculated from the numeric values\nof its constituent bytes using this formula:\n\n (1st byte code)\n+ (2nd byte code * 256)\n+ (3rd byte code * 256^2) ...\n\nIf the leftmost character is not a multibyte character, ORD() returns\nthe same value as the ASCII() function.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT ORD(\'2\');\n -> 50\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(204,'POSITION',15,'Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(205,'QUOTE',15,'Syntax:\nQUOTE(str)\n\nQuotes a string to produce a result that can be used as a properly\nescaped data value in an SQL statement. The string is returned enclosed\nby single quotation marks and with each instance of backslash (\\),\nsingle quote (\'), ASCII NUL, and Control+Z preceded by a backslash. If\nthe argument is NULL, the return value is the word \"NULL\" without\nenclosing single quotation marks.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(206,'REPEAT FUNCTION',15,'Syntax:\nREPEAT(str,count)\n\nReturns a string consisting of the string str repeated count times. If\ncount is less than 1, returns an empty string. Returns NULL if str or\ncount are NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(207,'REPLACE FUNCTION',15,'Syntax:\nREPLACE(str,from_str,to_str)\n\nReturns the string str with all occurrences of the string from_str\nreplaced by the string to_str. REPLACE() performs a case-sensitive\nmatch when searching for from_str.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(208,'REVERSE',15,'Syntax:\nREVERSE(str)\n\nReturns the string str with the order of the characters reversed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(209,'RIGHT',15,'Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(210,'RPAD',15,'Syntax:\nRPAD(str,len,padstr)\n\nReturns the string str, right-padded with the string padstr to a length\nof len characters. If str is longer than len, the return value is\nshortened to len characters.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(211,'RTRIM',15,'Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(212,'SOUNDEX',15,'Syntax:\nSOUNDEX(str)\n\nReturns a soundex string from str. Two strings that sound almost the\nsame should have identical soundex strings. A standard soundex string\nis four characters long, but the SOUNDEX() function returns an\narbitrarily long string. You can use SUBSTRING() on the result to get a\nstandard soundex string. All nonalphabetic characters in str are\nignored. All international alphabetic characters outside the A-Z range\nare treated as vowels.\n\n*Important*:\n\nWhen using SOUNDEX(), you should be aware of the following limitations:\n\no This function, as currently implemented, is intended to work well\n with strings that are in the English language only. Strings in other\n languages may not produce reliable results.\n\no This function is not guaranteed to provide consistent results with\n strings that use multibyte character sets, including utf-8. See Bug\n #22638 for more information.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(213,'SOUNDS LIKE',15,'Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(214,'SPACE',15,'Syntax:\nSPACE(N)\n\nReturns a string consisting of N space characters.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SPACE(6);\n -> \' \'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(215,'SUBSTR',15,'Syntax:\nSUBSTR(str,pos), SUBSTR(str FROM pos), SUBSTR(str,pos,len), SUBSTR(str\nFROM pos FOR len)\n\nSUBSTR() is a synonym for SUBSTRING().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(216,'SUBSTRING',15,'Syntax:\nSUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len),\nSUBSTRING(str FROM pos FOR len)\n\nThe forms without a len argument return a substring from string str\nstarting at position pos. The forms with a len argument return a\nsubstring len characters long from string str, starting at position\npos. The forms that use FROM are standard SQL syntax. It is also\npossible to use a negative value for pos. In this case, the beginning\nof the substring is pos characters from the end of the string, rather\nthan the beginning. A negative value may be used for pos in any of the\nforms of this function. A value of 0 for pos returns an empty string.\n\nFor all forms of SUBSTRING(), the position of the first character in\nthe string from which the substring is to be extracted is reckoned as\n1.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SUBSTRING(\'Quadratically\',5);\n -> \'ratically\'\nmysql> SELECT SUBSTRING(\'foobarbar\' FROM 4);\n -> \'barbar\'\nmysql> SELECT SUBSTRING(\'Quadratically\',5,6);\n -> \'ratica\'\nmysql> SELECT SUBSTRING(\'Sakila\', -3);\n -> \'ila\'\nmysql> SELECT SUBSTRING(\'Sakila\', -5, 3);\n -> \'aki\'\nmysql> SELECT SUBSTRING(\'Sakila\' FROM -4 FOR 2);\n -> \'ki\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(217,'SUBSTRING_INDEX',15,'Syntax:\nSUBSTRING_INDEX(str,delim,count)\n\nReturns the substring from string str before count occurrences of the\ndelimiter delim. If count is positive, everything to the left of the\nfinal delimiter (counting from the left) is returned. If count is\nnegative, everything to the right of the final delimiter (counting from\nthe right) is returned. SUBSTRING_INDEX() performs a case-sensitive\nmatch when searching for delim.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', 2);\n -> \'www.mysql\'\nmysql> SELECT SUBSTRING_INDEX(\'www.mysql.com\', \'.\', -2);\n -> \'mysql.com\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(218,'TO_BASE64',15,'Syntax:\nTO_BASE64(str)\n\nConverts the string argument to base-64 encoded form and returns the\nresult as a character string with the connection character set and\ncollation. If the argument is not a string, it is converted to a string\nbefore conversion takes place. The result is NULL if the argument is\nNULL. Base-64 encoded strings can be decoded using the FROM_BASE64()\nfunction.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(219,'TRIM',15,'Syntax:\nTRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr\nFROM] str)\n\nReturns the string str with all remstr prefixes or suffixes removed. If\nnone of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is\nassumed. remstr is optional and, if not specified, spaces are removed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT TRIM(\' bar \');\n -> \'bar\'\nmysql> SELECT TRIM(LEADING \'x\' FROM \'xxxbarxxx\');\n -> \'barxxx\'\nmysql> SELECT TRIM(BOTH \'x\' FROM \'xxxbarxxx\');\n -> \'bar\'\nmysql> SELECT TRIM(TRAILING \'xyz\' FROM \'barxxyz\');\n -> \'barx\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(220,'UCASE',15,'Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(221,'UNHEX',15,'Syntax:\nUNHEX(str)\n\nFor a string argument str, UNHEX(str) interprets each pair of\ncharacters in the argument as a hexadecimal number and converts it to\nthe byte represented by the number. The return value is a binary\nstring.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','mysql> SELECT UNHEX(\'4D7953514C\');\n -> \'MySQL\'\nmysql> SELECT X\'4D7953514C\';\n -> \'MySQL\'\nmysql> SELECT UNHEX(HEX(\'string\'));\n -> \'string\'\nmysql> SELECT HEX(UNHEX(\'1267\'));\n -> \'1267\'\n','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(222,'UPPER',15,'Syntax:\nUPPER(str)\n\nReturns the string str with all characters changed to uppercase\naccording to the current character set mapping. The default is latin1\n(cp1252 West European).\n\nmysql> SELECT UPPER(\'Hej\');\n -> \'HEJ\'\n\nSee the description of LOWER() for information that also applies to\nUPPER(). This included information about how to perform lettercase\nconversion of binary strings (BINARY, VARBINARY, BLOB) for which these\nfunctions are ineffective, and information about case folding for\nUnicode character sets.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(223,'WEIGHT_STRING',15,'Syntax:\nWEIGHT_STRING(str [AS {CHAR|BINARY}(N)] [LEVEL levels] [flags])\n\nlevels: N [ASC|DESC|REVERSE] [, N [ASC|DESC|REVERSE]] ...\n\nThis function returns the weight string for the input string. The\nreturn value is a binary string that represents the comparison and\nsorting value of the string. It has these properties:\n\no If WEIGHT_STRING(str1) = WEIGHT_STRING(str2), then str1 = str2 (str1\n and str2 are considered equal)\n\no If WEIGHT_STRING(str1) < WEIGHT_STRING(str2), then str1 < str2 (str1\n sorts before str2)\n\nWEIGHT_STRING() is a debugging function intended for internal use. Its\nbehavior can change without notice between MySQL versions. It can be\nused for testing and debugging of collations, especially if you are\nadding a new collation. See\nhttps://dev.mysql.com/doc/refman/5.6/en/adding-collation.html.\n\nThis list briefly summarizes the arguments. More details are given in\nthe discussion following the list.\n\no str: The input string expression.\n\no AS clause: Optional; cast the input string to a given type and\n length.\n\no LEVEL clause: Optional; specify weight levels for the return value.\n\no flags: Optional; unused.\n\nThe input string, str, is a string expression. If the input is a\nnonbinary (character) string such as a CHAR, VARCHAR, or TEXT value,\nthe return value contains the collation weights for the string. If the\ninput is a binary (byte) string such as a BINARY, VARBINARY, or BLOB\nvalue, the return value is the same as the input (the weight for each\nbyte in a binary string is the byte value). If the input is NULL,\nWEIGHT_STRING() returns NULL.\n\nExamples:\n\nmysql> SET @s = _latin1 \'AB\' COLLATE latin1_swedish_ci;\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| AB | 4142 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = _latin1 \'ab\' COLLATE latin1_swedish_ci;\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| ab | 6162 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = CAST(\'AB\' AS BINARY);\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| AB | 4142 | 4142 |\n+------+---------+------------------------+\n\nmysql> SET @s = CAST(\'ab\' AS BINARY);\nmysql> SELECT @s, HEX(@s), HEX(WEIGHT_STRING(@s));\n+------+---------+------------------------+\n| @s | HEX(@s) | HEX(WEIGHT_STRING(@s)) |\n+------+---------+------------------------+\n| ab | 6162 | 6162 |\n+------+---------+------------------------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-functions.html'),(224,'LIKE',15,'Syntax:\nexpr LIKE pat [ESCAPE \'escape_char\']\n\nPattern matching using an SQL pattern. Returns 1 (TRUE) or 0 (FALSE).\nIf either expr or pat is NULL, the result is NULL.\n\nThe pattern need not be a literal string. For example, it can be\nspecified as a string expression or table column.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html'),(225,'NOT LIKE',15,'Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html'),(226,'STRCMP',15,'Syntax:\nSTRCMP(expr1,expr2)\n\nSTRCMP() returns 0 if the strings are the same, -1 if the first\nargument is smaller than the second according to the current sort\norder, and 1 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html\n\n','mysql> SELECT STRCMP(\'text\', \'text2\');\n -> -1\nmysql> SELECT STRCMP(\'text2\', \'text\');\n -> 1\nmysql> SELECT STRCMP(\'text\', \'text\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/string-comparison-functions.html'),(227,'NOT REGEXP',15,'Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/regexp.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/regexp.html'),(228,'REGEXP',15,'Syntax:\nexpr REGEXP pat, expr RLIKE pat\n\nReturns 1 if the string expr matches the regular expression specified\nby the pattern pat, 0 otherwise. If either expr or pat is NULL, the\nreturn value is NULL.\n\nRLIKE is a synonym for REGEXP, provided for mSQL compatibility.\n\nThe pattern can be an extended regular expression, the syntax for which\nis discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/regexp.html#regexp-syntax. The\npattern need not be a literal string. For example, it can be specified\nas a string expression or table column.\n\n*Note*:\n\nBecause MySQL uses the C escape syntax in strings (for example, \\n to\nrepresent the newline character), you must double any \\ that you use in\nyour REGEXP arguments.\n\nRegular expression operations use the character set and collation of\nthe string expression and pattern arguments when deciding the type of a\ncharacter and performing the comparison. If the arguments have\ndifferent character sets or collations, coercibility rules apply as\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-collation-coercibility.\nhtml. If either argument is a binary string, the arguments are handled\nin case-sensitive fashion as binary strings.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/regexp.html\n\n','mysql> SELECT \'Michael!\' REGEXP \'.*\';\n+------------------------+\n| \'Michael!\' REGEXP \'.*\' |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\';\n+---------------------------------------+\n| \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\' |\n+---------------------------------------+\n| 0 |\n+---------------------------------------+\nmysql> SELECT \'a\' REGEXP \'^[a-d]\';\n+---------------------+\n| \'a\' REGEXP \'^[a-d]\' |\n+---------------------+\n| 1 |\n+---------------------+\nmysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\';\n+----------------+-----------------------+\n| \'a\' REGEXP \'A\' | \'a\' REGEXP BINARY \'A\' |\n+----------------+-----------------------+\n| 1 | 0 |\n+----------------+-----------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/regexp.html'),(229,'MATCH AGAINST',15,'Syntax:\nMATCH (col1,col2,...) AGAINST (expr [search_modifier])\n\nMySQL has support for full-text indexing and searching:\n\no A full-text index in MySQL is an index of type FULLTEXT.\n\no Full-text indexes can be used only with InnoDB or MyISAM tables, and\n can be created only for CHAR, VARCHAR, or TEXT columns.\n\no A FULLTEXT index definition can be given in the CREATE TABLE\n statement when a table is created, or added later using ALTER TABLE\n or CREATE INDEX.\n\no For large data sets, it is much faster to load your data into a table\n that has no FULLTEXT index and then create the index after that, than\n to load data into a table that has an existing FULLTEXT index.\n\nFull-text searching is performed using MATCH() ... AGAINST syntax.\nMATCH() takes a comma-separated list that names the columns to be\nsearched. AGAINST takes a string to search for, and an optional\nmodifier that indicates what type of search to perform. The search\nstring must be a string value that is constant during query evaluation.\nThis rules out, for example, a table column because that can differ for\neach row.\n\nThere are three types of full-text searches:\n\no A natural language search interprets the search string as a phrase in\n natural human language (a phrase in free text). There are no special\n operators, with the exception of double quote (\") characters. The\n stopword list applies. For more information about stopword lists, see\n https://dev.mysql.com/doc/refman/5.6/en/fulltext-stopwords.html.\n\n Full-text searches are natural language searches if the IN NATURAL\n LANGUAGE MODE modifier is given or if no modifier is given. For more\n information, see\n https://dev.mysql.com/doc/refman/5.6/en/fulltext-natural-language.htm\n l.\n\no A boolean search interprets the search string using the rules of a\n special query language. The string contains the words to search for.\n It can also contain operators that specify requirements such that a\n word must be present or absent in matching rows, or that it should be\n weighted higher or lower than usual. Certain common words (stopwords)\n are omitted from the search index and do not match if present in the\n search string. The IN BOOLEAN MODE modifier specifies a boolean\n search. For more information, see\n https://dev.mysql.com/doc/refman/5.6/en/fulltext-boolean.html.\n\no A query expansion search is a modification of a natural language\n search. The search string is used to perform a natural language\n search. Then words from the most relevant rows returned by the search\n are added to the search string and the search is done again. The\n query returns the rows from the second search. The IN NATURAL\n LANGUAGE MODE WITH QUERY EXPANSION or WITH QUERY EXPANSION modifier\n specifies a query expansion search. For more information, see\n https://dev.mysql.com/doc/refman/5.6/en/fulltext-query-expansion.html\n .\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html\n\n','mysql> SELECT id, body, MATCH (title,body) AGAINST\n (\'Security implications of running MySQL as root\'\n IN NATURAL LANGUAGE MODE) AS score\n FROM articles WHERE MATCH (title,body) AGAINST\n (\'Security implications of running MySQL as root\'\n IN NATURAL LANGUAGE MODE);\n+----+-------------------------------------+-----------------+\n| id | body | score |\n+----+-------------------------------------+-----------------+\n| 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 |\n| 6 | When configured properly, MySQL ... | 1.3114095926285 |\n+----+-------------------------------------+-----------------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/fulltext-search.html'),(230,'BINARY OPERATOR',15,'Syntax:\nBINARY expr\n\nThe BINARY operator converts the expression to a binary string (a\nstring that has the binary character set and binary collation). A\ncommon use for BINARY is to force a character string comparison to be\ndone byte by byte using numeric byte values rather than character by\ncharacter. The BINARY operator also causes trailing spaces in\ncomparisons to be significant. For information about the differences\nbetween the binary collation of the binary character set and the _bin\ncollations of nonbinary character sets, see\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-binary-collations.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/cast-functions.html\n\n','mysql> SELECT \'a\' = \'A\';\n -> 1\nmysql> SELECT BINARY \'a\' = \'A\';\n -> 0\nmysql> SELECT \'a\' = \'a \';\n -> 1\nmysql> SELECT BINARY \'a\' = \'a \';\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/cast-functions.html'),(231,'CAST',15,'Syntax:\nCAST(expr AS type)\n\nThe CAST() function takes an expression of any type and produces a\nresult value of the specified type, similar to CONVERT(). For more\ninformation, see the description of CONVERT().\n\nCAST() is standard SQL syntax.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/cast-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/cast-functions.html'),(232,'CONVERT',15,'Syntax:\nCONVERT(expr,type), CONVERT(expr USING transcoding_name)\n\nThe CONVERT() function takes an expression of any type and produces a\nresult value of the specified type.\n\nDiscussion of CONVERT(expr, type) syntax here also applies to CAST(expr\nAS type), which is equivalent.\n\nCONVERT(... USING ...) is standard SQL syntax. The non-USING form of\nCONVERT() is ODBC syntax.\n\nCONVERT() with USING converts data between different character sets. In\nMySQL, transcoding names are the same as the corresponding character\nset names. For example, this statement converts the string \'abc\' in the\ndefault character set to the corresponding string in the utf8 character\nset:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nCONVERT() without USING and CAST() take an expression and a type value\nspecifying the result type. These type values are permitted:\n\no BINARY[(N)]\n\n Produces a string with the BINARY data type. For a description of how\n this affects comparisons, see\n https://dev.mysql.com/doc/refman/5.6/en/binary-varbinary.html. If the\n optional length N is given, BINARY(N) causes the cast to use no more\n than N bytes of the argument. Values shorter than N bytes are padded\n with 0x00 bytes to a length of N.\n\no CHAR[(N)] [charset_info]\n\n Produces a string with the CHAR data type. If the optional length N\n is given, CHAR(N) causes the cast to use no more than N characters of\n the argument. No padding occurs for values shorter than N characters.\n\n With no charset_info clause, CHAR produces a string with the default\n character set. To specify the character set explicitly, these\n charset_info values are permitted:\n\n o CHARACTER SET charset_name: Produces a string with the given\n character set.\n\n o ASCII: Shorthand for CHARACTER SET latin1.\n\n o UNICODE: Shorthand for CHARACTER SET ucs2.\n\n In all cases, the string has the character set default collation.\n\no DATE\n\n Produces a DATE value.\n\no DATETIME\n\n Produces a DATETIME value.\n\no DECIMAL[(M[,D])]\n\n Produces a DECIMAL value. If the optional M and D values are given,\n they specify the maximum number of digits (the precision) and the\n number of digits following the decimal point (the scale).\n\no NCHAR[(N)]\n\n Like CHAR, but produces a string with the national character set. See\n https://dev.mysql.com/doc/refman/5.6/en/charset-national.html.\n\n Unlike CHAR, NCHAR does not permit trailing character set information\n to be specified.\n\no SIGNED [INTEGER]\n\n Produces a signed integer value.\n\no TIME\n\n Produces a TIME value.\n\no UNSIGNED [INTEGER]\n\n Produces an unsigned integer value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/cast-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/cast-functions.html'),(233,'EXTRACTVALUE',15,'Syntax:\nExtractValue(xml_frag, xpath_expr)\n\nExtractValue() takes two string arguments, a fragment of XML markup\nxml_frag and an XPath expression xpath_expr (also known as a locator);\nit returns the text (CDATA) of the first text node which is a child of\nthe element or elements matched by the XPath expression.\n\nUsing this function is the equivalent of performing a match using the\nxpath_expr after appending /text(). In other words,\nExtractValue(\'Sakila\', \'/a/b\') and\nExtractValue(\'Sakila\', \'/a/b/text()\') produce the same\nresult.\n\nIf multiple matches are found, the content of the first child text node\nof each matching element is returned (in the order matched) as a\nsingle, space-delimited string.\n\nIf no matching text node is found for the expression (including the\nimplicit /text())---for whatever reason, as long as xpath_expr is\nvalid, and xml_frag consists of elements which are properly nested and\nclosed---an empty string is returned. No distinction is made between a\nmatch on an empty element and no match at all. This is by design.\n\nIf you need to determine whether no matching element was found in\nxml_frag or such an element was found but contained no child text\nnodes, you should test the result of an expression that uses the XPath\ncount() function. For example, both of these statements return an empty\nstring, as shown here:\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\n*Note*:\n\nIn MySQL 5.6.28 and MySQL 5.6.29, when ExtractValue() failed to find a\nmatch for the supplied expression, it returned NULL. This issue was\nresolved in MySQL 5.6.30. (Bug #22552615)\n\nHowever, you can determine whether there was actually a matching\nelement using the following:\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 1 |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 0 |\n+-------------------------------------+\n1 row in set (0.01 sec)\n\n*Important*:\n\nExtractValue() returns only CDATA, and does not return any tags that\nmight be contained within a matching tag, nor any of their content (see\nthe result returned as val1 in the following example).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/xml-functions.html\n\n','mysql> SELECT\n -> ExtractValue(\'cccddd\', \'/a\') AS val1,\n -> ExtractValue(\'cccddd\', \'/a/b\') AS val2,\n -> ExtractValue(\'cccddd\', \'//b\') AS val3,\n -> ExtractValue(\'cccddd\', \'/b\') AS val4,\n -> ExtractValue(\'cccdddeee\', \'//b\') AS val5;\n\n+------+------+------+------+---------+\n| val1 | val2 | val3 | val4 | val5 |\n+------+------+------+------+---------+\n| ccc | ddd | ddd | | ddd eee |\n+------+------+------+------+---------+\n','https://dev.mysql.com/doc/refman/5.6/en/xml-functions.html'),(234,'UPDATEXML',15,'Syntax:\nUpdateXML(xml_target, xpath_expr, new_xml)\n\nThis function replaces a single portion of a given fragment of XML\nmarkup xml_target with a new XML fragment new_xml, and then returns the\nchanged XML. The portion of xml_target that is replaced matches an\nXPath expression xpath_expr supplied by the user.\n\nIf no expression matching xpath_expr is found, or if multiple matches\nare found, the function returns the original xml_target XML fragment.\nAll three arguments should be strings.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'ccc\', \'/a\', \'fff\') AS val1,\n -> UpdateXML(\'ccc\', \'/b\', \'fff\') AS val2,\n -> UpdateXML(\'ccc\', \'//b\', \'fff\') AS val3,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val4,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: fff\nval2: ccc\nval3: fff\nval4: cccfff\nval5: ccc\n','https://dev.mysql.com/doc/refman/5.6/en/xml-functions.html'),(235,'|',16,'Syntax:\n|\n\nBitwise OR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 29 | 15;\n -> 31\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(236,'&',16,'Syntax:\n&\n\nBitwise AND.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n -> 13\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(237,'^',16,'Syntax:\n^\n\nBitwise XOR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 1 ^ 1;\n -> 0\nmysql> SELECT 1 ^ 0;\n -> 1\nmysql> SELECT 11 ^ 3;\n -> 8\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(238,'<<',16,'Syntax:\n<<\n\nShifts a longlong (BIGINT) number to the left.\n\nThe result is an unsigned 64-bit integer. The value is truncated to 64\nbits. In particular, if the shift count is greater or equal to the\nwidth of an unsigned 64-bit number, the result is zero.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 1 << 2;\n -> 4\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(239,'>>',16,'Syntax:\n>>\n\nShifts a longlong (BIGINT) number to the right.\n\nThe result is an unsigned 64-bit integer. The value is truncated to 64\nbits. In particular, if the shift count is greater or equal to the\nwidth of an unsigned 64-bit number, the result is zero.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(240,'~',16,'Syntax:\n~\n\nInvert all bits.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT 5 & ~1;\n -> 4\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(241,'BIT_COUNT',16,'Syntax:\nBIT_COUNT(N)\n\nReturns the number of bits that are set in the argument N as an\nunsigned 64-bit integer, or NULL if the argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html\n\n','mysql> SELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n -> 4, 3\n','https://dev.mysql.com/doc/refman/5.6/en/bit-functions.html'),(242,'AES_DECRYPT',17,'Syntax:\nAES_DECRYPT(crypt_str,key_str[,init_vector])\n\nThis function decrypts data using the official AES (Advanced Encryption\nStandard) algorithm. For more information, see the description of\nAES_ENCRYPT().\n\nThe optional initialization vector argument, init_vector, is available\nas of MySQL 5.6.17. As of that version, statements that use\nAES_DECRYPT() are unsafe for statement-based replication and cannot be\nstored in the query cache.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(243,'AES_ENCRYPT',17,'Syntax:\nAES_ENCRYPT(str,key_str[,init_vector])\n\nAES_ENCRYPT() and AES_DECRYPT() implement encryption and decryption of\ndata using the official AES (Advanced Encryption Standard) algorithm,\npreviously known as \"Rijndael.\" The AES standard permits various key\nlengths. By default these functions implement AES with a 128-bit key\nlength. As of MySQL 5.6.17, key lengths of 196 or 256 bits can be used,\nas described later. The key length is a trade off between performance\nand security.\n\nAES_ENCRYPT() encrypts the string str using the key string key_str and\nreturns a binary string containing the encrypted output. AES_DECRYPT()\ndecrypts the encrypted string crypt_str using the key string key_str\nand returns the original plaintext string. If either function argument\nis NULL, the function returns NULL.\n\nThe str and crypt_str arguments can be any length, and padding is\nautomatically added to str so it is a multiple of a block as required\nby block-based algorithms such as AES. This padding is automatically\nremoved by the AES_DECRYPT() function. The length of crypt_str can be\ncalculated using this formula:\n\n16 * (trunc(string_length / 16) + 1)\n\nFor a key length of 128 bits, the most secure way to pass a key to the\nkey_str argument is to create a truly random 128-bit value and pass it\nas a binary value. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\',UNHEX(\'F3229A0B371ED2D9441B830D21A390C3\')));\n\nA passphrase can be used to generate an AES key by hashing the\npassphrase. For example:\n\nINSERT INTO t\nVALUES (1,AES_ENCRYPT(\'text\', UNHEX(SHA2(\'My secret passphrase\',512))));\n\nDo not pass a password or passphrase directly to crypt_str, hash it\nfirst. Previous versions of this documentation suggested the former\napproach, but it is no longer recommended as the examples shown here\nare more secure.\n\nIf AES_DECRYPT() detects invalid data or incorrect padding, it returns\nNULL. However, it is possible for AES_DECRYPT() to return a non-NULL\nvalue (possibly garbage) if the input data or the key is invalid.\n\nAs of MySQL 5.6.17, AES_ENCRYPT() and AES_DECRYPT() permit control of\nthe block encryption mode and take an optional init_vector\ninitialization vector argument:\n\no The block_encryption_mode system variable controls the mode for\n block-based encryption algorithms. Its default value is aes-128-ecb,\n which signifies encryption using a key length of 128 bits and ECB\n mode. For a description of the permitted values of this variable, see\n https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\no The optional init_vector argument provides an initialization vector\n for block encryption modes that require it.\n\nFor modes that require the optional init_vector argument, it must be 16\nbytes or longer (bytes in excess of 16 are ignored). An error occurs if\ninit_vector is missing.\n\nFor modes that do not require init_vector, it is ignored and a warning\nis generated if it is specified.\n\nA random string of bytes to use for the initialization vector can be\nproduced by calling RANDOM_BYTES(16). For encryption modes that require\nan initialization vector, the same vector must be used for encryption\nand decryption.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SET block_encryption_mode = \'aes-256-cbc\';\nmysql> SET @key_str = SHA2(\'My secret passphrase\',512);\nmysql> SET @init_vector = RANDOM_BYTES(16);\nmysql> SET @crypt_str = AES_ENCRYPT(\'text\',@key_str,@init_vector);\nmysql> SELECT AES_DECRYPT(@crypt_str,@key_str,@init_vector);\n+-----------------------------------------------+\n| AES_DECRYPT(@crypt_str,@key_str,@init_vector) |\n+-----------------------------------------------+\n| text |\n+-----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(244,'COMPRESS',17,'Syntax:\nCOMPRESS(string_to_compress)\n\nCompresses a string and returns the result as a binary string. This\nfunction requires MySQL to have been compiled with a compression\nlibrary such as zlib. Otherwise, the return value is always NULL. The\ncompressed string can be uncompressed with UNCOMPRESS().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',1000)));\n -> 21\nmysql> SELECT LENGTH(COMPRESS(\'\'));\n -> 0\nmysql> SELECT LENGTH(COMPRESS(\'a\'));\n -> 13\nmysql> SELECT LENGTH(COMPRESS(REPEAT(\'a\',16)));\n -> 15\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(245,'DECODE',17,'Syntax:\nDECODE(crypt_str,pass_str)\n\nDecrypts the encrypted string crypt_str using pass_str as the password.\ncrypt_str should be a string returned from ENCODE().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(246,'DES_DECRYPT',17,'Syntax:\nDES_DECRYPT(crypt_str[,key_str])\n\nDecrypts a string encrypted with DES_ENCRYPT(). If an error occurs,\nthis function returns NULL.\n\nThis function works only if MySQL has been configured with SSL support.\nSee https://dev.mysql.com/doc/refman/5.6/en/encrypted-connections.html.\n\nIf no key_str argument is given, DES_DECRYPT() examines the first byte\nof the encrypted string to determine the DES key number that was used\nto encrypt the original string, and then reads the key from the DES key\nfile to decrypt the message. For this to work, the user must have the\nSUPER privilege. The key file can be specified with the --des-key-file\nserver option.\n\nIf you pass this function a key_str argument, that string is used as\nthe key for decrypting the message.\n\nIf the crypt_str argument does not appear to be an encrypted string,\nMySQL returns the given crypt_str.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(247,'DES_ENCRYPT',17,'Syntax:\nDES_ENCRYPT(str[,{key_num|key_str}])\n\nEncrypts the string with the given key using the Triple-DES algorithm.\n\nThis function works only if MySQL has been configured with SSL support.\nSee https://dev.mysql.com/doc/refman/5.6/en/encrypted-connections.html.\n\nThe encryption key to use is chosen based on the second argument to\nDES_ENCRYPT(), if one was given. With no argument, the first key from\nthe DES key file is used. With a key_num argument, the given key number\n(0 to 9) from the DES key file is used. With a key_str argument, the\ngiven key string is used to encrypt str.\n\nThe key file can be specified with the --des-key-file server option.\n\nThe return string is a binary string where the first character is\nCHAR(128 | key_num). If an error occurs, DES_ENCRYPT() returns NULL.\n\nThe 128 is added to make it easier to recognize an encrypted key. If\nyou use a string key, key_num is 127.\n\nThe string length for the result is given by this formula:\n\nnew_len = orig_len + (8 - (orig_len % 8)) + 1\n\nEach line in the DES key file has the following format:\n\nkey_num des_key_str\n\nEach key_num value must be a number in the range from 0 to 9. Lines in\nthe file may be in any order. des_key_str is the string that is used to\nencrypt the message. There should be at least one space between the\nnumber and the key. The first key is the default key that is used if\nyou do not specify any key argument to DES_ENCRYPT().\n\nYou can tell MySQL to read new key values from the key file with the\nFLUSH DES_KEY_FILE statement. This requires the RELOAD privilege.\n\nOne benefit of having a set of default keys is that it gives\napplications a way to check for the existence of encrypted column\nvalues, without giving the end user the right to decrypt those values.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT customer_address FROM customer_table \n > WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(248,'ENCODE',17,'Syntax:\nENCODE(str,pass_str)\n\nEncrypt str using pass_str as the password. The result is a binary\nstring of the same length as str. To decrypt the result, use DECODE().\n\nThe ENCODE() function should no longer be used. If you still need to\nuse ENCODE(), a salt value must be used with it to reduce risk. For\nexample:\n\nENCODE(\'cleartext\', CONCAT(\'my_random_salt\',\'my_secret_password\'))\n\nA new random salt value must be used whenever a password is updated.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(249,'ENCRYPT',17,'Syntax:\nENCRYPT(str[,salt])\n\nEncrypts str using the Unix crypt() system call and returns a binary\nstring. The salt argument must be a string with at least two characters\nor the result will be NULL. If no salt argument is given, a random\nvalue is used.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(250,'MD5',17,'Syntax:\nMD5(str)\n\nCalculates an MD5 128-bit checksum for the string. The value is\nreturned as a string of 32 hexadecimal digits, or NULL if the argument\nwas NULL. The return value can, for example, be used as a hash key. See\nthe notes at the beginning of this section about storing hash values\nefficiently.\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(251,'OLD_PASSWORD',17,'Syntax:\nOLD_PASSWORD(str)\n\nOLD_PASSWORD() was added when the implementation of PASSWORD() was\nchanged in MySQL 4.1 to improve security. OLD_PASSWORD() returns the\nvalue of the pre-4.1 implementation of PASSWORD() as a string, and is\nintended to permit you to reset passwords for any pre-4.1 clients that\nneed to connect to your MySQL server without locking them out. See\nhttps://dev.mysql.com/doc/refman/5.6/en/password-hashing.html.\n\nThe return value is a string in the connection character set.\n\n*Note*:\n\nPasswords that use the pre-4.1 hashing method are less secure than\npasswords that use the native password hashing method and should be\navoided. Pre-4.1 passwords are deprecated and support for them will be\nremoved in a future MySQL release. Consequently, OLD_PASSWORD() is also\ndeprecated.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(252,'PASSWORD',17,'Syntax:\nPASSWORD(str)\n\nReturns a hashed password string calculated from the cleartext password\nstr. The return value is a string in the connection character set, or\nNULL if the argument is NULL. This function is the SQL interface to the\nalgorithm used by the server to encrypt MySQL passwords for storage in\nthe mysql.user grant table.\n\nThe old_passwords system variable controls the password hashing method\nused by the PASSWORD() function. It also influences password hashing\nperformed by CREATE USER and GRANT statements that specify a password\nusing an IDENTIFIED BY clause.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SET old_passwords = 0;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+-------------------------------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+-------------------------------------------+------------------------+\n| *6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4 | 6f8c114b58f2ce9e |\n+-------------------------------------------+------------------------+\n\nmysql> SET old_passwords = 1;\nmysql> SELECT PASSWORD(\'mypass\'), OLD_PASSWORD(\'mypass\');\n+--------------------+------------------------+\n| PASSWORD(\'mypass\') | OLD_PASSWORD(\'mypass\') |\n+--------------------+------------------------+\n| 6f8c114b58f2ce9e | 6f8c114b58f2ce9e |\n+--------------------+------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(253,'RANDOM_BYTES',17,'Syntax:\nRANDOM_BYTES(len)\n\nThis function returns a binary string of len random bytes generated\nusing the random number generator of the SSL library. Permitted values\nof len range from 1 to 1024. For values outside that range, an error\noccurs.\n\nRANDOM_BYTES() can be used to provide the initialization vector for the\nAES_DECRYPT() and AES_ENCRYPT() functions. For use in that context, len\nmust be at least 16. Larger values are permitted, but bytes in excess\nof 16 are ignored.\n\nRANDOM_BYTES() generates a random value, which makes its result\nnondeterministic. Consequently, statements that use this function are\nunsafe for statement-based replication and cannot be stored in the\nquery cache.\n\nThis function is available as of MySQL 5.6.17.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(254,'SHA1',17,'Syntax:\nSHA1(str), SHA(str)\n\nCalculates an SHA-1 160-bit checksum for the string, as described in\nRFC 3174 (Secure Hash Algorithm). The value is returned as a string of\n40 hexadecimal digits, or NULL if the argument was NULL. One of the\npossible uses for this function is as a hash key. See the notes at the\nbeginning of this section about storing hash values efficiently. SHA()\nis synonymous with SHA1().\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(255,'SHA2',17,'Syntax:\nSHA2(str, hash_length)\n\nCalculates the SHA-2 family of hash functions (SHA-224, SHA-256,\nSHA-384, and SHA-512). The first argument is the plaintext string to be\nhashed. The second argument indicates the desired bit length of the\nresult, which must have a value of 224, 256, 384, 512, or 0 (which is\nequivalent to 256). If either argument is NULL or the hash length is\nnot one of the permitted values, the return value is NULL. Otherwise,\nthe function result is a hash value containing the desired number of\nbits. See the notes at the beginning of this section about storing hash\nvalues efficiently.\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT SHA2(\'abc\', 224);\n -> \'23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7\'\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(256,'UNCOMPRESS',17,'Syntax:\nUNCOMPRESS(string_to_uncompress)\n\nUncompresses a string compressed by the COMPRESS() function. If the\nargument is not a compressed value, the result is NULL. This function\nrequires MySQL to have been compiled with a compression library such as\nzlib. Otherwise, the return value is always NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(257,'UNCOMPRESSED_LENGTH',17,'Syntax:\nUNCOMPRESSED_LENGTH(compressed_string)\n\nReturns the length that the compressed string had before being\ncompressed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30\n','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(258,'VALIDATE_PASSWORD_STRENGTH',17,'Syntax:\nVALIDATE_PASSWORD_STRENGTH(str)\n\nGiven an argument representing a plaintext password, this function\nreturns an integer to indicate how strong the password is. The return\nvalue ranges from 0 (weak) to 100 (strong).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html'),(259,'GET_LOCK',18,'Syntax:\nGET_LOCK(str,timeout)\n\nTries to obtain a lock with a name given by the string str, using a\ntimeout of timeout seconds. A negative timeout value means infinite\ntimeout. The lock is exclusive. While held by one session, other\nsessions cannot obtain a lock of the same name.\n\nReturns 1 if the lock was obtained successfully, 0 if the attempt timed\nout (for example, because another client has previously locked the\nname), or NULL if an error occurred (such as running out of memory or\nthe thread was killed with mysqladmin kill).\n\nA lock obtained with GET_LOCK() is released explicitly by executing\nRELEASE_LOCK() or implicitly when your session terminates (either\nnormally or abnormally). Locks obtained with GET_LOCK() are not\nreleased when transactions commit or roll back.\n\n*Important*:\n\nThe behavior of GET_LOCK() changes in MySQL 5.7. In consideration of\nfuture upgrades, limit the str value to 64 characters or less and do\nnot rely on subsequent calls to GET_LOCK() releasing previous locks.\n\nGET_LOCK() can be used to implement application locks or to simulate\nrecord locks. Names are locked on a server-wide basis. If a name has\nbeen locked within one session, GET_LOCK() blocks any request by\nanother session for a lock with the same name. This enables clients\nthat agree on a given lock name to use the name to perform cooperative\nadvisory locking. But be aware that it also enables a client that is\nnot among the set of cooperating clients to lock a name, either\ninadvertently or deliberately, and thus prevent any of the cooperating\nclients from locking that name. One way to reduce the likelihood of\nthis is to use lock names that are database-specific or\napplication-specific. For example, use lock names of the form\ndb_name.str or app_name.str.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html\n\n','mysql> SELECT GET_LOCK(\'lock1\',10);\n -> 1\nmysql> SELECT IS_FREE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT GET_LOCK(\'lock2\',10);\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock2\');\n -> 1\nmysql> SELECT RELEASE_LOCK(\'lock1\');\n -> NULL\n','https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html'),(260,'IS_FREE_LOCK',18,'Syntax:\nIS_FREE_LOCK(str)\n\nChecks whether the lock named str is free to use (that is, not locked).\nReturns 1 if the lock is free (no one is using the lock), 0 if the lock\nis in use, and NULL if an error occurs (such as an incorrect argument).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html'),(261,'IS_USED_LOCK',18,'Syntax:\nIS_USED_LOCK(str)\n\nChecks whether the lock named str is in use (that is, locked). If so,\nit returns the connection identifier of the client session that holds\nthe lock. Otherwise, it returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html'),(262,'RELEASE_LOCK',18,'Syntax:\nRELEASE_LOCK(str)\n\nReleases the lock named by the string str that was obtained with\nGET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not\nestablished by this thread (in which case the lock is not released),\nand NULL if the named lock did not exist. The lock does not exist if it\nwas never obtained by a call to GET_LOCK() or if it has previously been\nreleased.\n\nThe DO statement is convenient to use with RELEASE_LOCK(). See [HELP\nDO].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/locking-functions.html'),(263,'BENCHMARK',19,'Syntax:\nBENCHMARK(count,expr)\n\nThe BENCHMARK() function executes the expression expr repeatedly count\ntimes. It may be used to time how quickly MySQL processes the\nexpression. The result value is 0, or NULL for inappropriate arguments\nsuch as a NULL or negative repeat count.\n\nThe intended use is from within the mysql client, which reports query\nexecution times:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT BENCHMARK(1000000,AES_ENCRYPT(\'hello\',\'goodbye\'));\n+---------------------------------------------------+\n| BENCHMARK(1000000,AES_ENCRYPT(\'hello\',\'goodbye\')) |\n+---------------------------------------------------+\n| 0 |\n+---------------------------------------------------+\n1 row in set (4.74 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(264,'CHARSET',19,'Syntax:\nCHARSET(str)\n\nReturns the character set of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT CHARSET(\'abc\');\n -> \'latin1\'\nmysql> SELECT CHARSET(CONVERT(\'abc\' USING utf8));\n -> \'utf8\'\nmysql> SELECT CHARSET(USER());\n -> \'utf8\'\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(265,'COERCIBILITY',19,'Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT COERCIBILITY(\'abc\' COLLATE latin1_swedish_ci);\n -> 0\nmysql> SELECT COERCIBILITY(USER());\n -> 3\nmysql> SELECT COERCIBILITY(\'abc\');\n -> 4\nmysql> SELECT COERCIBILITY(1000);\n -> 5\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(266,'COLLATION',19,'Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(267,'CONNECTION_ID',19,'Syntax:\nCONNECTION_ID()\n\nReturns the connection ID (thread ID) for the connection. Every\nconnection has an ID that is unique among the set of currently\nconnected clients.\n\nThe value returned by CONNECTION_ID() is the same type of value as\ndisplayed in the ID column of the INFORMATION_SCHEMA.PROCESSLIST table,\nthe Id column of SHOW PROCESSLIST output, and the PROCESSLIST_ID column\nof the Performance Schema threads table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT CONNECTION_ID();\n -> 23786\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(268,'CURRENT_USER',19,'Syntax:\nCURRENT_USER, CURRENT_USER()\n\nReturns the user name and host name combination for the MySQL account\nthat the server used to authenticate the current client. This account\ndetermines your access privileges. The return value is a string in the\nutf8 character set.\n\nThe value of CURRENT_USER() can differ from the value of USER().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\nmysql> SELECT * FROM mysql.user;\nERROR 1044: Access denied for user \'\'@\'localhost\' to\ndatabase \'mysql\'\nmysql> SELECT CURRENT_USER();\n -> \'@localhost\'\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(269,'DATABASE',19,'Syntax:\nDATABASE()\n\nReturns the default (current) database name as a string in the utf8\ncharacter set. If there is no default database, DATABASE() returns\nNULL. Within a stored routine, the default database is the database\nthat the routine is associated with, which is not necessarily the same\nas the database that is the default in the calling context.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(270,'FOUND_ROWS',19,'Syntax:\nFOUND_ROWS()\n\nA SELECT statement may include a LIMIT clause to restrict the number of\nrows the server returns to the client. In some cases, it is desirable\nto know how many rows the statement would have returned without the\nLIMIT, but without running the statement again. To obtain this row\ncount, include an SQL_CALC_FOUND_ROWS option in the SELECT statement,\nand then invoke FOUND_ROWS() afterward:\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name\n -> WHERE id > 100 LIMIT 10;\nmysql> SELECT FOUND_ROWS();\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(271,'LAST_INSERT_ID',19,'Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nWith no argument, LAST_INSERT_ID() returns a 64-bit value representing\nthe first automatically generated value successfully inserted for an\nAUTO_INCREMENT column as a result of the most recently executed INSERT\nstatement. The value of LAST_INSERT_ID() remains unchanged if no rows\nare successfully inserted.\n\nWith an argument, LAST_INSERT_ID() returns an unsigned integer.\n\nFor example, after inserting a row that generates an AUTO_INCREMENT\nvalue, you can get the value like this:\n\nmysql> SELECT LAST_INSERT_ID();\n -> 195\n\nThe currently executing statement does not affect the value of\nLAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value\nwith one statement, and then refer to LAST_INSERT_ID() in a\nmultiple-row INSERT statement that inserts rows into a table with its\nown AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain\nstable in the second statement; its value for the second and later rows\nis not affected by the earlier row insertions. (However, if you mix\nreferences to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is\nundefined.)\n\nIf the previous statement returned an error, the value of\nLAST_INSERT_ID() is undefined. For transactional tables, if the\nstatement is rolled back due to an error, the value of LAST_INSERT_ID()\nis left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID()\nis not restored to that before the transaction; it remains as it was at\nthe point of the ROLLBACK.\n\nPrior to MySQL 5.6.15, this function was not replicated correctly if\nreplication filtering rules were in use. (Bug #17234370, Bug #69861)\n\nWithin the body of a stored routine (procedure or function) or a\ntrigger, the value of LAST_INSERT_ID() changes the same way as for\nstatements executed outside the body of these kinds of objects. The\neffect of a stored routine or trigger upon the value of\nLAST_INSERT_ID() that is seen by following statements depends on the\nkind of routine:\n\no If a stored procedure executes statements that change the value of\n LAST_INSERT_ID(), the changed value is seen by statements that follow\n the procedure call.\n\no For stored functions and triggers that change the value, the value is\n restored when the function or trigger ends, so following statements\n will not see a changed value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(272,'ROW_COUNT',19,'Syntax:\nROW_COUNT()\n\nROW_COUNT() returns a value as follows:\n\no DDL statements: 0. This applies to statements such as CREATE TABLE or\n DROP TABLE.\n\no DML statements other than SELECT: The number of affected rows. This\n applies to statements such as UPDATE, INSERT, or DELETE (as before),\n but now also to statements such as ALTER TABLE and LOAD DATA.\n\no SELECT: -1 if the statement returns a result set, or the number of\n rows \"affected\" if it does not. For example, for SELECT * FROM t1,\n ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE\n \'file_name\', ROW_COUNT() returns the number of rows written to the\n file.\n\no SIGNAL statements: 0.\n\nFor UPDATE statements, the affected-rows value by default is the number\nof rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to\nmysql_real_connect() when connecting to mysqld, the affected-rows value\nis the number of rows \"found\"; that is, matched by the WHERE clause.\n\nFor REPLACE statements, the affected-rows value is 2 if the new row\nreplaced an old row, because in this case, one row was inserted after\nthe duplicate was deleted.\n\nFor INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows\nvalue per row is 1 if the row is inserted as a new row, 2 if an\nexisting row is updated, and 0 if an existing row is set to its current\nvalues. If you specify the CLIENT_FOUND_ROWS flag, the affected-rows\nvalue is 1 (not 0) if an existing row is set to its current values.\n\nThe ROW_COUNT() value is similar to the value from the\nmysql_affected_rows() C API function and the row count that the mysql\nclient displays following statement execution.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> INSERT INTO t VALUES(1),(2),(3);\nQuery OK, 3 rows affected (0.00 sec)\nRecords: 3 Duplicates: 0 Warnings: 0\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 3 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> DELETE FROM t WHERE i IN(1,2);\nQuery OK, 2 rows affected (0.00 sec)\n\nmysql> SELECT ROW_COUNT();\n+-------------+\n| ROW_COUNT() |\n+-------------+\n| 2 |\n+-------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(273,'SCHEMA',19,'Syntax:\nSCHEMA()\n\nThis function is a synonym for DATABASE().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(274,'SESSION_USER',19,'Syntax:\nSESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(275,'SYSTEM_USER',19,'Syntax:\nSYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(276,'USER',19,'Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(277,'VERSION',19,'Syntax:\nVERSION()\n\nReturns a string that indicates the MySQL server version. The string\nuses the utf8 character set. The value might have a suffix in addition\nto the version number. See the description of the version system\nvariable in\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.6.50-standard\'\n','https://dev.mysql.com/doc/refman/5.6/en/information-functions.html'),(278,'GEOMCOLLFROMTEXT',21,'GeomCollFromText(wkt[, srid]), GeometryCollectionFromText(wkt[, srid])\n\nST_GeomCollFromText(), ST_GeometryCollectionFromText(),\nGeomCollFromText(), and GeometryCollectionFromText() are synonyms. For\nmore information, see the description of ST_GeomCollFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(279,'GEOMFROMTEXT',21,'GeomFromText(wkt[, srid]), GeometryFromText(wkt[, srid])\n\nST_GeomFromText(), ST_GeometryFromText(), GeomFromText(), and\nGeometryFromText() are synonyms. For more information, see the\ndescription of ST_GeomFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(280,'LINEFROMTEXT',21,'LineFromText(wkt[, srid]), LineStringFromText(wkt[, srid])\n\nST_LineFromText(), ST_LineStringFromText(), LineFromText(), and\nLineStringFromText() are synonyms. For more information, see the\ndescription of ST_LineFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(281,'MLINEFROMTEXT',21,'MLineFromText(wkt[, srid]), MultiLineStringFromText(wkt[, srid])\n\nConstructs a MultiLineString value using its WKT representation and\nSRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(282,'MPOINTFROMTEXT',21,'MPointFromText(wkt[, srid]), MultiPointFromText(wkt[, srid])\n\nConstructs a MultiPoint value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(283,'MPOLYFROMTEXT',21,'MPolyFromText(wkt[, srid]), MultiPolygonFromText(wkt[, srid])\n\nConstructs a MultiPolygon value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(284,'POINTFROMTEXT',21,'PointFromText(wkt[, srid])\n\nST_PointFromText() and PointFromText() are synonyms. For more\ninformation, see the description of ST_PointFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(285,'POLYFROMTEXT',21,'PolyFromText(wkt[, srid]), PolygonFromText(wkt[, srid])\n\nST_PolyFromText(), ST_PolygonFromText(), PolyFromText(), and\nPolygonFromText() are synonyms. For more information, see the\ndescription of ST_PolyFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(286,'ST_GEOMCOLLFROMTEXT',21,'ST_GeomCollFromText(wkt[, srid]), ST_GeometryCollectionFromText(wkt[,\nsrid])\n\nConstructs a GeometryCollection value using its WKT representation and\nSRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','mysql> SET @g = \"MULTILINESTRING((10 10, 11 11), (9 9, 10 10))\";\nmysql> SELECT ST_AsText(ST_GeomCollFromText(@g));\n+--------------------------------------------+\n| ST_AsText(ST_GeomCollFromText(@g)) |\n+--------------------------------------------+\n| MULTILINESTRING((10 10,11 11),(9 9,10 10)) |\n+--------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(287,'ST_GEOMFROMTEXT',21,'ST_GeomFromText(wkt[, srid]), ST_GeometryFromText(wkt[, srid])\n\nConstructs a geometry value of any type using its WKT representation\nand SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(288,'ST_LINEFROMTEXT',21,'ST_LineFromText(wkt[, srid]), ST_LineStringFromText(wkt[, srid])\n\nConstructs a LineString value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(289,'ST_POINTFROMTEXT',21,'ST_PointFromText(wkt[, srid])\n\nConstructs a Point value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(290,'ST_POLYFROMTEXT',21,'ST_PolyFromText(wkt[, srid]), ST_PolygonFromText(wkt[, srid])\n\nConstructs a Polygon value using its WKT representation and SRID.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkt-functions.html'),(291,'GEOMCOLLFROMWKB',22,'GeomCollFromWKB(wkb[, srid]), GeometryCollectionFromWKB(wkb[, srid])\n\nST_GeomCollFromWKB(), ST_GeometryCollectionFromWKB(),\nGeomCollFromWKB(), and GeometryCollectionFromWKB() are synonyms. For\nmore information, see the description of ST_GeomCollFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(292,'GEOMFROMWKB',22,'GeomFromWKB(wkb[, srid]), GeometryFromWKB(wkb[, srid])\n\nST_GeomFromWKB(), ST_GeometryFromWKB(), GeomFromWKB(), and\nGeometryFromWKB() are synonyms. For more information, see the\ndescription of ST_GeomFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(293,'LINEFROMWKB',22,'LineFromWKB(wkb[, srid]), LineStringFromWKB(wkb[, srid])\n\nST_LineFromWKB(), ST_LineStringFromWKB(), LineFromWKB(), and\nLineStringFromWKB() are synonyms. For more information, see the\ndescription of ST_LineFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(294,'MLINEFROMWKB',22,'MLineFromWKB(wkb[, srid]), MultiLineStringFromWKB(wkb[, srid])\n\nConstructs a MultiLineString value using its WKB representation and\nSRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(295,'MPOINTFROMWKB',22,'MPointFromWKB(wkb[, srid]), MultiPointFromWKB(wkb[, srid])\n\nConstructs a MultiPoint value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(296,'MPOLYFROMWKB',22,'MPolyFromWKB(wkb[, srid]), MultiPolygonFromWKB(wkb[, srid])\n\nConstructs a MultiPolygon value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(297,'POINTFROMWKB',22,'PointFromWKB(wkb[, srid])\n\nST_PointFromWKB() and PointFromWKB() are synonyms. For more\ninformation, see the description of ST_PointFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(298,'POLYFROMWKB',22,'PolyFromWKB(wkb[, srid]), PolygonFromWKB(wkb[, srid])\n\nST_PolyFromWKB(), ST_PolygonFromWKB(), PolyFromWKB(), and\nPolygonFromWKB() are synonyms. For more information, see the\ndescription of ST_PolyFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(299,'ST_GEOMCOLLFROMWKB',22,'ST_GeomCollFromWKB(wkb[, srid]), ST_GeometryCollectionFromWKB(wkb[,\nsrid])\n\nConstructs a GeometryCollection value using its WKB representation and\nSRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(300,'ST_GEOMFROMWKB',22,'ST_GeomFromWKB(wkb[, srid]), ST_GeometryFromWKB(wkb[, srid])\n\nConstructs a geometry value of any type using its WKB representation\nand SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(301,'ST_LINEFROMWKB',22,'ST_LineFromWKB(wkb[, srid]), ST_LineStringFromWKB(wkb[, srid])\n\nConstructs a LineString value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(302,'ST_POINTFROMWKB',22,'ST_PointFromWKB(wkb[, srid])\n\nConstructs a Point value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(303,'ST_POLYFROMWKB',22,'ST_PolyFromWKB(wkb[, srid]), ST_PolygonFromWKB(wkb[, srid])\n\nConstructs a Polygon value using its WKB representation and SRID.\n\nThe result is NULL if the WKB or SRID argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-wkb-functions.html'),(304,'GEOMETRYCOLLECTION',23,'GeometryCollection(g [, g] ...)\n\nConstructs a GeometryCollection value from the geometry arguments.\n\nIf an argument contains a nonsupported geometry, the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(305,'LINESTRING',23,'LineString(pt [, pt] ...)\n\nConstructs a LineString value from a number of Point or WKB Point\narguments. If the number of arguments is less than two, the return\nvalue is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(306,'MULTILINESTRING',23,'MultiLineString(ls [, ls] ...)\n\nConstructs a MultiLineString value using LineString or WKB LineString\narguments.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(307,'MULTIPOINT',23,'MultiPoint(pt [, pt2] ...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(308,'MULTIPOLYGON',23,'MultiPolygon(poly [, poly] ...)\n\nConstructs a MultiPolygon value from a set of Polygon or WKB Polygon\narguments.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(309,'POINT',23,'Point(x, y)\n\nConstructs a Point using its coordinates.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(310,'POLYGON',23,'Polygon(ls [, ls] ...)\n\nConstructs a Polygon value from a number of LineString or WKB\nLineString arguments. If any argument does not represent a LinearRing\n(that is, not a closed and simple LineString), the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-mysql-specific-functions.html'),(311,'ASBINARY',22,'AsBinary(g), AsWKB(g)\n\nST_AsBinary(), ST_AsWKB(), AsBinary(), and AsWKB() are synonyms. For\nmore information, see the description of ST_AsBinary().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(312,'ASTEXT',22,'AsText(g), AsWKT(g)\n\nST_AsText(), ST_AsWKT(), AsText(), and AsWKT() are synonyms. For more\ninformation, see the description of ST_AsText().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(313,'ST_ASBINARY',22,'ST_AsBinary(g), ST_AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','SELECT ST_AsBinary(g) FROM geom;\n','https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(314,'ST_ASTEXT',22,'ST_AsText(g), ST_AsWKT(g)\n\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n\nThe result is NULL if the geometry argument is NULL or not a\nsyntactically well-formed geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html\n\n','mysql> SET @g = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_GeomFromText(@g));\n+--------------------------------+\n| ST_AsText(ST_GeomFromText(@g)) |\n+--------------------------------+\n| LINESTRING(1 1,2 2,3 3) |\n+--------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-format-conversion-functions.html'),(315,'DIMENSION',24,'Dimension(g)\n\nST_Dimension() and Dimension() are synonyms. For more information, see\nthe description of ST_Dimension().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(316,'ENVELOPE',24,'Envelope(g)\n\nST_Envelope() and Envelope() are synonyms. For more information, see\nthe description of ST_Envelope().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(317,'GEOMETRYTYPE',24,'GeometryType(g)\n\nST_GeometryType() and GeometryType() are synonyms. For more\ninformation, see the description of ST_GeometryType().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(318,'ISEMPTY',24,'IsEmpty(g)\n\nST_IsEmpty() and IsEmpty() are synonyms. For more information, see the\ndescription of ST_IsEmpty().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(319,'ISSIMPLE',24,'IsSimple(g)\n\nST_IsSimple() and IsSimple() are synonyms. For more information, see\nthe description of ST_IsSimple().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(320,'SRID',24,'SRID(g)\n\nST_SRID() and SRID() are synonyms. For more information, see the\ndescription of ST_SRID().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(321,'ST_DIMENSION',24,'ST_Dimension(g)\n\nReturns the inherent dimension of the geometry value g, or NULL if the\nargument is NULL. The dimension can be −1, 0, 1, or 2. The meaning of\nthese values is given in\nhttps://dev.mysql.com/doc/refman/5.6/en/gis-class-geometry.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_Dimension(ST_GeomFromText(\'LineString(1 1,2 2)\'));\n+------------------------------------------------------+\n| ST_Dimension(ST_GeomFromText(\'LineString(1 1,2 2)\')) |\n+------------------------------------------------------+\n| 1 |\n+------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(322,'ST_ENVELOPE',24,'ST_Envelope(g)\n\nReturns the minimum bounding rectangle (MBR) for the geometry value g,\nor NULL if the argument is NULL. The result is returned as a Polygon\nvalue that is defined by the corner points of the bounding box:\n\nPOLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,2 2)\')));\n+----------------------------------------------------------------+\n| ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,2 2)\'))) |\n+----------------------------------------------------------------+\n| POLYGON((1 1,2 1,2 2,1 2,1 1)) |\n+----------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(323,'ST_GEOMETRYTYPE',24,'ST_GeometryType(g)\n\nReturns a binary string indicating the name of the geometry type of\nwhich the geometry instance g is a member, or NULL if the argument is\nNULL. The name corresponds to one of the instantiable Geometry\nsubclasses.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_GeometryType(ST_GeomFromText(\'POINT(1 1)\'));\n+------------------------------------------------+\n| ST_GeometryType(ST_GeomFromText(\'POINT(1 1)\')) |\n+------------------------------------------------+\n| POINT |\n+------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(324,'ST_ISEMPTY',24,'ST_IsEmpty(g)\n\nThis function is a placeholder that returns 0 for any valid geometry\nvalue, 1 for any invalid geometry value, or NULL if the argument is\nNULL.\n\nMySQL does not support GIS EMPTY values such as POINT EMPTY.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(325,'ST_ISSIMPLE',24,'ST_IsSimple(g)\n\nReturns 1 if the geometry value g has no anomalous geometric points,\nsuch as self-intersection or self-tangency. ST_IsSimple() returns 0 if\nthe argument is not simple, and NULL if the argument is NULL.\n\nThe descriptions of the instantiable geometric classes given under\nhttps://dev.mysql.com/doc/refman/5.6/en/opengis-geometry-model.html\nincludes the specific conditions that cause class instances to be\nclassified as not simple.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(326,'ST_SRID',24,'ST_SRID(g)\n\nReturns an integer indicating the spatial reference system ID\nassociated with the geometry value g, or NULL if the argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html\n\n','mysql> SELECT ST_SRID(ST_GeomFromText(\'LineString(1 1,2 2)\',101));\n+-----------------------------------------------------+\n| ST_SRID(ST_GeomFromText(\'LineString(1 1,2 2)\',101)) |\n+-----------------------------------------------------+\n| 101 |\n+-----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-general-property-functions.html'),(327,'ST_X',25,'ST_X(p)\n\nReturns the X-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','mysql> SELECT ST_X(Point(56.7, 53.34));\n+--------------------------+\n| ST_X(Point(56.7, 53.34)) |\n+--------------------------+\n| 56.7 |\n+--------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(328,'ST_Y',25,'ST_Y(p)\n\nReturns the Y-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','mysql> SELECT ST_Y(Point(56.7, 53.34));\n+--------------------------+\n| ST_Y(Point(56.7, 53.34)) |\n+--------------------------+\n| 53.34 |\n+--------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(329,'X',25,'X(p)\n\nST_X() and X() are synonyms. For more information, see the description\nof ST_X().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(330,'Y',25,'Y(p)\n\nST_Y() and Y() are synonyms. For more information, see the description\nof ST_Y().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-point-property-functions.html'),(331,'ENDPOINT',26,'EndPoint(ls)\n\nST_EndPoint() and EndPoint() are synonyms. For more information, see\nthe description of ST_EndPoint().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(332,'GLENGTH',26,'GLength(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference. The length of a MultiLineString value is equal to the sum of\nthe lengths of its elements. If the argument is NULL or an empty\ngeometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT GLength(GeomFromText(@ls));\n+----------------------------+\n| GLength(GeomFromText(@ls)) |\n+----------------------------+\n| 2.8284271247461903 |\n+----------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT GLength(GeomFromText(@mls));\n+-----------------------------+\n| GLength(GeomFromText(@mls)) |\n+-----------------------------+\n| 4.242640687119286 |\n+-----------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(333,'ISCLOSED',26,'IsClosed(ls)\n\nST_IsClosed() and IsClosed() are synonyms. For more information, see\nthe description of ST_IsClosed().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(334,'NUMPOINTS',26,'NumPoints(ls)\n\nST_NumPoints() and NumPoints() are synonyms. For more information, see\nthe description of ST_NumPoints().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(335,'POINTN',26,'PointN(ls, N)\n\nST_PointN() and PointN() are synonyms. For more information, see the\ndescription of ST_PointN().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(336,'ST_ENDPOINT',26,'ST_EndPoint(ls)\n\nReturns the Point that is the endpoint of the LineString value ls. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_EndPoint(ST_GeomFromText(@ls)));\n+----------------------------------------------+\n| ST_AsText(ST_EndPoint(ST_GeomFromText(@ls))) |\n+----------------------------------------------+\n| POINT(3 3) |\n+----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(337,'ST_ISCLOSED',26,'ST_IsClosed(ls)\n\nFor a LineString value ls, ST_IsClosed() returns 1 if ls is closed\n(that is, its ST_StartPoint() and ST_EndPoint() values are the same).\nIf the argument is NULL or an empty geometry, the return value is NULL.\n\nFor a MultiLineString value ls, ST_IsClosed() returns 1 if ls is closed\n(that is, the ST_StartPoint() and ST_EndPoint() values are the same for\neach LineString in ls).\n\nST_IsClosed() returns 0 if ls is not closed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls1 = \'LineString(1 1,2 2,3 3,2 2)\';\nmysql> SET @ls2 = \'LineString(1 1,2 2,3 3,1 1)\';\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls1));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls1)) |\n+------------------------------------+\n| 0 |\n+------------------------------------+\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls2));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls2)) |\n+------------------------------------+\n| 1 |\n+------------------------------------+\n\nmysql> SET @ls3 = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\n\nmysql> SELECT ST_IsClosed(ST_GeomFromText(@ls3));\n+------------------------------------+\n| ST_IsClosed(ST_GeomFromText(@ls3)) |\n+------------------------------------+\n| 0 |\n+------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(338,'ST_NUMPOINTS',26,'ST_NumPoints(ls)\n\nReturns the number of Point objects in the LineString value ls. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_NumPoints(ST_GeomFromText(@ls));\n+------------------------------------+\n| ST_NumPoints(ST_GeomFromText(@ls)) |\n+------------------------------------+\n| 3 |\n+------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(339,'ST_POINTN',26,'ST_PointN(ls, N)\n\nReturns the N-th Point in the Linestring value ls. Points are numbered\nbeginning with 1. If any argument is NULL or the geometry argument is\nan empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_PointN(ST_GeomFromText(@ls),2));\n+----------------------------------------------+\n| ST_AsText(ST_PointN(ST_GeomFromText(@ls),2)) |\n+----------------------------------------------+\n| POINT(2 2) |\n+----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(340,'ST_STARTPOINT',26,'ST_StartPoint(ls)\n\nReturns the Point that is the start point of the LineString value ls.\nIf the argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_AsText(ST_StartPoint(ST_GeomFromText(@ls)));\n+------------------------------------------------+\n| ST_AsText(ST_StartPoint(ST_GeomFromText(@ls))) |\n+------------------------------------------------+\n| POINT(1 1) |\n+------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(341,'STARTPOINT',26,'StartPoint(ls)\n\nST_StartPoint() and StartPoint() are synonyms. For more information,\nsee the description of ST_StartPoint().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-linestring-property-functions.html'),(342,'AREA',27,'Area({poly|mpoly})\n\nST_Area() and Area() are synonyms. For more information, see the\ndescription of ST_Area().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(343,'CENTROID',27,'Centroid({poly|mpoly})\n\nST_Centroid() and Centroid() are synonyms. For more information, see\nthe description of ST_Centroid().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(344,'EXTERIORRING',27,'ExteriorRing(poly)\n\nST_ExteriorRing() and ExteriorRing() are synonyms. For more\ninformation, see the description of ST_ExteriorRing().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(345,'INTERIORRINGN',27,'InteriorRingN(poly, N)\n\nST_InteriorRingN() and InteriorRingN() are synonyms. For more\ninformation, see the description of ST_InteriorRingN().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(346,'NUMINTERIORRINGS',27,'NumInteriorRings(poly)\n\nST_NumInteriorRings() and NumInteriorRings() are synonyms. For more\ninformation, see the description of ST_NumInteriorRings().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(347,'ST_AREA',27,'ST_Area({poly|mpoly})\n\nReturns a double-precision number indicating the area of the Polygon or\nMultiPolygon argument, as measured in its spatial reference system. For\narguments of dimension 0 or 1, the result is 0. If the argument is an\nempty geometry the return value is 0. If the argument is NULL the\nreturn value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))\';\nmysql> SELECT ST_Area(ST_GeomFromText(@poly));\n+---------------------------------+\n| ST_Area(ST_GeomFromText(@poly)) |\n+---------------------------------+\n| 4 |\n+---------------------------------+\n\nmysql> SET @mpoly =\n \'MultiPolygon(((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1)))\';\nmysql> SELECT ST_Area(ST_GeomFromText(@mpoly));\n+----------------------------------+\n| ST_Area(ST_GeomFromText(@mpoly)) |\n+----------------------------------+\n| 8 |\n+----------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(348,'ST_CENTROID',27,'ST_Centroid({poly|mpoly})\n\nReturns the mathematical centroid for the Polygon or MultiPolygon\nargument as a Point. The result is not guaranteed to be on the\nMultiPolygon. If the argument is NULL or an empty geometry, the return\nvalue is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n ST_GeomFromText(\'POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))\');\nmysql> SELECT GeometryType(@poly),ST_AsText(ST_Centroid(@poly));\n+---------------------+--------------------------------------------+\n| GeometryType(@poly) | ST_AsText(ST_Centroid(@poly)) |\n+---------------------+--------------------------------------------+\n| POLYGON | POINT(4.958333333333333 4.958333333333333) |\n+---------------------+--------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(349,'ST_EXTERIORRING',27,'ST_ExteriorRing(poly)\n\nReturns the exterior ring of the Polygon value poly as a LineString. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_AsText(ST_ExteriorRing(ST_GeomFromText(@poly)));\n+----------------------------------------------------+\n| ST_AsText(ST_ExteriorRing(ST_GeomFromText(@poly))) |\n+----------------------------------------------------+\n| LINESTRING(0 0,0 3,3 3,3 0,0 0) |\n+----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(350,'ST_INTERIORRINGN',27,'ST_InteriorRingN(poly, N)\n\nReturns the N-th interior ring for the Polygon value poly as a\nLineString. Rings are numbered beginning with 1. If the argument is\nNULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_AsText(ST_InteriorRingN(ST_GeomFromText(@poly),1));\n+-------------------------------------------------------+\n| ST_AsText(ST_InteriorRingN(ST_GeomFromText(@poly),1)) |\n+-------------------------------------------------------+\n| LINESTRING(1 1,1 2,2 2,2 1,1 1) |\n+-------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(351,'ST_NUMINTERIORRINGS',27,'ST_NumInteriorRings(poly)\n\nReturns the number of interior rings in the Polygon value poly. If the\nargument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html\n\n','mysql> SET @poly =\n \'Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))\';\nmysql> SELECT ST_NumInteriorRings(ST_GeomFromText(@poly));\n+---------------------------------------------+\n| ST_NumInteriorRings(ST_GeomFromText(@poly)) |\n+---------------------------------------------+\n| 1 |\n+---------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-polygon-property-functions.html'),(352,'GEOMETRYN',28,'GeometryN(gc, N)\n\nST_GeometryN() and GeometryN() are synonyms. For more information, see\nthe description of ST_GeometryN().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(353,'NUMGEOMETRIES',28,'NumGeometries(gc)\n\nST_NumGeometries() and NumGeometries() are synonyms. For more\ninformation, see the description of ST_NumGeometries().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(354,'ST_GEOMETRYN',28,'ST_GeometryN(gc, N)\n\nReturns the N-th geometry in the GeometryCollection value gc.\nGeometries are numbered beginning with 1. If any argument is NULL or\nthe geometry argument is an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1));\n+-------------------------------------------------+\n| ST_AsText(ST_GeometryN(ST_GeomFromText(@gc),1)) |\n+-------------------------------------------------+\n| POINT(1 1) |\n+-------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(355,'ST_NUMGEOMETRIES',28,'ST_NumGeometries(gc)\n\nReturns the number of geometries in the GeometryCollection value gc. If\nthe argument is NULL or an empty geometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html\n\n','mysql> SET @gc = \'GeometryCollection(Point(1 1),LineString(2 2, 3 3))\';\nmysql> SELECT ST_NumGeometries(ST_GeomFromText(@gc));\n+----------------------------------------+\n| ST_NumGeometries(ST_GeomFromText(@gc)) |\n+----------------------------------------+\n| 2 |\n+----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/gis-geometrycollection-property-functions.html'),(356,'BUFFER',28,'Buffer(g, d)\n\nST_Buffer() and Buffer() are synonyms. For more information, see the\ndescription of ST_Buffer().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(357,'ST_BUFFER',28,'ST_Buffer(g, d)\n\nReturns a geometry that represents all points whose distance from the\ngeometry value g is less than or equal to a distance of d, or NULL if\nany argument is NULL.\n\nST_Buffer() supports negative distances for polygons, multipolygons,\nand geometry collections containing polygons or multipolygons. For\npoint, multipoint, linestring, multilinestring, and geometry\ncollections not containing any polygons or multipolygons, ST_Buffer()\nwith a negative distance returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(358,'ST_DIFFERENCE',28,'ST_Difference(g1, g2)\n\nReturns a geometry that represents the point set difference of the\ngeometry values g1 and g2. If any argument is NULL, the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_AsText(ST_Difference(@g1, @g2));\n+------------------------------------+\n| ST_AsText(ST_Difference(@g1, @g2)) |\n+------------------------------------+\n| POINT(1 1) |\n+------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(359,'ST_INTERSECTION',28,'ST_Intersection(g1, g2)\n\nReturns a geometry that represents the point set intersection of the\ngeometry values g1 and g2. If any argument is NULL, the return value is\nNULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'LineString(1 1, 3 3)\');\nmysql> SET @g2 = ST_GeomFromText(\'LineString(1 3, 3 1)\');\nmysql> SELECT ST_AsText(ST_Intersection(@g1, @g2));\n+--------------------------------------+\n| ST_AsText(ST_Intersection(@g1, @g2)) |\n+--------------------------------------+\n| POINT(2 2) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(360,'ST_SYMDIFFERENCE',28,'ST_SymDifference(g1, g2)\n\nReturns a geometry that represents the point set symmetric difference\nof the geometry values g1 and g2, which is defined as:\n\ng1 symdifference g2 := (g1 union g2) difference (g1 intersection g2)\n\nOr, in function call notation:\n\nST_SymDifference(g1, g2) = ST_Difference(ST_Union(g1, g2), ST_Intersection(g1, g2))\n\nIf any argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_AsText(ST_SymDifference(@g1, @g2));\n+---------------------------------------+\n| ST_AsText(ST_SymDifference(@g1, @g2)) |\n+---------------------------------------+\n| MULTIPOINT(1 1,2 2) |\n+---------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(361,'ST_UNION',28,'ST_Union(g1, g2)\n\nReturns a geometry that represents the point set union of the geometry\nvalues g1 and g2. If any argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'LineString(1 1, 3 3)\');\nmysql> SET @g2 = ST_GeomFromText(\'LineString(1 3, 3 1)\');\nmysql> SELECT ST_AsText(ST_Union(@g1, @g2));\n+--------------------------------------+\n| ST_AsText(ST_Union(@g1, @g2)) |\n+--------------------------------------+\n| MULTILINESTRING((1 1,3 3),(3 1,1 3)) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-operator-functions.html'),(362,'ST_CONTAINS',29,'ST_Contains(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 completely contains g2. This\ntests the opposite relationship as ST_Within().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(363,'CROSSES',29,'Crosses(g1, g2)\n\nST_Crosses() and Crosses() are synonyms. For more information, see the\ndescription of ST_Crosses().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(364,'ST_CROSSES',29,'ST_Crosses(g1, g2)\n\nThe term spatially crosses denotes a spatial relation between two given\ngeometries that has the following properties:\n\no The two geometries intersect.\n\no Their intersection results in a geometry that has a dimension that is\n one less than the maximum dimension of the two given geometries.\n\no Their intersection is not equal to either of the two given\n geometries.\n\nThis function returns 1 or 0 to indicate whether g1 spatially crosses\ng2. If g1 is a Polygon or a MultiPolygon, or if g2 is a Point or a\nMultiPoint, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(365,'ST_DISJOINT',29,'ST_Disjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially disjoint from (does\nnot intersect) g2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(366,'ST_DISTANCE',29,'ST_Distance(g1, g2)\n\nReturns the distance between g1 and g2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','mysql> SET @g1 = Point(1,1);\nmysql> SET @g2 = Point(2,2);\nmysql> SELECT ST_Distance(@g1, @g2);\n+-----------------------+\n| ST_Distance(@g1, @g2) |\n+-----------------------+\n| 1.4142135623730951 |\n+-----------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(367,'ST_EQUALS',29,'ST_Equals(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','mysql> SET @g1 = Point(1,1), @g2 = Point(2,2);\nmysql> SELECT ST_Equals(@g1, @g1), ST_Equals(@g1, @g2);\n+---------------------+---------------------+\n| ST_Equals(@g1, @g1) | ST_Equals(@g1, @g2) |\n+---------------------+---------------------+\n| 1 | 0 |\n+---------------------+---------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(368,'ST_INTERSECTS',29,'ST_Intersects(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(369,'ST_OVERLAPS',29,'ST_Overlaps(g1, g2)\n\nTwo geometries spatially overlap if they intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nThis function returns 1 or 0 to indicate whether g1 spatially overlaps\ng2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(370,'ST_TOUCHES',29,'ST_Touches(g1, g2)\n\nTwo geometries spatially touch if their interiors do not intersect, but\nthe boundary of one of the geometries intersects either the boundary or\nthe interior of the other.\n\nThis function returns 1 or 0 to indicate whether g1 spatially touches\ng2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(371,'ST_WITHIN',29,'ST_Within(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\ntests the opposite relationship as ST_Contains().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(372,'TOUCHES',29,'Touches(g1, g2)\n\nST_Touches() and Touches() are synonyms. For more information, see the\ndescription of ST_Touches().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-object-shapes.html'),(373,'MBRCONTAINS',30,'MBRContains(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\ncontains the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRWithin().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Point(1 1)\');\nmysql> SELECT MBRContains(@g1,@g2), MBRWithin(@g2,@g1);\n+----------------------+--------------------+\n| MBRContains(@g1,@g2) | MBRWithin(@g2,@g1) |\n+----------------------+--------------------+\n| 1 | 1 |\n+----------------------+--------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(374,'MBRDISJOINT',30,'MBRDisjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are disjoint (do not intersect).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(375,'MBREQUAL',30,'MBREqual(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 are the same.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(376,'MBRINTERSECTS',30,'MBRIntersects(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangles of\nthe two geometries g1 and g2 intersect.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(377,'MBROVERLAPS',30,'MBROverlaps(g1, g2)\n\nTwo geometries spatially overlap if they intersect and their\nintersection results in a geometry of the same dimension but not equal\nto either of the given geometries.\n\nThis function returns 1 or 0 to indicate whether the minimum bounding\nrectangles of the two geometries g1 and g2 overlap.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(378,'MBRTOUCHES',30,'MBRTouches(g1, g2)\n\nTwo geometries spatially touch if their interiors do not intersect, but\nthe boundary of one of the geometries intersects either the boundary or\nthe interior of the other.\n\nThis function returns 1 or 0 to indicate whether the minimum bounding\nrectangles of the two geometries g1 and g2 touch.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(379,'MBRWITHIN',30,'MBRWithin(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\nis within the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRContains().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','mysql> SET @g1 = ST_GeomFromText(\'Polygon((0 0,0 3,3 3,3 0,0 0))\');\nmysql> SET @g2 = ST_GeomFromText(\'Polygon((0 0,0 5,5 5,5 0,0 0))\');\nmysql> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1);\n+--------------------+--------------------+\n| MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) |\n+--------------------+--------------------+\n| 1 | 0 |\n+--------------------+--------------------+\n','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(380,'CONTAINS',30,'Contains(g1, g2)\n\nMBRContains() and Contains() are synonyms. For more information, see\nthe description of MBRContains().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(381,'DISJOINT',30,'Disjoint(g1, g2)\n\nMBRDisjoint() and Disjoint() are synonyms. For more information, see\nthe description of MBRDisjoint().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(382,'EQUALS',30,'Equals(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(383,'INTERSECTS',30,'Intersects(g1, g2)\n\nMBRIntersects() and Intersects() are synonyms. For more information,\nsee the description of MBRIntersects().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(384,'OVERLAPS',30,'Overlaps(g1, g2)\n\nMBROverlaps() and Overlaps() are synonyms. For more information, see\nthe description of MBROverlaps().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(385,'WITHIN',30,'Within(g1, g2)\n\nMBRWithin() and Within() are synonyms. For more information, see the\ndescription of MBRWithin().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/spatial-relation-functions-mbr.html'),(386,'GTID_SUBSET',30,'Syntax:\nGTID_SUBSET(subset,set)\n\nGiven two sets of global transaction IDs subset and set, returns true\n(1) if all GTIDs in subset are also in set. Returns false (0)\notherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 1\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-25\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-25\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 1\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\')\\G\n*************************** 1. row ***************************\nGTID_SUBSET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\'): 0\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(387,'GTID_SUBTRACT',30,'Syntax:\nGTID_SUBTRACT(set,subset)\n\nGiven two sets of global transaction IDs subset and set, returns only\nthose GTIDs from set that are not in subset.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','mysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:21\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:22-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:20-25\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:26-57\n1 row in set (0.00 sec)\n\nmysql> SELECT GTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n -> \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\')\\G\n*************************** 1. row ***************************\nGTID_SUBTRACT(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:21-57\',\n \'3E11FA47-71CA-11E1-9E33-C80AA9429562:23-24\'): 3e11fa47-71ca-11e1-9e33-c80aa9429562:21-22:25-57\n1 row in set (0.01 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(388,'SQL_THREAD_WAIT_AFTER_GTIDS',30,'Syntax:\nSQL_THREAD_WAIT_AFTER_GTIDS(gtid_set[, timeout])\n\nSQL_THREAD_WAIT_AFTER_GTIDS() was added in MySQL 5.6.5, and replaced by\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() in MySQL 5.6.9. (Bug #14775984)\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(389,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS',30,'Syntax:\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(gtid_set[, timeout])\n\nWait until the slave SQL thread has executed all of the transactions\nwhose global transaction identifiers are contained in gtid_set (see\nhttps://dev.mysql.com/doc/refman/5.6/en/replication-gtids-concepts.html\n, for a definition of \"GTID sets\"), or until timeout seconds have\nelapsed, whichever occurs first. timeout is optional; the default\ntimeout is 0 seconds, in which case the master simply waits until all\nof the transactions in the GTID set have been executed.\n\nPrior to MySQL 5.6.9, WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() was named\nSQL_THREAD_WAIT_AFTER_GTIDS(). (Bug #14775984)\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html\n\n','mysql> SELECT WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\');\n -> 5\n','https://dev.mysql.com/doc/refman/5.6/en/gtid-functions.html'),(390,'ASYMMETRIC_DECRYPT',30,'Syntax:\nASYMMETRIC_DECRYPT(algorithm, crypt_str, key_str)\n\nDecrypts an encrypted string using the given algorithm and key string,\nand returns the resulting plaintext as a binary string. If decryption\nfails, the result is NULL.\n\nkey_str must be a valid key string in PEM format. For successful\ndecryption, it must be the public or private key string corresponding\nto the private or public key string used with ASYMMETRIC_ENCRYPT() to\nproduce the encrypted string. algorithm indicates the encryption\nalgorithm used to create the key.\n\nSupported algorithm values: \'RSA\'\n\nFor a usage example, see the description of ASYMMETRIC_ENCRYPT().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(391,'ASYMMETRIC_DERIVE',30,'Syntax:\nASYMMETRIC_DERIVE(pub_key_str, priv_key_str)\n\nDerives a symmetric key using the private key of one party and the\npublic key of another, and returns the resulting key as a binary\nstring. If key derivation fails, the result is NULL.\n\npub_key_str and priv_key_str must be valid key strings in PEM format.\nThey must be created using the DH algorithm.\n\nSuppose that you have two pairs of public and private keys:\n\nSET @dhp = CREATE_DH_PARAMETERS(1024);\nSET @priv1 = CREATE_ASYMMETRIC_PRIV_KEY(\'DH\', @dhp);\nSET @pub1 = CREATE_ASYMMETRIC_PUB_KEY(\'DH\', @priv1);\nSET @priv2 = CREATE_ASYMMETRIC_PRIV_KEY(\'DH\', @dhp);\nSET @pub2 = CREATE_ASYMMETRIC_PUB_KEY(\'DH\', @priv2);\n\nSuppose further that you use the private key from one pair and the\npublic key from the other pair to create a symmetric key string. Then\nthis symmetric key identity relationship holds:\n\nASYMMETRIC_DERIVE(@pub1, @priv2) = ASYMMETRIC_DERIVE(@pub2, @priv1)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(392,'ASYMMETRIC_ENCRYPT',30,'Syntax:\nASYMMETRIC_ENCRYPT(algorithm, str, key_str)\n\nEncrypts a string using the given algorithm and key string, and returns\nthe resulting ciphertext as a binary string. If encryption fails, the\nresult is NULL.\n\nThe str length cannot be greater than the key_str length − 11, in\nbytes\n\nkey_str must be a valid key string in PEM format. algorithm indicates\nthe encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\'\n\nTo encrypt a string, pass a private or public key string to\nASYMMETRIC_ENCRYPT(). To recover the original unencrypted string, pass\nthe encrypted string to ASYMMETRIC_DECRYPT(), along with the public or\nprivate key string correponding to the private or public key string\nused for encryption.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','-- Generate private/public key pair\nSET @priv = CREATE_ASYMMETRIC_PRIV_KEY(\'RSA\', 1024);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(\'RSA\', @priv);\n\n-- Encrypt using private key, decrypt using public key\nSET @ciphertext = ASYMMETRIC_ENCRYPT(\'RSA\', \'The quick brown fox\', @priv);\nSET @plaintext = ASYMMETRIC_DECRYPT(\'RSA\', @ciphertext, @pub);\n\n-- Encrypt using public key, decrypt using private key\nSET @ciphertext = ASYMMETRIC_ENCRYPT(\'RSA\', \'The quick brown fox\', @pub);\nSET @plaintext = ASYMMETRIC_DECRYPT(\'RSA\', @ciphertext, @priv);\n','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(393,'ASYMMETRIC_SIGN',30,'Syntax:\nASYMMETRIC_SIGN(algorithm, digest_str, priv_key_str, digest_type)\n\nSigns a digest string using a private key string, and returns the\nsignature as a binary string. If signing fails, the result is NULL.\n\ndigest_str is the digest string. It can be generated by calling\nCREATE_DIGEST(). digest_type indicates the digest algorithm used to\ngenerate the digest string.\n\npriv_key_str is the private key string to use for signing the digest\nstring. It must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\'\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nFor a usage example, see the description of ASYMMETRIC_VERIFY().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(394,'ASYMMETRIC_VERIFY',30,'Syntax:\nASYMMETRIC_VERIFY(algorithm, digest_str, sig_str, pub_key_str,\ndigest_type)\n\nVerifies whether the signature string matches the digest string, and\nreturns 1 or 0 to indicate whether verification succeeded or failed.\n\ndigest_str is the digest string. It can be generated by calling\nCREATE_DIGEST(). digest_type indicates the digest algorithm used to\ngenerate the digest string.\n\nsig_str is the signature string. It can be generated by calling\nASYMMETRIC_SIGN().\n\npub_key_str is the public key string of the signer. It corresponds to\nthe private key passed to ASYMMETRIC_SIGN() to generate the signature\nstring and must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\'\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','-- Set the encryption algorithm and digest type\nSET @algo = \'RSA\';\nSET @dig_type = \'SHA224\';\n\n-- Create private/public key pair\nSET @priv = CREATE_ASYMMETRIC_PRIV_KEY(@algo, 1024);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(@algo, @priv);\n\n-- Generate digest from string\nSET @dig = CREATE_DIGEST(@dig_type, \'The quick brown fox\');\n\n-- Generate signature for digest and verify signature against digest\nSET @sig = ASYMMETRIC_SIGN(@algo, @dig, @priv, @dig_type);\nSET @verf = ASYMMETRIC_VERIFY(@algo, @dig, @sig, @pub, @dig_type);\n','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(395,'CREATE_ASYMMETRIC_PRIV_KEY',30,'Syntax:\nCREATE_ASYMMETRIC_PRIV_KEY(algorithm, {key_len|dh_secret})\n\nCreates a private key using the given algorithm and key length or DH\nsecret, and returns the key as a binary string in PEM format. If key\ngeneration fails, the result is NULL.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nSupported key_len values: The minimum key length in bits is 1,024. The\nmaximum key length depends on the algorithm: 16,384 for RSA and 10,000\nfor DSA. These key-length limits are constraints imposed by OpenSSL.\nServer administrators can impose additional limits on maximum key\nlength by setting environment variables. See\nhttps://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-usage.htm\nl.\n\nFor DH keys, pass a shared DH secret instead of a key length. To create\nthe secret, pass the key length to CREATE_DH_PARAMETERS().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','SET @priv = CREATE_ASYMMETRIC_PRIV_KEY(\'DSA\', 2048);\nSET @pub = CREATE_ASYMMETRIC_PUB_KEY(\'DSA\', @priv);\n','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(396,'CREATE_ASYMMETRIC_PUB_KEY',30,'Syntax:\nCREATE_ASYMMETRIC_PUB_KEY(algorithm, priv_key_str)\n\nDerives a public key from the given private key using the given\nalgorithm, and returns the key as a binary string in PEM format. If key\nderivation fails, the result is NULL.\n\npriv_key_str must be a valid key string in PEM format. algorithm\nindicates the encryption algorithm used to create the key.\n\nSupported algorithm values: \'RSA\', \'DSA\', \'DH\'\n\nFor a usage example, see the description of\nCREATE_ASYMMETRIC_PRIV_KEY().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(397,'CREATE_DH_PARAMETERS',30,'CREATE_DH_PARAMETERS(key_len)\n\nCreates a shared secret for generating a DH private/public key pair and\nreturns a binary string that can be passed to\nCREATE_ASYMMETRIC_PRIV_KEY(). If secret generation fails, the result is\nnull.\n\nSupported key_len values: The minimum and maximum key lengths in bits\nare 1,024 and 10,000. These key-length limits are constraints imposed\nby OpenSSL. Server administrators can impose additional limits on\nmaximum key length by setting environment variables. See\nhttps://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-usage.htm\nl.\n\nFor an example showing how to use the return value for generating\nsymmetric keys, see the description of ASYMMETRIC_DERIVE().\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','SET @dhp = CREATE_DH_PARAMETERS(1024);\n','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(398,'CREATE_DIGEST',30,'Syntax:\nCREATE_DIGEST(digest_type, str)\n\nCreates a digest from the given string using the given digest type, and\nreturns the digest as a binary string. If digest generation fails, the\nresult is NULL.\n\nSupported digest_type values: \'SHA224\', \'SHA256\', \'SHA384\', \'SHA512\'\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html\n\n','SET @dig = CREATE_DIGEST(\'SHA512\', The quick brown fox\');\n','https://dev.mysql.com/doc/refman/5.6/en/enterprise-encryption-functions.html'),(399,'AVG',31,'Syntax:\nAVG([DISTINCT] expr)\n\nReturns the average value of expr. The DISTINCT option can be used to\nreturn the average of the distinct values of expr.\n\nIf there are no matching rows, AVG() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(400,'BIT_AND',31,'Syntax:\nBIT_AND(expr)\n\nReturns the bitwise AND of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_AND() returns a neutral value (all\nbits set to 1).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(401,'BIT_OR',31,'Syntax:\nBIT_OR(expr)\n\nReturns the bitwise OR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_OR() returns a neutral value (all\nbits set to 0).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(402,'BIT_XOR',31,'Syntax:\nBIT_XOR(expr)\n\nReturns the bitwise XOR of all bits in expr. The calculation is\nperformed with 64-bit (BIGINT) precision.\n\nIf there are no matching rows, BIT_XOR() returns a neutral value (all\nbits set to 0).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(403,'COUNT',31,'Syntax:\nCOUNT(expr)\n\nReturns a count of the number of non-NULL values of expr in the rows\nretrieved by a SELECT statement. The result is a BIGINT value.\n\nIf there are no matching rows, COUNT() returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student.student_name,COUNT(*)\n FROM student,course\n WHERE student.student_id=course.student_id\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(404,'COUNT DISTINCT',31,'Syntax:\nCOUNT(DISTINCT expr,[expr...])\n\nReturns a count of the number of rows with different non-NULL expr\nvalues.\n\nIf there are no matching rows, COUNT(DISTINCT) returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(405,'GROUP_CONCAT',31,'Syntax:\nGROUP_CONCAT(expr)\n\nThis function returns a string result with the concatenated non-NULL\nvalues from a group. It returns NULL if there are no non-NULL values.\nThe full syntax is as follows:\n\nGROUP_CONCAT([DISTINCT] expr [,expr ...]\n [ORDER BY {unsigned_integer | col_name | expr}\n [ASC | DESC] [,col_name ...]]\n [SEPARATOR str_val])\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name,\n GROUP_CONCAT(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(406,'MAX',31,'Syntax:\nMAX([DISTINCT] expr)\n\nReturns the maximum value of expr. MAX() may take a string argument; in\nsuch cases, it returns the maximum string value. See\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html. The\nDISTINCT keyword can be used to find the maximum of the distinct values\nof expr, however, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MAX() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(407,'MIN',31,'Syntax:\nMIN([DISTINCT] expr)\n\nReturns the minimum value of expr. MIN() may take a string argument; in\nsuch cases, it returns the minimum string value. See\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html. The\nDISTINCT keyword can be used to find the minimum of the distinct values\nof expr, however, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MIN() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(408,'STD',31,'Syntax:\nSTD(expr)\n\nReturns the population standard deviation of expr. STD() is a synonym\nfor the standard SQL function STDDEV_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, STD() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(409,'STDDEV',31,'Syntax:\nSTDDEV(expr)\n\nReturns the population standard deviation of expr. STDDEV() is a\nsynonym for the standard SQL function STDDEV_POP(), provided for\ncompatibility with Oracle.\n\nIf there are no matching rows, STDDEV() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(410,'STDDEV_POP',31,'Syntax:\nSTDDEV_POP(expr)\n\nReturns the population standard deviation of expr (the square root of\nVAR_POP()). You can also use STD() or STDDEV(), which are equivalent\nbut not standard SQL.\n\nIf there are no matching rows, STDDEV_POP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(411,'STDDEV_SAMP',31,'Syntax:\nSTDDEV_SAMP(expr)\n\nReturns the sample standard deviation of expr (the square root of\nVAR_SAMP().\n\nIf there are no matching rows, STDDEV_SAMP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(412,'SUM',31,'Syntax:\nSUM([DISTINCT] expr)\n\nReturns the sum of expr. If the return set has no rows, SUM() returns\nNULL. The DISTINCT keyword can be used to sum only the distinct values\nof expr.\n\nIf there are no matching rows, SUM() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(413,'VAR_POP',31,'Syntax:\nVAR_POP(expr)\n\nReturns the population standard variance of expr. It considers rows as\nthe whole population, not as a sample, so it has the number of rows as\nthe denominator. You can also use VARIANCE(), which is equivalent but\nis not standard SQL.\n\nIf there are no matching rows, VAR_POP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(414,'VAR_SAMP',31,'Syntax:\nVAR_SAMP(expr)\n\nReturns the sample variance of expr. That is, the denominator is the\nnumber of rows minus one.\n\nIf there are no matching rows, VAR_SAMP() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(415,'VARIANCE',31,'Syntax:\nVARIANCE(expr)\n\nReturns the population standard variance of expr. VARIANCE() is a\nsynonym for the standard SQL function VAR_POP(), provided as a MySQL\nextension.\n\nIf there are no matching rows, VARIANCE() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html'),(416,'DEFAULT',32,'Syntax:\nDEFAULT(col_name)\n\nReturns the default value for a table column. An error results if the\ncolumn has no default value.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(417,'INET_ATON',32,'Syntax:\nINET_ATON(expr)\n\nGiven the dotted-quad representation of an IPv4 network address as a\nstring, returns an integer that represents the numeric value of the\naddress in network byte order (big endian). INET_ATON() returns NULL if\nit does not understand its argument.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_ATON(\'10.0.5.9\');\n -> 167773449\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(418,'INET_NTOA',32,'Syntax:\nINET_NTOA(expr)\n\nGiven a numeric IPv4 network address in network byte order, returns the\ndotted-quad string representation of the address as a string in the\nconnection character set. INET_NTOA() returns NULL if it does not\nunderstand its argument.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_NTOA(167773449);\n -> \'10.0.5.9\'\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(419,'INET6_ATON',32,'Syntax:\nINET6_ATON(expr)\n\nGiven an IPv6 or IPv4 network address as a string, returns a binary\nstring that represents the numeric value of the address in network byte\norder (big endian). Because numeric-format IPv6 addresses require more\nbytes than the largest integer type, the representation returned by\nthis function has the VARBINARY data type: VARBINARY(16) for IPv6\naddresses and VARBINARY(4) for IPv4 addresses. If the argument is not a\nvalid address, INET6_ATON() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT HEX(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'FDFE0000000000005A55CAFFFEFA9089\'\nmysql> SELECT HEX(INET6_ATON(\'10.0.5.9\'));\n -> \'0A000509\'\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(420,'INET6_NTOA',32,'Syntax:\nINET6_NTOA(expr)\n\nGiven an IPv6 or IPv4 network address represented in numeric form as a\nbinary string, returns the string representation of the address as a\nstring in the connection character set. If the argument is not a valid\naddress, INET6_NTOA() returns NULL.\n\nINET6_NTOA() has these properties:\n\no It does not use operating system functions to perform conversions,\n thus the output string is platform independent.\n\no The return string has a maximum length of 39 (4 x 8 + 7). Given this\n statement:\n\nCREATE TABLE t AS SELECT INET6_NTOA(expr) AS c1;\n\n The resulting table would have this definition:\n\nCREATE TABLE t (c1 VARCHAR(39) CHARACTER SET utf8 DEFAULT NULL);\n\no The return string uses lowercase letters for IPv6 addresses.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT INET6_NTOA(INET6_ATON(\'fdfe::5a55:caff:fefa:9089\'));\n -> \'fdfe::5a55:caff:fefa:9089\'\nmysql> SELECT INET6_NTOA(INET6_ATON(\'10.0.5.9\'));\n -> \'10.0.5.9\'\n\nmysql> SELECT INET6_NTOA(UNHEX(\'FDFE0000000000005A55CAFFFEFA9089\'));\n -> \'fdfe::5a55:caff:fefa:9089\'\nmysql> SELECT INET6_NTOA(UNHEX(\'0A000509\'));\n -> \'10.0.5.9\'\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(421,'IS_IPV4',32,'Syntax:\nIS_IPV4(expr)\n\nReturns 1 if the argument is a valid IPv4 address specified as a\nstring, 0 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4(\'10.0.5.9\'), IS_IPV4(\'10.0.5.256\');\n -> 1, 0\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(422,'IS_IPV4_COMPAT',32,'Syntax:\nIS_IPV4_COMPAT(expr)\n\nThis function takes an IPv6 address represented in numeric form as a\nbinary string, as returned by INET6_ATON(). It returns 1 if the\nargument is a valid IPv4-compatible IPv6 address, 0 otherwise.\nIPv4-compatible addresses have the form ::ipv4_address.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4_COMPAT(INET6_ATON(\'::10.0.5.9\'));\n -> 1\nmysql> SELECT IS_IPV4_COMPAT(INET6_ATON(\'::ffff:10.0.5.9\'));\n -> 0\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(423,'IS_IPV4_MAPPED',32,'Syntax:\nIS_IPV4_MAPPED(expr)\n\nThis function takes an IPv6 address represented in numeric form as a\nbinary string, as returned by INET6_ATON(). It returns 1 if the\nargument is a valid IPv4-mapped IPv6 address, 0 otherwise. IPv4-mapped\naddresses have the form ::ffff:ipv4_address.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4_MAPPED(INET6_ATON(\'::10.0.5.9\'));\n -> 0\nmysql> SELECT IS_IPV4_MAPPED(INET6_ATON(\'::ffff:10.0.5.9\'));\n -> 1\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(424,'IS_IPV6',32,'Syntax:\nIS_IPV6(expr)\n\nReturns 1 if the argument is a valid IPv6 address specified as a\nstring, 0 otherwise. This function does not consider IPv4 addresses to\nbe valid IPv6 addresses.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV6(\'10.0.5.9\'), IS_IPV6(\'::1\');\n -> 0, 1\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(425,'MASTER_POS_WAIT',32,'Syntax:\nMASTER_POS_WAIT(log_name,log_pos[,timeout])\n\nThis function is useful for control of master/slave synchronization. It\nblocks until the slave has read and applied all updates up to the\nspecified position in the master log. The return value is the number of\nlog events the slave had to wait for to advance to the specified\nposition. The function returns NULL if the slave SQL thread is not\nstarted, the slave\'s master information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the slave SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL. If the slave\nis past the specified position, the function returns immediately.\n\nOn a multithreaded slave, the function waits until expiry of the limit\nset by the slave_checkpoint_group or slave_checkpoint_period system\nvariable, when the checkpoint operation is called to update the status\nof the slave. Depending on the setting for the system variables, the\nfunction might therefore return some time after the specified position\nwas reached.\n\nIf a timeout value is specified, MASTER_POS_WAIT() stops waiting when\ntimeout seconds have elapsed. timeout must be greater than 0; a zero or\nnegative timeout means no timeout.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(426,'NAME_CONST',32,'Syntax:\nNAME_CONST(name,value)\n\nReturns the given value. When used to produce a result set column,\nNAME_CONST() causes the column to have the given name. The arguments\nshould be constants.\n\nmysql> SELECT NAME_CONST(\'myname\', 14);\n+--------+\n| myname |\n+--------+\n| 14 |\n+--------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(427,'SLEEP',32,'Syntax:\nSLEEP(duration)\n\nSleeps (pauses) for the number of seconds given by the duration\nargument, then returns 0. If SLEEP() is interrupted, it returns 1. The\nduration may have a fractional part.\n\nWhen sleep returns normally (without interruption), it returns 0:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 0 |\n+-------------+\n\nWhen SLEEP() is the only thing invoked by a query that is interrupted,\nit returns 1 and the query itself returns no error. This statement is\ninterrupted using KILL QUERY from another session:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 1 |\n+-------------+\n\nWhen SLEEP() is only part of a query that is interrupted, the query\nreturns an error. This statement is interrupted using KILL QUERY from\nanother session:\n\nmysql> SELECT 1 FROM t1 WHERE SLEEP(1000);\nERROR 1317 (70100): Query execution was interrupted\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(428,'UUID',32,'Syntax:\nUUID()\n\nReturns a Universal Unique Identifier (UUID) generated according to RFC\n4122, \"A Universally Unique IDentifier (UUID) URN Namespace\"\n(http://www.ietf.org/rfc/rfc4122.txt).\n\nA UUID is designed as a number that is globally unique in space and\ntime. Two calls to UUID() are expected to generate two different\nvalues, even if these calls are performed on two separate devices not\nconnected to each other.\n\n*Warning*:\n\nAlthough UUID() values are intended to be unique, they are not\nnecessarily unguessable or unpredictable. If unpredictability is\nrequired, UUID values should be generated some other way.\n\nUUID() returns a value that conforms to UUID version 1 as described in\nRFC 4122. The value is a 128-bit number represented as a utf8 string of\nfive hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee\nformat:\n\no The first three numbers are generated from the low, middle, and high\n parts of a timestamp. The high part also includes the UUID version\n number.\n\no The fourth number preserves temporal uniqueness in case the timestamp\n value loses monotonicity (for example, due to daylight saving time).\n\no The fifth number is an IEEE 802 node number that provides spatial\n uniqueness. A random number is substituted if the latter is not\n available (for example, because the host device has no Ethernet card,\n or it is unknown how to find the hardware address of an interface on\n the host operating system). In this case, spatial uniqueness cannot\n be guaranteed. Nevertheless, a collision should have very low\n probability.\n\n The MAC address of an interface is taken into account only on\n FreeBSD, Linux, and Windows. On other operating systems, MySQL uses a\n randomly generated 48-bit number.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-5b8c656024db\'\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(429,'UUID_SHORT',32,'Syntax:\nUUID_SHORT()\n\nReturns a \"short\" universal identifier as a 64-bit unsigned integer.\nValues returned by UUID_SHORT() differ from the string-format 128-bit\nidentifiers returned by the UUID() function and have different\nuniqueness properties. The value of UUID_SHORT() is guaranteed to be\nunique if the following conditions hold:\n\no The server_id value of the current server is between 0 and 255 and is\n unique among your set of master and slave servers\n\no You do not set back the system time for your server host between\n mysqld restarts\n\no You invoke UUID_SHORT() on average fewer than 16 million times per\n second between mysqld restarts\n\nThe UUID_SHORT() return value is constructed this way:\n\n (server_id & 255) << 56\n+ (server_startup_time_in_seconds << 24)\n+ incremented_variable++;\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID_SHORT();\n -> 92395783831158784\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(430,'VALUES',32,'Syntax:\nVALUES(col_name)\n\nIn an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the\nVALUES(col_name) function in the UPDATE clause to refer to column\nvalues from the INSERT portion of the statement. In other words,\nVALUES(col_name) in the UPDATE clause refers to the value of col_name\nthat would be inserted, had no duplicate-key conflict occurred. This\nfunction is especially useful in multiple-row inserts. The VALUES()\nfunction is meaningful only in the ON DUPLICATE KEY UPDATE clause of\nINSERT statements and returns NULL otherwise. See\nhttps://dev.mysql.com/doc/refman/5.6/en/insert-on-duplicate.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html\n\n','mysql> INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6)\n -> ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b);\n','https://dev.mysql.com/doc/refman/5.6/en/miscellaneous-functions.html'),(431,'ALTER DATABASE',33,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_option ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. This statement requires the ALTER privilege on the\ndatabase. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database. An error occurs if there\nis no default database.\n\no https://dev.mysql.com/doc/refman/5.6/en/alter-database.html#alter-dat\n abase-charset\n\no https://dev.mysql.com/doc/refman/5.6/en/alter-database.html#alter-dat\n abase-upgrading\n\nCharacter Set and Collation Options\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation. For\ninformation about character set and collation names, see\nhttps://dev.mysql.com/doc/refman/5.6/en/charset.html.\n\nTo see the available character sets and collations, use the SHOW\nCHARACTER SET and SHOW COLLATION statements, respectively. See [HELP\nSHOW CHARACTER SET], and [HELP SHOW COLLATION].\n\nA stored routine that uses the database defaults when the routine is\ncreated includes those defaults as part of its definition. (In a stored\nroutine, variables with character data types use the database defaults\nif the character set or collation are not specified explicitly. See\n[HELP CREATE PROCEDURE].) If you change the default character set or\ncollation for a database, any stored routines that are to use the new\ndefaults must be dropped and recreated.\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttps://dev.mysql.com/doc/refman/5.6/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-database.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-database.html'),(432,'ALTER SCHEMA',33,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_option ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\n\nALTER DATABASE enables you to change the overall characteristics of a\ndatabase. These characteristics are stored in the db.opt file in the\ndatabase directory. This statement requires the ALTER privilege on the\ndatabase. ALTER SCHEMA is a synonym for ALTER DATABASE.\n\nThe database name can be omitted from the first syntax, in which case\nthe statement applies to the default database. An error occurs if there\nis no default database.\n\no https://dev.mysql.com/doc/refman/5.6/en/alter-database.html#alter-dat\n abase-charset\n\no https://dev.mysql.com/doc/refman/5.6/en/alter-database.html#alter-dat\n abase-upgrading\n\nCharacter Set and Collation Options\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation. For\ninformation about character set and collation names, see\nhttps://dev.mysql.com/doc/refman/5.6/en/charset.html.\n\nTo see the available character sets and collations, use the SHOW\nCHARACTER SET and SHOW COLLATION statements, respectively. See [HELP\nSHOW CHARACTER SET], and [HELP SHOW COLLATION].\n\nA stored routine that uses the database defaults when the routine is\ncreated includes those defaults as part of its definition. (In a stored\nroutine, variables with character data types use the database defaults\nif the character set or collation are not specified explicitly. See\n[HELP CREATE PROCEDURE].) If you change the default character set or\ncollation for a database, any stored routines that are to use the new\ndefaults must be dropped and recreated.\n\nUpgrading from Versions Older than MySQL 5.1\n\nThe syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates\nthe name of the directory associated with the database to use the\nencoding implemented in MySQL 5.1 for mapping database names to\ndatabase directory names (see\nhttps://dev.mysql.com/doc/refman/5.6/en/identifier-mapping.html). This\nclause is for use under these conditions:\n\no It is intended when upgrading MySQL to 5.1 or later from older\n versions.\n\no It is intended to update a database directory name to the current\n encoding format if the name contains special characters that need\n encoding.\n\no The statement is used by mysqlcheck (as invoked by mysql_upgrade).\n\nFor example, if a database in MySQL 5.0 has the name a-b-c, the name\ncontains instances of the - (dash) character. In MySQL 5.0, the\ndatabase directory is also named a-b-c, which is not necessarily safe\nfor all file systems. In MySQL 5.1 and later, the same database name is\nencoded as a@002db@002dc to produce a file system-neutral directory\nname.\n\nWhen a MySQL installation is upgraded to MySQL 5.1 or later from an\nolder version,the server displays a name such as a-b-c (which is in the\nold format) as #mysql50#a-b-c, and you must refer to the name using the\n#mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to\nexplicitly tell the server to re-encode the database directory name to\nthe current encoding format:\n\nALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME;\n\nAfter executing this statement, you can refer to the database as a-b-c\nwithout the special #mysql50# prefix.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-database.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-database.html'),(433,'ALTER EVENT',33,'Syntax:\nALTER\n [DEFINER = user]\n EVENT event_name\n [ON SCHEDULE schedule]\n [ON COMPLETION [NOT] PRESERVE]\n [RENAME TO new_event_name]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n [DO event_body]\n\nThe ALTER EVENT statement changes one or more of the characteristics of\nan existing event without the need to drop and recreate it. The syntax\nfor each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE /\nDISABLE, and DO clauses is exactly the same as when used with CREATE\nEVENT. (See [HELP CREATE EVENT].)\n\nAny user can alter an event defined on a database for which that user\nhas the EVENT privilege. When a user executes a successful ALTER EVENT\nstatement, that user becomes the definer for the affected event.\n\nALTER EVENT works only with an existing event:\n\nmysql> ALTER EVENT no_such_event \n > ON SCHEDULE \n > EVERY \'2:3\' DAY_HOUR;\nERROR 1517 (HY000): Unknown event \'no_such_event\'\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-event.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-event.html'),(434,'ALTER FUNCTION',33,'Syntax:\nALTER FUNCTION func_name [characteristic ...]\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nThis statement can be used to change the characteristics of a stored\nfunction. More than one change may be specified in an ALTER FUNCTION\nstatement. However, you cannot change the parameters or body of a\nstored function using this statement; to make such changes, you must\ndrop and re-create the function using DROP FUNCTION and CREATE\nFUNCTION.\n\nYou must have the ALTER ROUTINE privilege for the function. (That\nprivilege is granted automatically to the function creator.) If binary\nlogging is enabled, the ALTER FUNCTION statement might also require the\nSUPER privilege, as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-function.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-function.html'),(435,'ALTER LOGFILE GROUP',33,'Syntax:\nALTER LOGFILE GROUP logfile_group\n ADD UNDOFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement adds an UNDO file named \'file_name\' to an existing log\nfile group logfile_group. An ALTER LOGFILE GROUP statement has one and\nonly one ADD UNDOFILE clause. No DROP UNDOFILE clause is currently\nsupported.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and an undo log file with the same name, or an undo log file\nand a data file with the same name.\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size\nin bytes; if not specified, the initial size defaults to 134217728 (128\nMB). Prior to MySQL NDB Cluster 7.3.2, this value was required to be\nspecified using digits; in MySQL NDB Cluster 7.3.2 and later, you may\noptionally follow size with a one-letter abbreviation for an order of\nmagnitude, similar to those used in my.cnf. Generally, this is one of\nthe letters M (megabytes) or G (gigabytes). (Bug #13116514, Bug\n#16104705, Bug #62858)\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB). (Bug\n#29574)\n\n*Note*:\n\nWAIT is parsed but otherwise ignored. This keyword currently has no\neffect, and is intended for future expansion.\n\nThe ENGINE parameter (required) determines the storage engine which is\nused by this log file group, with engine_name being the name of the\nstorage engine. Currently, the only accepted values for engine_name are\n\"NDBCLUSTER\" and \"NDB\". The two values are equivalent.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-logfile-group.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-logfile-group.html'),(436,'ALTER PROCEDURE',33,'Syntax:\nALTER PROCEDURE proc_name [characteristic ...]\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nThis statement can be used to change the characteristics of a stored\nprocedure. More than one change may be specified in an ALTER PROCEDURE\nstatement. However, you cannot change the parameters or body of a\nstored procedure using this statement; to make such changes, you must\ndrop and re-create the procedure using DROP PROCEDURE and CREATE\nPROCEDURE.\n\nYou must have the ALTER ROUTINE privilege for the procedure. By\ndefault, that privilege is granted automatically to the procedure\ncreator. This behavior can be changed by disabling the\nautomatic_sp_privileges system variable. See\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html\n.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-procedure.html'),(437,'ALTER SERVER',33,'Syntax:\nALTER SERVER server_name\n OPTIONS (option [, option] ...)\n\nAlters the server information for server_name, adjusting any of the\noptions permitted in the CREATE SERVER statement. The corresponding\nfields in the mysql.servers table are updated accordingly. This\nstatement requires the SUPER privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','https://dev.mysql.com/doc/refman/5.6/en/alter-server.html'),(438,'ALTER TABLE',33,'Syntax:\nALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name\n [alter_option [, alter_option] ...]\n [partition_options]\n\nalter_option: {\n table_options\n | ADD [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ADD [COLUMN] (col_name column_definition,...)\n | ADD {INDEX | KEY} [index_name]\n [index_type] (key_part,...) [index_option] ...\n | ADD {FULLTEXT | SPATIAL} [INDEX | KEY] [index_name]\n (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] UNIQUE [INDEX | KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | ADD CHECK (expr)\n | ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT}\n | CHANGE [COLUMN] old_col_name new_col_name column_definition\n [FIRST | AFTER col_name]\n | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name]\n | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]\n | {DISABLE | ENABLE} KEYS\n | {DISCARD | IMPORT} TABLESPACE\n | DROP [COLUMN] col_name\n | DROP {INDEX | KEY} index_name\n | DROP PRIMARY KEY\n | DROP FOREIGN KEY fk_symbol\n | FORCE\n | LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n | MODIFY [COLUMN] col_name column_definition\n [FIRST | AFTER col_name]\n | ORDER BY col_name [, col_name] ...\n | RENAME [TO | AS] new_tbl_name\n}\n\npartition_options:\n partition_option [partition_option] ...\n\npartition_option: {\n ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | TRUNCATE PARTITION {partition_names | ALL}\n | COALESCE PARTITION number\n | REORGANIZE PARTITION partition_names INTO (partition_definitions)\n | EXCHANGE PARTITION partition_name WITH TABLE tbl_name\n | ANALYZE PARTITION {partition_names | ALL}\n | CHECK PARTITION {partition_names | ALL}\n | OPTIMIZE PARTITION {partition_names | ALL}\n | REBUILD PARTITION {partition_names | ALL}\n | REPAIR PARTITION {partition_names | ALL}\n | REMOVE PARTITIONING\n}\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option: {\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n}\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option: {\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | CONNECTION [=] \'connect_string\'\n | {DATA | INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT | DYNAMIC | FIXED | COMPRESSED | REDUNDANT | COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT | 0 | 1}\n | STATS_PERSISTENT [=] {DEFAULT | 0 | 1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK | MEMORY}]\n | UNION [=] (tbl_name[,tbl_name]...)\n}\n\nALTER TABLE changes the structure of a table. For example, you can add\nor delete columns, create or destroy indexes, change the type of\nexisting columns, or rename columns or the table itself. You can also\nchange characteristics such as the storage engine used for the table or\nthe table comment.\n\no To use ALTER TABLE, you need ALTER, CREATE, and INSERT privileges for\n the table. Renaming a table requires ALTER and DROP on the old table,\n ALTER, CREATE, and INSERT on the new table.\n\no Following the table name, specify the alterations to be made. If none\n are given, ALTER TABLE does nothing.\n\no The syntax for many of the permissible alterations is similar to\n clauses of the CREATE TABLE statement. column_definition clauses use\n the same syntax for ADD and CHANGE as for CREATE TABLE. For more\n information, see [HELP CREATE TABLE].\n\no The word COLUMN is optional and can be omitted.\n\no Multiple ADD, ALTER, DROP, and CHANGE clauses are permitted in a\n single ALTER TABLE statement, separated by commas. This is a MySQL\n extension to standard SQL, which permits only one of each clause per\n ALTER TABLE statement. For example, to drop multiple columns in a\n single statement, do this:\n\nALTER TABLE t2 DROP COLUMN c, DROP COLUMN d;\n\no If a storage engine does not support an attempted ALTER TABLE\n operation, a warning may result. Such warnings can be displayed with\n SHOW WARNINGS. See [HELP SHOW WARNINGS]. For information on\n troubleshooting ALTER TABLE, see\n https://dev.mysql.com/doc/refman/5.6/en/alter-table-problems.html.\n\no For usage examples, see\n https://dev.mysql.com/doc/refman/5.6/en/alter-table-examples.html.\n\no With the mysql_info() C API function, you can find out how many rows\n were copied by ALTER TABLE, and (when IGNORE is used) how many rows\n were deleted due to duplication of unique key values. See\n https://dev.mysql.com/doc/refman/5.6/en/mysql-info.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-table.html'),(439,'ALTER TABLESPACE',33,'Syntax:\nALTER TABLESPACE tablespace_name\n {ADD | DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement is used either to add a new data file, or to drop a data\nfile from a tablespace.\n\nThe ADD DATAFILE variant enables you to specify an initial size using\nan INITIAL_SIZE clause, where size is measured in bytes; the default\nvalue is 134217728 (128 MB). Prior to MySQL NDB Cluster 7.3.2, this\nvalue was required to be specified using digits (Bug #13116514, Bug\n#16104705, Bug #62858); in MySQL NDB Cluster 7.3.2 and later, you may\noptionally follow size with a one-letter abbreviation for an order of\nmagnitude, similar to those used in my.cnf. Generally, this is one of\nthe letters M (megabytes) or G (gigabytes).\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a data file with the same name, or an undo log file and\na tablespace with the same name.\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nINITIAL_SIZE is rounded, explicitly, as for CREATE TABLESPACE.\n\nOnce a data file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using additional ALTER\nTABLESPACE ... ADD DATAFILE statements.\n\nUsing DROP DATAFILE with ALTER TABLESPACE drops the data file\n\'file_name\' from the tablespace. You cannot drop a data file from a\ntablespace which is in use by any table; in other words, the data file\nmust be empty (no extents used). See\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data-objects\n.html. In addition, any data file to be dropped must previously have\nbeen added to the tablespace with CREATE TABLESPACE or ALTER\nTABLESPACE.\n\nBoth ALTER TABLESPACE ... ADD DATAFILE and ALTER TABLESPACE ... DROP\nDATAFILE require an ENGINE clause which specifies the storage engine\nused by the tablespace. Currently, the only accepted values for\nengine_name are NDB and NDBCLUSTER.\n\nWAIT is parsed but otherwise ignored, and so has no effect in MySQL\n5.6. It is intended for future expansion.\n\nWhen ALTER TABLESPACE ... ADD DATAFILE is used with ENGINE = NDB, a\ndata file is created on each Cluster data node. You can verify that the\ndata files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example, the following query\nshows all data files belonging to the tablespace named newts:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+--------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+--------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata2.dat | CLUSTER_NODE=4 |\n+--------------------+--------------+----------------+\n2 rows in set (0.03 sec)\n\nSee https://dev.mysql.com/doc/refman/5.6/en/files-table.html.\n\nALTER TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-tablespace.html'),(440,'ALTER VIEW',33,'Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = user]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThis statement changes the definition of a view, which must exist. The\nsyntax is similar to that for CREATE VIEW see [HELP CREATE VIEW]). This\nstatement requires the CREATE VIEW and DROP privileges for the view,\nand some privilege for each column referred to in the SELECT statement.\nALTER VIEW is permitted only to the definer or users with the SUPER\nprivilege.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-view.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-view.html'),(441,'CREATE DATABASE',33,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_option] ...\n\ncreate_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-database.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-database.html'),(442,'CREATE SCHEMA',33,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_option] ...\n\ncreate_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\n\nCREATE DATABASE creates a database with the given name. To use this\nstatement, you need the CREATE privilege for the database. CREATE\nSCHEMA is a synonym for CREATE DATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-database.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-database.html'),(443,'CREATE EVENT',33,'Syntax:\nCREATE\n [DEFINER = user]\n EVENT\n [IF NOT EXISTS]\n event_name\n ON SCHEDULE schedule\n [ON COMPLETION [NOT] PRESERVE]\n [ENABLE | DISABLE | DISABLE ON SLAVE]\n [COMMENT \'string\']\n DO event_body;\n\nschedule: {\n AT timestamp [+ INTERVAL interval] ...\n | EVERY interval\n [STARTS timestamp [+ INTERVAL interval] ...]\n [ENDS timestamp [+ INTERVAL interval] ...]\n}\n\ninterval:\n quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE |\n WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE |\n DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND}\n\nThis statement creates and schedules a new event. The event will not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttps://dev.mysql.com/doc/refman/5.6/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. If the DEFINER clause is present, the\nprivileges required depend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.\n\nThe minimum requirements for a valid CREATE EVENT statement are as\nfollows:\n\no The keywords CREATE EVENT plus an event name, which uniquely\n identifies the event in a database schema.\n\no An ON SCHEDULE clause, which determines when and how often the event\n executes.\n\no A DO clause, which contains the SQL statement to be executed by an\n event.\n\nThis is an example of a minimal CREATE EVENT statement:\n\nCREATE EVENT myevent\n ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR\n DO\n UPDATE myschema.mytable SET mycol = mycol + 1;\n\nThe previous statement creates an event named myevent. This event\nexecutes once---one hour following its creation---by running an SQL\nstatement that increments the value of the myschema.mytable table\'s\nmycol column by 1.\n\nThe event_name must be a valid MySQL identifier with a maximum length\nof 64 characters. Event names are not case-sensitive, so you cannot\nhave two events named myevent and MyEvent in the same schema. In\ngeneral, the rules governing event names are the same as those for\nnames of stored routines. See\nhttps://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\nAn event is associated with a schema. If no schema is indicated as part\nof event_name, the default (current) schema is assumed. To create an\nevent in a specific schema, qualify the event name with a schema using\nschema_name.event_name syntax.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-event.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-event.html'),(444,'CREATE INDEX',33,'Syntax:\nCREATE [ONLINE | OFFLINE] [UNIQUE | FULLTEXT | SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (key_part,...)\n [index_option]\n [algorithm_option | lock_option] ...\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_option: {\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n}\n\nindex_type:\n USING {BTREE | HASH}\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n\nlock_option:\n LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n\nNormally, you create all indexes on a table at the time the table\nitself is created with CREATE TABLE. See [HELP CREATE TABLE]. This\nguideline is especially important for InnoDB tables, where the primary\nkey determines the physical layout of rows in the data file. CREATE\nINDEX enables you to add indexes to existing tables.\n\nCREATE INDEX is mapped to an ALTER TABLE statement to create indexes.\nSee [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY\nKEY; use ALTER TABLE instead. For more information about indexes, see\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-indexes.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-index.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-index.html'),(445,'CREATE LOGFILE GROUP',33,'Syntax:\nCREATE LOGFILE GROUP logfile_group\n ADD UNDOFILE \'undo_file\'\n [INITIAL_SIZE [=] initial_size]\n [UNDO_BUFFER_SIZE [=] undo_buffer_size]\n [REDO_BUFFER_SIZE [=] redo_buffer_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] \'string\']\n ENGINE [=] engine_name\n\nThis statement creates a new log file group named logfile_group having\na single UNDO file named \'undo_file\'. A CREATE LOGFILE GROUP statement\nhas one and only one ADD UNDOFILE clause. For rules covering the naming\nof log file groups, see\nhttps://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nIn MySQL NDB Cluster 7.3 and later, you can have only one log file\ngroup per Cluster at any given time. (See Bug #16386)\n\nThe optional INITIAL_SIZE parameter sets the UNDO file\'s initial size;\nif not specified, it defaults to 128M (128 megabytes). The optional\nUNDO_BUFFER_SIZE parameter sets the size used by the UNDO buffer for\nthe log file group; The default value for UNDO_BUFFER_SIZE is 8M (eight\nmegabytes); this value cannot exceed the amount of system memory\navailable. Both of these parameters are specified in bytes. In MySQL\nNDB Cluster 7.3.2 and later, you may optionally follow either or both\nof these with a one-letter abbreviation for an order of magnitude,\nsimilar to those used in my.cnf. Generally, this is one of the letters\nM (for megabytes) or G (for gigabytes). Prior to MySQL NDB Cluster\n7.3.2, the values for these options could only be specified using\ndigits. (Bug #13116514, Bug #16104705, Bug #62858)\n\nMemory used for UNDO_BUFFER_SIZE comes from the global pool whose size\nis determined by the value of the SharedGlobalMemory data node\nconfiguration parameter. This includes any default value implied for\nthis option by the setting of the InitialLogFileGroup data node\nconfiguration parameter.\n\nThe maximum permitted for UNDO_BUFFER_SIZE is 629145600 (600 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nThe minimum allowed value for INITIAL_SIZE is 1048576 (1 MB).\n\nThe ENGINE option determines the storage engine to be used by this log\nfile group, with engine_name being the name of the storage engine. In\nMySQL 5.6, this must be NDB (or NDBCLUSTER). If ENGINE is not set,\nMySQL tries to use the engine specified by the default_storage_engine\nserver system variable (formerly storage_engine). In any case, if the\nengine is not specified as NDB or NDBCLUSTER, the CREATE LOGFILE GROUP\nstatement appears to succeed but actually fails to create the log file\ngroup, as shown here:\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS;\n+-------+------+------------------------------------------------------------------------------------------------+\n| Level | Code | Message |\n+-------+------+------------------------------------------------------------------------------------------------+\n| Error | 1478 | Table storage engine \'InnoDB\' does not support the create option \'TABLESPACE or LOGFILE GROUP\' |\n+-------+------+------------------------------------------------------------------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> DROP LOGFILE GROUP lg1 ENGINE = NDB;\nERROR 1529 (HY000): Failed to drop LOGFILE GROUP\n\nmysql> CREATE LOGFILE GROUP lg1\n -> ADD UNDOFILE \'undo.dat\' INITIAL_SIZE = 10M\n -> ENGINE = NDB;\nQuery OK, 0 rows affected (2.97 sec)\n\nThe fact that the CREATE LOGFILE GROUP statement does not actually\nreturn an error when a non-NDB storage engine is named, but rather\nappears to succeed, is a known issue which we hope to address in a\nfuture release of NDB Cluster.\n\nREDO_BUFFER_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but ignored,\nand so have no effect in MySQL 5.6. These options are intended for\nfuture expansion.\n\nWhen used with ENGINE [=] NDB, a log file group and associated UNDO log\nfile are created on each Cluster data node. You can verify that the\nUNDO files were created and obtain information about them by querying\nthe INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, LOGFILE_GROUP_NUMBER, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE FILE_NAME = \'undo_10.dat\';\n+--------------------+----------------------+----------------+\n| LOGFILE_GROUP_NAME | LOGFILE_GROUP_NUMBER | EXTRA |\n+--------------------+----------------------+----------------+\n| lg_3 | 11 | CLUSTER_NODE=3 |\n| lg_3 | 11 | CLUSTER_NODE=4 |\n+--------------------+----------------------+----------------+\n2 rows in set (0.06 sec)\n\nCREATE LOGFILE GROUP is useful only with Disk Data storage for NDB\nCluster. See\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-logfile-group.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-logfile-group.html'),(446,'CREATE PROCEDURE',33,'Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = user]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttps://dev.mysql.com/doc/refman/5.6/en/adding-functions.html. A UDF\ncan be regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttps://dev.mysql.com/doc/refman/5.6/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html\n.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case-sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.6/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.htm\nl.\n\nThe following example shows a simple stored procedure that, given a\ncountry code, counts the number of cities for that country that appear\nin the city table of the world database. The country code is passed\nusing an IN parameter, and the city count is returned using an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE citycount (IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> delimiter ;\n\nmysql> CALL citycount(\'JPN\', @cities); -- cities in Japan\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 248 |\n+---------+\n1 row in set (0.00 sec)\n\nmysql> CALL citycount(\'FRA\', @cities); -- cities in France\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 40 |\n+---------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by a\nCHARACTER SET specification.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttps://dev.mysql.com/doc/refman/5.6/en/sql-compound-statements.html.\nIn practice, stored functions tend to use compound statements, unless\nthe body consists of a single RETURN statement.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.htm\nl.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-procedure.html'),(447,'CREATE FUNCTION',33,'Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = user]\n FUNCTION sp_name ([func_parameter[,...]])\n RETURNS type\n [characteristic ...] routine_body\n\nproc_parameter:\n [ IN | OUT | INOUT ] param_name type\n\nfunc_parameter:\n param_name type\n\ntype:\n Any valid MySQL data type\n\ncharacteristic: {\n COMMENT \'string\'\n | LANGUAGE SQL\n | [NOT] DETERMINISTIC\n | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }\n | SQL SECURITY { DEFINER | INVOKER }\n}\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements create stored routines. By default, a routine is\nassociated with the default database. To associate the routine\nexplicitly with a given database, specify the name as db_name.sp_name\nwhen you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See\nhttps://dev.mysql.com/doc/refman/5.6/en/adding-functions.html. A UDF\ncan be regarded as an external stored function. Stored functions share\ntheir namespace with UDFs. See\nhttps://dev.mysql.com/doc/refman/5.6/en/function-resolution.html, for\nthe rules describing how the server interprets references to different\nkinds of functions.\n\nTo invoke a stored procedure, use the CALL statement (see [HELP CALL]).\nTo invoke a stored function, refer to it in an expression. The function\nreturns a value during expression evaluation.\n\nCREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE\nprivilege. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nBy default, MySQL automatically grants the ALTER ROUTINE and EXECUTE\nprivileges to the routine creator. This behavior can be changed by\ndisabling the automatic_sp_privileges system variable. See\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html\n.\n\nThe DEFINER and SQL SECURITY clauses specify the security context to be\nused when checking access privileges at routine execution time, as\ndescribed later in this section.\n\nIf the routine name is the same as the name of a built-in SQL function,\na syntax error occurs unless you use a space between the name and the\nfollowing parenthesis when defining the routine or invoking it later.\nFor this reason, avoid using the names of existing SQL functions for\nyour own stored routines.\n\nThe IGNORE_SPACE SQL mode applies to built-in functions, not to stored\nroutines. It is always permissible to have spaces after a stored\nroutine name, regardless of whether IGNORE_SPACE is enabled.\n\nThe parameter list enclosed within parentheses must always be present.\nIf there are no parameters, an empty parameter list of () should be\nused. Parameter names are not case-sensitive.\n\nEach parameter is an IN parameter by default. To specify otherwise for\na parameter, use the keyword OUT or INOUT before the parameter name.\n\n*Note*:\n\nSpecifying a parameter as IN, OUT, or INOUT is valid only for a\nPROCEDURE. For a FUNCTION, parameters are always regarded as IN\nparameters.\n\nAn IN parameter passes a value into a procedure. The procedure might\nmodify the value, but the modification is not visible to the caller\nwhen the procedure returns. An OUT parameter passes a value from the\nprocedure back to the caller. Its initial value is NULL within the\nprocedure, and its value is visible to the caller when the procedure\nreturns. An INOUT parameter is initialized by the caller, can be\nmodified by the procedure, and any change made by the procedure is\nvisible to the caller when the procedure returns.\n\nFor each OUT or INOUT parameter, pass a user-defined variable in the\nCALL statement that invokes the procedure so that you can obtain its\nvalue when the procedure returns. If you are calling the procedure from\nwithin another stored procedure or function, you can also pass a\nroutine parameter or local routine variable as an OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.6/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.htm\nl.\n\nThe following example shows a simple stored procedure that, given a\ncountry code, counts the number of cities for that country that appear\nin the city table of the world database. The country code is passed\nusing an IN parameter, and the city count is returned using an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE citycount (IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> delimiter ;\n\nmysql> CALL citycount(\'JPN\', @cities); -- cities in Japan\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 248 |\n+---------+\n1 row in set (0.00 sec)\n\nmysql> CALL citycount(\'FRA\', @cities); -- cities in France\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 40 |\n+---------+\n1 row in set (0.00 sec)\n\nThe example uses the mysql client delimiter command to change the\nstatement delimiter from ; to // while the procedure is being defined.\nThis enables the ; delimiter used in the procedure body to be passed\nthrough to the server rather than being interpreted by mysql itself.\nSee\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-defining.html.\n\nThe RETURNS clause may be specified only for a FUNCTION, for which it\nis mandatory. It indicates the return type of the function, and the\nfunction body must contain a RETURN value statement. If the RETURN\nstatement returns a value of a different type, the value is coerced to\nthe proper type. For example, if a function specifies an ENUM or SET\nvalue in the RETURNS clause, but the RETURN statement returns an\ninteger, the value returned from the function is the string for the\ncorresponding ENUM member of set of SET members.\n\nThe following example function takes a parameter, performs an operation\nusing an SQL function, and returns the result. In this case, it is\nunnecessary to use delimiter because the function definition contains\nno internal ; statement delimiters:\n\nmysql> CREATE FUNCTION hello (s CHAR(20))\nmysql> RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT hello(\'world\');\n+----------------+\n| hello(\'world\') |\n+----------------+\n| Hello, world! |\n+----------------+\n1 row in set (0.00 sec)\n\nParameter types and function return types can be declared to use any\nvalid data type. The COLLATE attribute can be used if preceded by a\nCHARACTER SET specification.\n\nThe routine_body consists of a valid SQL routine statement. This can be\na simple statement such as SELECT or INSERT, or a compound statement\nwritten using BEGIN and END. Compound statements can contain\ndeclarations, loops, and other control structure statements. The syntax\nfor these statements is described in\nhttps://dev.mysql.com/doc/refman/5.6/en/sql-compound-statements.html.\nIn practice, stored functions tend to use compound statements, unless\nthe body consists of a single RETURN statement.\n\nMySQL permits routines to contain DDL statements, such as CREATE and\nDROP. MySQL also permits stored procedures (but not stored functions)\nto contain SQL transaction statements such as COMMIT. Stored functions\nmay not contain statements that perform explicit or implicit commit or\nrollback. Support for these statements is not required by the SQL\nstandard, which states that each DBMS vendor may decide whether to\npermit them.\n\nStatements that return a result set can be used within a stored\nprocedure but not within a stored function. This prohibition includes\nSELECT statements that do not have an INTO var_list clause and other\nstatements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that\ncan be determined at function definition time to return a result set, a\nNot allowed to return a result set from a function error occurs\n(ER_SP_NO_RETSET). For statements that can be determined only at\nruntime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT).\n\nUSE statements within stored routines are not permitted. When a routine\nis invoked, an implicit USE db_name is performed (and undone when the\nroutine terminates). The causes the routine to have the given default\ndatabase while it executes. References to objects in databases other\nthan the routine default database should be qualified with the\nappropriate database name.\n\nFor additional information about statements that are not permitted in\nstored routines, see\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.htm\nl.\n\nFor information about invoking stored procedures from within programs\nwritten in a language that has a MySQL interface, see [HELP CALL].\n\nMySQL stores the sql_mode system variable setting in effect when a\nroutine is created or altered, and always executes the routine with\nthis setting in force, regardless of the current server SQL mode when\nthe routine begins executing.\n\nThe switch from the SQL mode of the invoker to that of the routine\noccurs after evaluation of arguments and assignment of the resulting\nvalues to routine parameters. If you define a routine in strict SQL\nmode but invoke it in nonstrict mode, assignment of arguments to\nroutine parameters does not take place in strict mode. If you require\nthat expressions passed to a routine be assigned in strict SQL mode,\nyou should invoke the routine with strict mode in effect.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-procedure.html'),(448,'CREATE SERVER',33,'Syntax:\nCREATE SERVER server_name\n FOREIGN DATA WRAPPER wrapper_name\n OPTIONS (option [, option] ...)\n\noption: {\n HOST character-literal\n | DATABASE character-literal\n | USER character-literal\n | PASSWORD character-literal\n | SOCKET character-literal\n | OWNER character-literal\n | PORT numeric-literal\n}\n\nThis statement creates the definition of a server for use with the\nFEDERATED storage engine. The CREATE SERVER statement creates a new row\nin the servers table in the mysql database. This statement requires the\nSUPER privilege.\n\nThe server_name should be a unique reference to the server. Server\ndefinitions are global within the scope of the server, it is not\npossible to qualify the server definition to a specific database.\nserver_name has a maximum length of 64 characters (names longer than 64\ncharacters are silently truncated), and is case-insensitive. You may\nspecify the name as a quoted string.\n\nThe wrapper_name is an identifier and may be quoted with single\nquotation marks.\n\nFor each option you must specify either a character literal or numeric\nliteral. Character literals are UTF-8, support a maximum length of 64\ncharacters and default to a blank (empty) string. String literals are\nsilently truncated to 64 characters. Numeric literals must be a number\nbetween 0 and 9999, default value is 0.\n\n*Note*:\n\nThe OWNER option is currently not applied, and has no effect on the\nownership or operation of the server connection that is created.\n\nThe CREATE SERVER statement creates an entry in the mysql.servers table\nthat can later be used with the CREATE TABLE statement when creating a\nFEDERATED table. The options that you specify will be used to populate\nthe columns in the mysql.servers table. The table columns are\nServer_name, Host, Db, Username, Password, Port and Socket.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'198.51.100.106\', DATABASE \'test\');\n','https://dev.mysql.com/doc/refman/5.6/en/create-server.html'),(449,'CREATE TABLE',33,'Syntax:\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n (create_definition,...)\n [table_options]\n [partition_options]\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n [(create_definition,...)]\n [table_options]\n [partition_options]\n [IGNORE | REPLACE]\n [AS] query_expression\n\nCREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name\n { LIKE old_tbl_name | (LIKE old_tbl_name) }\n\ncreate_definition: {\n col_name column_definition\n | {INDEX | KEY} [index_name] [index_type] (key_part,...)\n [index_option] ...\n | {FULLTEXT | SPATIAL} [INDEX | KEY] [index_name] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX | KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | CHECK (expr)\n}\n\ncolumn_definition:\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [COLLATE collation_name]\n [COLUMN_FORMAT {FIXED | DYNAMIC | DEFAULT}]\n [STORAGE {DISK | MEMORY}]\n [reference_definition]\n\ndata_type:\n (see https://dev.mysql.com/doc/refman/5.6/en/data-types.html)\n\nkey_part:\n col_name [(length)] [ASC | DESC]\n\nindex_type:\n USING {BTREE | HASH}\n\nindex_option: {\n KEY_BLOCK_SIZE [=] value\n | index_type\n | WITH PARSER parser_name\n | COMMENT \'string\'\n}\n\nreference_definition:\n REFERENCES tbl_name (key_part,...)\n [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE]\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\ntable_options:\n table_option [[,] table_option] ...\n\ntable_option: {\n AUTO_INCREMENT [=] value\n | AVG_ROW_LENGTH [=] value\n | [DEFAULT] CHARACTER SET [=] charset_name\n | CHECKSUM [=] {0 | 1}\n | [DEFAULT] COLLATE [=] collation_name\n | COMMENT [=] \'string\'\n | CONNECTION [=] \'connect_string\'\n | {DATA | INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENGINE [=] engine_name\n | INSERT_METHOD [=] { NO | FIRST | LAST }\n | KEY_BLOCK_SIZE [=] value\n | MAX_ROWS [=] value\n | MIN_ROWS [=] value\n | PACK_KEYS [=] {0 | 1 | DEFAULT}\n | PASSWORD [=] \'string\'\n | ROW_FORMAT [=] {DEFAULT | DYNAMIC | FIXED | COMPRESSED | REDUNDANT | COMPACT}\n | STATS_AUTO_RECALC [=] {DEFAULT | 0 | 1}\n | STATS_PERSISTENT [=] {DEFAULT | 0 | 1}\n | STATS_SAMPLE_PAGES [=] value\n | TABLESPACE tablespace_name [STORAGE {DISK | MEMORY}]\n | UNION [=] (tbl_name[,tbl_name]...)\n}\n\npartition_options:\n PARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1 | 2}] (column_list)\n | RANGE{(expr) | COLUMNS(column_list)}\n | LIST{(expr) | COLUMNS(column_list)} }\n [PARTITIONS num]\n [SUBPARTITION BY\n { [LINEAR] HASH(expr)\n | [LINEAR] KEY [ALGORITHM={1 | 2}] (column_list) }\n [SUBPARTITIONS num]\n ]\n [(partition_definition [, partition_definition] ...)]\n\npartition_definition:\n PARTITION partition_name\n [VALUES\n {LESS THAN {(expr | value_list) | MAXVALUE}\n |\n IN (value_list)}]\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n [(subpartition_definition [, subpartition_definition] ...)]\n\nsubpartition_definition:\n SUBPARTITION logical_name\n [[STORAGE] ENGINE [=] engine_name]\n [COMMENT [=] \'string\' ]\n [DATA DIRECTORY [=] \'data_dir\']\n [INDEX DIRECTORY [=] \'index_dir\']\n [MAX_ROWS [=] max_number_of_rows]\n [MIN_ROWS [=] min_number_of_rows]\n [TABLESPACE [=] tablespace_name]\n [NODEGROUP [=] node_group_id]\n\nquery_expression:\n SELECT ... (Some valid select or union statement)\n\nCREATE TABLE creates a table with the given name. You must have the\nCREATE privilege for the table.\n\nBy default, tables are created in the default database, using the\nInnoDB storage engine. An error occurs if the table exists, if there is\nno default database, or if the database does not exist.\n\nMySQL has no limit on the number of tables. The underlying file system\nmay have a limit on the number of files that represent tables.\nIndividual storage engines may impose engine-specific constraints.\nInnoDB permits up to 4 billion tables.\n\nFor information about the physical representation of a table, see\nhttps://dev.mysql.com/doc/refman/5.6/en/create-table-files.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-table.html'),(450,'FOREIGN KEY',33,'MySQL supports foreign keys, which permit cross-referencing related\ndata across tables, and foreign key constraints, which help keep the\nrelated data consistent.\n\nA foreign key relationship involves a parent table that holds the\ninitial column values, and a child table with column values that\nreference the parent column values. A foreign key constraint is defined\non the child table.\n\nThe essential syntax for a defining a foreign key constraint in a\nCREATE TABLE or ALTER TABLE statement includes the following:\n\n[CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name, ...)\n REFERENCES tbl_name (col_name,...)\n [ON DELETE reference_option]\n [ON UPDATE reference_option]\n\nreference_option:\n RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-table-foreign-keys.html\n\n','CREATE TABLE product (\n category INT NOT NULL, id INT NOT NULL,\n price DECIMAL,\n PRIMARY KEY(category, id)\n) ENGINE=INNODB;\n\nCREATE TABLE customer (\n id INT NOT NULL,\n PRIMARY KEY (id)\n) ENGINE=INNODB;\n\nCREATE TABLE product_order (\n no INT NOT NULL AUTO_INCREMENT,\n product_category INT NOT NULL,\n product_id INT NOT NULL,\n customer_id INT NOT NULL,\n\n PRIMARY KEY(no),\n INDEX (product_category, product_id),\n INDEX (customer_id),\n\n FOREIGN KEY (product_category, product_id)\n REFERENCES product(category, id)\n ON UPDATE CASCADE ON DELETE RESTRICT,\n\n FOREIGN KEY (customer_id)\n REFERENCES customer(id)\n) ENGINE=INNODB;\n','https://dev.mysql.com/doc/refman/5.6/en/create-table-foreign-keys.html'),(451,'CREATE TABLESPACE',33,'Syntax:\nCREATE TABLESPACE tablespace_name\n ADD DATAFILE \'file_name\'\n USE LOGFILE GROUP logfile_group\n [EXTENT_SIZE [=] extent_size]\n [INITIAL_SIZE [=] initial_size]\n [AUTOEXTEND_SIZE [=] autoextend_size]\n [MAX_SIZE [=] max_size]\n [NODEGROUP [=] nodegroup_id]\n [WAIT]\n [COMMENT [=] comment_text]\n ENGINE [=] engine_name\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for tables. One data file is\ncreated and added to the tablespace using this statement. Additional\ndata files may be added to the tablespace by using the ALTER TABLESPACE\nstatement (see [HELP ALTER TABLESPACE]). For rules covering the naming\nof tablespaces, see\nhttps://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\n*Note*:\n\nAll NDB Cluster Disk Data objects share the same namespace. This means\nthat each Disk Data object must be uniquely named (and not merely each\nDisk Data object of a given type). For example, you cannot have a\ntablespace and a log file group with the same name, or a tablespace and\na data file with the same name.\n\nA log file group of one or more UNDO log files must be assigned to the\ntablespace to be created with the USE LOGFILE GROUP clause.\nlogfile_group must be an existing log file group created with CREATE\nLOGFILE GROUP (see [HELP CREATE LOGFILE GROUP]). Multiple tablespaces\nmay use the same log file group for UNDO logging.\n\nThe EXTENT_SIZE sets the size, in bytes, of the extents used by any\nfiles belonging to the tablespace. The default value is 1M. The minimum\nsize is 32K, and theoretical maximum is 2G, although the practical\nmaximum size depends on a number of factors. In most cases, changing\nthe extent size does not have any measurable effect on performance, and\nthe default value is recommended for all but the most unusual\nsituations.\n\nAn extent is a unit of disk space allocation. One extent is filled with\nas much data as that extent can contain before another extent is used.\nIn theory, up to 65,535 (64K) extents may used per data file; however,\nthe recommended maximum is 32,768 (32K). The recommended maximum size\nfor a single data file is 32G---that is, 32K extents x 1 MB per extent.\nIn addition, once an extent is allocated to a given partition, it\ncannot be used to store data from a different partition; an extent\ncannot store data from more than one partition. This means, for example\nthat a tablespace having a single datafile whose INITIAL_SIZE is 256 MB\nand whose EXTENT_SIZE is 128M has just two extents, and so can be used\nto store data from at most two different disk data table partitions.\n\nYou can see how many extents remain free in a given data file by\nquerying the INFORMATION_SCHEMA.FILES table, and so derive an estimate\nfor how much space remains free in the file. For further discussion and\nexamples, see https://dev.mysql.com/doc/refman/5.6/en/files-table.html.\n\nThe INITIAL_SIZE parameter sets the data file\'s total size in bytes.\nOnce the file has been created, its size cannot be changed; however,\nyou can add more data files to the tablespace using ALTER TABLESPACE\n... ADD DATAFILE. See [HELP ALTER TABLESPACE].\n\nINITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\nOn 32-bit systems, the maximum supported value for INITIAL_SIZE is\n4294967296 (4 GB). (Bug #29186)\n\nWhen setting EXTENT_SIZE, you may optionally follow the number with a\none-letter abbreviation for an order of magnitude, similar to those\nused in my.cnf. Generally, this is one of the letters M (for megabytes)\nor G (for gigabytes). In MySQL NDB Cluster 7.3.2 and later, these\nabbreviations are also supported when specifying INITIAL_SIZE as well.\n(Bug #13116514, Bug #16104705, Bug #62858)\n\nINITIAL_SIZE, EXTENT_SIZE, and UNDO_BUFFER_SIZE are subject to rounding\nas follows:\n\no EXTENT_SIZE and UNDO_BUFFER_SIZE are each rounded up to the nearest\n whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K.\n\n For data files, INITIAL_SIZE is subject to further rounding; the\n result just obtained is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\nThe rounding just described is done explicitly, and a warning is issued\nby the MySQL Server when any such rounding is performed. The rounded\nvalues are also used by the NDB kernel for calculating\nINFORMATION_SCHEMA.FILES column values and other purposes. However, to\navoid an unexpected result, we suggest that you always use whole\nmultiples of 32K in specifying these options.\n\nAUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, and COMMENT are parsed but\nignored, and so currently have no effect. These options are intended\nfor future expansion.\n\nThe ENGINE parameter determines the storage engine which uses this\ntablespace, with engine_name being the name of the storage engine.\nCurrently, engine_name must be one of the values NDB or NDBCLUSTER.\n\nWhen CREATE TABLESPACE is used with ENGINE = NDB, a tablespace and\nassociated data file are created on each Cluster data node. You can\nverify that the data files were created and obtain information about\nthem by querying the INFORMATION_SCHEMA.FILES table. For example:\n\nmysql> SELECT LOGFILE_GROUP_NAME, FILE_NAME, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'newts\' AND FILE_TYPE = \'DATAFILE\';\n+--------------------+-------------+----------------+\n| LOGFILE_GROUP_NAME | FILE_NAME | EXTRA |\n+--------------------+-------------+----------------+\n| lg_3 | newdata.dat | CLUSTER_NODE=3 |\n| lg_3 | newdata.dat | CLUSTER_NODE=4 |\n+--------------------+-------------+----------------+\n2 rows in set (0.01 sec)\n\n(See https://dev.mysql.com/doc/refman/5.6/en/files-table.html.)\n\nCREATE TABLESPACE is useful only with Disk Data storage for NDB\nCluster. See\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-tablespace.html'),(452,'CREATE TRIGGER',33,'Syntax:\nCREATE\n [DEFINER = user]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\nThis statement creates a new trigger. A trigger is a named database\nobject that is associated with a table, and that activates when a\nparticular event occurs for the table. The trigger becomes associated\nwith the table named tbl_name, which must refer to a permanent table.\nYou cannot associate a trigger with a TEMPORARY table or a view.\n\nTrigger names exist in the schema namespace, meaning that all triggers\nmust have unique names within a schema. Triggers in different schemas\ncan have the same name.\n\nThis section describes CREATE TRIGGER syntax. For additional\ndiscussion, see\nhttps://dev.mysql.com/doc/refman/5.6/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. If the DEFINER clause is present, the privileges\nrequired depend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\n\nThe DEFINER clause determines the security context to be used when\nchecking access privileges at trigger activation time, as described\nlater in this section.\n\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\nindicate that the trigger activates before or after each row to be\nmodified.\n\nBasic column value checks occur prior to trigger activation, so you\ncannot use BEFORE triggers to convert values inappropriate for the\ncolumn type to valid values.\n\ntrigger_event indicates the kind of operation that activates the\ntrigger. These trigger_event values are permitted:\n\no INSERT: The trigger activates whenever a new row is inserted into the\n table (for example, through INSERT, LOAD DATA, and REPLACE\n statements).\n\no UPDATE: The trigger activates whenever a row is modified (for\n example, through UPDATE statements).\n\no DELETE: The trigger activates whenever a row is deleted from the\n table (for example, through DELETE and REPLACE statements). DROP\n TABLE and TRUNCATE TABLE statements on the table do not activate this\n trigger, because they do not use DELETE. Dropping a partition does\n not activate DELETE triggers, either.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-trigger.html'),(453,'CREATE VIEW',33,'Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = user]\n [SQL SECURITY { DEFINER | INVOKER }]\n VIEW view_name [(column_list)]\n AS select_statement\n [WITH [CASCADED | LOCAL] CHECK OPTION]\n\nThe CREATE VIEW statement creates a new view, or replaces an existing\nview if the OR REPLACE clause is given. If the view does not exist,\nCREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does\nexist, CREATE OR REPLACE VIEW replaces it.\n\nFor information about restrictions on view use, see\nhttps://dev.mysql.com/doc/refman/5.6/en/view-restrictions.html.\n\nThe select_statement is a SELECT statement that provides the definition\nof the view. (Selecting from the view selects, in effect, using the\nSELECT statement.) The select_statement can select from base tables or\nother views.\n\nThe view definition is \"frozen\" at creation time and is not affected by\nsubsequent changes to the definitions of the underlying tables. For\nexample, if a view is defined as SELECT * on a table, new columns added\nto the table later do not become part of the view, and columns dropped\nfrom the table will result in an error when selecting from the view.\n\nThe ALGORITHM clause affects how MySQL processes the view. The DEFINER\nand SQL SECURITY clauses specify the security context to be used when\nchecking access privileges at view invocation time. The WITH CHECK\nOPTION clause can be given to constrain inserts or updates to rows in\ntables referenced by the view. These clauses are described later in\nthis section.\n\nThe CREATE VIEW statement requires the CREATE VIEW privilege for the\nview, and some privilege for each column selected by the SELECT\nstatement. For columns used elsewhere in the SELECT statement, you must\nhave the SELECT privilege. If the OR REPLACE clause is present, you\nmust also have the DROP privilege for the view. If the DEFINER clause\nis present, the privileges required depend on the user value, as\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.\n\nWhen a view is referenced, privilege checking occurs as described later\nin this section.\n\nA view belongs to a database. By default, a new view is created in the\ndefault database. To create the view explicitly in a given database,\nuse db_name.view_name syntax to qualify the view name with the database\nname:\n\nCREATE VIEW test.v AS SELECT * FROM t;\n\nUnqualified table or view names in the SELECT statement are also\ninterpreted with respect to the default database. A view can refer to\ntables or views in other databases by qualifying the table or view name\nwith the appropriate database name.\n\nWithin a database, base tables and views share the same namespace, so a\nbase table and a view cannot have the same name.\n\nColumns retrieved by the SELECT statement can be simple references to\ntable columns, or expressions that use functions, constant values,\noperators, and so forth.\n\nA view must have unique column names with no duplicates, just like a\nbase table. By default, the names of the columns retrieved by the\nSELECT statement are used for the view column names. To define explicit\nnames for the view columns, specify the optional column_list clause as\na list of comma-separated identifiers. The number of names in\ncolumn_list must be the same as the number of columns retrieved by the\nSELECT statement.\n\nA view can be created from many kinds of SELECT statements. It can\nrefer to base tables or other views. It can use joins, UNION, and\nsubqueries. The SELECT need not even refer to any tables:\n\nCREATE VIEW v_today (today) AS SELECT CURRENT_DATE;\n\nThe following example defines a view that selects two columns from\nanother table as well as an expression calculated from those columns:\n\nmysql> CREATE TABLE t (qty INT, price INT);\nmysql> INSERT INTO t VALUES(3, 50);\nmysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;\nmysql> SELECT * FROM v;\n+------+-------+-------+\n| qty | price | value |\n+------+-------+-------+\n| 3 | 50 | 150 |\n+------+-------+-------+\n\nA view definition is subject to the following restrictions:\n\no The SELECT statement cannot contain a subquery in the FROM clause.\n\no The SELECT statement cannot refer to system variables or user-defined\n variables.\n\no Within a stored program, the SELECT statement cannot refer to program\n parameters or local variables.\n\no The SELECT statement cannot refer to prepared statement parameters.\n\no Any table or view referred to in the definition must exist. If, after\n the view has been created, a table or view that the definition refers\n to is dropped, use of the view results in an error. To check a view\n definition for problems of this kind, use the CHECK TABLE statement.\n\no The definition cannot refer to a TEMPORARY table, and you cannot\n create a TEMPORARY view.\n\no You cannot associate a trigger with a view.\n\no Aliases for column names in the SELECT statement are checked against\n the maximum column length of 64 characters (not the maximum alias\n length of 256 characters).\n\nORDER BY is permitted in a view definition, but it is ignored if you\nselect from a view using a statement that has its own ORDER BY or\nfiltering or grouping. When ORDER BY is combined with LIMIT or OFFSET\nin a view definition, the ordering is always enforced before the query\nresult is used by the outer query, but it does not guarantee that the\nsame ordering is used in the end result. As a workaround, add an ORDER\nBY clause to the outer query.\n\nFor other options or clauses in the definition, they are added to the\noptions or clauses of the statement that references the view, but the\neffect is undefined. For example, if a view definition includes a LIMIT\nclause, and you select from the view using a statement that has its own\nLIMIT clause, it is undefined which limit applies. This same principle\napplies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that\nfollow the SELECT keyword, and to clauses such as INTO, FOR UPDATE,\nLOCK IN SHARE MODE, and PROCEDURE.\n\nThe results obtained from a view may be affected if you change the\nquery processing environment by changing system variables:\n\nmysql> CREATE VIEW v (mycol) AS SELECT \'abc\';\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SET sql_mode = \'\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| mycol |\n+-------+\n1 row in set (0.01 sec)\n\nmysql> SET sql_mode = \'ANSI_QUOTES\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT \"mycol\" FROM v;\n+-------+\n| mycol |\n+-------+\n| abc |\n+-------+\n1 row in set (0.00 sec)\n\nThe DEFINER and SQL SECURITY clauses determine which MySQL account to\nuse when checking access privileges for the view when a statement is\nexecuted that references the view. The valid SQL SECURITY\ncharacteristic values are DEFINER (the default) and INVOKER. These\nindicate that the required privileges must be held by the user who\ndefined or invoked the view, respectively.\n\nIf the DEFINER clause is present, the user value should be a MySQL\naccount specified as \'user_name\'@\'host_name\', CURRENT_USER, or\nCURRENT_USER(). The permitted user values depend on the privileges you\nhold, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.\nAlso see that section for additional information about view security.\n\nIf the DEFINER clause is omitted, the default definer is the user who\nexecutes the CREATE VIEW statement. This is the same as specifying\nDEFINER = CURRENT_USER explicitly.\n\nWithin a view definition, the CURRENT_USER function returns the view\'s\nDEFINER value by default. For views defined with the SQL SECURITY\nINVOKER characteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttps://dev.mysql.com/doc/refman/5.6/en/account-activity-auditing.html.\n\nWithin a stored routine that is defined with the SQL SECURITY DEFINER\ncharacteristic, CURRENT_USER returns the routine\'s DEFINER value. This\nalso affects a view defined within such a routine, if the view\ndefinition contains a DEFINER value of CURRENT_USER.\n\nMySQL checks view privileges like this:\n\no At view definition time, the view creator must have the privileges\n needed to use the top-level objects accessed by the view. For\n example, if the view definition refers to table columns, the creator\n must have some privilege for each column in the select list of the\n definition, and the SELECT privilege for each column used elsewhere\n in the definition. If the definition refers to a stored function,\n only the privileges needed to invoke the function can be checked. The\n privileges required at function invocation time can be checked only\n as it executes: For different invocations, different execution paths\n within the function might be taken.\n\no The user who references a view must have appropriate privileges to\n access it (SELECT to select from it, INSERT to insert into it, and so\n forth.)\n\no When a view has been referenced, privileges for objects accessed by\n the view are checked against the privileges held by the view DEFINER\n account or invoker, depending on whether the SQL SECURITY\n characteristic is DEFINER or INVOKER, respectively.\n\no If reference to a view causes execution of a stored function,\n privilege checking for statements executed within the function depend\n on whether the function SQL SECURITY characteristic is DEFINER or\n INVOKER. If the security characteristic is DEFINER, the function runs\n with the privileges of the DEFINER account. If the characteristic is\n INVOKER, the function runs with the privileges determined by the\n view\'s SQL SECURITY characteristic.\n\nExample: A view might depend on a stored function, and that function\nmight invoke other stored routines. For example, the following view\ninvokes a stored function f():\n\nCREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name);\n\nSuppose that f() contains a statement such as this:\n\nIF name IS NULL then\n CALL p1();\nELSE\n CALL p2();\nEND IF;\n\nThe privileges required for executing statements within f() need to be\nchecked when f() executes. This might mean that privileges are needed\nfor p1() or p2(), depending on the execution path within f(). Those\nprivileges must be checked at runtime, and the user who must possess\nthe privileges is determined by the SQL SECURITY values of the view v\nand the function f().\n\nThe DEFINER and SQL SECURITY clauses for views are extensions to\nstandard SQL. In standard SQL, views are handled using the rules for\nSQL SECURITY DEFINER. The standard says that the definer of the view,\nwhich is the same as the owner of the view\'s schema, gets applicable\nprivileges on the view (for example, SELECT) and may grant them. MySQL\nhas no concept of a schema \"owner\", so MySQL adds a clause to identify\nthe definer. The DEFINER clause is an extension where the intent is to\nhave what the standard has; that is, a permanent record of who defined\nthe view. This is why the default DEFINER value is the account of the\nview creator.\n\nThe optional ALGORITHM clause is a MySQL extension to standard SQL. It\naffects how MySQL processes the view. ALGORITHM takes three values:\nMERGE, TEMPTABLE, or UNDEFINED. The default algorithm is UNDEFINED if\nno ALGORITHM clause is present. For more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/view-algorithms.html, as well\nas\nhttps://dev.mysql.com/doc/refman/5.6/en/derived-table-optimization.html\n.\n\nSome views are updatable. That is, you can use them in statements such\nas UPDATE, DELETE, or INSERT to update the contents of the underlying\ntable. For a view to be updatable, there must be a one-to-one\nrelationship between the rows in the view and the rows in the\nunderlying table. There are also certain other constructs that make a\nview nonupdatable.\n\nThe WITH CHECK OPTION clause can be given for an updatable view to\nprevent inserts or updates to rows except those for which the WHERE\nclause in the select_statement is true.\n\nIn a WITH CHECK OPTION clause for an updatable view, the LOCAL and\nCASCADED keywords determine the scope of check testing when the view is\ndefined in terms of another view. The LOCAL keyword restricts the CHECK\nOPTION only to the view being defined. CASCADED causes the checks for\nunderlying views to be evaluated as well. When neither keyword is\ngiven, the default is CASCADED.\n\nFor more information about updatable views and the WITH CHECK OPTION\nclause, see\nhttps://dev.mysql.com/doc/refman/5.6/en/view-updatability.html, and\nhttps://dev.mysql.com/doc/refman/5.6/en/view-check-option.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-view.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-view.html'),(454,'DROP DATABASE',33,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*:\n\nWhen a database is dropped, privileges granted specifically for the\ndatabase are not automatically dropped. They must be dropped manually.\nSee [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-database.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-database.html'),(455,'DROP SCHEMA',33,'Syntax:\nDROP {DATABASE | SCHEMA} [IF EXISTS] db_name\n\nDROP DATABASE drops all tables in the database and deletes the\ndatabase. Be very careful with this statement! To use DROP DATABASE,\nyou need the DROP privilege on the database. DROP SCHEMA is a synonym\nfor DROP DATABASE.\n\n*Important*:\n\nWhen a database is dropped, privileges granted specifically for the\ndatabase are not automatically dropped. They must be dropped manually.\nSee [HELP GRANT].\n\nIF EXISTS is used to prevent an error from occurring if the database\ndoes not exist.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-database.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-database.html'),(456,'DROP EVENT',33,'Syntax:\nDROP EVENT [IF EXISTS] event_name\n\nThis statement drops the event named event_name. The event immediately\nceases being active, and is deleted completely from the server.\n\nIf the event does not exist, the error ERROR 1517 (HY000): Unknown\nevent \'event_name\' results. You can override this and cause the\nstatement to generate a warning for nonexistent events instead using IF\nEXISTS.\n\nThis statement requires the EVENT privilege for the schema to which the\nevent to be dropped belongs.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-event.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-event.html'),(457,'DROP INDEX',33,'Syntax:\nDROP INDEX [ONLINE | OFFLINE] index_name ON tbl_name\n [algorithm_option | lock_option] ...\n\nalgorithm_option:\n ALGORITHM [=] {DEFAULT | INPLACE | COPY}\n\nlock_option:\n LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}\n\nDROP INDEX drops the index named index_name from the table tbl_name.\nThis statement is mapped to an ALTER TABLE statement to drop the index.\nSee [HELP ALTER TABLE].\n\nTo drop a primary key, the index name is always PRIMARY, which must be\nspecified as a quoted identifier because PRIMARY is a reserved word:\n\nDROP INDEX `PRIMARY` ON t;\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-index.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-index.html'),(458,'DROP PROCEDURE',33,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThis statement is used to drop a stored procedure or function. That is,\nthe specified routine is removed from the server. You must have the\nALTER ROUTINE privilege for the routine. (If the\nautomatic_sp_privileges system variable is enabled, that privilege and\nEXECUTE are granted automatically to the routine creator when the\nroutine is created and dropped from the creator when the routine is\ndropped. See\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html\n.)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-procedure.html'),(459,'DROP FUNCTION',33,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThis statement is used to drop a stored procedure or function. That is,\nthe specified routine is removed from the server. You must have the\nALTER ROUTINE privilege for the routine. (If the\nautomatic_sp_privileges system variable is enabled, that privilege and\nEXECUTE are granted automatically to the routine creator when the\nroutine is created and dropped from the creator when the routine is\ndropped. See\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-routines-privileges.html\n.)\n\nThe IF EXISTS clause is a MySQL extension. It prevents an error from\noccurring if the procedure or function does not exist. A warning is\nproduced that can be viewed with SHOW WARNINGS.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-procedure.html'),(460,'DROP SERVER',33,'Syntax:\nDROP SERVER [ IF EXISTS ] server_name\n\nDrops the server definition for the server named server_name. The\ncorresponding row in the mysql.servers table is deleted. This statement\nrequires the SUPER privilege.\n\nDropping a server for a table does not affect any FEDERATED tables that\nused this connection information when they were created. See [HELP\nCREATE SERVER].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-server.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-server.html'),(461,'DROP TABLE',33,'Syntax:\nDROP [TEMPORARY] TABLE [IF EXISTS]\n tbl_name [, tbl_name] ...\n [RESTRICT | CASCADE]\n\nDROP TABLE removes one or more tables. You must have the DROP privilege\nfor each table.\n\nBe careful with this statement! For each table, it removes the table\ndefinition and all table data. If the table is partitioned, the\nstatement removes the table definition, all its partitions, all data\nstored in those partitions, and all partition definitions associated\nwith the dropped table.\n\nDropping a table also drops any triggers for the table.\n\nDROP TABLE causes an implicit commit, except when used with the\nTEMPORARY keyword. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\n*Important*:\n\nWhen a table is dropped, privileges granted specifically for the table\nare not automatically dropped. They must be dropped manually. See [HELP\nGRANT].\n\nIf any tables named in the argument list do not exist, DROP TABLE\nbehavior depends on whether the IF EXISTS clause is given:\n\no Without IF EXISTS, the statement drops all named tables that do\n exist, and returns an error indicating which nonexisting tables it\n was unable to drop.\n\no With IF EXISTS, no error occurs for nonexisting tables. The statement\n drops all named tables that do exist, and generates a NOTE diagnostic\n for each nonexistent table. These notes can be displayed with SHOW\n WARNINGS. See [HELP SHOW WARNINGS].\n\nIF EXISTS can also be useful for dropping tables in unusual\ncircumstances under which there is an .frm file but no table managed by\nthe storage engine. (For example, if an abnormal server exit occurs\nafter removal of the table from the storage engine but before .frm file\nremoval.)\n\nThe TEMPORARY keyword has the following effects:\n\no The statement drops only TEMPORARY tables.\n\no The statement does not cause an implicit commit.\n\no No access rights are checked. A TEMPORARY table is visible only with\n the session that created it, so no check is necessary.\n\nIncluding the TEMPORARY keyword is a good way to prevent accidentally\ndropping non-TEMPORARY tables.\n\nThe RESTRICT and CASCADE keywords do nothing. They are permitted to\nmake porting easier from other database systems.\n\nDROP TABLE is not supported with all innodb_force_recovery settings.\nSee\nhttps://dev.mysql.com/doc/refman/5.6/en/forcing-innodb-recovery.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-table.html'),(462,'DROP TABLESPACE',33,'Syntax:\nDROP TABLESPACE tablespace_name\n ENGINE [=] engine_name\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE (see [HELP CREATE TABLESPACE]).\n\n*Important*:\n\nThe tablespace to be dropped must not contain any data files; in other\nwords, before you can drop a tablespace, you must first drop each of\nits data files using ALTER TABLESPACE ... DROP DATAFILE (see [HELP\nALTER TABLESPACE]).\n\nThe ENGINE clause (required) specifies the storage engine used by the\ntablespace. Currently, the only accepted values for engine_name are NDB\nand NDBCLUSTER.\n\nDROP TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-tablespace.html'),(463,'DROP TRIGGER',33,'Syntax:\nDROP TRIGGER [IF EXISTS] [schema_name.]trigger_name\n\nThis statement drops a trigger. The schema (database) name is optional.\nIf the schema is omitted, the trigger is dropped from the default\nschema. DROP TRIGGER requires the TRIGGER privilege for the table\nassociated with the trigger.\n\nUse IF EXISTS to prevent an error from occurring for a trigger that\ndoes not exist. A NOTE is generated for a nonexistent trigger when\nusing IF EXISTS. See [HELP SHOW WARNINGS].\n\nTriggers for a table are also dropped if you drop the table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-trigger.html'),(464,'DROP VIEW',33,'Syntax:\nDROP VIEW [IF EXISTS]\n view_name [, view_name] ...\n [RESTRICT | CASCADE]\n\nDROP VIEW removes one or more views. You must have the DROP privilege\nfor each view.\n\nIf any views named in the argument list do not exist, the statement\nreturns an error indicating by name which nonexisting views it was\nunable to drop, but also drops all views in the list that do exist.\n\nThe IF EXISTS clause prevents an error from occurring for views that\ndon\'t exist. When this clause is given, a NOTE is generated for each\nnonexistent view. See [HELP SHOW WARNINGS].\n\nRESTRICT and CASCADE, if given, are parsed and ignored.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-view.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-view.html'),(465,'RENAME TABLE',33,'Syntax:\nRENAME TABLE\n tbl_name TO new_tbl_name\n [, tbl_name2 TO new_tbl_name2] ...\n\nRENAME TABLE renames one or more tables. You must have ALTER and DROP\nprivileges for the original table, and CREATE and INSERT privileges for\nthe new table.\n\nFor example, to rename a table named old_table to new_table, use this\nstatement:\n\nRENAME TABLE old_table TO new_table;\n\nThat statement is equivalent to the following ALTER TABLE statement:\n\nALTER TABLE old_table RENAME new_table;\n\nRENAME TABLE, unlike ALTER TABLE, can rename multiple tables within a\nsingle statement:\n\nRENAME TABLE old_table1 TO new_table1,\n old_table2 TO new_table2,\n old_table3 TO new_table3;\n\nRenaming operations are performed left to right. Thus, to swap two\ntable names, do this (assuming that a table with the intermediary name\ntmp_table does not already exist):\n\nRENAME TABLE old_table TO tmp_table,\n new_table TO old_table,\n tmp_table TO new_table;\n\nMetadata locks on tables are acquired in name order, which in some\ncases can make a difference in operation outcome when multiple\ntransactions execute concurrently. See\nhttps://dev.mysql.com/doc/refman/5.6/en/metadata-locking.html.\n\nTo execute RENAME TABLE, there must be no active transactions or tables\nlocked with LOCK TABLES. With the transaction table locking conditions\nsatisfied, the rename operation is done atomically; no other session\ncan access any of the tables while the rename is in progress.\n\nIf any errors occur during a RENAME TABLE, the statement fails and no\nchanges are made.\n\nYou can use RENAME TABLE to move a table from one database to another:\n\nRENAME TABLE current_db.tbl_name TO other_db.tbl_name;\n\nUsing this method to move all tables from one database to a different\none in effect renames the database (an operation for which MySQL has no\nsingle statement), except that the original database continues to\nexist, albeit with no tables.\n\nLike RENAME TABLE, ALTER TABLE ... RENAME can also be used to move a\ntable to a different database. Regardless of the statement used, if the\nrename operation would move the table to a database located on a\ndifferent file system, the success of the outcome is platform specific\nand depends on the underlying operating system calls used to move table\nfiles.\n\nIf a table has triggers, attempts to rename the table into a different\ndatabase fail with a Trigger in wrong schema (ER_TRG_IN_WRONG_SCHEMA)\nerror.\n\nTo rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE\ninstead.\n\nRENAME TABLE works for views, except that views cannot be renamed into\na different database.\n\nAny privileges granted specifically for a renamed table or view are not\nmigrated to the new name. They must be changed manually.\n\nRENAME TABLE tbl_name TO new_tbl_name changes internally generated\nforeign key constraint names and user-defined foreign key constraint\nnames that begin with the string \"tbl_name_ibfk_\" to reflect the new\ntable name. InnoDB interprets foreign key constraint names that begin\nwith the string \"tbl_name_ibfk_\" as internally generated names.\n\nForeign key constraint names that point to the renamed table are\nautomatically updated unless there is a conflict, in which case the\nstatement fails with an error. A conflict occurs if the renamed\nconstraint name already exists. In such cases, you must drop and\nre-create the foreign keys for them to function properly.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/rename-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/rename-table.html'),(466,'TRUNCATE TABLE',33,'Syntax:\nTRUNCATE [TABLE] tbl_name\n\nTRUNCATE TABLE empties a table completely. It requires the DROP\nprivilege.\n\nLogically, TRUNCATE TABLE is similar to a DELETE statement that deletes\nall rows, or a sequence of DROP TABLE and CREATE TABLE statements. To\nachieve high performance, it bypasses the DML method of deleting data.\nThus, it cannot be rolled back, it does not cause ON DELETE triggers to\nfire, and it cannot be performed for InnoDB tables with parent-child\nforeign key relationships.\n\nAlthough TRUNCATE TABLE is similar to DELETE, it is classified as a DDL\nstatement rather than a DML statement. It differs from DELETE in the\nfollowing ways:\n\no Truncate operations drop and re-create the table, which is much\n faster than deleting rows one by one, particularly for large tables.\n\no Truncate operations cause an implicit commit, and so cannot be rolled\n back. See\n https://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\no Truncation operations cannot be performed if the session holds an\n active table lock.\n\no TRUNCATE TABLE fails for an InnoDB table or NDB table if there are\n any FOREIGN KEY constraints from other tables that reference the\n table. Foreign key constraints between columns of the same table are\n permitted.\n\no Truncation operations do not return a meaningful value for the number\n of deleted rows. The usual result is \"0 rows affected,\" which should\n be interpreted as \"no information.\"\n\no As long as the table format file tbl_name.frm is valid, the table can\n be re-created as an empty table with TRUNCATE TABLE, even if the data\n or index files have become corrupted.\n\no Any AUTO_INCREMENT value is reset to its start value. This is true\n even for MyISAM and InnoDB, which normally do not reuse sequence\n values.\n\no When used with partitioned tables, TRUNCATE TABLE preserves the\n partitioning; that is, the data and index files are dropped and\n re-created, while the partition definitions (.par) file is\n unaffected.\n\no The TRUNCATE TABLE statement does not invoke ON DELETE triggers.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/truncate-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/truncate-table.html'),(467,'CALL',34,'Syntax:\nCALL sp_name([parameter[,...]])\nCALL sp_name[()]\n\nThe CALL statement invokes a stored procedure that was defined\npreviously with CREATE PROCEDURE.\n\nStored procedures that take no arguments can be invoked without\nparentheses. That is, CALL p() and CALL p are equivalent.\n\nCALL can pass back values to its caller using parameters that are\ndeclared as OUT or INOUT parameters. When the procedure returns, a\nclient program can also obtain the number of rows affected for the\nfinal statement executed within the routine: At the SQL level, call the\nROW_COUNT() function; from the C API, call the mysql_affected_rows()\nfunction.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.6/en/conditions-and-parameters.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/call.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/call.html'),(468,'DELETE',34,'Syntax:\nDELETE is a DML statement that removes rows from a table.\n\nSingle-Table Syntax\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nThe DELETE statement deletes rows from tbl_name and returns the number\nof deleted rows. To check the number of deleted rows, call the\nROW_COUNT() function described in\nhttps://dev.mysql.com/doc/refman/5.6/en/information-functions.html.\n\nMain Clauses\n\nThe conditions in the optional WHERE clause identify which rows to\ndelete. With no WHERE clause, all rows are deleted.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe deleted. It is specified as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nIf the ORDER BY clause is specified, the rows are deleted in the order\nthat is specified. The LIMIT clause places a limit on the number of\nrows that can be deleted. These clauses apply to single-table deletes,\nbut not multi-table deletes.\n\nMultiple-Table Syntax\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n tbl_name[.*] [, tbl_name[.*]] ...\n FROM table_references\n [WHERE where_condition]\n\nDELETE [LOW_PRIORITY] [QUICK] [IGNORE]\n FROM tbl_name[.*] [, tbl_name[.*]] ...\n USING table_references\n [WHERE where_condition]\n\nPrivileges\n\nYou need the DELETE privilege on a table to delete rows from it. You\nneed only the SELECT privilege for any columns that are only read, such\nas those named in the WHERE clause.\n\nPerformance\n\nWhen you do not need to know the number of deleted rows, the TRUNCATE\nTABLE statement is a faster way to empty a table than a DELETE\nstatement with no WHERE clause. Unlike DELETE, TRUNCATE TABLE cannot be\nused within a transaction or if you have a lock on the table. See [HELP\nTRUNCATE TABLE] and [HELP LOCK TABLES].\n\nThe speed of delete operations may also be affected by factors\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/delete-optimization.html.\n\nTo ensure that a given DELETE statement does not take too much time,\nthe MySQL-specific LIMIT row_count clause for DELETE specifies the\nmaximum number of rows to be deleted. If the number of rows to delete\nis larger than the limit, repeat the DELETE statement until the number\nof affected rows is less than the LIMIT value.\n\nSubqueries\n\nYou cannot delete from a table and select from the same table in a\nsubquery.\n\nPartitioned Table Support\n\nDELETE supports explicit partition selection using the PARTITION\noption, which takes a list of the comma-separated names of one or more\npartitions or subpartitions (or both) from which to select rows to be\ndropped. Partitions not included in the list are ignored. Given a\npartitioned table t with a partition named p0, executing the statement\nDELETE FROM t PARTITION (p0) has the same effect on the table as\nexecuting ALTER TABLE t TRUNCATE PARTITION (p0); in both cases, all\nrows in partition p0 are dropped.\n\nPARTITION can be used along with a WHERE condition, in which case the\ncondition is tested only on rows in the listed partitions. For example,\nDELETE FROM t PARTITION (p0) WHERE c < 5 deletes rows only from\npartition p0 for which the condition c < 5 is true; rows in any other\npartitions are not checked and thus not affected by the DELETE.\n\nThe PARTITION option can also be used in multiple-table DELETE\nstatements. You can use up to one such option per table named in the\nFROM option.\n\nFor more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/delete.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/delete.html'),(469,'DO',34,'Syntax:\nDO expr [, expr] ...\n\nDO executes the expressions but does not return any results. In most\nrespects, DO is shorthand for SELECT expr, ..., but has the advantage\nthat it is slightly faster when you do not care about the result.\n\nDO is useful primarily with functions that have side effects, such as\nRELEASE_LOCK().\n\nExample: This SELECT statement pauses, but also produces a result set:\n\nmysql> SELECT SLEEP(5);\n+----------+\n| SLEEP(5) |\n+----------+\n| 0 |\n+----------+\n1 row in set (5.02 sec)\n\nDO, on the other hand, pauses without producing a result set.:\n\nmysql> DO SLEEP(5);\nQuery OK, 0 rows affected (4.99 sec)\n\nThis could be useful, for example in a stored function or trigger,\nwhich prohibit statements that produce result sets.\n\nDO only executes expressions. It cannot be used in all cases where\nSELECT can be used. For example, DO id FROM t1 is invalid because it\nreferences a table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/do.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/do.html'),(470,'HANDLER',34,'Syntax:\nHANDLER tbl_name OPEN [ [AS] alias]\n\nHANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...)\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST }\n [ WHERE where_condition ] [LIMIT ... ]\nHANDLER tbl_name READ { FIRST | NEXT }\n [ WHERE where_condition ] [LIMIT ... ]\n\nHANDLER tbl_name CLOSE\n\nThe HANDLER statement provides direct access to table storage engine\ninterfaces. It is available for InnoDB and MyISAM tables.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/handler.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/handler.html'),(471,'INSERT',34,'Syntax:\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n {VALUES | VALUE} (value_list) [, (value_list)] ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nINSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n SET assignment_list\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nvalue:\n {expr | DEFAULT}\n\nvalue_list:\n value [, value] ...\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nINSERT inserts new rows into an existing table. The INSERT ... VALUES\nand INSERT ... SET forms of the statement insert rows based on\nexplicitly specified values. The INSERT ... SELECT form inserts rows\nselected from another table or tables. INSERT with an ON DUPLICATE KEY\nUPDATE clause enables existing rows to be updated if a row to be\ninserted would cause a duplicate value in a UNIQUE index or PRIMARY\nKEY.\n\nFor additional information about INSERT ... SELECT and INSERT ... ON\nDUPLICATE KEY UPDATE, see [HELP INSERT SELECT], and\nhttps://dev.mysql.com/doc/refman/5.6/en/insert-on-duplicate.html.\n\nInserting into a table requires the INSERT privilege for the table. If\nthe ON DUPLICATE KEY UPDATE clause is used and a duplicate key causes\nan UPDATE to be performed instead, the statement requires the UPDATE\nprivilege for the columns to be updated. For columns that are read but\nnot modified you need only the SELECT privilege (such as for a column\nreferenced only on the right hand side of an col_name=expr assignment\nin an ON DUPLICATE KEY UPDATE clause).\n\nWhen inserting into a partitioned table, you can control which\npartitions and subpartitions accept new rows. The PARTITION option\ntakes a list of the comma-separated names of one or more partitions or\nsubpartitions (or both) of the table. If any of the rows to be inserted\nby a given INSERT statement do not match one of the partitions listed,\nthe INSERT statement fails with the error Found a row not matching the\ngiven partition set. For more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/insert.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/insert.html'),(472,'INSERT SELECT',34,'Syntax:\nINSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n [ON DUPLICATE KEY UPDATE assignment_list]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nWith INSERT ... SELECT, you can quickly insert many rows into a table\nfrom the result of a SELECT statement, which can select from one or\nmany tables. For example:\n\nINSERT INTO tbl_temp2 (fld_id)\n SELECT tbl_temp1.fld_order_id\n FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/insert-select.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/insert-select.html'),(473,'INSERT DELAYED',34,'Syntax:\nINSERT DELAYED ...\n\nThe DELAYED option for the INSERT statement is a MySQL extension to\nstandard SQL that can be used for certain kinds of tables (such as\nMyISAM). When a client uses INSERT DELAYED, it gets an okay from the\nserver at once, and the row is queued to be inserted when the table is\nnot in use by any other thread.\n\n*Note*:\n\nINSERT DELAYED is slower than a normal INSERT if the table is not\notherwise in use. There is also the additional overhead for the server\nto handle a separate thread for each table for which there are delayed\nrows. This means that you should use INSERT DELAYED only when you are\nreally sure that you need it.\n\nAs of MySQL 5.6.6, INSERT DELAYED is deprecated, and will be removed in\na future release. Use INSERT (without DELAYED) instead.\n\nThe queued rows are held only in memory until they are inserted into\nthe table. This means that if you terminate mysqld forcibly (for\nexample, with kill -9) or if mysqld dies unexpectedly, any queued rows\nthat have not been written to disk are lost.\n\nThere are some constraints on the use of DELAYED:\n\no INSERT DELAYED works only with MyISAM, MEMORY, ARCHIVE, and BLACKHOLE\n tables. For engines that do not support DELAYED, an error occurs.\n\no An error occurs for INSERT DELAYED if used with a table that has been\n locked with LOCK TABLES because the insert must be handled by a\n separate thread, not by the session that holds the lock.\n\no For MyISAM tables, if there are no free blocks in the middle of the\n data file, concurrent SELECT and INSERT statements are supported.\n Under these circumstances, you very seldom need to use INSERT DELAYED\n with MyISAM.\n\no INSERT DELAYED should be used only for INSERT statements that specify\n value lists. The server ignores DELAYED for INSERT ... SELECT or\n INSERT ... ON DUPLICATE KEY UPDATE statements.\n\no Because the INSERT DELAYED statement returns immediately, before the\n rows are inserted, you cannot use LAST_INSERT_ID() to get the\n AUTO_INCREMENT value that the statement might generate.\n\no DELAYED rows are not visible to SELECT statements until they actually\n have been inserted.\n\no INSERT DELAYED is handled as a simple INSERT (that is, without the\n DELAYED option) whenever the value of binlog_format is STATEMENT or\n MIXED. (In the latter case, the statement does not trigger a switch\n to row-based logging, and so is logged using the statement-based\n format.)\n\n This does not apply when using row-based binary logging mode\n (binlog_format set to ROW), in which INSERT DELAYED statements are\n always executed using the DELAYED option as specified, and logged as\n row-update events.\n\no DELAYED is ignored on slave replication servers, so that INSERT\n DELAYED is treated as a normal INSERT on slaves. This is because\n DELAYED could cause the slave to have different data than the master.\n\no Pending INSERT DELAYED statements are lost if a table is write locked\n and ALTER TABLE is used to modify the table structure.\n\no INSERT DELAYED is not supported for views.\n\no INSERT DELAYED is not supported for partitioned tables.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/insert-delayed.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/insert-delayed.html'),(474,'LOAD DATA',34,'Syntax:\nLOAD DATA\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [CHARACTER SET charset_name]\n [{FIELDS | COLUMNS}\n [TERMINATED BY \'string\']\n [[OPTIONALLY] ENCLOSED BY \'char\']\n [ESCAPED BY \'char\']\n ]\n [LINES\n [STARTING BY \'string\']\n [TERMINATED BY \'string\']\n ]\n [IGNORE number {LINES | ROWS}]\n [(col_name_or_user_var\n [, col_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT}\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD DATA statement reads rows from a text file into a table at a\nvery high speed. LOAD DATA is the complement of SELECT ... INTO\nOUTFILE. (See\nhttps://dev.mysql.com/doc/refman/5.6/en/select-into.html.) To write\ndata from a table to a file, use SELECT ... INTO OUTFILE. To read the\nfile back into a table, use LOAD DATA. The syntax of the FIELDS and\nLINES clauses is the same for both statements.\n\nYou can also load data files by using the mysqlimport utility; see\nhttps://dev.mysql.com/doc/refman/5.6/en/mysqlimport.html. mysqlimport\noperates by sending a LOAD DATA statement to the server.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nand speeding up LOAD DATA, see\nhttps://dev.mysql.com/doc/refman/5.6/en/insert-optimization.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/load-data.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/load-data.html'),(475,'LOAD XML',34,'Syntax:\nLOAD XML\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'\']\n [IGNORE number {LINES | ROWS}]\n [(field_name_or_user_var\n [, field_name_or_user_var] ...)]\n [SET col_name={expr | DEFAULT},\n [, col_name={expr | DEFAULT}] ...]\n\nThe LOAD XML statement reads data from an XML file into a table. The\nfile_name must be given as a literal string. The tagname in the\noptional ROWS IDENTIFIED BY clause must also be given as a literal\nstring, and must be surrounded by angle brackets (< and >).\n\nLOAD XML acts as the complement of running the mysql client in XML\noutput mode (that is, starting the client with the --xml option). To\nwrite data from a table to an XML file, you can invoke the mysql client\nwith the --xml and -e options from the system shell, as shown here:\n\nshell> mysql --xml -e \'SELECT * FROM mydb.mytable\' > file.xml\n\nTo read the file back into a table, use LOAD XML. By default, the \nelement is considered to be the equivalent of a database table row;\nthis can be changed using the ROWS IDENTIFIED BY clause.\n\nThis statement supports three different XML formats:\n\no Column names as attributes and column values as attribute values:\n\n\n\no Column names as tags and column values as the content of these tags:\n\n\n value1\n value2\n\n\no Column names are the name attributes of tags, and values are\n the contents of these tags:\n\n\n value1\n value2\n\n\n This is the format used by other MySQL tools, such as mysqldump.\n\nAll three formats can be used in the same XML file; the import routine\nautomatically detects the format for each row and interprets it\ncorrectly. Tags are matched based on the tag or attribute name and the\ncolumn name.\n\nPrior to MySQL 5.6.27, LOAD XML did not handle empty XML elements in\nthe form correctly. (Bug #67542, Bug #16171518)\n\nIn MySQL 5.6, LOAD XML does not support CDATA sections in the source\nXML. This limitation is removed in MySQL 8.0. (Bug #30753708, Bug\n#98199)\n\nThe following clauses work essentially the same way for LOAD XML as\nthey do for LOAD DATA:\n\no LOW_PRIORITY or CONCURRENT\n\no LOCAL\n\no REPLACE or IGNORE\n\no CHARACTER SET\n\no SET\n\nSee [HELP LOAD DATA], for more information about these clauses.\n\n(field_name_or_user_var, ...) is a list of one or more comma-separated\nXML fields or user variables. The name of a user variable used for this\npurpose must match the name of a field from the XML file, prefixed with\n@. You can use field names to select only desired fields. User\nvariables can be employed to store the corresponding field values for\nsubsequent re-use.\n\nThe IGNORE number LINES or IGNORE number ROWS clause causes the first\nnumber rows in the XML file to be skipped. It is analogous to the LOAD\nDATA statement\'s IGNORE ... LINES clause.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/load-xml.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/load-xml.html'),(476,'REPLACE',34,'Syntax:\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n {VALUES | VALUE} (value_list) [, (value_list)] ...\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n SET assignment_list\n\nREPLACE [LOW_PRIORITY | DELAYED]\n [INTO] tbl_name\n [PARTITION (partition_name [, partition_name] ...)]\n [(col_name [, col_name] ...)]\n SELECT ...\n\nvalue:\n {expr | DEFAULT}\n\nvalue_list:\n value [, value] ...\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nREPLACE works exactly like INSERT, except that if an old row in the\ntable has the same value as a new row for a PRIMARY KEY or a UNIQUE\nindex, the old row is deleted before the new row is inserted. See [HELP\nINSERT].\n\nREPLACE is a MySQL extension to the SQL standard. It either inserts, or\ndeletes and inserts. For another MySQL extension to standard SQL---that\neither inserts or updates---see\nhttps://dev.mysql.com/doc/refman/5.6/en/insert-on-duplicate.html.\n\n*Note*:\n\nREPLACE makes sense only if a table has a PRIMARY KEY or UNIQUE index.\nOtherwise, it becomes equivalent to INSERT, because there is no index\nto be used to determine whether a new row duplicates another.\n\nValues for all columns are taken from the values specified in the\nREPLACE statement. Any missing columns are set to their default values,\njust as happens for INSERT. You cannot refer to values from the current\nrow and use them in the new row. If you use an assignment such as SET\ncol_name = col_name + 1, the reference to the column name on the right\nhand side is treated as DEFAULT(col_name), so the assignment is\nequivalent to SET col_name = DEFAULT(col_name) + 1.\n\nTo use REPLACE, you must have both the INSERT and DELETE privileges for\nthe table.\n\nREPLACE supports explicit partition selection using the PARTITION\nkeyword with a list of comma-separated names of partitions,\nsubpartitions, or both. As with INSERT, if it is not possible to insert\nthe new row into any of these partitions or subpartitions, the REPLACE\nstatement fails with the error Found a row not matching the given\npartition set. For more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/replace.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/replace.html'),(477,'SELECT',34,'Syntax:\nSELECT\n [ALL | DISTINCT | DISTINCTROW ]\n [HIGH_PRIORITY]\n [STRAIGHT_JOIN]\n [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT]\n [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS]\n select_expr [, select_expr] ...\n [into_option]\n [FROM table_references\n [PARTITION partition_list]]\n [WHERE where_condition]\n [GROUP BY {col_name | expr | position}\n [ASC | DESC], ... [WITH ROLLUP]]\n [HAVING where_condition]\n [ORDER BY {col_name | expr | position}\n [ASC | DESC], ...]\n [LIMIT {[offset,] row_count | row_count OFFSET offset}]\n [PROCEDURE procedure_name(argument_list)]\n [into_option]\n [FOR UPDATE | LOCK IN SHARE MODE]\n\ninto_option: {\n INTO OUTFILE \'file_name\'\n [CHARACTER SET charset_name]\n export_options\n | INTO DUMPFILE \'file_name\'\n | INTO var_name [, var_name] ...\n}\n\nSELECT is used to retrieve rows selected from one or more tables, and\ncan include UNION statements and subqueries. See [HELP UNION], and\nhttps://dev.mysql.com/doc/refman/5.6/en/subqueries.html.\n\nThe most commonly used clauses of SELECT statements are these:\n\no Each select_expr indicates a column that you want to retrieve. There\n must be at least one select_expr.\n\no table_references indicates the table or tables from which to retrieve\n rows. Its syntax is described in [HELP JOIN].\n\no SELECT supports explicit partition selection using the PARTITION\n keyword with a list of partitions or subpartitions (or both)\n following the name of the table in a table_reference (see [HELP\n JOIN]). In this case, rows are selected only from the partitions\n listed, and any other partitions of the table are ignored. For more\n information and examples, see\n https://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\n SELECT ... PARTITION from tables using storage engines such as MyISAM\n that perform table-level locks (and thus partition locks) lock only\n the partitions or subpartitions named by the PARTITION option.\n\n For more information, see\n https://dev.mysql.com/doc/refman/5.6/en/partitioning-limitations-lock\n ing.html.\n\no The WHERE clause, if given, indicates the condition or conditions\n that rows must satisfy to be selected. where_condition is an\n expression that evaluates to true for each row to be selected. The\n statement selects all rows if there is no WHERE clause.\n\n In the WHERE expression, you can use any of the functions and\n operators that MySQL supports, except for aggregate (summary)\n functions. See\n https://dev.mysql.com/doc/refman/5.6/en/expressions.html, and\n https://dev.mysql.com/doc/refman/5.6/en/functions.html.\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/select.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/select.html'),(478,'DUAL',34,'You are permitted to specify DUAL as a dummy table name in situations\nwhere no tables are referenced:\n\nmysql> SELECT 1 + 1 FROM DUAL;\n -> 2\n\nDUAL is purely for the convenience of people who require that all\nSELECT statements should have FROM and possibly other clauses. MySQL\nmay ignore the clauses. MySQL does not require FROM DUAL if no tables\nare referenced.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/select.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/select.html'),(479,'JOIN',34,'MySQL supports the following JOIN syntax for the table_references part\nof SELECT statements and multiple-table DELETE and UPDATE statements:\n\ntable_references:\n escaped_table_reference [, escaped_table_reference] ...\n\nescaped_table_reference: {\n table_reference\n | { OJ table_reference }\n}\n\ntable_reference: {\n table_factor\n | joined_table\n}\n\ntable_factor: {\n tbl_name [PARTITION (partition_names)]\n [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n}\n\njoined_table: {\n table_reference [INNER | CROSS] JOIN table_factor [join_specification]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON search_condition\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_specification\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n}\n\njoin_specification: {\n ON search_condition\n | USING (join_column_list)\n}\n\njoin_column_list:\n column_name [, column_name] ...\n\nindex_hint_list:\n index_hint [, index_hint] ...\n\nindex_hint: {\n USE {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\n | {IGNORE|FORCE} {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n}\n\nindex_list:\n index_name [, index_name] ...\n\nA table reference is also known as a join expression.\n\nA table reference (when it refers to a partitioned table) may contain a\nPARTITION option, including a list of comma-separated partitions,\nsubpartitions, or both. This option follows the name of the table and\nprecedes any alias declaration. The effect of this option is that rows\nare selected only from the listed partitions or subpartitions. Any\npartitions or subpartitions not named in the list are ignored. For more\ninformation and examples, see\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nThe syntax of table_factor is extended in MySQL in comparison with\nstandard SQL. The standard accepts only table_reference, not a list of\nthem inside a pair of parentheses.\n\nThis is a conservative extension if each comma in a list of\ntable_reference items is considered as equivalent to an inner join. For\nexample:\n\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nis equivalent to:\n\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\n ON (t2.a = t1.a AND t3.b = t1.b AND t4.c = t1.c)\n\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\n(they can replace each other). In standard SQL, they are not\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\notherwise.\n\nIn general, parentheses can be ignored in join expressions containing\nonly inner join operations. MySQL also supports nested joins. See\nhttps://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html.\n\nIndex hints can be specified to affect how the MySQL optimizer makes\nuse of indexes. For more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/index-hints.html. The\noptimizer_switch system variable is another way to influence optimizer\nuse of indexes. See\nhttps://dev.mysql.com/doc/refman/5.6/en/switchable-optimizations.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/join.html\n\n','SELECT left_tbl.*\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\n WHERE right_tbl.id IS NULL;\n','https://dev.mysql.com/doc/refman/5.6/en/join.html'),(480,'UNION',34,'Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION combines the result from multiple SELECT statements into a single\nresult set. The result set column names are taken from the column names\nof the first SELECT statement.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same data type. (For example, the first\ncolumn selected by the first statement should have the same type as the\nfirst column selected by the other statements.) If the data types of\ncorresponding SELECT columns do not match, the types and lengths of the\ncolumns in the UNION result take into account the values retrieved by\nall of the SELECT statements. For example, consider the following:\n\nmysql> SELECT REPEAT(\'a\',1) UNION SELECT REPEAT(\'b\',10);\n+---------------+\n| REPEAT(\'a\',1) |\n+---------------+\n| a |\n| bbbbbbbbbb |\n+---------------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/union.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/union.html'),(481,'UPDATE',34,'Syntax:\nUPDATE is a DML statement that modifies rows in a table.\n\nSingle-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_reference\n SET assignment_list\n [WHERE where_condition]\n [ORDER BY ...]\n [LIMIT row_count]\n\nvalue:\n {expr | DEFAULT}\n\nassignment:\n col_name = value\n\nassignment_list:\n assignment [, assignment] ...\n\nMultiple-table syntax:\n\nUPDATE [LOW_PRIORITY] [IGNORE] table_references\n SET assignment_list\n [WHERE where_condition]\n\nFor the single-table syntax, the UPDATE statement updates columns of\nexisting rows in the named table with new values. The SET clause\nindicates which columns to modify and the values they should be given.\nEach value can be given as an expression, or the keyword DEFAULT to set\na column explicitly to its default value. The WHERE clause, if given,\nspecifies the conditions that identify which rows to update. With no\nWHERE clause, all rows are updated. If the ORDER BY clause is\nspecified, the rows are updated in the order that is specified. The\nLIMIT clause places a limit on the number of rows that can be updated.\n\nFor the multiple-table syntax, UPDATE updates rows in each table named\nin table_references that satisfy the conditions. Each matching row is\nupdated once, even if it matches the conditions multiple times. For\nmultiple-table syntax, ORDER BY and LIMIT cannot be used.\n\nFor partitioned tables, both the single-single and multiple-table forms\nof this statement support the use of a PARTITION option as part of a\ntable reference. This option takes a list of one or more partitions or\nsubpartitions (or both). Only the partitions (or subpartitions) listed\nare checked for matches, and a row that is not in any of these\npartitions or subpartitions is not updated, whether it satisfies the\nwhere_condition or not.\n\n*Note*:\n\nUnlike the case when using PARTITION with an INSERT or REPLACE\nstatement, an otherwise valid UPDATE ... PARTITION statement is\nconsidered successful even if no rows in the listed partitions (or\nsubpartitions) match the where_condition.\n\nFor more information and examples, see\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated. For expression syntax, see\nhttps://dev.mysql.com/doc/refman/5.6/en/expressions.html.\n\ntable_references and where_condition are specified as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nYou need the UPDATE privilege only for columns referenced in an UPDATE\nthat are actually updated. You need only the SELECT privilege for any\ncolumns that are read but not modified.\n\nThe UPDATE statement supports the following modifiers:\n\no With the LOW_PRIORITY modifier, execution of the UPDATE is delayed\n until no other clients are reading from the table. This affects only\n storage engines that use only table-level locking (such as MyISAM,\n MEMORY, and MERGE).\n\no With the IGNORE modifier, the update statement does not abort even if\n errors occur during the update. Rows for which duplicate-key\n conflicts occur on a unique key value are not updated. Rows updated\n to values that would cause data conversion errors are updated to the\n closest valid values instead.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/update.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/update.html'),(482,'START TRANSACTION',35,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables. These modifiers are available as of\n MySQL 5.6.5.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.6/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/commit.html'),(483,'BEGIN',35,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables. These modifiers are available as of\n MySQL 5.6.5.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.6/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/commit.html'),(484,'COMMIT',35,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables. These modifiers are available as of\n MySQL 5.6.5.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.6/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/commit.html'),(485,'ROLLBACK',35,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\n\nBEGIN [WORK]\nCOMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE]\nSET autocommit = {0 | 1}\n\nThese statements provide control over use of transactions:\n\no START TRANSACTION or BEGIN start a new transaction.\n\no COMMIT commits the current transaction, making its changes permanent.\n\no ROLLBACK rolls back the current transaction, canceling its changes.\n\no SET autocommit disables or enables the default autocommit mode for\n the current session.\n\nBy default, MySQL runs with autocommit mode enabled. This means that,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled back.\n\nTo disable autocommit mode implicitly for a single series of\nstatements, use the START TRANSACTION statement:\n\nSTART TRANSACTION;\nSELECT @A:=SUM(salary) FROM table1 WHERE type=1;\nUPDATE table2 SET summary=@A WHERE type=1;\nCOMMIT;\n\nWith START TRANSACTION, autocommit remains disabled until you end the\ntransaction with COMMIT or ROLLBACK. The autocommit mode then reverts\nto its previous state.\n\nSTART TRANSACTION permits several modifiers that control transaction\ncharacteristics. To specify multiple modifiers, separate them by\ncommas.\n\no The WITH CONSISTENT SNAPSHOT modifier starts a consistent read for\n storage engines that are capable of it. This applies only to InnoDB.\n The effect is the same as issuing a START TRANSACTION followed by a\n SELECT from any InnoDB table. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-consistent-read.html.\n The WITH CONSISTENT SNAPSHOT modifier does not change the current\n transaction isolation level, so it provides a consistent snapshot\n only if the current isolation level is one that permits a consistent\n read. The only isolation level that permits a consistent read is\n REPEATABLE READ. For all other isolation levels, the WITH CONSISTENT\n SNAPSHOT clause is ignored.\n\no The READ WRITE and READ ONLY modifiers set the transaction access\n mode. They permit or prohibit changes to tables used in the\n transaction. The READ ONLY restriction prevents the transaction from\n modifying or locking both transactional and nontransactional tables\n that are visible to other transactions; the transaction can still\n modify or lock temporary tables. These modifiers are available as of\n MySQL 5.6.5.\n\n MySQL enables extra optimizations for queries on InnoDB tables when\n the transaction is known to be read-only. Specifying READ ONLY\n ensures these optimizations are applied in cases where the read-only\n status cannot be determined automatically. See\n https://dev.mysql.com/doc/refman/5.6/en/innodb-performance-ro-txn.htm\n l for more information.\n\n If no access mode is specified, the default mode applies. Unless the\n default has been changed, it is read/write. It is not permitted to\n specify both READ WRITE and READ ONLY in the same statement.\n\n In read-only mode, it remains possible to change tables created with\n the TEMPORARY keyword using DML statements. Changes made with DDL\n statements are not permitted, just as with permanent tables.\n\n For additional information about transaction access mode, including\n ways to change the default mode, see [HELP SET TRANSACTION].\n\n If the read_only system variable is enabled, explicitly starting a\n transaction with START TRANSACTION READ WRITE requires the SUPER\n privilege.\n\n*Important*:\n\nMany APIs used for writing MySQL client applications (such as JDBC)\nprovide their own methods for starting transactions that can (and\nsometimes should) be used instead of sending a START TRANSACTION\nstatement from the client. See\nhttps://dev.mysql.com/doc/refman/5.6/en/connectors-apis.html, or the\ndocumentation for your API, for more information.\n\nTo disable autocommit mode explicitly, use the following statement:\n\nSET autocommit=0;\n\nAfter disabling autocommit mode by setting the autocommit variable to\nzero, changes to transaction-safe tables (such as those for InnoDB or\nNDB) are not made permanent immediately. You must use COMMIT to store\nyour changes to disk or ROLLBACK to ignore the changes.\n\nautocommit is a session variable and must be set for each session. To\ndisable autocommit mode for each new connection, see the description of\nthe autocommit system variable at\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nBEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for\ninitiating a transaction. START TRANSACTION is standard SQL syntax, is\nthe recommended way to start an ad-hoc transaction, and permits\nmodifiers that BEGIN does not.\n\nThe BEGIN statement differs from the use of the BEGIN keyword that\nstarts a BEGIN ... END compound statement. The latter does not begin a\ntransaction. See [HELP BEGIN END].\n\n*Note*:\n\nWithin all stored programs (stored procedures and functions, triggers,\nand events), the parser treats BEGIN [WORK] as the beginning of a BEGIN\n... END block. Begin a transaction in this context with START\nTRANSACTION instead.\n\nThe optional WORK keyword is supported for COMMIT and ROLLBACK, as are\nthe CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for\nadditional control over transaction completion. The value of the\ncompletion_type system variable determines the default completion\nbehavior. See\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nThe AND CHAIN clause causes a new transaction to begin as soon as the\ncurrent one ends, and the new transaction has the same isolation level\nas the just-terminated transaction. The new transaction also uses the\nsame access mode (READ WRITE or READ ONLY) as the just-terminated\ntransaction. The RELEASE clause causes the server to disconnect the\ncurrent client session after terminating the current transaction.\nIncluding the NO keyword suppresses CHAIN or RELEASE completion, which\ncan be useful if the completion_type system variable is set to cause\nchaining or release completion by default.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/commit.html'),(486,'SAVEPOINT',35,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/savepoint.html'),(487,'ROLLBACK TO SAVEPOINT',35,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/savepoint.html'),(488,'RELEASE SAVEPOINT',35,'Syntax:\nSAVEPOINT identifier\nROLLBACK [WORK] TO [SAVEPOINT] identifier\nRELEASE SAVEPOINT identifier\n\nInnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT,\nRELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/savepoint.html'),(489,'LOCK TABLES',35,'Syntax:\nLOCK TABLES\n tbl_name [[AS] alias] lock_type\n [, tbl_name [[AS] alias] lock_type] ...\n\nlock_type: {\n READ [LOCAL]\n | [LOW_PRIORITY] WRITE\n}\n\nUNLOCK TABLES\n\nMySQL enables client sessions to acquire table locks explicitly for the\npurpose of cooperating with other sessions for access to tables, or to\nprevent other sessions from modifying tables during periods when a\nsession requires exclusive access to them. A session can acquire or\nrelease locks only for itself. One session cannot acquire locks for\nanother session or release locks held by another session.\n\nLocks may be used to emulate transactions or to get more speed when\nupdating tables. This is explained in more detail in\nhttps://dev.mysql.com/doc/refman/5.6/en/lock-tables.html#lock-tables-re\nstrictions.\n\nLOCK TABLES explicitly acquires table locks for the current client\nsession. Table locks can be acquired for base tables or views. You must\nhave the LOCK TABLES privilege, and the SELECT privilege for each\nobject to be locked.\n\nFor view locking, LOCK TABLES adds all base tables used in the view to\nthe set of tables to be locked and locks them automatically. If you\nlock a table explicitly with LOCK TABLES, any tables used in triggers\nare also locked implicitly, as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/lock-tables.html#lock-tables-an\nd-triggers.\n\nUNLOCK TABLES explicitly releases any table locks held by the current\nsession. LOCK TABLES implicitly releases any table locks held by the\ncurrent session before acquiring new locks.\n\nAnother use for UNLOCK TABLES is to release the global read lock\nacquired with the FLUSH TABLES WITH READ LOCK statement, which enables\nyou to lock all tables in all databases. See [HELP FLUSH]. (This is a\nvery convenient way to get backups if you have a file system such as\nVeritas that can take snapshots in time.)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/lock-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/lock-tables.html'),(490,'SET TRANSACTION',35,'Syntax:\nSET [GLOBAL | SESSION] TRANSACTION\n transaction_characteristic [, transaction_characteristic] ...\n\ntransaction_characteristic: {\n ISOLATION LEVEL level\n | access_mode\n}\n\nlevel: {\n REPEATABLE READ\n | READ COMMITTED\n | READ UNCOMMITTED\n | SERIALIZABLE\n}\n\naccess_mode: {\n READ WRITE\n | READ ONLY\n}\n\nThis statement specifies transaction characteristics. It takes a list\nof one or more characteristic values separated by commas. Each\ncharacteristic value sets the transaction isolation level or access\nmode. The isolation level is used for operations on InnoDB tables. The\naccess mode specifies whether transactions operate in read/write or\nread-only mode.\n\nIn addition, SET TRANSACTION can include an optional GLOBAL or SESSION\nkeyword to indicate the scope of the statement.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-transaction.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-transaction.html'),(491,'XA',35,'Syntax:\nXA {START|BEGIN} xid [JOIN|RESUME]\n\nXA END xid [SUSPEND [FOR MIGRATE]]\n\nXA PREPARE xid\n\nXA COMMIT xid [ONE PHASE]\n\nXA ROLLBACK xid\n\nXA RECOVER\n\nFor XA START, the JOIN and RESUME clauses are recognized but have no\neffect.\n\nFor XA END the SUSPEND [FOR MIGRATE] clause is recognized but has no\neffect.\n\nEach XA statement begins with the XA keyword, and most of them require\nan xid value. An xid is an XA transaction identifier. It indicates\nwhich transaction the statement applies to. xid values are supplied by\nthe client, or generated by the MySQL server. An xid value has from one\nto three parts:\n\nxid: gtrid [, bqual [, formatID ]]\n\ngtrid is a global transaction identifier, bqual is a branch qualifier,\nand formatID is a number that identifies the format used by the gtrid\nand bqual values. As indicated by the syntax, bqual and formatID are\noptional. The default bqual value is \'\' if not given. The default\nformatID value is 1 if not given.\n\ngtrid and bqual must be string literals, each up to 64 bytes (not\ncharacters) long. gtrid and bqual can be specified in several ways. You\ncan use a quoted string (\'ab\'), hex string (X\'6162\', 0x6162), or bit\nvalue (b\'nnnn\').\n\nformatID is an unsigned integer.\n\nThe gtrid and bqual values are interpreted in bytes by the MySQL\nserver\'s underlying XA support routines. However, while an SQL\nstatement containing an XA statement is being parsed, the server works\nwith some specific character set. To be safe, write gtrid and bqual as\nhex strings.\n\nxid values typically are generated by the Transaction Manager. Values\ngenerated by one TM must be different from values generated by other\nTMs. A given TM must be able to recognize its own xid values in a list\nof values returned by the XA RECOVER statement.\n\nXA START xid starts an XA transaction with the given xid value. Each XA\ntransaction must have a unique xid value, so the value must not\ncurrently be used by another XA transaction. Uniqueness is assessed\nusing the gtrid and bqual values. All following XA statements for the\nXA transaction must be specified using the same xid value as that given\nin the XA START statement. If you use any of those statements but\nspecify an xid value that does not correspond to some existing XA\ntransaction, an error occurs.\n\nOne or more XA transactions can be part of the same global transaction.\nAll XA transactions within a given global transaction must use the same\ngtrid value in the xid value. For this reason, gtrid values must be\nglobally unique so that there is no ambiguity about which global\ntransaction a given XA transaction is part of. The bqual part of the\nxid value must be different for each XA transaction within a global\ntransaction. (The requirement that bqual values be different is a\nlimitation of the current MySQL XA implementation. It is not part of\nthe XA specification.)\n\nThe XA RECOVER statement returns information for those XA transactions\non the MySQL server that are in the PREPARED state. (See\nhttps://dev.mysql.com/doc/refman/5.6/en/xa-states.html.) The output\nincludes a row for each such XA transaction on the server, regardless\nof which client started it.\n\nXA RECOVER output rows look like this (for an example xid value\nconsisting of the parts \'abc\', \'def\', and 7):\n\nmysql> XA RECOVER;\n+----------+--------------+--------------+--------+\n| formatID | gtrid_length | bqual_length | data |\n+----------+--------------+--------------+--------+\n| 7 | 3 | 3 | abcdef |\n+----------+--------------+--------------+--------+\n\nThe output columns have the following meanings:\n\no formatID is the formatID part of the transaction xid\n\no gtrid_length is the length in bytes of the gtrid part of the xid\n\no bqual_length is the length in bytes of the bqual part of the xid\n\no data is the concatenation of the gtrid and bqual parts of the xid\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/xa-statements.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/xa-statements.html'),(492,'PURGE BINARY LOGS',35,'Syntax:\nPURGE { BINARY | MASTER } LOGS {\n TO \'log_name\'\n | BEFORE datetime_expr\n}\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttps://dev.mysql.com/doc/refman/5.6/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nThis statement has no effect if the server was not started with the\n--log-bin option to enable binary logging.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2019-04-02 22:46:26\';\n','https://dev.mysql.com/doc/refman/5.6/en/purge-binary-logs.html'),(493,'PURGE MASTER LOGS',35,'Syntax:\nPURGE { BINARY | MASTER } LOGS {\n TO \'log_name\'\n | BEFORE datetime_expr\n}\n\nThe binary log is a set of files that contain information about data\nmodifications made by the MySQL server. The log consists of a set of\nbinary log files, plus an index file (see\nhttps://dev.mysql.com/doc/refman/5.6/en/binary-log.html).\n\nThe PURGE BINARY LOGS statement deletes all the binary log files listed\nin the log index file prior to the specified log file name or date.\nBINARY and MASTER are synonyms. Deleted log files also are removed from\nthe list recorded in the index file, so that the given log file becomes\nthe first in the list.\n\nThis statement has no effect if the server was not started with the\n--log-bin option to enable binary logging.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2019-04-02 22:46:26\';\n','https://dev.mysql.com/doc/refman/5.6/en/purge-binary-logs.html'),(494,'RESET MASTER',35,'Syntax:\nRESET MASTER\n\nDeletes all binary log files listed in the index file, resets the\nbinary log index file to be empty, and creates a new binary log file.\n\nRESET MASTER also clears the values of the gtid_purged system variable\nas well as the global value of the gtid_executed system variable (but\nnot its session value); that is, executing this statement sets each of\nthese values to an empty string (\'\').\n\nThis statement is intended to be used only when the master is started\nfor the first time.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/reset-master.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/reset-master.html'),(495,'SET SQL_LOG_BIN',35,'Syntax:\nSET sql_log_bin = {OFF|ON}\n\nThe sql_log_bin variable controls whether logging to the binary log is\nenabled for the current session (assuming that the binary log itself is\nenabled). The default value is ON. To disable or enable binary logging\nfor the current session, set the session sql_log_bin variable to OFF or\nON.\n\nSet this variable to OFF for a session to temporarily disable binary\nlogging while making changes to the master you do not want replicated\nto the slave.\n\nSetting the session value of this system variable is a restricted\noperation. The session user must have privileges sufficient to set\nrestricted session variables. See\nhttps://dev.mysql.com/doc/refman/5.6/en/system-variable-privileges.html\n.\n\nIt is not possible to set the session value of sql_log_bin within a\ntransaction or subquery.\n\nSetting this variable to OFF prevents GTIDs from being assigned to\ntransactions in the binary log. If you are using GTIDs for replication,\nthis means that, even when binary logging is later enabled once again,\nthe GTIDs written into the log from this point do not account for any\ntransactions that occurred in the meantime---in effect, those\ntransactions are lost.\n\nAs of MySQL 5.6.22, the global sql_log_bin variable is read only and\ncannot be modified. The global scope is deprecated and will be removed\nin a future MySQL release. Prior to 5.6.22, sql_log_bin can be set as a\nglobal or session variable. Setting sql_log_bin globally is only\ndetected when a new session is started. Any sessions previously running\nare not impacted when setting sql_log_bin globally.\n\n*Warning*:\n\nIncorrect use of sql_log_bin with a global scope means any changes made\nin an already running session are still being recorded to the binary\nlog and therefore replicated. Exercise extreme caution using\nsql_log_bin with a global scope as the above situation could cause\nunexpected results including replication failure.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-sql-log-bin.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-sql-log-bin.html'),(496,'CHANGE MASTER TO',35,'Syntax:\nCHANGE MASTER TO option [, option] ...\n\noption: {\n MASTER_BIND = \'interface_name\'\n | MASTER_HOST = \'host_name\'\n | MASTER_USER = \'user_name\'\n | MASTER_PASSWORD = \'password\'\n | MASTER_PORT = port_num\n | MASTER_CONNECT_RETRY = interval\n | MASTER_RETRY_COUNT = count\n | MASTER_DELAY = interval\n | MASTER_HEARTBEAT_PERIOD = interval\n | MASTER_LOG_FILE = \'master_log_name\'\n | MASTER_LOG_POS = master_log_pos\n | MASTER_AUTO_POSITION = {0|1}\n | RELAY_LOG_FILE = \'relay_log_name\'\n | RELAY_LOG_POS = relay_log_pos\n | MASTER_SSL = {0|1}\n | MASTER_SSL_CA = \'ca_file_name\'\n | MASTER_SSL_CAPATH = \'ca_directory_name\'\n | MASTER_SSL_CERT = \'cert_file_name\'\n | MASTER_SSL_CRL = \'crl_file_name\'\n | MASTER_SSL_CRLPATH = \'crl_directory_name\'\n | MASTER_SSL_KEY = \'key_file_name\'\n | MASTER_SSL_CIPHER = \'cipher_list\'\n | MASTER_SSL_VERIFY_SERVER_CERT = {0|1}\n | IGNORE_SERVER_IDS = (server_id_list)\n}\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the slave server uses for\nconnecting to the master server, for reading the master binary log, and\nreading the slave relay log. It also updates the contents of the master\ninfo and relay log info repositories (see\nhttps://dev.mysql.com/doc/refman/5.6/en/slave-logs.html). CHANGE MASTER\nTO requires the SUPER privilege.\n\nTo use CHANGE MASTER TO, the slave replication threads must be stopped\n(use STOP SLAVE if necessary). In MySQL 5.6.11 and later, gtid_next\nmust also be set to AUTOMATIC (Bug #16062608).\n\nOptions not specified retain their value, except as indicated in the\nfollowing discussion. Thus, in most cases, there is no need to specify\noptions that do not change. For example, if the password to connect to\nyour MySQL master has changed, issue these statements to tell the slave\nabout the new password:\n\nSTOP SLAVE; -- if replication was running\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\nSTART SLAVE; -- if you want to restart replication\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the slave about how to connect to its master:\n\no MASTER_HOST and MASTER_PORT are the host name (or IP address) of the\n master host and its TCP/IP port.\n\n *Note*:\n\n Replication cannot use Unix socket files. You must be able to connect\n to the master MySQL server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the slave\n assumes that the master server is different from before (even if the\n option value is the same as its current value.) In this case, the old\n values for the master binary log file name and position are\n considered no longer applicable, so if you do not specify\n MASTER_LOG_FILE and MASTER_LOG_POS in the statement,\n MASTER_LOG_FILE=\'\' and MASTER_LOG_POS=4 are silently appended to it.\n\n Setting MASTER_HOST=\'\' (that is, setting its value explicitly to an\n empty string) is not the same as not setting MASTER_HOST at all.\n Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty\n string fails with an error. Previously, setting MASTER_HOST to an\n empty string caused START SLAVE subsequently to fail. (Bug #28796)\n\n In MySQL 5.6.5 and later, values used for MASTER_HOST and other\n CHANGE MASTER TO options are checked for linefeed (\\n or 0x0A)\n characters; the presence of such characters in these values causes\n the statement to fail with ER_MASTER_INFO. (Bug #11758581, Bug\n #50801)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the master. If you specify\n MASTER_PASSWORD, MASTER_USER is also required. The password used for\n a MySQL Replication slave account in a CHANGE MASTER TO statement is\n limited to 32 characters in length; if the password is longer, the\n statement succeeds, but any excess characters are silently truncated.\n This is an issue specific to MySQL Replication, which is fixed in\n MySQL 5.7. (Bug #11752299, Bug #43439)\n\n It is possible to set an empty user name by specifying\n MASTER_USER=\'\', but the replication channel cannot be started with an\n empty user name. Only set an empty MASTER_USER user name if you need\n to clear previously used credentials from the replication slave\'s\n repositories for security purposes, and do not attempt to use the\n channel afterwards. (Bug #13427949)\n\n The text of a running CHANGE MASTER TO statement, including values\n for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a\n concurrent SHOW PROCESSLIST statement. (The complete text of a START\n SLAVE statement is also visible to SHOW PROCESSLIST.)\n\nThe MASTER_SSL_xxx options provide information about using SSL for the\nconnection. They correspond to the --ssl-xxx options described in\nhttps://dev.mysql.com/doc/refman/5.6/en/connection-options.html#encrypt\ned-connection-options, and\nhttps://dev.mysql.com/doc/refman/5.6/en/replication-solutions-encrypted\n-connections.html. These options can be changed even on slaves that are\ncompiled without SSL support. They are saved to the master info\nrepository, but are ignored if the slave does not have SSL support\nenabled. MASTER_SSL_CRL and MASTER_SSL_CRLPATH were added in MySQL\n5.6.3.\n\nMASTER_CONNECT_RETRY specifies how many seconds to wait between connect\nretries. The default is 60.\n\nMASTER_RETRY_COUNT, added in MySQL 5.6.1, limits the number of\nreconnection attempts and updates the value of the Master_Retry_Count\ncolumn in the output of SHOW SLAVE STATUS (also added in MySQL 5.6.1).\nThe default value is 24 * 3600 = 86400. MASTER_RETRY_COUNT is intended\nto replace the older --master-retry-count server option, and is now the\npreferred method for setting this limit. You are encouraged not to rely\non --master-retry-count in new applications and, when upgrading to\nMySQL 5.6.1 or later from earlier versions of MySQL, to update any\nexisting applications that rely on it, so that they use CHANGE MASTER\nTO ... MASTER_RETRY_COUNT instead.\n\nMASTER_DELAY specifies how many seconds behind the master the slave\nmust lag. An event received from the master is not executed until at\nleast interval seconds later than its execution on the master. The\ndefault is 0. An error occurs if interval is not a nonnegative integer\nin the range from 0 to 231−1. For more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/replication-delayed.html. This\noption was added in MySQL 5.6.0.\n\nMASTER_BIND is for use on replication slaves having multiple network\ninterfaces, and determines which of the slave\'s network interfaces is\nchosen for connecting to the master.\n\nThe address configured with this option, if any, can be seen in the\nMaster_Bind column of the output from SHOW SLAVE STATUS. If you are\nusing slave status log tables (server started with\nmaster_info_repository=TABLE), the value can also be seen as the\nMaster_bind column of the mysql.slave_master_info table.\n\nThe ability to bind a replication slave to a specific network interface\nwas added in MySQL 5.6.2. This is also supported by MySQL NDB Cluster\n7.3.1 and later.\n\nMASTER_HEARTBEAT_PERIOD sets the interval in seconds between\nreplication heartbeats. Whenever the master\'s binary log is updated\nwith an event, the waiting period for the next heartbeat is reset.\ninterval is a decimal value having the range 0 to 4294967 seconds and a\nresolution in milliseconds; the smallest nonzero value is 0.001.\nHeartbeats are sent by the master only if there are no unsent events in\nthe binary log file for a period longer than interval.\n\nIf you are logging master connection information to tables,\nMASTER_HEARTBEAT_PERIOD can be seen as the value of the Heartbeat\ncolumn of the mysql.slave_master_info table.\n\nSetting interval to 0 disables heartbeats altogether. The default value\nfor interval is equal to the value of slave_net_timeout divided by 2.\n\nSetting @@GLOBAL.slave_net_timeout to a value less than that of the\ncurrent heartbeat interval results in a warning being issued. The\neffect of issuing RESET SLAVE on the heartbeat interval is to reset it\nto the default value.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nslave I/O thread should begin reading from the master the next time the\nthread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at\nwhich the slave SQL thread should begin reading from the relay log the\nnext time the thread starts. If you specify either of MASTER_LOG_FILE\nor MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS.\nIn MySQL 5.6.5 and later, if you specify either of MASTER_LOG_FILE or\nMASTER_LOG_POS, you also cannot specify MASTER_AUTO_POSITION = 1\n(described later in this section). If neither of MASTER_LOG_FILE or\nMASTER_LOG_POS is specified, the slave uses the last coordinates of the\nslave SQL thread before CHANGE MASTER TO was issued. This ensures that\nthere is no discontinuity in replication, even if the slave SQL thread\nwas late compared to the slave I/O thread, when you merely want to\nchange, say, the password to use.\n\nMASTER_AUTO_POSITION was added in MySQL 5.6.5. If MASTER_AUTO_POSITION\n= 1 is used with CHANGE MASTER TO, the slave attempts to connect to the\nmaster using the GTID-based replication protocol.\n\nWhen using GTIDs, the slave tells the master which transactions it has\nalready received, executed, or both. To compute this set, it reads the\nglobal value of gtid_executed and the value of the Retrieved_gtid_set\ncolumn from SHOW SLAVE STATUS. Since the GTID of the last transmitted\ntransaction is included in Retrieved_gtid_set even if the transaction\nwas only partially transmitted, the last received GTID is subtracted\nfrom this set. Thus, the slave computes the following set:\n\nUNION(@@GLOBAL.gtid_executed, Retrieved_gtid_set - last_received_GTID)\n\nThis set is sent to the master as part of the initial handshake, and\nthe master sends back all transactions that it has executed which are\nnot part of the set. If any of these transactions have been already\npurged from the master\'s binary log, the master sends the error\nER_MASTER_HAS_PURGED_REQUIRED_GTIDS to the slave, and replication does\nnot start.\n\nWhen GTID-based replication is employed, the coordinates represented by\nMASTER_LOG_FILE and MASTER_LOG_POS are not used, and global transaction\nidentifiers are used instead. Thus the use of either or both of these\noptions together with MASTER_AUTO_POSITION causes an error.\n\nBeginning with MySQL 5.6.10, you can see whether replication is running\nwith autopositioning enabled by checking the output of SHOW SLAVE\nSTATUS. (Bug #15992220)\n\ngtid_mode must also be enabled before issuing CHANGE MASTER TO ...\nMASTER_AUTO_POSITION = 1. Otherwise, the statement fails with an error.\n\nTo revert to the older file-based replication protocol after using\nGTIDs, you can issue a new CHANGE MASTER TO statement that specifies\nMASTER_AUTO_POSITION = 0, as well as at least one of MASTER_LOG_FILE or\nMASTER_LOG_POS.\n\nCHANGE MASTER TO deletes all relay log files and starts a new one,\nunless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay\nlog files are kept; the relay_log_purge global variable is set silently\nto 0.\n\nPrior to MySQL 5.6.2, RELAY_LOG_FILE required an absolute path.\nBeginning with MySQL 5.6.2, the path can be relative, in which case it\nis assumed to be relative to the slave\'s data directory. (Bug #12190)\n\nIGNORE_SERVER_IDS takes a comma-separated list of 0 or more server IDs.\nEvents originating from the corresponding servers are ignored, with the\nexception of log rotation and deletion events, which are still recorded\nin the relay log.\n\nIn circular replication, the originating server normally acts as the\nterminator of its own events, so that they are not applied more than\nonce. Thus, this option is useful in circular replication when one of\nthe servers in the circle is removed. Suppose that you have a circular\nreplication setup with 4 servers, having server IDs 1, 2, 3, and 4, and\nserver 3 fails. When bridging the gap by starting replication from\nserver 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the\nCHANGE MASTER TO statement that you issue on server 4 to tell it to use\nserver 2 as its master instead of server 3. Doing so causes it to\nignore and not to propagate any statements that originated with the\nserver that is no longer in use.\n\nWhen a CHANGE MASTER TO statement is issued without any\nIGNORE_SERVER_IDS option, any existing list is preserved. To clear the\nlist of ignored servers, it is necessary to use the option with an\nempty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nRESET SLAVE ALL has no effect on the server ID list. This issue is\nfixed in MySQL 5.7. (Bug #18816897)\n\nIf IGNORE_SERVER_IDS contains the server\'s own ID and the server was\nstarted with the --replicate-same-server-id option enabled, an error\nresults.\n\nIn MySQL 5.6, the master info repository and the output of SHOW SLAVE\nSTATUS provide the list of servers that are currently ignored. For more\ninformation, see\nhttps://dev.mysql.com/doc/refman/5.6/en/slave-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nIn MySQL 5.6, invoking CHANGE MASTER TO causes the previous values for\nMASTER_HOST, MASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be\nwritten to the error log, along with other information about the\nslave\'s state prior to execution.\n\nIn MySQL 5.6.7 and later, CHANGE MASTER TO causes an implicit commit of\nan ongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nCHANGE MASTER TO is useful for setting up a slave when you have the\nsnapshot of the master and have recorded the master binary log\ncoordinates corresponding to the time of the snapshot. After loading\nthe snapshot into the slave to synchronize it with the master, you can\nrun CHANGE MASTER TO MASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos\non the slave to specify the coordinates at which the slave should begin\nreading the master binary log.\n\nThe following example changes the master server the slave uses and\nestablishes the master binary log coordinates from which the slave\nbegins reading. This is used when you want to set up the slave to\nreplicate the master:\n\nCHANGE MASTER TO\n MASTER_HOST=\'master2.example.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'bigs3cret\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'master2-bin.001\',\n MASTER_LOG_POS=4,\n MASTER_CONNECT_RETRY=10;\n\nThe next example shows an operation that is less frequently employed.\nIt is used when the slave has relay log files that you want it to\nexecute again for some reason. To do this, the master need not be\nreachable. You need only use CHANGE MASTER TO and start the SQL thread\n(START SLAVE SQL_THREAD):\n\nCHANGE MASTER TO\n RELAY_LOG_FILE=\'slave-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/change-master-to.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/change-master-to.html'),(497,'RESET SLAVE',35,'Syntax:\nRESET SLAVE [ALL]\n\nRESET SLAVE makes the slave forget its replication position in the\nmaster\'s binary log. This statement is meant to be used for a clean\nstart: It clears the master info and relay log info repositories,\ndeletes all the relay log files, and starts a new relay log file. It\nalso resets to 0 the replication delay specified with the MASTER_DELAY\noption to CHANGE MASTER TO. RESET SLAVE does not change the values of\ngtid_executed or gtid_purged. To use RESET SLAVE, the slave replication\nthreads must be stopped, so on a running slave use STOP SLAVE before\nissuing RESET SLAVE.\n\n*Note*:\n\nAll relay log files are deleted, even if they have not been completely\nexecuted by the slave SQL thread. (This is a condition likely to exist\non a replication slave if you have issued a STOP SLAVE statement or if\nthe slave is highly loaded.)\n\nIn MySQL 5.6 (unlike the case in MySQL 5.1 and earlier), RESET SLAVE\ndoes not change any replication connection parameters such as master\nhost, master port, master user, or master password, which are retained\nin memory. This means that START SLAVE can be issued without requiring\na CHANGE MASTER TO statement following RESET SLAVE.\n\nConnection parameters are reset if the slave mysqld is shut down\nfollowing RESET SLAVE. In MySQL 5.6.3 and later, you can instead use\nRESET SLAVE ALL to reset these connection parameters (Bug #11809016).\n\nRESET SLAVE ALL does not clear the IGNORE_SERVER_IDS list set by CHANGE\nMASTER TO. This issue is fixed in MySQL 5.7. (Bug #18816897)\n\nIn MySQL 5.6.7 and later, RESET SLAVE causes an implicit commit of an\nongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nIf the slave SQL thread was in the middle of replicating temporary\ntables when it was stopped, and RESET SLAVE is issued, these replicated\ntemporary tables are deleted on the slave.\n\n*Note*:\n\nWhen used on an NDB Cluster replication slave SQL node, RESET SLAVE\nclears the mysql.ndb_apply_status table. You should keep in mind when\nusing this statement that ndb_apply_status uses the NDB storage engine\nand so is shared by all SQL nodes attached to the slave cluster.\n\nBeginning with MySQL NDB Cluster 7.4.9, you can override this behavior\nby issuing SET GLOBAL @@ndb_clear_apply_status=OFF prior to executing\nRESET SLAVE, which keeps the slave from purging the ndb_apply_status\ntable in such cases.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/reset-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/reset-slave.html'),(498,'SET GLOBAL SQL_SLAVE_SKIP_COUNTER',35,'Syntax:\nSET GLOBAL sql_slave_skip_counter = N\n\nThis statement skips the next N events from the master. This is useful\nfor recovering from replication stops caused by a statement.\n\nThis statement is valid only when the slave threads are not running.\nOtherwise, it produces an error.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-global-sql-slave-skip-counter.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-global-sql-slave-skip-counter.html'),(499,'START SLAVE',35,'Syntax:\nSTART SLAVE [thread_types] [until_option] [connection_options]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type:\n IO_THREAD | SQL_THREAD\n\nuntil_option:\n UNTIL { {SQL_BEFORE_GTIDS | SQL_AFTER_GTIDS} = gtid_set\n | MASTER_LOG_FILE = \'log_name\', MASTER_LOG_POS = log_pos\n | RELAY_LOG_FILE = \'log_name\', RELAY_LOG_POS = log_pos\n | SQL_AFTER_MTS_GAPS }\n\nconnection_options:\n [USER=\'user_name\'] [PASSWORD=\'user_pass\'] [DEFAULT_AUTH=\'plugin_name\'] [PLUGIN_DIR=\'plugin_dir\']\n\n\ngtid_set:\n uuid_set [, uuid_set] ...\n | \'\'\n\nuuid_set:\n uuid:interval[:interval]...\n\nuuid:\n hhhhhhhh-hhhh-hhhh-hhhh-hhhhhhhhhhhh\n\nh:\n [0-9,A-F]\n\ninterval:\n n[-n]\n\n (n >= 1)\n\nSTART SLAVE with no thread_type options starts both of the slave\nthreads. The I/O thread reads events from the master server and stores\nthem in the relay log. The SQL thread reads events from the relay log\nand executes them. START SLAVE requires the SUPER privilege.\n\nIf START SLAVE succeeds in starting the slave threads, it returns\nwithout any error. However, even in that case, it might be that the\nslave threads start and then later stop (for example, because they do\nnot manage to connect to the master or read its binary log, or some\nother problem). START SLAVE does not warn you about this. You must\ncheck the slave\'s error log for error messages generated by the slave\nthreads, or check that they are running satisfactorily with SHOW SLAVE\nSTATUS.\n\nIn MySQL 5.6.7 and later, START SLAVE causes an implicit commit of an\nongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nBeginning with MySQL 5.6.11, gtid_next must be set to AUTOMATIC before\nissuing this statement (Bug #16062608).\n\nMySQL 5.6.4 and later supports pluggable user-password authentication\nwith START SLAVE with the USER, PASSWORD, DEFAULT_AUTH and PLUGIN_DIR\noptions, as described in the following list:\n\no USER: User name. Cannot be set to an empty or null string, or left\n unset if PASSWORD is used.\n\no PASSWORD: Password.\n\no DEFAULT_AUTH: Name of plugin; default is MySQL native authentication.\n\no PLUGIN_DIR: Location of plugin.\n\nStarting with MySQL 5.6.4, you cannot use the SQL_THREAD option when\nspecifying any of USER, PASSWORD, DEFAULT_AUTH, or PLUGIN_DIR, unless\nthe IO_THREAD option is also provided (Bug #13083642).\n\nSee\nhttps://dev.mysql.com/doc/refman/5.6/en/pluggable-authentication.html,\nfor more information.\n\nIf an insecure connection is used with any these options, the server\nissues the warning Sending passwords in plain text without SSL/TLS is\nextremely insecure.\n\nStarting with MySQL 5.6.6, START SLAVE ... UNTIL supports two\nadditional options for use with global transaction identifiers (GTIDs)\n(see https://dev.mysql.com/doc/refman/5.6/en/replication-gtids.html).\nEach of these takes a set of one or more global transaction identifiers\ngtid_set as an argument (see\nhttps://dev.mysql.com/doc/refman/5.6/en/replication-gtids-concepts.html\n#replication-gtids-concepts-gtid-sets, for more information).\n\nWhen no thread_type is specified, START SLAVE UNTIL SQL_BEFORE_GTIDS\ncauses the slave SQL thread to process transactions until it has\nreached the first transaction whose GTID is listed in the gtid_set.\nSTART SLAVE UNTIL SQL_AFTER_GTIDS causes the slave threads to process\nall transactions until the last transaction in the gtid_set has been\nprocessed by both threads. In other words, START SLAVE UNTIL\nSQL_BEFORE_GTIDS causes the slave SQL thread to process all\ntransactions occurring before the first GTID in the gtid_set is\nreached, and START SLAVE UNTIL SQL_AFTER_GTIDS causes the slave threads\nto handle all transactions, including those whose GTIDs are found in\ngtid_set, until each has encountered a transaction whose GTID is not\npart of the set. SQL_BEFORE_GTIDS and SQL_AFTER_GTIDS each support the\nSQL_THREAD and IO_THREAD options, although using IO_THREAD with them\ncurrently has no effect.\n\nFor example, START SLAVE SQL_THREAD UNTIL SQL_BEFORE_GTIDS =\n3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56 causes the slave SQL thread\nto process all transactions originating from the master whose\nserver_uuid is 3E11FA47-71CA-11E1-9E33-C80AA9429562 until it encounters\nthe transaction having sequence number 11; it then stops without\nprocessing this transaction. In other words, all transactions up to and\nincluding the transaction with sequence number 10 are processed.\nExecuting START SLAVE SQL_THREAD UNTIL SQL_AFTER_GTIDS =\n3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56, on the other hand, would\ncause the slave SQL thread to obtain all transactions just mentioned\nfrom the master, including all of the transactions having the sequence\nnumbers 11 through 56, and then to stop without processing any\nadditional transactions; that is, the transaction having sequence\nnumber 56 would be the last transaction fetched by the slave SQL\nthread.\n\nPrior to MySQL 5.6.14, SQL_AFTER_GTIDS did not stop the slave once the\nindicated transaction was completed, but waited until another GTID\nevent was received (Bug #14767986).\n\n*Note*:\n\nThe SQL_BEFORE_GTIDS and SQL_AFTER_GTIDS keywords are present in the\nMySQL 5.6.5 server; however, neither of them functioned correctly as\noptions with START SLAVE [SQL_THREAD | IO_THREAD] UNTIL in that\nversion, and are therefore supported beginning only with MySQL 5.6.6.\n(Bug#13810456)\n\nSTART SLAVE UNTIL SQL_AFTER_MTS_GAPS is available in MySQL 5.6.6 or\nlater. This statement causes a multithreaded slave\'s SQL threads to run\nuntil no more gaps are found in the relay log, and then to stop. This\nstatement can take an SQL_THREAD option, but the effects of the\nstatement remain unchanged. It has no effect on the slave I/O thread\n(and cannot be used with the IO_THREAD option). START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS should be used before switching the slave from\nmultithreaded mode to single-threaded mode (that is, when resetting\nslave_parallel_workers back to 0 from a positive, nonzero value) after\nslave has failed with errors in multithreaded mode.\n\nTo change a failed multithreaded slave to single-threaded mode, you can\nissue the following series of statements, in the order shown:\n\nSTART SLAVE UNTIL SQL_AFTER_MTS_GAPS;\n\nSET @@GLOBAL.slave_parallel_workers = 0;\n\nSTART SLAVE SQL_THREAD;\n\nIf you were running the failed multithreaded slave with\nrelay_log_recovery enabled, then you must issue START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS prior to executing CHANGE MASTER TO. Otherwise the\nlatter statement fails.\n\n*Note*:\n\nIt is possible to view the entire text of a running START SLAVE ...\nstatement, including any USER or PASSWORD values used, in the output of\nSHOW PROCESSLIST. This is also true for the text of a running CHANGE\nMASTER TO statement, including any values it employs for MASTER_USER or\nMASTER_PASSWORD.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/start-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/start-slave.html'),(500,'STOP SLAVE',35,'Syntax:\nSTOP SLAVE [thread_types]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nStops the slave threads. STOP SLAVE requires the SUPER privilege.\nRecommended best practice is to execute STOP SLAVE on the slave before\nstopping the slave server (see\nhttps://dev.mysql.com/doc/refman/5.6/en/server-shutdown.html, for more\ninformation).\n\nWhen using the row-based logging format: You should execute STOP SLAVE\nor STOP SLAVE SQL_THREAD on the slave prior to shutting down the slave\nserver if you are replicating any tables that use a nontransactional\nstorage engine (see the Note later in this section).\n\nLike START SLAVE, this statement may be used with the IO_THREAD and\nSQL_THREAD options to name the thread or threads to be stopped.\n\nIn MySQL 5.6.7 and later, STOP SLAVE causes an implicit commit of an\nongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nBeginning with MySQL 5.6.11, gtid_next must be set to AUTOMATIC before\nissuing this statement (Bug #16062608).\n\nIn MySQL 5.6.13 and later, you can control how long STOP SLAVE waits\nbefore timing out by setting the rpl_stop_slave_timeout system\nvariable. This can be used to avoid deadlocks between STOP SLAVE and\nother slave SQL statements using different client connections to the\nslave. When the timeout value is reached, the issuing client returns an\nerror message and stops waiting, but the STOP SLAVE instruction remains\nin effect. Once the slave threads are no longer busy, the STOP SLAVE\nstatement is executed and the slave stops. (Bug #16856735)\n\nIf the current replication event group has modified one or more\nnontransactional tables, STOP SLAVE waits for up to 60 seconds for the\nevent group to complete, unless you issue a KILL QUERY or KILL\nCONNECTION statement for the slave SQL thread. If the event group\nremains incomplete after the timeout, an error message is logged. (Bug\n#319, Bug #38205)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/stop-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/stop-slave.html'),(501,'PREPARE',35,'Syntax:\nPREPARE stmt_name FROM preparable_stmt\n\nThe PREPARE statement prepares a SQL statement and assigns it a name,\nstmt_name, by which to refer to the statement later. The prepared\nstatement is executed with EXECUTE and released with DEALLOCATE\nPREPARE. For examples, see\nhttps://dev.mysql.com/doc/refman/5.6/en/sql-prepared-statements.html.\n\nStatement names are not case-sensitive. preparable_stmt is either a\nstring literal or a user variable that contains the text of the SQL\nstatement. The text must represent a single statement, not multiple\nstatements. Within the statement, ? characters can be used as parameter\nmarkers to indicate where data values are to be bound to the query\nlater when you execute it. The ? characters should not be enclosed\nwithin quotation marks, even if you intend to bind them to string\nvalues. Parameter markers can be used only where data values should\nappear, not for SQL keywords, identifiers, and so forth.\n\nIf a prepared statement with the given name already exists, it is\ndeallocated implicitly before the new statement is prepared. This means\nthat if the new statement contains an error and cannot be prepared, an\nerror is returned and no statement with the given name exists.\n\nThe scope of a prepared statement is the session within which it is\ncreated, which as several implications:\n\no A prepared statement created in one session is not available to other\n sessions.\n\no When a session ends, whether normally or abnormally, its prepared\n statements no longer exist. If auto-reconnect is enabled, the client\n is not notified that the connection was lost. For this reason,\n clients may wish to disable auto-reconnect. See\n https://dev.mysql.com/doc/refman/5.6/en/c-api-auto-reconnect.html.\n\no A prepared statement created within a stored program continues to\n exist after the program finishes executing and can be executed\n outside the program later.\n\no A statement prepared in stored program context cannot refer to stored\n procedure or function parameters or local variables because they go\n out of scope when the program ends and would be unavailable were the\n statement to be executed later outside the program. As a workaround,\n refer instead to user-defined variables, which also have session\n scope; see\n https://dev.mysql.com/doc/refman/5.6/en/user-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/prepare.html'),(502,'EXECUTE STATEMENT',35,'Syntax:\nEXECUTE stmt_name\n [USING @var_name [, @var_name] ...]\n\nAfter preparing a statement with PREPARE, you execute it with an\nEXECUTE statement that refers to the prepared statement name. If the\nprepared statement contains any parameter markers, you must supply a\nUSING clause that lists user variables containing the values to be\nbound to the parameters. Parameter values can be supplied only by user\nvariables, and the USING clause must name exactly as many variables as\nthe number of parameter markers in the statement.\n\nYou can execute a given prepared statement multiple times, passing\ndifferent variables to it or setting the variables to different values\nbefore each execution.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/execute.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/execute.html'),(503,'DEALLOCATE PREPARE',35,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error. If too many prepared statements are created and\nnot deallocated by either the DEALLOCATE PREPARE statement or the end\nof the session, you might encounter the upper limit enforced by the\nmax_prepared_stmt_count system variable.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html'),(504,'DROP PREPARE',35,'Syntax:\n{DEALLOCATE | DROP} PREPARE stmt_name\n\nTo deallocate a prepared statement produced with PREPARE, use a\nDEALLOCATE PREPARE statement that refers to the prepared statement\nname. Attempting to execute a prepared statement after deallocating it\nresults in an error. If too many prepared statements are created and\nnot deallocated by either the DEALLOCATE PREPARE statement or the end\nof the session, you might encounter the upper limit enforced by the\nmax_prepared_stmt_count system variable.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/deallocate-prepare.html'),(505,'BEGIN END',36,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\nBEGIN ... END syntax is used for writing compound statements, which can\nappear within stored programs (stored procedures and functions,\ntriggers, and events). A compound statement can contain multiple\nstatements, enclosed by the BEGIN and END keywords. statement_list\nrepresents a list of one or more statements, each terminated by a\nsemicolon (;) statement delimiter. The statement_list itself is\noptional, so the empty compound statement (BEGIN END) is legal.\n\nBEGIN ... END blocks can be nested.\n\nUse of multiple statements requires that a client is able to send\nstatement strings containing the ; statement delimiter. In the mysql\ncommand-line client, this is handled with the delimiter command.\nChanging the ; end-of-statement delimiter (for example, to //) permit ;\nto be used in a program body. For an example, see\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-programs-defining.html.\n\nA BEGIN ... END block can be labeled. See [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/begin-end.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/begin-end.html'),(506,'LABELS',36,'Syntax:\n[begin_label:] BEGIN\n [statement_list]\nEND [end_label]\n\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nLabels are permitted for BEGIN ... END blocks and for the LOOP, REPEAT,\nand WHILE statements. Label use for those statements follows these\nrules:\n\no begin_label must be followed by a colon.\n\no begin_label can be given without end_label. If end_label is present,\n it must be the same as begin_label.\n\no end_label cannot be given without begin_label.\n\no Labels at the same nesting level must be distinct.\n\no Labels can be up to 16 characters long.\n\nTo refer to a label within the labeled construct, use an ITERATE or\nLEAVE statement. The following example uses those statements to\ncontinue iterating or terminate the loop:\n\nCREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN ITERATE label1; END IF;\n LEAVE label1;\n END LOOP label1;\nEND;\n\nThe scope of a block label does not include the code for handlers\ndeclared within the block. For details, see [HELP DECLARE HANDLER].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/statement-labels.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/statement-labels.html'),(507,'DECLARE VARIABLE',36,'Syntax:\nDECLARE var_name [, var_name] ... type [DEFAULT value]\n\nThis statement declares local variables within stored programs. To\nprovide a default value for a variable, include a DEFAULT clause. The\nvalue can be specified as an expression; it need not be a constant. If\nthe DEFAULT clause is missing, the initial value is NULL.\n\nLocal variables are treated like stored routine parameters with respect\nto data type and overflow checking. See [HELP CREATE PROCEDURE].\n\nVariable declarations must appear before cursor or handler\ndeclarations.\n\nLocal variable names are not case-sensitive. Permissible characters and\nquoting rules are the same as for other identifiers, as described in\nhttps://dev.mysql.com/doc/refman/5.6/en/identifiers.html.\n\nThe scope of a local variable is the BEGIN ... END block within which\nit is declared. The variable can be referred to in blocks nested within\nthe declaring block, except those blocks that declare a variable with\nthe same name.\n\nFor examples of variable declarations, see\nhttps://dev.mysql.com/doc/refman/5.6/en/local-variable-scope.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/declare-local-variable.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/declare-local-variable.html'),(508,'CASE STATEMENT',36,'Syntax:\nCASE case_value\n WHEN when_value THEN statement_list\n [WHEN when_value THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nOr:\n\nCASE\n WHEN search_condition THEN statement_list\n [WHEN search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND CASE\n\nThe CASE statement for stored programs implements a complex conditional\nconstruct.\n\n*Note*:\n\nThere is also a CASE expr, which differs from the CASE statement\ndescribed here. See\nhttps://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html.\nThe CASE statement cannot have an ELSE NULL clause, and it is\nterminated with END CASE instead of END.\n\nFor the first syntax, case_value is an expression. This value is\ncompared to the when_value expression in each WHEN clause until one of\nthem is equal. When an equal when_value is found, the corresponding\nTHEN clause statement_list executes. If no when_value is equal, the\nELSE clause statement_list executes, if there is one.\n\nThis syntax cannot be used to test for equality with NULL because NULL\n= NULL is false. See\nhttps://dev.mysql.com/doc/refman/5.6/en/working-with-null.html.\n\nFor the second syntax, each WHEN clause search_condition expression is\nevaluated until one is true, at which point its corresponding THEN\nclause statement_list executes. If no search_condition is equal, the\nELSE clause statement_list executes, if there is one.\n\nIf no when_value or search_condition matches the value tested and the\nCASE statement contains no ELSE clause, a Case not found for CASE\nstatement error results.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nTo handle situations where no value is matched by any WHEN clause, use\nan ELSE containing an empty BEGIN ... END block, as shown in this\nexample. (The indentation used here in the ELSE clause is for purposes\nof clarity only, and is not otherwise significant.)\n\nDELIMITER |\n\nCREATE PROCEDURE p()\n BEGIN\n DECLARE v INT DEFAULT 1;\n\n CASE v\n WHEN 2 THEN SELECT v;\n WHEN 3 THEN SELECT 0;\n ELSE\n BEGIN\n END;\n END CASE;\n END;\n |\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/case.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/case.html'),(509,'IF STATEMENT',36,'Syntax:\nIF search_condition THEN statement_list\n [ELSEIF search_condition THEN statement_list] ...\n [ELSE statement_list]\nEND IF\n\nThe IF statement for stored programs implements a basic conditional\nconstruct.\n\n*Note*:\n\nThere is also an IF() function, which differs from the IF statement\ndescribed here. See\nhttps://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html.\nThe IF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf a given search_condition evaluates to true, the corresponding THEN\nor ELSEIF clause statement_list executes. If no search_condition\nmatches, the ELSE clause statement_list executes.\n\nEach statement_list consists of one or more SQL statements; an empty\nstatement_list is not permitted.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/if.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/if.html'),(510,'ITERATE',36,'Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means \"start the loop again.\"\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/iterate.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/iterate.html'),(511,'LEAVE',36,'Syntax:\nLEAVE label\n\nThis statement is used to exit the flow control construct that has the\ngiven label. If the label is for the outermost stored program block,\nLEAVE exits the program.\n\nLEAVE can be used within BEGIN ... END or loop constructs (LOOP,\nREPEAT, WHILE).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/leave.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/leave.html'),(512,'LOOP',36,'Syntax:\n[begin_label:] LOOP\n statement_list\nEND LOOP [end_label]\n\nLOOP implements a simple loop construct, enabling repeated execution of\nthe statement list, which consists of one or more statements, each\nterminated by a semicolon (;) statement delimiter. The statements\nwithin the loop are repeated until the loop is terminated. Usually,\nthis is accomplished with a LEAVE statement. Within a stored function,\nRETURN can also be used, which exits the function entirely.\n\nNeglecting to include a loop-termination statement results in an\ninfinite loop.\n\nA LOOP statement can be labeled. For the rules regarding label use, see\n[HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/loop.html\n\n','CREATE PROCEDURE doiterate(p1 INT)\nBEGIN\n label1: LOOP\n SET p1 = p1 + 1;\n IF p1 < 10 THEN\n ITERATE label1;\n END IF;\n LEAVE label1;\n END LOOP label1;\n SET @x = p1;\nEND;\n','https://dev.mysql.com/doc/refman/5.6/en/loop.html'),(513,'REPEAT LOOP',36,'Syntax:\n[begin_label:] REPEAT\n statement_list\nUNTIL search_condition\nEND REPEAT [end_label]\n\nThe statement list within a REPEAT statement is repeated until the\nsearch_condition expression is true. Thus, a REPEAT always enters the\nloop at least once. statement_list consists of one or more statements,\neach terminated by a semicolon (;) statement delimiter.\n\nA REPEAT statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/repeat.html\n\n','mysql> delimiter //\n\nmysql> CREATE PROCEDURE dorepeat(p1 INT)\n BEGIN\n SET @x = 0;\n REPEAT\n SET @x = @x + 1;\n UNTIL @x > p1 END REPEAT;\n END\n //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL dorepeat(1000)//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n+------+\n| @x |\n+------+\n| 1001 |\n+------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/repeat.html'),(514,'RETURN',36,'Syntax:\nRETURN expr\n\nThe RETURN statement terminates execution of a stored function and\nreturns the value expr to the function caller. There must be at least\none RETURN statement in a stored function. There may be more than one\nif the function has multiple exit points.\n\nThis statement is not used in stored procedures, triggers, or events.\nThe LEAVE statement can be used to exit a stored program of those\ntypes.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/return.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/return.html'),(515,'WHILE',36,'Syntax:\n[begin_label:] WHILE search_condition DO\n statement_list\nEND WHILE [end_label]\n\nThe statement list within a WHILE statement is repeated as long as the\nsearch_condition expression is true. statement_list consists of one or\nmore SQL statements, each terminated by a semicolon (;) statement\ndelimiter.\n\nA WHILE statement can be labeled. For the rules regarding label use,\nsee [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/while.html\n\n','CREATE PROCEDURE dowhile()\nBEGIN\n DECLARE v1 INT DEFAULT 5;\n\n WHILE v1 > 0 DO\n ...\n SET v1 = v1 - 1;\n END WHILE;\nEND;\n','https://dev.mysql.com/doc/refman/5.6/en/while.html'),(516,'CLOSE',36,'Syntax:\nCLOSE cursor_name\n\nThis statement closes a previously opened cursor. For an example, see\nhttps://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nAn error occurs if the cursor is not open.\n\nIf not closed explicitly, a cursor is closed at the end of the BEGIN\n... END block in which it was declared.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/close.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/close.html'),(517,'DECLARE CURSOR',36,'Syntax:\nDECLARE cursor_name CURSOR FOR select_statement\n\nThis statement declares a cursor and associates it with a SELECT\nstatement that retrieves the rows to be traversed by the cursor. To\nfetch the rows later, use a FETCH statement. The number of columns\nretrieved by the SELECT statement must match the number of output\nvariables specified in the FETCH statement.\n\nThe SELECT statement cannot have an INTO clause.\n\nCursor declarations must appear before handler declarations and after\nvariable and condition declarations.\n\nA stored program may contain multiple cursor declarations, but each\ncursor declared in a given block must have a unique name. For an\nexample, see https://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nFor information available through SHOW statements, it is possible in\nmany cases to obtain equivalent information by using a cursor with an\nINFORMATION_SCHEMA table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/declare-cursor.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/declare-cursor.html'),(518,'FETCH',36,'Syntax:\nFETCH [[NEXT] FROM] cursor_name INTO var_name [, var_name] ...\n\nThis statement fetches the next row for the SELECT statement associated\nwith the specified cursor (which must be open), and advances the cursor\npointer. If a row exists, the fetched columns are stored in the named\nvariables. The number of columns retrieved by the SELECT statement must\nmatch the number of output variables specified in the FETCH statement.\n\nIf no more rows are available, a No Data condition occurs with SQLSTATE\nvalue \'02000\'. To detect this condition, you can set up a handler for\nit (or for a NOT FOUND condition). For an example, see\nhttps://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nBe aware that another operation, such as a SELECT or another FETCH, may\nalso cause the handler to execute by raising the same condition. If it\nis necessary to distinguish which operation raised the condition, place\nthe operation within its own BEGIN ... END block so that it can be\nassociated with its own handler.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/fetch.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/fetch.html'),(519,'OPEN',36,'Syntax:\nOPEN cursor_name\n\nThis statement opens a previously declared cursor. For an example, see\nhttps://dev.mysql.com/doc/refman/5.6/en/cursors.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/open.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/open.html'),(520,'DECLARE CONDITION',36,'Syntax:\nDECLARE condition_name CONDITION FOR condition_value\n\ncondition_value: {\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n}\n\nThe DECLARE ... CONDITION statement declares a named error condition,\nassociating a name with a condition that needs specific handling. The\nname can be referred to in a subsequent DECLARE ... HANDLER statement\n(see [HELP DECLARE HANDLER]).\n\nCondition declarations must appear before cursor or handler\ndeclarations.\n\nThe condition_value for DECLARE ... CONDITION indicates the specific\ncondition or class of conditions to associate with the condition name.\nIt can take the following forms:\n\no mysql_error_code: An integer literal indicating a MySQL error code.\n\n Do not use MySQL error code 0 because that indicates success rather\n than an error condition. For a list of MySQL error codes, see\n https://dev.mysql.com/doc/refman/5.6/en/server-error-reference.html.\n\no SQLSTATE [VALUE] sqlstate_value: A 5-character string literal\n indicating an SQLSTATE value.\n\n Do not use SQLSTATE values that begin with \'00\' because those\n indicate success rather than an error condition. For a list of\n SQLSTATE values, see\n https://dev.mysql.com/doc/refman/5.6/en/server-error-reference.html.\n\nCondition names referred to in SIGNAL or use RESIGNAL statements must\nbe associated with SQLSTATE values, not MySQL error codes.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/declare-condition.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/declare-condition.html'),(521,'DECLARE HANDLER',36,'Syntax:\nDECLARE handler_action HANDLER\n FOR condition_value [, condition_value] ...\n statement\n\nhandler_action: {\n CONTINUE\n | EXIT\n | UNDO\n}\n\ncondition_value: {\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n | condition_name\n | SQLWARNING\n | NOT FOUND\n | SQLEXCEPTION\n}\n\nThe DECLARE ... HANDLER statement specifies a handler that deals with\none or more conditions. If one of these conditions occurs, the\nspecified statement executes. statement can be a simple statement such\nas SET var_name = value, or a compound statement written using BEGIN\nand END (see [HELP BEGIN END]).\n\nHandler declarations must appear after variable or condition\ndeclarations.\n\nThe handler_action value indicates what action the handler takes after\nexecution of the handler statement:\n\no CONTINUE: Execution of the current program continues.\n\no EXIT: Execution terminates for the BEGIN ... END compound statement\n in which the handler is declared. This is true even if the condition\n occurs in an inner block.\n\no UNDO: Not supported.\n\nThe condition_value for DECLARE ... HANDLER indicates the specific\ncondition or class of conditions that activates the handler. It can\ntake the following forms:\n\no mysql_error_code: An integer literal indicating a MySQL error code,\n such as 1051 to specify \"unknown table\":\n\nDECLARE CONTINUE HANDLER FOR 1051\n BEGIN\n -- body of handler\n END;\n\n Do not use MySQL error code 0 because that indicates success rather\n than an error condition. For a list of MySQL error codes, see\n https://dev.mysql.com/doc/refman/5.6/en/server-error-reference.html.\n\no SQLSTATE [VALUE] sqlstate_value: A 5-character string literal\n indicating an SQLSTATE value, such as \'42S01\' to specify \"unknown\n table\":\n\nDECLARE CONTINUE HANDLER FOR SQLSTATE \'42S02\'\n BEGIN\n -- body of handler\n END;\n\n Do not use SQLSTATE values that begin with \'00\' because those\n indicate success rather than an error condition. For a list of\n SQLSTATE values, see\n https://dev.mysql.com/doc/refman/5.6/en/server-error-reference.html.\n\no condition_name: A condition name previously specified with DECLARE\n ... CONDITION. A condition name can be associated with a MySQL error\n code or SQLSTATE value. See [HELP DECLARE CONDITION].\n\no SQLWARNING: Shorthand for the class of SQLSTATE values that begin\n with \'01\'.\n\nDECLARE CONTINUE HANDLER FOR SQLWARNING\n BEGIN\n -- body of handler\n END;\n\no NOT FOUND: Shorthand for the class of SQLSTATE values that begin with\n \'02\'. This is relevant within the context of cursors and is used to\n control what happens when a cursor reaches the end of a data set. If\n no more rows are available, a No Data condition occurs with SQLSTATE\n value \'02000\'. To detect this condition, you can set up a handler for\n it or for a NOT FOUND condition.\n\nDECLARE CONTINUE HANDLER FOR NOT FOUND\n BEGIN\n -- body of handler\n END;\n\n For another example, see\n https://dev.mysql.com/doc/refman/5.6/en/cursors.html. The NOT FOUND\n condition also occurs for SELECT ... INTO var_list statements that\n retrieve no rows.\n\no SQLEXCEPTION: Shorthand for the class of SQLSTATE values that do not\n begin with \'00\', \'01\', or \'02\'.\n\nDECLARE CONTINUE HANDLER FOR SQLEXCEPTION\n BEGIN\n -- body of handler\n END;\n\nFor information about how the server chooses handlers when a condition\noccurs, see https://dev.mysql.com/doc/refman/5.6/en/handler-scope.html.\n\nIf a condition occurs for which no handler has been declared, the\naction taken depends on the condition class:\n\no For SQLEXCEPTION conditions, the stored program terminates at the\n statement that raised the condition, as if there were an EXIT\n handler. If the program was called by another stored program, the\n calling program handles the condition using the handler selection\n rules applied to its own handlers.\n\no For SQLWARNING conditions, the program continues executing, as if\n there were a CONTINUE handler.\n\no For NOT FOUND conditions, if the condition was raised normally, the\n action is CONTINUE. If it was raised by SIGNAL or RESIGNAL, the\n action is EXIT.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/declare-handler.html\n\n','mysql> CREATE TABLE test.t (s1 INT, PRIMARY KEY (s1));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE handlerdemo ()\n BEGIN\n DECLARE CONTINUE HANDLER FOR SQLSTATE \'23000\' SET @x2 = 1;\n SET @x = 1;\n INSERT INTO test.t VALUES (1);\n SET @x = 2;\n INSERT INTO test.t VALUES (1);\n SET @x = 3;\n END;\n //\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> CALL handlerdemo()//\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @x//\n +------+\n | @x |\n +------+\n | 3 |\n +------+\n 1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/declare-handler.html'),(522,'GET DIAGNOSTICS',36,'Syntax:\nGET [CURRENT] DIAGNOSTICS {\n statement_information_item\n [, statement_information_item] ...\n | CONDITION condition_number\n condition_information_item\n [, condition_information_item] ...\n}\n\nstatement_information_item:\n target = statement_information_item_name\n\ncondition_information_item:\n target = condition_information_item_name\n\nstatement_information_item_name: {\n NUMBER\n | ROW_COUNT\n}\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | RETURNED_SQLSTATE\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_number, target:\n (see following discussion)\n\nSQL statements produce diagnostic information that populates the\ndiagnostics area. The GET DIAGNOSTICS statement enables applications to\ninspect this information. It is available as of MySQL 5.6.4. (You can\nalso use SHOW WARNINGS or SHOW ERRORS to see conditions or errors.)\n\nNo special privileges are required to execute GET DIAGNOSTICS.\n\nThe keyword CURRENT means to retrieve information from the current\ndiagnostics area. In MySQL, it has no effect because that is the\ndefault behavior.\n\nGET DIAGNOSTICS is typically used in a handler within a stored program,\nbut it is a MySQL extension that it is permitted outside handler\ncontext to check the execution of any SQL statement. For example, if\nyou invoke the mysql client program, you can enter these statements at\nthe prompt:\n\nmysql> DROP TABLE test.no_such_table;\nERROR 1051 (42S02): Unknown table \'test.no_such_table\'\nmysql> GET DIAGNOSTICS CONDITION 1\n @p1 = RETURNED_SQLSTATE, @p2 = MESSAGE_TEXT;\nmysql> SELECT @p1, @p2;\n+-------+------------------------------------+\n| @p1 | @p2 |\n+-------+------------------------------------+\n| 42S02 | Unknown table \'test.no_such_table\' |\n+-------+------------------------------------+\n\nFor a description of the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html. Briefly,\nit contains two kinds of information:\n\no Statement information, such as the number of conditions that occurred\n or the affected-rows count.\n\no Condition information, such as the error code and message. If a\n statement raises multiple conditions, this part of the diagnostics\n area has a condition area for each one. If a statement raises no\n conditions, this part of the diagnostics area is empty.\n\nFor a statement that produces three conditions, the diagnostics area\ncontains statement and condition information like this:\n\nStatement information:\n row count\n ... other statement information items ...\nCondition area list:\n Condition area 1:\n error code for condition 1\n error message for condition 1\n ... other condition information items ...\n Condition area 2:\n error code for condition 2:\n error message for condition 2\n ... other condition information items ...\n Condition area 3:\n error code for condition 3\n error message for condition 3\n ... other condition information items ...\n\nGET DIAGNOSTICS can obtain either statement or condition information,\nbut not both in the same statement:\n\no To obtain statement information, retrieve the desired statement items\n into target variables. This instance of GET DIAGNOSTICS assigns the\n number of available conditions and the rows-affected count to the\n user variables @p1 and @p2:\n\nGET DIAGNOSTICS @p1 = NUMBER, @p2 = ROW_COUNT;\n\no To obtain condition information, specify the condition number and\n retrieve the desired condition items into target variables. This\n instance of GET DIAGNOSTICS assigns the SQLSTATE value and error\n message to the user variables @p3 and @p4:\n\nGET DIAGNOSTICS CONDITION 1\n @p3 = RETURNED_SQLSTATE, @p4 = MESSAGE_TEXT;\n\nThe retrieval list specifies one or more target = item_name\nassignments, separated by commas. Each assignment names a target\nvariable and either a statement_information_item_name or\ncondition_information_item_name designator, depending on whether the\nstatement retrieves statement or condition information.\n\nValid target designators for storing item information can be stored\nprocedure or function parameters, stored program local variables\ndeclared with DECLARE, or user-defined variables.\n\nValid condition_number designators can be stored procedure or function\nparameters, stored program local variables declared with DECLARE,\nuser-defined variables, system variables, or literals. A character\nliteral may include a _charset introducer. A warning occurs if the\ncondition number is not in the range from 1 to the number of condition\nareas that have information. In this case, the warning is added to the\ndiagnostics area without clearing it.\n\nWhen a condition occurs, MySQL does not populate all condition items\nrecognized by GET DIAGNOSTICS. For example:\n\nmysql> GET DIAGNOSTICS CONDITION 1\n @p5 = SCHEMA_NAME, @p6 = TABLE_NAME;\nmysql> SELECT @p5, @p6;\n+------+------+\n| @p5 | @p6 |\n+------+------+\n| | |\n+------+------+\n\nIn standard SQL, if there are multiple conditions, the first condition\nrelates to the SQLSTATE value returned for the previous SQL statement.\nIn MySQL, this is not guaranteed. To get the main error, you cannot do\nthis:\n\nGET DIAGNOSTICS CONDITION 1 @errno = MYSQL_ERRNO;\n\nInstead, retrieve the condition count first, then use it to specify\nwhich condition number to inspect:\n\nGET DIAGNOSTICS @cno = NUMBER;\nGET DIAGNOSTICS CONDITION @cno @errno = MYSQL_ERRNO;\n\nFor information about permissible statement and condition information\nitems, and which ones are populated when a condition occurs, see\nhttps://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html#diagnosti\ncs-area-information-items.\n\nHere is an example that uses GET DIAGNOSTICS and an exception handler\nin stored procedure context to assess the outcome of an insert\noperation. If the insert was successful, the procedure uses GET\nDIAGNOSTICS to get the rows-affected count. This shows that you can use\nGET DIAGNOSTICS multiple times to retrieve information about a\nstatement as long as the diagnostics area has not been cleared.\n\nCREATE PROCEDURE do_insert(value INT)\nBEGIN\n -- Declare variables to hold diagnostics area information\n DECLARE code CHAR(5) DEFAULT \'00000\';\n DECLARE msg TEXT;\n DECLARE nrows INT;\n DECLARE result TEXT;\n -- Declare exception handler for failed insert\n DECLARE CONTINUE HANDLER FOR SQLEXCEPTION\n BEGIN\n GET DIAGNOSTICS CONDITION 1\n code = RETURNED_SQLSTATE, msg = MESSAGE_TEXT;\n END;\n\n -- Perform the insert\n INSERT INTO t1 (int_col) VALUES(value);\n -- Check whether the insert was successful\n IF code = \'00000\' THEN\n GET DIAGNOSTICS nrows = ROW_COUNT;\n SET result = CONCAT(\'insert succeeded, row count = \',nrows);\n ELSE\n SET result = CONCAT(\'insert failed, error = \',code,\', message = \',msg);\n END IF;\n -- Say what happened\n SELECT result;\nEND;\n\nSuppose that t1.int_col is an integer column that is declared as NOT\nNULL. The procedure produces these results when invoked to insert\nnon-NULL and NULL values, respectively:\n\nmysql> CALL do_insert(1);\n+---------------------------------+\n| result |\n+---------------------------------+\n| insert succeeded, row count = 1 |\n+---------------------------------+\n\nmysql> CALL do_insert(NULL);\n+-------------------------------------------------------------------------+\n| result |\n+-------------------------------------------------------------------------+\n| insert failed, error = 23000, message = Column \'int_col\' cannot be null |\n+-------------------------------------------------------------------------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/get-diagnostics.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/get-diagnostics.html'),(523,'RESIGNAL',36,'Syntax:\nRESIGNAL [condition_value]\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value: {\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n}\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nRESIGNAL passes on the error condition information that is available\nduring execution of a condition handler within a compound statement\ninside a stored procedure or function, trigger, or event. RESIGNAL may\nchange some or all information before passing it on. RESIGNAL is\nrelated to SIGNAL, but instead of originating a condition as SIGNAL\ndoes, RESIGNAL relays existing condition information, possibly after\nmodifying it.\n\nRESIGNAL makes it possible to both handle an error and return the error\ninformation. Otherwise, by executing an SQL statement within the\nhandler, information that caused the handler\'s activation is destroyed.\nRESIGNAL also can make some procedures shorter if a given handler can\nhandle part of a situation, then pass the condition \"up the line\" to\nanother handler.\n\nNo privileges are required to execute the RESIGNAL statement.\n\nAll forms of RESIGNAL require that the current context be a condition\nhandler. Otherwise, RESIGNAL is illegal and a RESIGNAL when handler not\nactive error occurs.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/resignal.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/resignal.html'),(524,'SIGNAL',36,'Syntax:\nSIGNAL condition_value\n [SET signal_information_item\n [, signal_information_item] ...]\n\ncondition_value: {\n SQLSTATE [VALUE] sqlstate_value\n | condition_name\n}\n\nsignal_information_item:\n condition_information_item_name = simple_value_specification\n\ncondition_information_item_name: {\n CLASS_ORIGIN\n | SUBCLASS_ORIGIN\n | MESSAGE_TEXT\n | MYSQL_ERRNO\n | CONSTRAINT_CATALOG\n | CONSTRAINT_SCHEMA\n | CONSTRAINT_NAME\n | CATALOG_NAME\n | SCHEMA_NAME\n | TABLE_NAME\n | COLUMN_NAME\n | CURSOR_NAME\n}\n\ncondition_name, simple_value_specification:\n (see following discussion)\n\nSIGNAL is the way to \"return\" an error. SIGNAL provides error\ninformation to a handler, to an outer portion of the application, or to\nthe client. Also, it provides control over the error\'s characteristics\n(error number, SQLSTATE value, message). Without SIGNAL, it is\nnecessary to resort to workarounds such as deliberately referring to a\nnonexistent table to cause a routine to return an error.\n\nNo privileges are required to execute the SIGNAL statement.\n\nTo retrieve information from the diagnostics area, use the GET\nDIAGNOSTICS statement (see [HELP GET DIAGNOSTICS]). For information\nabout the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.6/en/diagnostics-area.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/signal.html\n\n','CREATE PROCEDURE p (pval INT)\nBEGIN\n DECLARE specialty CONDITION FOR SQLSTATE \'45000\';\n IF pval = 0 THEN\n SIGNAL SQLSTATE \'01000\';\n ELSEIF pval = 1 THEN\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSEIF pval = 2 THEN\n SIGNAL specialty\n SET MESSAGE_TEXT = \'An error occurred\';\n ELSE\n SIGNAL SQLSTATE \'01000\'\n SET MESSAGE_TEXT = \'A warning occurred\', MYSQL_ERRNO = 1000;\n SIGNAL SQLSTATE \'45000\'\n SET MESSAGE_TEXT = \'An error occurred\', MYSQL_ERRNO = 1001;\n END IF;\nEND;\n','https://dev.mysql.com/doc/refman/5.6/en/signal.html'),(525,'ALTER USER',37,'Syntax:\nALTER USER user_specification [, user_specification] ...\n\nuser_specification:\n user PASSWORD EXPIRE\n\nThe ALTER USER statement modifies MySQL accounts. An error occurs if\nyou try to modify a nonexistent account.\n\nTo use ALTER USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, ALTER USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html. The host\nname part of the account name, if omitted, defaults to \'%\'. It is also\npossible to specify CURRENT_USER or CURRENT_USER() to refer to the\naccount associated with the current session.\n\nFor each account, ALTER USER expires its password. For example:\n\nALTER USER \'jeffrey\'@\'localhost\' PASSWORD EXPIRE;\n\nPassword expiration for an account affects the corresponding row of the\nmysql.user system table: The server sets the password_expired column to\n\'Y\'.\n\nA client session operates in restricted mode if the account password\nhas been expired. In restricted mode, operations performed within the\nsession result in an error until the user establishes a new account\npassword:\n\nmysql> SELECT 1;\nERROR 1820 (HY000): You must SET PASSWORD before executing this statement\n\nmysql> SET PASSWORD = PASSWORD(\'new_password\');\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SELECT 1;\n+---+\n| 1 |\n+---+\n| 1 |\n+---+\n1 row in set (0.00 sec)\n\nThis restricted mode of operation permits SET statements, which is\nuseful if the account password has a hashing format that requires\nold_passwords to be set to a value different from its default before\nusing SET PASSWORD.\n\nIt is possible for an administrative user to reset the account\npassword, but any existing sessions for the account remain restricted.\nA client using the account must disconnect and reconnect before\nstatements can be executed successfully.\n\n*Note*:\n\nAlthough it is possible to \"reset\" an expired password by setting it to\nits current value, it is preferable, as a matter of good policy, to\nchoose a different password.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/alter-user.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/alter-user.html'),(526,'CREATE USER',37,'Syntax:\nCREATE USER\n user [auth_option] [, user [auth_option]] ...\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY [PASSWORD] \'auth_string\'\n | IDENTIFIED WITH auth_plugin [AS \'auth_string\']\n}\n\nThe CREATE USER statement creates new MySQL accounts. An error occurs\nif you try to create an account that already exists.\n\nTo use CREATE USER, you must have the global CREATE USER privilege, or\nthe INSERT privilege for the mysql system database. When the read_only\nsystem variable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-user.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-user.html'),(527,'DROP USER',37,'Syntax:\nDROP USER user [, user] ...\n\nThe DROP USER statement removes one or more MySQL accounts and their\nprivileges. It removes privilege rows for the account from all grant\ntables. An error occurs for accounts that do not exist.\n\nTo use DROP USER, you must have the global CREATE USER privilege, or\nthe DELETE privilege for the mysql system database. When the read_only\nsystem variable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html. For\nexample:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-user.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-user.html'),(528,'GRANT',37,'Syntax:\nGRANT\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n TO user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH {GRANT OPTION | resource_option} ...]\n\nGRANT PROXY ON user\n TO user [, user] ...\n [WITH GRANT OPTION]\n\nobject_type: {\n TABLE\n | FUNCTION\n | PROCEDURE\n}\n\npriv_level: {\n *\n | *.*\n | db_name.*\n | db_name.tbl_name\n | tbl_name\n | db_name.routine_name\n}\n\nuser:\n (see https://dev.mysql.com/doc/refman/5.6/en/account-names.html)\n\nauth_option: {\n IDENTIFIED BY [PASSWORD] \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin AS \'auth_string\'\n}\n\ntls_option: {\n SSL\n | X509\n | CIPHER \'cipher\'\n | ISSUER \'issuer\'\n | SUBJECT \'subject\'\n}\n\nresource_option: {\n | MAX_QUERIES_PER_HOUR count\n | MAX_UPDATES_PER_HOUR count\n | MAX_CONNECTIONS_PER_HOUR count\n | MAX_USER_CONNECTIONS count\n}\n\nThe GRANT statement grants privileges to MySQL user accounts. GRANT\nalso serves to specify other account characteristics such as use of\nsecure connections and limits on access to server resources.\n\nTo use GRANT, you must have the GRANT OPTION privilege, and you must\nhave the privileges that you are granting. When the read_only system\nvariable is enabled, GRANT additionally requires the SUPER privilege.\n\nThe REVOKE statement is related to GRANT and enables administrators to\nremove account privileges. See [HELP REVOKE].\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html. For\nexample:\n\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\n\nThe host name part of the account, if omitted, defaults to \'%\'.\n\nNormally, a database administrator first uses CREATE USER to create an\naccount, then GRANT to define its privileges and characteristics. For\nexample:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'password\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nGRANT USAGE ON *.* TO \'jeffrey\'@\'localhost\' WITH MAX_QUERIES_PER_HOUR 90;\n\n*Note*:\n\nExamples shown here include no IDENTIFIED clause. It is assumed that\nyou establish passwords with CREATE USER at account-creation time to\navoid creating insecure accounts.\n\nIf an account named in a GRANT statement does not already exist, GRANT\nmay create it under the conditions described later in the discussion of\nthe NO_AUTO_CREATE_USER SQL mode.\n\nFrom the mysql program, GRANT responds with Query OK, 0 rows affected\nwhen executed successfully. To determine what privileges result from\nthe operation, use SHOW GRANTS. See [HELP SHOW GRANTS].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/grant.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/grant.html'),(529,'RENAME USER',37,'Syntax:\nRENAME USER old_user TO new_user\n [, old_user TO new_user] ...\n\nThe RENAME USER statement renames existing MySQL accounts. An error\noccurs for old accounts that do not exist or new accounts that already\nexist.\n\nTo use RENAME USER, you must have the global CREATE USER privilege, or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html. For\nexample:\n\nRENAME USER \'jeffrey\'@\'localhost\' TO \'jeff\'@\'127.0.0.1\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nRENAME USER causes the privileges held by the old user to be those held\nby the new user. However, RENAME USER does not automatically drop or\ninvalidate databases or objects within them that the old user created.\nThis includes stored programs or views for which the DEFINER attribute\nnames the old user. Attempts to access such objects may produce an\nerror if they execute in definer security context. (For information\nabout security context, see\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-objects-security.html.)\n\nThe privilege changes take effect as indicated in\nhttps://dev.mysql.com/doc/refman/5.6/en/privilege-changes.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/rename-user.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/rename-user.html'),(530,'REVOKE',37,'Syntax:\nREVOKE\n priv_type [(column_list)]\n [, priv_type [(column_list)]] ...\n ON [object_type] priv_level\n FROM user [, user] ...\n\nREVOKE ALL [PRIVILEGES], GRANT OPTION\n FROM user [, user] ...\n\nREVOKE PROXY ON user\n FROM user [, user] ...\n\nThe REVOKE statement enables system administrators to revoke privileges\nfrom MySQL accounts.\n\nFor details on the levels at which privileges exist, the permissible\npriv_type, priv_level, and object_type values, and the syntax for\nspecifying users and passwords, see [HELP GRANT].\n\nWhen the read_only system variable is enabled, REVOKE requires the\nSUPER privilege in addition to any other required privileges described\nin the following discussion.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html. For\nexample:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nTo use the first REVOKE syntax, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are revoking.\n\nTo revoke all privileges, use the second syntax, which drops all\nglobal, database, table, column, and routine privileges for the named\nuser or users:\n\nREVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ...\n\nTo use this REVOKE syntax, you must have the global CREATE USER\nprivilege, or the UPDATE privilege for the mysql system database.\n\nUser accounts from which privileges are to be revoked must exist, but\nthe privileges to be revoked need not be currently granted to them.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/revoke.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/revoke.html'),(531,'SET PASSWORD',37,'Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n PASSWORD(\'auth_string\')\n | OLD_PASSWORD(\'auth_string\')\n | \'hash_string\'\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account,\nspecified as either a cleartext (unencrypted) or encrypted value:\n\no \'auth_string\' represents a cleartext password.\n\no \'hash_string\' represents an encrypted password.\n\n*Important*:\n\nUnder some circumstances, SET PASSWORD may be recorded in server logs\nor on the client side in a history file such as ~/.mysql_history, which\nmeans that cleartext passwords may be read by anyone having read access\nto that information. For information about the conditions under which\nthis occurs for the server logs and how to control it, see\nhttps://dev.mysql.com/doc/refman/5.6/en/password-logging.html. For\nsimilar information about client-side logging, see\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-logging.html.\n\nSET PASSWORD can be used with or without a FOR clause that explicitly\nnames a user account:\n\no With a FOR user clause, the statement sets the password for the named\n account, which must exist:\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = password_option;\n\no With no FOR user clause, the statement sets the password for the\n current user:\n\nSET PASSWORD = password_option;\n\n Any client who connects to the server using a nonanonymous account\n can change the password for that account. (In particular, you can\n change your own password.) To see which account the server\n authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html. For\nexample:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = PASSWORD(\'auth_string\');\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nSetting the password for a named account (with a FOR clause) requires\nthe UPDATE privilege for the mysql system database. Setting the\npassword for yourself (for a nonanonymous account with no FOR clause)\nrequires no special privileges. When the read_only system variable is\nenabled, SET PASSWORD requires the SUPER privilege in addition to any\nother required privileges.\n\nThe password can be specified in these ways:\n\no Use the PASSWORD() function\n\n The PASSWORD() argument is the cleartext (unencrypted) password.\n PASSWORD() hashes the password and returns the encrypted password\n string for storage in the account row in the mysql.user system table.\n\n The PASSWORD() function hashes the password using the hashing method\n determined by the value of the old_passwords system variable value.\n If SET PASSWORD rejects the hashed password value returned by\n PASSWORD() as not being in the correct format, it may be necessary to\n change old_passwords to change the hashing method. For example, if\n the account uses the mysql_native_password plugin, the old_passwords\n value must be 0:\n\nSET old_passwords = 0;\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\n\n If the old_passwords value differs from that required by the\n authentication plugin, the hashed password value returned by\n PASSWORD() is not acceptable for that plugin, and attempts to set the\n password produce an error. For example:\n\nmysql> SET old_passwords = 1;\nmysql> SET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\nERROR 1372 (HY000): Password hash should be a 41-digit hexadecimal number\n\n Permitted old_passwords values are described later in this section.\n\no Use the OLD_PASSWORD() function:\n\n The \'auth_string\' function argument is the cleartext (unencrypted)\n password. OLD_PASSWORD() hashes the password using pre-4.1 hashing\n and returns the encrypted password string for storage in the account\n row in the mysql.user system table. This hashing method is\n appropriate only for accounts that use the mysql_old_password\n authentication plugin.\n\no Use an already encrypted password string\n\n The password is specified as a string literal. It must represent the\n already encrypted password value, in the hash format required by the\n authentication method used for the account.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-password.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-password.html'),(532,'ANALYZE TABLE',38,'Syntax:\nANALYZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nANALYZE TABLE performs a key distribution analysis and stores the\ndistribution for the named table or tables. For MyISAM tables, this\nstatement is equivalent to using myisamchk --analyze.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nANALYZE TABLE works with InnoDB, NDB, and MyISAM tables. It does not\nwork with views.\n\nANALYZE TABLE is supported for partitioned tables, and you can use\nALTER TABLE ... ANALYZE PARTITION to analyze one or more partitions;\nfor more information, see [HELP ALTER TABLE], and\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-maintenance.html.\n\nDuring the analysis, the table is locked with a read lock for InnoDB\nand MyISAM.\n\nANALYZE TABLE removes the table from the table definition cache, which\nrequires a flush lock. If there are long running statements or\ntransactions still using the table, subsequent statements and\ntransactions must wait for those operations to finish before the flush\nlock is released. Because ANALYZE TABLE itself typically finishes\nquickly, it may not be apparent that delayed transactions or statements\ninvolving the same table are due to the remaining flush lock.\n\nBy default, the server writes ANALYZE TABLE statements to the binary\nlog so that they replicate to replication slaves. To suppress logging,\nspecify the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/analyze-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/analyze-table.html'),(533,'CHECK TABLE',38,'Syntax:\nCHECK TABLE tbl_name [, tbl_name] ... [option] ...\n\noption: {\n FOR UPGRADE\n | QUICK\n | FAST\n | MEDIUM\n | EXTENDED\n | CHANGED\n}\n\nCHECK TABLE checks a table or tables for errors. For MyISAM tables, the\nkey statistics are updated as well. CHECK TABLE can also check views\nfor problems, such as tables that are referenced in the view definition\nthat no longer exist.\n\nTo check a table, you must have some privilege for it.\n\nCHECK TABLE works for InnoDB, MyISAM, ARCHIVE, and CSV tables.\n\nBefore running CHECK TABLE on InnoDB tables, see\nhttps://dev.mysql.com/doc/refman/5.6/en/check-table.html#check-table-in\nnodb.\n\nCHECK TABLE is supported for partitioned tables, and you can use ALTER\nTABLE ... CHECK PARTITION to check one or more partitions; for more\ninformation, see [HELP ALTER TABLE], and\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-maintenance.html.\n\nIn MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before issuing\nthis statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/check-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/check-table.html'),(534,'CHECKSUM TABLE',38,'Syntax:\nCHECKSUM TABLE tbl_name [, tbl_name] ... [QUICK | EXTENDED]\n\nCHECKSUM TABLE reports a checksum for the contents of a table. You can\nuse this statement to verify that the contents are the same before and\nafter a backup, rollback, or other operation that is intended to put\nthe data back to a known state.\n\nThis statement requires the SELECT privilege for the table.\n\nThis statement is not supported for views. If you run CHECKSUM TABLE\nagainst a view, the Checksum value is always NULL, and a warning is\nreturned.\n\nFor a nonexistent table, CHECKSUM TABLE returns NULL and generates a\nwarning.\n\nDuring the checksum operation, the table is locked with a read lock for\nInnoDB and MyISAM.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/checksum-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/checksum-table.html'),(535,'OPTIMIZE TABLE',38,'Syntax:\nOPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n\nOPTIMIZE TABLE reorganizes the physical storage of table data and\nassociated index data, to reduce storage space and improve I/O\nefficiency when accessing the table. The exact changes made to each\ntable depend on the storage engine used by that table.\n\nUse OPTIMIZE TABLE in these cases, depending on the type of table:\n\no After doing substantial insert, update, or delete operations on an\n InnoDB table that has its own .ibd file because it was created with\n the innodb_file_per_table option enabled. The table and indexes are\n reorganized, and disk space can be reclaimed for use by the operating\n system.\n\no After doing substantial insert, update, or delete operations on\n columns that are part of a FULLTEXT index in an InnoDB table. Set the\n configuration option innodb_optimize_fulltext_only=1 first. To keep\n the index maintenance period to a reasonable time, set the\n innodb_ft_num_word_optimize option to specify how many words to\n update in the search index, and run a sequence of OPTIMIZE TABLE\n statements until the search index is fully updated.\n\no After deleting a large part of a MyISAM or ARCHIVE table, or making\n many changes to a MyISAM or ARCHIVE table with variable-length rows\n (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns). Deleted\n rows are maintained in a linked list and subsequent INSERT operations\n reuse old row positions. You can use OPTIMIZE TABLE to reclaim the\n unused space and to defragment the data file. After extensive changes\n to a table, this statement may also improve performance of statements\n that use the table, sometimes significantly.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nOPTIMIZE TABLE works for InnoDB, MyISAM, and ARCHIVE tables. OPTIMIZE\nTABLE is also supported for dynamic columns of in-memory NDB tables. It\ndoes not work for fixed-width columns of in-memory tables, nor does it\nwork for Disk Data tables. The performance of OPTIMIZE on NDB Cluster\ntables can be tuned using --ndb-optimization-delay, which controls the\nlength of time to wait between processing batches of rows by OPTIMIZE\nTABLE. For more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/mysql-cluster-limitations-resol\nved.html.\n\nFor NDB Cluster tables, OPTIMIZE TABLE can be interrupted by (for\nexample) killing the SQL thread performing the OPTIMIZE operation.\n\nBy default, OPTIMIZE TABLE does not work for tables created using any\nother storage engine and returns a result indicating this lack of\nsupport. You can make OPTIMIZE TABLE work for other storage engines by\nstarting mysqld with the --skip-new option. In this case, OPTIMIZE\nTABLE is just mapped to ALTER TABLE.\n\nThis statement does not work with views.\n\nOPTIMIZE TABLE is supported for partitioned tables. For information\nabout using this statement with partitioned tables and table\npartitions, see\nhttps://dev.mysql.com/doc/refman/5.6/en/partitioning-maintenance.html.\n\nBy default, the server writes OPTIMIZE TABLE statements to the binary\nlog so that they replicate to replication slaves. To suppress logging,\nspecify the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nIn MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before issuing\nthis statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/optimize-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/optimize-table.html'),(536,'REPAIR TABLE',38,'Syntax:\nREPAIR [NO_WRITE_TO_BINLOG | LOCAL]\n TABLE tbl_name [, tbl_name] ...\n [QUICK] [EXTENDED] [USE_FRM]\n\nREPAIR TABLE repairs a possibly corrupted table, for certain storage\nengines only.\n\nThis statement requires SELECT and INSERT privileges for the table.\n\nAlthough normally you should never have to run REPAIR TABLE, if\ndisaster strikes, this statement is very likely to get back all your\ndata from a MyISAM table. If your tables become corrupted often, try to\nfind the reason for it, to eliminate the need to use REPAIR TABLE. See\nhttps://dev.mysql.com/doc/refman/5.6/en/crashing.html, and\nhttps://dev.mysql.com/doc/refman/5.6/en/myisam-table-problems.html.\n\nREPAIR TABLE checks the table to see whether an upgrade is required. If\nso, it performs the upgrade, following the same rules as CHECK TABLE\n... FOR UPGRADE. See [HELP CHECK TABLE], for more information.\n\n*Important*:\n\no Make a backup of a table before performing a table repair operation;\n under some circumstances the operation might cause data loss.\n Possible causes include but are not limited to file system errors.\n See https://dev.mysql.com/doc/refman/5.6/en/backup-and-recovery.html.\n\no If the server crashes during a REPAIR TABLE operation, it is\n essential after restarting it that you immediately execute another\n REPAIR TABLE statement for the table before performing any other\n operations on it. In the worst case, you might have a new clean index\n file without information about the data file, and then the next\n operation you perform could overwrite the data file. This is an\n unlikely but possible scenario that underscores the value of making a\n backup first.\n\no In the event that a table on the master becomes corrupted and you run\n REPAIR TABLE on it, any resulting changes to the original table are\n not propagated to slaves.\n\no In MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before\n issuing this statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/repair-table.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/repair-table.html'),(537,'CREATE FUNCTION UDF',39,'Syntax:\nCREATE [AGGREGATE] FUNCTION function_name\n RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nA user-defined function (UDF) is a way to extend MySQL with a new\nfunction that works like a native (built-in) MySQL function such as\nABS() or CONCAT().\n\nfunction_name is the name that should be used in SQL statements to\ninvoke the function. The RETURNS clause indicates the type of the\nfunction\'s return value. DECIMAL is a legal value after RETURNS, but\ncurrently DECIMAL functions return string values and should be written\nlike STRING functions.\n\nshared_library_name is the base name of the shared library file that\ncontains the code that implements the function. The file must be\nlocated in the plugin directory. This directory is given by the value\nof the plugin_dir system variable. For more information, see\nhttps://dev.mysql.com/doc/refman/5.6/en/udf-loading.html.\n\nTo create a function, you must have the INSERT privilege for the mysql\nsystem database. This is necessary because CREATE FUNCTION adds a row\nto the mysql.func system table that records the function\'s name, type,\nand shared library name.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/create-function-udf.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/create-function-udf.html'),(538,'DROP FUNCTION UDF',39,'Syntax:\nDROP FUNCTION function_name\n\nThis statement drops the user-defined function (UDF) named\nfunction_name.\n\nTo drop a function, you must have the DELETE privilege for the mysql\nsystem database. This is because DROP FUNCTION removes a row from the\nmysql.func system table that records the function\'s name, type, and\nshared library name.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/drop-function-udf.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/drop-function-udf.html'),(539,'INSTALL PLUGIN',40,'Syntax:\nINSTALL PLUGIN plugin_name SONAME \'shared_library_name\'\n\nThis statement installs a server plugin. It requires the INSERT\nprivilege for the mysql.plugin system table.\n\nplugin_name is the name of the plugin as defined in the plugin\ndescriptor structure contained in the library file (see\nhttps://dev.mysql.com/doc/refman/5.6/en/plugin-data-structures.html).\nPlugin names are not case-sensitive. For maximal compatibility, plugin\nnames should be limited to ASCII letters, digits, and underscore\nbecause they are used in C source files, shell command lines, M4 and\nBourne shell scripts, and SQL environments.\n\nshared_library_name is the name of the shared library that contains the\nplugin code. The name includes the file name extension (for example,\nlibmyplugin.so, libmyplugin.dll, or libmyplugin.dylib).\n\nThe shared library must be located in the plugin directory (the\ndirectory named by the plugin_dir system variable). The library must be\nin the plugin directory itself, not in a subdirectory. By default,\nplugin_dir is the plugin directory under the directory named by the\npkglibdir configuration variable, but it can be changed by setting the\nvalue of plugin_dir at server startup. For example, set its value in a\nmy.cnf file:\n\n[mysqld]\nplugin_dir=/path/to/plugin/directory\n\nIf the value of plugin_dir is a relative path name, it is taken to be\nrelative to the MySQL base directory (the value of the basedir system\nvariable).\n\nINSTALL PLUGIN loads and initializes the plugin code to make the plugin\navailable for use. A plugin is initialized by executing its\ninitialization function, which handles any setup that the plugin must\nperform before it can be used. When the server shuts down, it executes\nthe deinitialization function for each plugin that is loaded so that\nthe plugin has a chance to perform any final cleanup.\n\nINSTALL PLUGIN also registers the plugin by adding a line that\nindicates the plugin name and library file name to the mysql.plugin\nsystem table. At server startup, the server loads and initializes any\nplugin that is listed in mysql.plugin. This means that a plugin is\ninstalled with INSTALL PLUGIN only once, not every time the server\nstarts. Plugin loading at startup does not occur if the server is\nstarted with the --skip-grant-tables option.\n\nA plugin library can contain multiple plugins. For each of them to be\ninstalled, use a separate INSTALL PLUGIN statement. Each statement\nnames a different plugin, but all of them specify the same library\nname.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/install-plugin.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/install-plugin.html'),(540,'UNINSTALL PLUGIN',40,'Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. It requires the\nDELETE privilege for the mysql.plugin system table. UNINSTALL PLUGIN is\nthe complement of INSTALL PLUGIN.\n\nplugin_name must be the name of some plugin that is listed in the\nmysql.plugin table. The server executes the plugin\'s deinitialization\nfunction and removes the row for the plugin from the mysql.plugin\nsystem table, so that subsequent server restarts will not load and\ninitialize the plugin. UNINSTALL PLUGIN does not remove the plugin\'s\nshared library file.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/uninstall-plugin.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/uninstall-plugin.html'),(541,'SET',3,'Syntax:\nSET variable = expr [, variable = expr] ...\n\nvariable: {\n user_var_name\n | param_name\n | local_var_name\n | {GLOBAL | @@GLOBAL.} system_var_name\n | [SESSION | @@SESSION. | @@] system_var_name\n}\n\nSET ONE_SHOT system_var_name = expr\n\nSET syntax for variable assignment enables you to assign values to\ndifferent types of variables that affect the operation of the server or\nclients:\n\no User-defined variables. See\n https://dev.mysql.com/doc/refman/5.6/en/user-variables.html.\n\no Stored procedure and function parameters, and stored program local\n variables. See\n https://dev.mysql.com/doc/refman/5.6/en/stored-program-variables.html\n .\n\no System variables. See\n https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n System variables also can be set at server startup, as described in\n https://dev.mysql.com/doc/refman/5.6/en/using-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-variable.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-variable.html'),(542,'SET CHARACTER SET',3,'Syntax:\nSET {CHARACTER SET | CHARSET}\n {\'charset_name\' | DEFAULT}\n\nThis statement maps all strings sent between the server and the current\nclient with the given mapping. SET CHARACTER SET sets three session\nsystem variables: character_set_client and character_set_results are\nset to the given character set, and character_set_connection to the\nvalue of character_set_database. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-connection.html.\n\ncharset_name may be quoted or unquoted.\n\nThe default character set mapping can be restored by using the value\nDEFAULT. The default depends on the server configuration.\n\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET CHARACTER SET produces an error. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-character-set.html'),(543,'SET CHARSET',3,'Syntax:\nSET {CHARACTER SET | CHARSET}\n {\'charset_name\' | DEFAULT}\n\nThis statement maps all strings sent between the server and the current\nclient with the given mapping. SET CHARACTER SET sets three session\nsystem variables: character_set_client and character_set_results are\nset to the given character set, and character_set_connection to the\nvalue of character_set_database. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-connection.html.\n\ncharset_name may be quoted or unquoted.\n\nThe default character set mapping can be restored by using the value\nDEFAULT. The default depends on the server configuration.\n\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET CHARACTER SET produces an error. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-character-set.html'),(544,'SET NAMES',3,'Syntax:\nSET NAMES {\'charset_name\'\n [COLLATE \'collation_name\'] | DEFAULT}\n\nThis statement sets the three session system variables\ncharacter_set_client, character_set_connection, and\ncharacter_set_results to the given character set. Setting\ncharacter_set_connection to charset_name also sets collation_connection\nto the default collation for charset_name. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-connection.html.\n\nThe optional COLLATE clause may be used to specify a collation\nexplicitly. If given, the collation must one of the permitted\ncollations for charset_name.\n\ncharset_name and collation_name may be quoted or unquoted.\n\nThe default mapping can be restored by using a value of DEFAULT. The\ndefault depends on the server configuration.\n\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET NAMES produces an error. See\nhttps://dev.mysql.com/doc/refman/5.6/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/set-names.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/set-names.html'),(545,'SHOW',3,'SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\nSHOW AUTHORS\nSHOW {BINARY | MASTER} LOGS\nSHOW BINLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW CHARACTER SET [like_or_where]\nSHOW COLLATION [like_or_where]\nSHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where]\nSHOW CONTRIBUTORS\nSHOW CREATE DATABASE db_name\nSHOW CREATE EVENT event_name\nSHOW CREATE FUNCTION func_name\nSHOW CREATE PROCEDURE proc_name\nSHOW CREATE TABLE tbl_name\nSHOW CREATE TRIGGER trigger_name\nSHOW CREATE VIEW view_name\nSHOW DATABASES [like_or_where]\nSHOW ENGINE engine_name {STATUS | MUTEX}\nSHOW [STORAGE] ENGINES\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW EVENTS\nSHOW FUNCTION CODE func_name\nSHOW FUNCTION STATUS [like_or_where]\nSHOW GRANTS FOR user\nSHOW INDEX FROM tbl_name [FROM db_name]\nSHOW MASTER STATUS\nSHOW OPEN TABLES [FROM db_name] [like_or_where]\nSHOW PLUGINS\nSHOW PROCEDURE CODE proc_name\nSHOW PROCEDURE STATUS [like_or_where]\nSHOW PRIVILEGES\nSHOW [FULL] PROCESSLIST\nSHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n]\nSHOW PROFILES\nSHOW RELAYLOG EVENTS [IN \'log_name\'] [FROM pos] [LIMIT [offset,] row_count]\nSHOW SLAVE HOSTS\nSHOW SLAVE STATUS\nSHOW [GLOBAL | SESSION] STATUS [like_or_where]\nSHOW TABLE STATUS [FROM db_name] [like_or_where]\nSHOW [FULL] TABLES [FROM db_name] [like_or_where]\nSHOW TRIGGERS [FROM db_name] [like_or_where]\nSHOW [GLOBAL | SESSION] VARIABLES [like_or_where]\nSHOW WARNINGS [LIMIT [offset,] row_count]\n\nlike_or_where: {\n LIKE \'pattern\'\n | WHERE expr\n}\n\nIf the syntax for a given SHOW statement includes a LIKE \'pattern\'\npart, \'pattern\' is a string that can contain the SQL % and _ wildcard\ncharacters. The pattern is useful for restricting statement output to\nmatching values.\n\nSeveral SHOW statements also accept a WHERE clause that provides more\nflexibility in specifying which rows to display. See\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show.html'),(546,'SHOW AUTHORS',3,'Syntax:\nSHOW AUTHORS\n\nThe SHOW AUTHORS statement displays information about the people who\nwork on MySQL. For each author, it displays Name, Location, and Comment\nvalues.\n\nThis statement is removed as of MySQL 5.6.8.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-authors.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-authors.html'),(547,'SHOW BINARY LOGS',3,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-binary-logs.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-binary-logs.html'),(548,'SHOW MASTER LOGS',3,'Syntax:\nSHOW BINARY LOGS\nSHOW MASTER LOGS\n\nLists the binary log files on the server. This statement is used as\npart of the procedure described in [HELP PURGE BINARY LOGS], that shows\nhow to determine which logs can be purged.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-binary-logs.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-binary-logs.html'),(549,'SHOW BINLOG EVENTS',3,'Syntax:\nSHOW BINLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n\nShows the events in the binary log. If you do not specify \'log_name\',\nthe first binary log is displayed.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-binlog-events.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-binlog-events.html'),(550,'SHOW CHARACTER SET',3,'Syntax:\nSHOW CHARACTER SET\n [LIKE \'pattern\' | WHERE expr]\n\nThe SHOW CHARACTER SET statement shows all available character sets.\nThe LIKE clause, if present, indicates which character set names to\nmatch. The WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For\nexample:\n\nmysql> SHOW CHARACTER SET LIKE \'latin%\';\n+---------+-----------------------------+-------------------+--------+\n| Charset | Description | Default collation | Maxlen |\n+---------+-----------------------------+-------------------+--------+\n| latin1 | cp1252 West European | latin1_swedish_ci | 1 |\n| latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 |\n| latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 |\n| latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 |\n+---------+-----------------------------+-------------------+--------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-character-set.html'),(551,'SHOW COLLATION',3,'Syntax:\nSHOW COLLATION\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement lists collations supported by the server. By default,\nthe output from SHOW COLLATION includes all available collations. The\nLIKE clause, if present, indicates which collation names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For\nexample:\n\nmysql> SHOW COLLATION WHERE Charset = \'latin1\';\n+-------------------+---------+----+---------+----------+---------+\n| Collation | Charset | Id | Default | Compiled | Sortlen |\n+-------------------+---------+----+---------+----------+---------+\n| latin1_german1_ci | latin1 | 5 | | Yes | 1 |\n| latin1_swedish_ci | latin1 | 8 | Yes | Yes | 1 |\n| latin1_danish_ci | latin1 | 15 | | Yes | 1 |\n| latin1_german2_ci | latin1 | 31 | | Yes | 2 |\n| latin1_bin | latin1 | 47 | | Yes | 1 |\n| latin1_general_ci | latin1 | 48 | | Yes | 1 |\n| latin1_general_cs | latin1 | 49 | | Yes | 1 |\n| latin1_spanish_ci | latin1 | 94 | | Yes | 1 |\n+-------------------+---------+----+---------+----------+---------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-collation.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-collation.html'),(552,'SHOW COLUMNS',3,'Syntax:\nSHOW [FULL] {COLUMNS | FIELDS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. SHOW COLUMNS displays information only for\nthose columns for which you have some privilege.\n\nmysql> SHOW COLUMNS FROM City;\n+-------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+-------------+----------+------+-----+---------+----------------+\n| ID | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| CountryCode | char(3) | NO | MUL | | |\n| District | char(20) | NO | | | |\n| Population | int(11) | NO | | 0 | |\n+-------------+----------+------+-----+---------+----------------+\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese two statements are equivalent:\n\nSHOW COLUMNS FROM mytable FROM mydb;\nSHOW COLUMNS FROM mydb.mytable;\n\nThe optional FULL keyword causes the output to include the column\ncollation and comments, as well as the privileges you have for each\ncolumn.\n\nThe LIKE clause, if present, indicates which column names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nThe data types may differ from what you expect them to be based on a\nCREATE TABLE statement because MySQL sometimes changes data types when\nyou create or alter a table. The conditions under which this occurs are\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.6/en/silent-column-changes.html.\n\nSHOW COLUMNS displays the following values for each table column:\n\no Field\n\n The column name.\n\no Type\n\n The column data type.\n\no Collation\n\n The collation for nonbinary string columns, or NULL for other\n columns. This value is displayed only if you use the FULL keyword.\n\no Null\n\n The column nullability. The value is YES if NULL values can be stored\n in the column, NO if not.\n\no Key\n\n Whether the column is indexed:\n\n o If Key is empty, the column either is not indexed or is indexed\n only as a secondary column in a multiple-column, nonunique index.\n\n o If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\n o If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index permits multiple NULL values, but you can tell whether\n the column permits NULL by checking the Null field.)\n\n o If Key is MUL, the column is the first column of a nonunique index\n in which multiple occurrences of a given value are permitted within\n the column.\n\n If more than one of the Key values applies to a given column of a\n table, Key displays the one with the highest priority, in the order\n PRI, UNI, MUL.\n\n A UNIQUE index may be displayed as PRI if it cannot contain NULL\n values and there is no PRIMARY KEY in the table. A UNIQUE index may\n display as MUL if several columns form a composite UNIQUE index;\n although the combination of the columns is unique, each column can\n still hold multiple occurrences of a given value.\n\no Default\n\n The default value for the column. This is NULL if the column has an\n explicit default of NULL, or if the column definition includes no\n DEFAULT clause.\n\no Extra\n\n Any additional information that is available about a given column.\n The value is nonempty in these cases: auto_increment for columns that\n have the AUTO_INCREMENT attribute; on update CURRENT_TIMESTAMP for\n TIMESTAMP or DATETIME columns that have the ON UPDATE\n CURRENT_TIMESTAMP attribute.\n\no Privileges\n\n The privileges you have for the column. This value is displayed only\n if you use the FULL keyword.\n\no Comment\n\n Any comment included in the column definition. This value is\n displayed only if you use the FULL keyword.\n\nTable column information is also available from the INFORMATION_SCHEMA\nCOLUMNS table. See\nhttps://dev.mysql.com/doc/refman/5.6/en/columns-table.html.\n\nYou can list a table\'s columns with the mysqlshow db_name tbl_name\ncommand.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee https://dev.mysql.com/doc/refman/5.6/en/describe.html.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-columns.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-columns.html'),(553,'SHOW FIELDS',3,'Syntax:\nSHOW [FULL] {COLUMNS | FIELDS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW COLUMNS displays information about the columns in a given table.\nIt also works for views. SHOW COLUMNS displays information only for\nthose columns for which you have some privilege.\n\nmysql> SHOW COLUMNS FROM City;\n+-------------+----------+------+-----+---------+----------------+\n| Field | Type | Null | Key | Default | Extra |\n+-------------+----------+------+-----+---------+----------------+\n| ID | int(11) | NO | PRI | NULL | auto_increment |\n| Name | char(35) | NO | | | |\n| CountryCode | char(3) | NO | MUL | | |\n| District | char(20) | NO | | | |\n| Population | int(11) | NO | | 0 | |\n+-------------+----------+------+-----+---------+----------------+\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese two statements are equivalent:\n\nSHOW COLUMNS FROM mytable FROM mydb;\nSHOW COLUMNS FROM mydb.mytable;\n\nThe optional FULL keyword causes the output to include the column\ncollation and comments, as well as the privileges you have for each\ncolumn.\n\nThe LIKE clause, if present, indicates which column names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nThe data types may differ from what you expect them to be based on a\nCREATE TABLE statement because MySQL sometimes changes data types when\nyou create or alter a table. The conditions under which this occurs are\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.6/en/silent-column-changes.html.\n\nSHOW COLUMNS displays the following values for each table column:\n\no Field\n\n The column name.\n\no Type\n\n The column data type.\n\no Collation\n\n The collation for nonbinary string columns, or NULL for other\n columns. This value is displayed only if you use the FULL keyword.\n\no Null\n\n The column nullability. The value is YES if NULL values can be stored\n in the column, NO if not.\n\no Key\n\n Whether the column is indexed:\n\n o If Key is empty, the column either is not indexed or is indexed\n only as a secondary column in a multiple-column, nonunique index.\n\n o If Key is PRI, the column is a PRIMARY KEY or is one of the columns\n in a multiple-column PRIMARY KEY.\n\n o If Key is UNI, the column is the first column of a UNIQUE index. (A\n UNIQUE index permits multiple NULL values, but you can tell whether\n the column permits NULL by checking the Null field.)\n\n o If Key is MUL, the column is the first column of a nonunique index\n in which multiple occurrences of a given value are permitted within\n the column.\n\n If more than one of the Key values applies to a given column of a\n table, Key displays the one with the highest priority, in the order\n PRI, UNI, MUL.\n\n A UNIQUE index may be displayed as PRI if it cannot contain NULL\n values and there is no PRIMARY KEY in the table. A UNIQUE index may\n display as MUL if several columns form a composite UNIQUE index;\n although the combination of the columns is unique, each column can\n still hold multiple occurrences of a given value.\n\no Default\n\n The default value for the column. This is NULL if the column has an\n explicit default of NULL, or if the column definition includes no\n DEFAULT clause.\n\no Extra\n\n Any additional information that is available about a given column.\n The value is nonempty in these cases: auto_increment for columns that\n have the AUTO_INCREMENT attribute; on update CURRENT_TIMESTAMP for\n TIMESTAMP or DATETIME columns that have the ON UPDATE\n CURRENT_TIMESTAMP attribute.\n\no Privileges\n\n The privileges you have for the column. This value is displayed only\n if you use the FULL keyword.\n\no Comment\n\n Any comment included in the column definition. This value is\n displayed only if you use the FULL keyword.\n\nTable column information is also available from the INFORMATION_SCHEMA\nCOLUMNS table. See\nhttps://dev.mysql.com/doc/refman/5.6/en/columns-table.html.\n\nYou can list a table\'s columns with the mysqlshow db_name tbl_name\ncommand.\n\nThe DESCRIBE statement provides information similar to SHOW COLUMNS.\nSee https://dev.mysql.com/doc/refman/5.6/en/describe.html.\n\nThe SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements\nalso provide information about tables. See [HELP SHOW].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-columns.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-columns.html'),(554,'SHOW CONTRIBUTORS',3,'Syntax:\nSHOW CONTRIBUTORS\n\nThe SHOW CONTRIBUTORS statement displays information about the people\nwho contribute to MySQL source or to causes that we support. For each\ncontributor, it displays Name, Location, and Comment values.\n\nThis statement is removed as of MySQL 5.6.8.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-contributors.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-contributors.html'),(555,'SHOW CREATE DATABASE',3,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n\nShows the CREATE DATABASE statement that creates the named database. If\nthe SHOW statement includes an IF NOT EXISTS clause, the output too\nincludes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE\nDATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','https://dev.mysql.com/doc/refman/5.6/en/show-create-database.html'),(556,'SHOW CREATE SCHEMA',3,'Syntax:\nSHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n\nShows the CREATE DATABASE statement that creates the named database. If\nthe SHOW statement includes an IF NOT EXISTS clause, the output too\nincludes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE\nDATABASE.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-database.html\n\n','mysql> SHOW CREATE DATABASE test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n\nmysql> SHOW CREATE SCHEMA test\\G\n*************************** 1. row ***************************\n Database: test\nCreate Database: CREATE DATABASE `test`\n /*!40100 DEFAULT CHARACTER SET latin1 */\n','https://dev.mysql.com/doc/refman/5.6/en/show-create-database.html'),(557,'SHOW CREATE EVENT',3,'Syntax:\nSHOW CREATE EVENT event_name\n\nThis statement displays the CREATE EVENT statement needed to re-create\na given event. It requires the EVENT privilege for the database from\nwhich the event is to be shown. For example (using the same event\ne_daily defined and then altered in [HELP SHOW EVENTS]):\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-event.html\n\n','mysql> SHOW CREATE EVENT myschema.e_daily\\G\n*************************** 1. row ***************************\n Event: e_daily\n sql_mode: NO_ENGINE_SUBSTITUTION\n time_zone: SYSTEM\n Create Event: CREATE DEFINER=`jon`@`ghidora` EVENT `e_daily`\n ON SCHEDULE EVERY 1 DAY\n STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR\n ON COMPLETION NOT PRESERVE\n ENABLE\n COMMENT \'Saves total number of sessions then\n clears the table each day\'\n DO BEGIN\n INSERT INTO site_activity.totals (time, total)\n SELECT CURRENT_TIMESTAMP, COUNT(*)\n FROM site_activity.sessions;\n DELETE FROM site_activity.sessions;\n END\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.6/en/show-create-event.html'),(558,'SHOW CREATE FUNCTION',3,'Syntax:\nSHOW CREATE FUNCTION func_name\n\nThis statement is similar to SHOW CREATE PROCEDURE but for stored\nfunctions. See [HELP SHOW CREATE PROCEDURE].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-function.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-create-function.html'),(559,'SHOW CREATE PROCEDURE',3,'Syntax:\nSHOW CREATE PROCEDURE proc_name\n\nThis statement is a MySQL extension. It returns the exact string that\ncan be used to re-create the named stored procedure. A similar\nstatement, SHOW CREATE FUNCTION, displays information about stored\nfunctions (see [HELP SHOW CREATE FUNCTION]).\n\nTo use either statement, you must be the user named in the routine\nDEFINER clause or have SELECT access to the mysql.proc table. If you do\nnot have privileges for the routine itself, the value displayed for the\nCreate Procedure or Create Function field will be NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html\n\n','mysql> SHOW CREATE PROCEDURE test.citycount\\G\n*************************** 1. row ***************************\n Procedure: citycount\n sql_mode: STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION\n Create Procedure: CREATE DEFINER=`me`@`localhost`\n PROCEDURE `citycount`(IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW CREATE FUNCTION test.hello\\G\n*************************** 1. row ***************************\n Function: hello\n sql_mode: STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION\n Create Function: CREATE DEFINER=`me`@`localhost`\n FUNCTION `hello`(s CHAR(20))\n RETURNS char(50) CHARSET latin1\n DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\')\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html'),(560,'SHOW CREATE TABLE',3,'Syntax:\nSHOW CREATE TABLE tbl_name\n\nShows the CREATE TABLE statement that creates the named table. To use\nthis statement, you must have some privilege for the table. This\nstatement also works with views.\n\nSHOW CREATE TABLE quotes table and column names according to the value\nof the sql_quote_show_create option. See\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nWhen altering the storage engine of a table, table options that are not\napplicable to the new storage engine are retained in the table\ndefinition to enable reverting the table with its previously defined\noptions to the original storage engine, if necessary. For example, when\nchanging the storage engine from InnoDB to MyISAM, InnoDB-specific\noptions such as ROW_FORMAT=COMPACT are retained.\n\nWhen creating a table with strict mode disabled, the storage engine\'s\ndefault row format is used if the specified row format is not\nsupported. The actual row format of the table is reported in the\nRow_format column in response to SHOW TABLE STATUS. SHOW CREATE TABLE\nshows the row format that was specified in the CREATE TABLE statement.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-table.html\n\n','mysql> SHOW CREATE TABLE t\\G\n*************************** 1. row ***************************\n Table: t\nCreate Table: CREATE TABLE `t` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n `s` char(60) DEFAULT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=latin1\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) ROW_FORMAT=COMPACT ENGINE=InnoDB;\nmysql> ALTER TABLE t1 ENGINE=MyISAM;\nmysql> SHOW CREATE TABLE t1\\G\n*************************** 1. row ***************************\n Table: t1\nCreate Table: CREATE TABLE `t1` (\n `c1` int(11) NOT NULL,\n PRIMARY KEY (`c1`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT\n','https://dev.mysql.com/doc/refman/5.6/en/show-create-table.html'),(561,'SHOW CREATE TRIGGER',3,'Syntax:\nSHOW CREATE TRIGGER trigger_name\n\nThis statement shows the CREATE TRIGGER statement that creates the\nnamed trigger. This statement requires the TRIGGER privilege for the\ntable associated with the trigger.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html'),(562,'SHOW CREATE VIEW',3,'Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows the CREATE VIEW statement that creates the named\nview.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-create-view.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-create-view.html'),(563,'SHOW DATABASES',3,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttps://dev.mysql.com/doc/refman/5.6/en/schemata-table.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-databases.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-databases.html'),(564,'SHOW SCHEMAS',3,'Syntax:\nSHOW {DATABASES | SCHEMAS}\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW DATABASES lists the databases on the MySQL server host. SHOW\nSCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present,\nindicates which database names to match. The WHERE clause can be given\nto select rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nYou see only those databases for which you have some kind of privilege,\nunless you have the global SHOW DATABASES privilege. You can also get\nthis list using the mysqlshow command.\n\nIf the server was started with the --skip-show-database option, you\ncannot use this statement at all unless you have the SHOW DATABASES\nprivilege.\n\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttps://dev.mysql.com/doc/refman/5.6/en/schemata-table.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-databases.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-databases.html'),(565,'SHOW ENGINE',3,'Syntax:\nSHOW ENGINE engine_name {STATUS | MUTEX}\n\nSHOW ENGINE displays operational information about a storage engine. It\nrequires the PROCESS privilege. The statement has these variants:\n\nSHOW ENGINE INNODB STATUS\nSHOW ENGINE INNODB MUTEX\nSHOW ENGINE {NDB | NDBCLUSTER} STATUS\nSHOW ENGINE PERFORMANCE_SCHEMA STATUS\n\nSHOW ENGINE INNODB STATUS displays extensive information from the\nstandard InnoDB Monitor about the state of the InnoDB storage engine.\nFor information about the standard monitor and other InnoDB Monitors\nthat provide information about InnoDB processing, see\nhttps://dev.mysql.com/doc/refman/5.6/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex and rw-lock statistics.\n\n*Note*:\n\nMost SHOW ENGINE INNODB MUTEX output is removed in 5.6.14. SHOW ENGINE\nINNODB MUTEX output is removed entirely in MySQL 5.7.2. InnoDB mutexes\ncan be monitored using Performance Schema tables. For an example, see\nhttps://dev.mysql.com/doc/refman/5.6/en/monitor-innodb-mutex-waits-perf\normance-schema.html.\n\no Type\n\n Always InnoDB.\n\no Name\n\n The source file where the mutex is implemented, and the line number\n in the file where the mutex is created. The line number is specific\n to your version of MySQL.\n\no Status\n\n The mutex status. This field displays several values if WITH_DEBUG\n was defined at MySQL compilation time. If WITH_DEBUG was not defined,\n the statement displays only the os_waits value. In the latter case\n (without WITH_DEBUG), the information on which the output is based is\n insufficient to distinguish regular mutexes and mutexes that protect\n rw-locks (which permit multiple readers or a single writer).\n Consequently, the output may appear to contain multiple rows for the\n same mutex.\n\n o count indicates how many times the mutex was requested.\n\n o spin_waits indicates how many times the spinlock had to run.\n\n o spin_rounds indicates the number of spinlock rounds. (spin_rounds\n divided by spin_waits provides the average round count.)\n\n o os_waits indicates the number of operating system waits. This\n occurs when the spinlock did not work (the mutex was not locked\n during the spinlock and it was necessary to yield to the operating\n system and wait).\n\n o os_yields indicates the number of times a thread trying to lock a\n mutex gave up its timeslice and yielded to the operating system (on\n the presumption that permitting other threads to run will free the\n mutex so that it can be locked).\n\n o os_wait_times indicates the amount of time (in ms) spent in\n operating system waits. In MySQL 5.6 timing is disabled and this\n value is always 0.\n\nSHOW ENGINE INNODB MUTEX does not list mutexes and rw-locks for each\nbuffer pool block, as the amount of output would be overwhelming on\nsystems with a large buffer pool. SHOW ENGINE INNODB MUTEX does,\nhowever, print aggregate BUF_BLOCK_MUTEX spin, wait, and call values\nfor buffer pool block mutexes and rw-locks. SHOW ENGINE INNODB MUTEX\nalso does not list any mutexes or rw-locks that have never been waited\non (os_waits=0). Thus, SHOW ENGINE INNODB MUTEX only displays\ninformation about mutexes and rw-locks outside of the buffer pool that\nhave caused at least one OS-level wait.\n\nSHOW ENGINE INNODB MUTEX information can be used to diagnose system\nproblems. For example, large values of spin_waits and spin_rounds may\nindicate scalability problems.\n\nUse SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal\noperation of the Performance Schema code:\n\nmysql> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\\G\n...\n*************************** 3. row ***************************\n Type: performance_schema\n Name: events_waits_history.row_size\nStatus: 76\n*************************** 4. row ***************************\n Type: performance_schema\n Name: events_waits_history.row_count\nStatus: 10000\n*************************** 5. row ***************************\n Type: performance_schema\n Name: events_waits_history.memory\nStatus: 760000\n...\n*************************** 57. row ***************************\n Type: performance_schema\n Name: performance_schema.memory\nStatus: 26459600\n...\n\nThis statement is intended to help the DBA understand the effects that\ndifferent Performance Schema options have on memory requirements.\n\nName values consist of two parts, which name an internal buffer and a\nbuffer attribute, respectively. Interpret buffer names as follows:\n\no An internal buffer that is not exposed as a table is named within\n parentheses. Examples: (pfs_cond_class).row_size,\n (pfs_mutex_class).memory.\n\no An internal buffer that is exposed as a table in the\n performance_schema database is named after the table, without\n parentheses. Examples: events_waits_history.row_size,\n mutex_instances.row_count.\n\no A value that applies to the Performance Schema as a whole begins with\n performance_schema. Example: performance_schema.memory.\n\nBuffer attributes have these meanings:\n\no row_size is the size of the internal record used by the\n implementation, such as the size of a row in a table. row_size values\n cannot be changed.\n\no row_count is the number of internal records, such as the number of\n rows in a table. row_count values can be changed using Performance\n Schema configuration options.\n\no For a table, tbl_name.memory is the product of row_size and\n row_count. For the Performance Schema as a whole,\n performance_schema.memory is the sum of all the memory used (the sum\n of all other memory values).\n\nIn some cases, there is a direct relationship between a Performance\nSchema configuration parameter and a SHOW ENGINE value. For example,\nevents_waits_history_long.row_count corresponds to\nperformance_schema_events_waits_history_long_size. In other cases, the\nrelationship is more complex. For example,\nevents_waits_history.row_count corresponds to\nperformance_schema_events_waits_history_size (the number of rows per\nthread) multiplied by performance_schema_max_thread_instances ( the\nnumber of threads).\n\nSHOW ENGINE NDB STATUS If the server has the NDB storage engine\nenabled, SHOW ENGINE NDB STATUS displays cluster status information\nsuch as the number of connected data nodes, the cluster connectstring,\nand cluster binary log epochs, as well as counts of various Cluster API\nobjects created by the MySQL Server when connected to the cluster.\nSample output from this statement is shown here:\n\nmysql> SHOW ENGINE NDB STATUS;\n+------------+-----------------------+--------------------------------------------------+\n| Type | Name | Status |\n+------------+-----------------------+--------------------------------------------------+\n| ndbcluster | connection | cluster_node_id=7,\n connected_host=198.51.100.103, connected_port=1186, number_of_data_nodes=4,\n number_of_ready_data_nodes=3, connect_count=0 |\n| ndbcluster | NdbTransaction | created=6, free=0, sizeof=212 |\n| ndbcluster | NdbOperation | created=8, free=8, sizeof=660 |\n| ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744 |\n| ndbcluster | NdbIndexOperation | created=0, free=0, sizeof=664 |\n| ndbcluster | NdbRecAttr | created=1285, free=1285, sizeof=60 |\n| ndbcluster | NdbApiSignal | created=16, free=16, sizeof=136 |\n| ndbcluster | NdbLabel | created=0, free=0, sizeof=196 |\n| ndbcluster | NdbBranch | created=0, free=0, sizeof=24 |\n| ndbcluster | NdbSubroutine | created=0, free=0, sizeof=68 |\n| ndbcluster | NdbCall | created=0, free=0, sizeof=16 |\n| ndbcluster | NdbBlob | created=1, free=1, sizeof=264 |\n| ndbcluster | NdbReceiver | created=4, free=0, sizeof=68 |\n| ndbcluster | binlog | latest_epoch=155467, latest_trans_epoch=148126,\n latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,\n latest_applied_binlog_epoch=0 |\n+------------+-----------------------+--------------------------------------------------+\n\nThe Status column in each of these rows provides information about the\nMySQL server\'s connection to the cluster and about the cluster binary\nlog\'s status, respectively. The Status information is in the form of\ncomma-delimited set of name/value pairs.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-engine.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-engine.html'),(566,'SHOW ENGINES',3,'Syntax:\nSHOW [STORAGE] ENGINES\n\nSHOW ENGINES displays status information about the server\'s storage\nengines. This is particularly useful for checking whether a storage\nengine is supported, or to see what the default engine is.\n\nFor information about MySQL storage engines, see\nhttps://dev.mysql.com/doc/refman/5.6/en/innodb-storage-engine.html, and\nhttps://dev.mysql.com/doc/refman/5.6/en/storage-engines.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-engines.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-engines.html'),(567,'SHOW ERRORS',3,'Syntax:\nSHOW ERRORS [LIMIT [offset,] row_count]\nSHOW COUNT(*) ERRORS\n\nSHOW ERRORS is a diagnostic statement that is similar to SHOW WARNINGS,\nexcept that it displays information only for errors, rather than for\nerrors, warnings, and notes.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttps://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nThe SHOW COUNT(*) ERRORS statement displays the number of errors. You\ncan also retrieve this number from the error_count variable:\n\nSHOW COUNT(*) ERRORS;\nSELECT @@error_count;\n\nSHOW ERRORS and error_count apply only to errors, not warnings or\nnotes. In other respects, they are similar to SHOW WARNINGS and\nwarning_count. In particular, SHOW ERRORS cannot display information\nfor more than max_error_count messages, and error_count can exceed the\nvalue of max_error_count if the number of errors exceeds\nmax_error_count.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-errors.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-errors.html'),(568,'SHOW EVENTS',3,'Syntax:\nSHOW EVENTS\n [{FROM | IN} schema_name]\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement displays information about Event Manager events, which\nare discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/event-scheduler.html. It\nrequires the EVENT privilege for the database from which the events are\nto be shown.\n\nIn its simplest form, SHOW EVENTS lists all of the events in the\ncurrent schema:\n\nmysql> SELECT CURRENT_USER(), SCHEMA();\n+----------------+----------+\n| CURRENT_USER() | SCHEMA() |\n+----------------+----------+\n| jon@ghidora | myschema |\n+----------------+----------+\n1 row in set (0.00 sec)\n\nmysql> SHOW EVENTS\\G\n*************************** 1. row ***************************\n Db: myschema\n Name: e_daily\n Definer: jon@ghidora\n Time zone: SYSTEM\n Type: RECURRING\n Execute at: NULL\n Interval value: 1\n Interval field: DAY\n Starts: 2018-08-08 11:06:34\n Ends: NULL\n Status: ENABLED\n Originator: 1\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nTo see events for a specific schema, use the FROM clause. For example,\nto see events for the test schema, use the following statement:\n\nSHOW EVENTS FROM test;\n\nThe LIKE clause, if present, indicates which event names to match. The\nWHERE clause can be given to select rows using more general conditions,\nas discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-events.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-events.html'),(569,'SHOW FUNCTION CODE',3,'Syntax:\nSHOW FUNCTION CODE func_name\n\nThis statement is similar to SHOW PROCEDURE CODE but for stored\nfunctions. See [HELP SHOW PROCEDURE CODE].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-function-code.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-function-code.html'),(570,'SHOW FUNCTION STATUS',3,'Syntax:\nSHOW FUNCTION STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is similar to SHOW PROCEDURE STATUS but for stored\nfunctions. See [HELP SHOW PROCEDURE STATUS].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-function-status.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-function-status.html'),(571,'SHOW GRANTS',3,'Syntax:\nSHOW GRANTS [FOR user]\n\nThis statement displays the privileges that are assigned to a MySQL\nuser account, in the form of GRANT statements that must be executed to\nduplicate the privilege assignments.\n\nSHOW GRANTS requires the SELECT privilege for the mysql system\ndatabase, except to display privileges for the current user. For output\nthat includes an IDENTIFIED BY PASSWORD clause displaying an account\npassword hash value, the SUPER privilege is required to see the actual\nhash value. Otherwise, the value displays as .\n\nTo name the account for SHOW GRANTS, use the same format as for the\nGRANT statement (for example, \'jeffrey\'@\'localhost\'):\n\nmysql> SHOW GRANTS FOR \'jeffrey\'@\'localhost\';\n+------------------------------------------------------------------+\n| Grants for jeffrey@localhost |\n+------------------------------------------------------------------+\n| GRANT USAGE ON *.* TO `jeffrey`@`localhost` |\n| GRANT SELECT, INSERT, UPDATE ON `db1`.* TO `jeffrey`@`localhost` |\n+------------------------------------------------------------------+\n\nThe host part, if omitted, defaults to \'%\'. For additional information\nabout specifying account names, see\nhttps://dev.mysql.com/doc/refman/5.6/en/account-names.html.\n\nTo display the privileges granted to the current user (the account you\nare using to connect to the server), you can use any of the following\nstatements:\n\nSHOW GRANTS;\nSHOW GRANTS FOR CURRENT_USER;\nSHOW GRANTS FOR CURRENT_USER();\n\nIf SHOW GRANTS FOR CURRENT_USER (or any equivalent syntax) is used in\ndefiner context, such as within a stored procedure that executes with\ndefiner rather than invoker privileges, the grants displayed are those\nof the definer and not the invoker.\n\nSHOW GRANTS does not display privileges that are available to the named\naccount but are granted to a different account. For example, if an\nanonymous account exists, the named account might be able to use its\nprivileges, but SHOW GRANTS does not display them.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-grants.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-grants.html'),(572,'SHOW INDEX',3,'Syntax:\nSHOW {INDEX | INDEXES | KEYS}\n {FROM | IN} tbl_name\n [{FROM | IN} db_name]\n [WHERE expr]\n\nSHOW INDEX returns table index information. The format resembles that\nof the SQLStatistics call in ODBC. This statement requires some\nprivilege for any column in the table.\n\nmysql> SHOW INDEX FROM City\\G\n*************************** 1. row ***************************\n Table: city\n Non_unique: 0\n Key_name: PRIMARY\n Seq_in_index: 1\n Column_name: ID\n Collation: A\n Cardinality: 4188\n Sub_part: NULL\n Packed: NULL\n Null:\n Index_type: BTREE\n Comment:\nIndex_comment:\n*************************** 2. row ***************************\n Table: city\n Non_unique: 1\n Key_name: CountryCode\n Seq_in_index: 1\n Column_name: CountryCode\n Collation: A\n Cardinality: 4188\n Sub_part: NULL\n Packed: NULL\n Null:\n Index_type: BTREE\n Comment:\nIndex_comment:\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese two statements are equivalent:\n\nSHOW INDEX FROM mytable FROM mydb;\nSHOW INDEX FROM mydb.mytable;\n\nThe WHERE clause can be given to select rows using more general\nconditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nSHOW INDEX returns the following fields:\n\no Table\n\n The name of the table.\n\no Non_unique\n\n 0 if the index cannot contain duplicates, 1 if it can.\n\no Key_name\n\n The name of the index. If the index is the primary key, the name is\n always PRIMARY.\n\no Seq_in_index\n\n The column sequence number in the index, starting with 1.\n\no Column_name\n\n The name of the column.\n\no Collation\n\n How the column is sorted in the index. This can have values A\n (ascending) or NULL (not sorted).\n\no Cardinality\n\n An estimate of the number of unique values in the index. To update\n this number, run ANALYZE TABLE or (for MyISAM tables) myisamchk -a.\n\n Cardinality is counted based on statistics stored as integers, so the\n value is not necessarily exact even for small tables. The higher the\n cardinality, the greater the chance that MySQL uses the index when\n doing joins.\n\no Sub_part\n\n The index prefix. That is, the number of indexed characters if the\n column is only partly indexed, NULL if the entire column is indexed.\n\n *Note*:\n\n Prefix limits are measured in bytes. However, prefix lengths for\n index specifications in CREATE TABLE, ALTER TABLE, and CREATE INDEX\n statements are interpreted as number of characters for nonbinary\n string types (CHAR, VARCHAR, TEXT) and number of bytes for binary\n string types (BINARY, VARBINARY, BLOB). Take this into account when\n specifying a prefix length for a nonbinary string column that uses a\n multibyte character set.\n\n For additional information about index prefixes, see\n https://dev.mysql.com/doc/refman/5.6/en/column-indexes.html, and\n [HELP CREATE INDEX].\n\no Packed\n\n Indicates how the key is packed. NULL if it is not.\n\no Null\n\n Contains YES if the column may contain NULL values and \'\' if not.\n\no Index_type\n\n The index method used (BTREE, FULLTEXT, HASH, RTREE).\n\no Comment\n\n Information about the index not described in its own column, such as\n disabled if the index is disabled.\n\no Index_comment\n\n Any comment provided for the index with a COMMENT attribute when the\n index was created.\n\nInformation about table indexes is also available from the\nINFORMATION_SCHEMA STATISTICS table. See\nhttps://dev.mysql.com/doc/refman/5.6/en/statistics-table.html.\n\nYou can list a table\'s indexes with the mysqlshow -k db_name tbl_name\ncommand.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-index.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-index.html'),(573,'SHOW MASTER STATUS',3,'Syntax:\nSHOW MASTER STATUS\n\nThis statement provides status information about the binary log files\nof the master. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nExample:\n\nmysql> SHOW MASTER STATUS\\G\n*************************** 1. row ***************************\n File: master-bin.000002\n Position: 1307\n Binlog_Do_DB: test\n Binlog_Ignore_DB: manual, mysql\nExecuted_Gtid_Set: 3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\n1 row in set (0.00 sec)\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-master-status.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-master-status.html'),(574,'SHOW OPEN TABLES',3,'Syntax:\nSHOW OPEN TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open\nin the table cache. See\nhttps://dev.mysql.com/doc/refman/5.6/en/table-cache.html. The FROM\nclause, if present, restricts the tables shown to those present in the\ndb_name database. The LIKE clause, if present, indicates which table\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-open-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-open-tables.html'),(575,'SHOW PLUGINS',3,'Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins.\n\nExample of SHOW PLUGINS output:\n\nmysql> SHOW PLUGINS\\G\n*************************** 1. row ***************************\n Name: binlog\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 2. row ***************************\n Name: CSV\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 3. row ***************************\n Name: MEMORY\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n*************************** 4. row ***************************\n Name: MyISAM\n Status: ACTIVE\n Type: STORAGE ENGINE\nLibrary: NULL\nLicense: GPL\n...\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-plugins.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-plugins.html'),(576,'SHOW PRIVILEGES',3,'Syntax:\nSHOW PRIVILEGES\n\nSHOW PRIVILEGES shows the list of system privileges that the MySQL\nserver supports. The exact list of privileges depends on the version of\nyour server.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-privileges.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-privileges.html'),(577,'SHOW PROCEDURE CODE',3,'Syntax:\nSHOW PROCEDURE CODE proc_name\n\nThis statement is a MySQL extension that is available only for servers\nthat have been built with debugging support. It displays a\nrepresentation of the internal implementation of the named stored\nprocedure. A similar statement, SHOW FUNCTION CODE, displays\ninformation about stored functions (see [HELP SHOW FUNCTION CODE]).\n\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nIf the named routine is available, each statement produces a result\nset. Each row in the result set corresponds to one \"instruction\" in the\nroutine. The first column is Pos, which is an ordinal number beginning\nwith 0. The second column is Instruction, which contains an SQL\nstatement (usually changed from the original source), or a directive\nwhich has meaning only to the stored-routine handler.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-procedure-code.html\n\n','mysql> DELIMITER //\nmysql> CREATE PROCEDURE p1 ()\n BEGIN\n DECLARE fanta INT DEFAULT 55;\n DROP TABLE t2;\n LOOP\n INSERT INTO t3 VALUES (fanta);\n END LOOP;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROCEDURE CODE p1//\n+-----+----------------------------------------+\n| Pos | Instruction |\n+-----+----------------------------------------+\n| 0 | set fanta@0 55 |\n| 1 | stmt 9 \"DROP TABLE t2\" |\n| 2 | stmt 5 \"INSERT INTO t3 VALUES (fanta)\" |\n| 3 | jump 2 |\n+-----+----------------------------------------+\n4 rows in set (0.00 sec)\n\nmysql> CREATE FUNCTION test.hello (s CHAR(20))\n RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SHOW FUNCTION CODE test.hello;\n+-----+---------------------------------------+\n| Pos | Instruction |\n+-----+---------------------------------------+\n| 0 | freturn 254 concat(\'Hello, \',s@0,\'!\') |\n+-----+---------------------------------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/show-procedure-code.html'),(578,'SHOW PROCEDURE STATUS',3,'Syntax:\nSHOW PROCEDURE STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement is a MySQL extension. It returns characteristics of a\nstored procedure, such as the database, name, type, creator, creation\nand modification dates, and character set information. A similar\nstatement, SHOW FUNCTION STATUS, displays information about stored\nfunctions (see [HELP SHOW FUNCTION STATUS]).\n\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\n\nThe LIKE clause, if present, indicates which procedure or function\nnames to match. The WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-procedure-status.html\n\n','mysql> SHOW PROCEDURE STATUS LIKE \'sp1\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: sp1\n Type: PROCEDURE\n Definer: testuser@localhost\n Modified: 2018-08-08 13:54:11\n Created: 2018-08-08 13:54:11\n Security_type: DEFINER\n Comment:\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW FUNCTION STATUS LIKE \'hello\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: hello\n Type: FUNCTION\n Definer: testuser@localhost\n Modified: 2020-03-10 11:14:27\n Created: 2020-03-10 11:14:27\n Security_type: DEFINER\n Comment: \ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.6/en/show-procedure-status.html'),(579,'SHOW PROCESSLIST',3,'Syntax:\nSHOW [FULL] PROCESSLIST\n\nSHOW PROCESSLIST shows which threads are running. If you have the\nPROCESS privilege, you can see all threads. Otherwise, you can see only\nyour own threads (that is, threads associated with the MySQL account\nthat you are using). If you do not use the FULL keyword, only the first\n100 characters of each statement are shown in the Info field.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-processlist.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-processlist.html'),(580,'SHOW PROFILE',3,'Syntax:\nSHOW PROFILE [type [, type] ... ]\n [FOR QUERY n]\n [LIMIT row_count [OFFSET offset]]\n\ntype: {\n ALL\n | BLOCK IO\n | CONTEXT SWITCHES\n | CPU\n | IPC\n | MEMORY\n | PAGE FAULTS\n | SOURCE\n | SWAPS\n}\n\nThe SHOW PROFILE and SHOW PROFILES statements display profiling\ninformation that indicates resource usage for statements executed\nduring the course of the current session.\n\n*Note*:\n\nThese statements are deprecated as of MySQL 5.6.7 and will be removed\nin a future MySQL release. Use the Performance Schema instead; see\nhttps://dev.mysql.com/doc/refman/5.6/en/performance-schema-query-profil\ning.html.\n\nTo control profiling, use the profiling session variable, which has a\ndefault value of 0 (OFF). Enable profiling by setting profiling to 1 or\nON:\n\nmysql> SET profiling = 1;\n\nSHOW PROFILES displays a list of the most recent statements sent to the\nserver. The size of the list is controlled by the\nprofiling_history_size session variable, which has a default value of\n15. The maximum value is 100. Setting the value to 0 has the practical\neffect of disabling profiling.\n\nAll statements are profiled except SHOW PROFILE and SHOW PROFILES, so\nyou will find neither of those statements in the profile list.\nMalformed statements are profiled. For example, SHOW PROFILING is an\nillegal statement, and a syntax error occurs if you try to execute it,\nbut it will show up in the profiling list.\n\nSHOW PROFILE displays detailed information about a single statement.\nWithout the FOR QUERY n clause, the output pertains to the most\nrecently executed statement. If FOR QUERY n is included, SHOW PROFILE\ndisplays information for statement n. The values of n correspond to the\nQuery_ID values displayed by SHOW PROFILES.\n\nThe LIMIT row_count clause may be given to limit the output to\nrow_count rows. If LIMIT is given, OFFSET offset may be added to begin\nthe output offset rows into the full set of rows.\n\nBy default, SHOW PROFILE displays Status and Duration columns. The\nStatus values are like the State values displayed by SHOW PROCESSLIST,\nalthough there might be some minor differences in interpretion for the\ntwo statements for some status values (see\nhttps://dev.mysql.com/doc/refman/5.6/en/thread-information.html).\n\nOptional type values may be specified to display specific additional\ntypes of information:\n\no ALL displays all information\n\no BLOCK IO displays counts for block input and output operations\n\no CONTEXT SWITCHES displays counts for voluntary and involuntary\n context switches\n\no CPU displays user and system CPU usage times\n\no IPC displays counts for messages sent and received\n\no MEMORY is not currently implemented\n\no PAGE FAULTS displays counts for major and minor page faults\n\no SOURCE displays the names of functions from the source code, together\n with the name and line number of the file in which the function\n occurs\n\no SWAPS displays swap counts\n\nProfiling is enabled per session. When a session ends, its profiling\ninformation is lost.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-profile.html\n\n','mysql> SELECT @@profiling;\n+-------------+\n| @@profiling |\n+-------------+\n| 0 |\n+-------------+\n1 row in set (0.00 sec)\n\nmysql> SET profiling = 1;\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> DROP TABLE IF EXISTS t1;\nQuery OK, 0 rows affected, 1 warning (0.00 sec)\n\nmysql> CREATE TABLE T1 (id INT);\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> SHOW PROFILES;\n+----------+----------+--------------------------+\n| Query_ID | Duration | Query |\n+----------+----------+--------------------------+\n| 0 | 0.000088 | SET PROFILING = 1 |\n| 1 | 0.000136 | DROP TABLE IF EXISTS t1 |\n| 2 | 0.011947 | CREATE TABLE t1 (id INT) |\n+----------+----------+--------------------------+\n3 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE;\n+----------------------+----------+\n| Status | Duration |\n+----------------------+----------+\n| checking permissions | 0.000040 |\n| creating table | 0.000056 |\n| After create | 0.011363 |\n| query end | 0.000375 |\n| freeing items | 0.000089 |\n| logging slow query | 0.000019 |\n| cleaning up | 0.000005 |\n+----------------------+----------+\n7 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE FOR QUERY 1;\n+--------------------+----------+\n| Status | Duration |\n+--------------------+----------+\n| query end | 0.000107 |\n| freeing items | 0.000008 |\n| logging slow query | 0.000015 |\n| cleaning up | 0.000006 |\n+--------------------+----------+\n4 rows in set (0.00 sec)\n\nmysql> SHOW PROFILE CPU FOR QUERY 2;\n+----------------------+----------+----------+------------+\n| Status | Duration | CPU_user | CPU_system |\n+----------------------+----------+----------+------------+\n| checking permissions | 0.000040 | 0.000038 | 0.000002 |\n| creating table | 0.000056 | 0.000028 | 0.000028 |\n| After create | 0.011363 | 0.000217 | 0.001571 |\n| query end | 0.000375 | 0.000013 | 0.000028 |\n| freeing items | 0.000089 | 0.000010 | 0.000014 |\n| logging slow query | 0.000019 | 0.000009 | 0.000010 |\n| cleaning up | 0.000005 | 0.000003 | 0.000002 |\n+----------------------+----------+----------+------------+\n7 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.6/en/show-profile.html'),(581,'SHOW PROFILES',3,'Syntax:\nSHOW PROFILES\n\nThe SHOW PROFILES statement, together with SHOW PROFILE, displays\nprofiling information that indicates resource usage for statements\nexecuted during the course of the current session. For more\ninformation, see [HELP SHOW PROFILE].\n\n*Note*:\n\nThese statements are deprecated as of MySQL 5.6.7 and will be removed\nin a future MySQL release. Use the Performance Schema instead; see\nhttps://dev.mysql.com/doc/refman/5.6/en/performance-schema.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-profiles.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-profiles.html'),(582,'SHOW RELAYLOG EVENTS',3,'Syntax:\nSHOW RELAYLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n\nShows the events in the relay log of a replication slave. If you do not\nspecify \'log_name\', the first relay log is displayed. This statement\nhas no effect on the master.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-relaylog-events.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-relaylog-events.html'),(583,'SHOW SLAVE HOSTS',3,'Syntax:\nSHOW SLAVE HOSTS\n\nDisplays a list of replication slaves currently registered with the\nmaster.\n\nSHOW SLAVE HOSTS should be executed on a server that acts as a\nreplication master. The statement displays information about servers\nthat are or have been connected as replication slaves, with each row of\nthe result corresponding to one slave server, as shown here:\n\nmysql> SHOW SLAVE HOSTS;\n+------------+-----------+------+-----------+--------------------------------------+\n| Server_id | Host | Port | Master_id | Slave_UUID |\n+------------+-----------+------+-----------+--------------------------------------+\n| 192168010 | iconnect2 | 3306 | 192168011 | 14cb6624-7f93-11e0-b2c0-c80aa9429562 |\n| 1921680101 | athena | 3306 | 192168011 | 07af4990-f41f-11df-a566-7ac56fdaf645 |\n+------------+-----------+------+-----------+--------------------------------------+\n\no Server_id: The unique server ID of the slave server, as configured in\n the slave server\'s option file, or on the command line with\n --server-id=value.\n\no Host: The host name of the slave server as specified on the slave\n with the --report-host option. This can differ from the machine name\n as configured in the operating system.\n\no User: The slave server user name as, specified on the slave with the\n --report-user option. Statement output includes this column only if\n the master server is started with the --show-slave-auth-info option.\n\no Password: The slave server password as, specified on the slave with\n the --report-password option. Statement output includes this column\n only if the master server is started with the --show-slave-auth-info\n option.\n\no Port: The port on the master to which the slave server is listening,\n as specified on the slave with the --report-port option.\n\n A zero in this column means that the slave port (--report-port) was\n not set.\n\no Master_id: The unique server ID of the master server that the slave\n server is replicating from. This is the server ID of the server on\n which SHOW SLAVE HOSTS is executed, so this same value is listed for\n each row in the result.\n\no Slave_UUID: The globally unique ID of this slave, as generated on the\n slave and found in the slave\'s auto.cnf file.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-slave-hosts.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-slave-hosts.html'),(584,'SHOW SLAVE STATUS',3,'Syntax:\nSHOW SLAVE STATUS\n\nThis statement provides status information on essential parameters of\nthe slave threads. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nIf you issue this statement using the mysql client, you can use a \\G\nstatement terminator rather than a semicolon to obtain a more readable\nvertical layout:\n\nmysql> SHOW SLAVE STATUS\\G\n*************************** 1. row ***************************\n Slave_IO_State: Waiting for master to send event\n Master_Host: localhost\n Master_User: root\n Master_Port: 13000\n Connect_Retry: 60\n Master_Log_File: master-bin.000002\n Read_Master_Log_Pos: 1307\n Relay_Log_File: slave-relay-bin.000003\n Relay_Log_Pos: 1508\n Relay_Master_Log_File: master-bin.000002\n Slave_IO_Running: Yes\n Slave_SQL_Running: Yes\n Replicate_Do_DB:\n Replicate_Ignore_DB:\n Replicate_Do_Table:\n Replicate_Ignore_Table:\n Replicate_Wild_Do_Table:\n Replicate_Wild_Ignore_Table:\n Last_Errno: 0\n Last_Error:\n Skip_Counter: 0\n Exec_Master_Log_Pos: 1307\n Relay_Log_Space: 1858\n Until_Condition: None\n Until_Log_File:\n Until_Log_Pos: 0\n Master_SSL_Allowed: No\n Master_SSL_CA_File:\n Master_SSL_CA_Path:\n Master_SSL_Cert:\n Master_SSL_Cipher:\n Master_SSL_Key:\n Seconds_Behind_Master: 0\nMaster_SSL_Verify_Server_Cert: No\n Last_IO_Errno: 0\n Last_IO_Error:\n Last_SQL_Errno: 0\n Last_SQL_Error:\n Replicate_Ignore_Server_Ids:\n Master_Server_Id: 1\n Master_UUID: 3e11fa47-71ca-11e1-9e33-c80aa9429562\n Master_Info_File: /var/mysqld.2/data/master.info\n SQL_Delay: 0\n SQL_Remaining_Delay: NULL\n Slave_SQL_Running_State: Reading event from the relay log\n Master_Retry_Count: 10\n Master_Bind:\n Last_IO_Error_Timestamp:\n Last_SQL_Error_Timestamp:\n Master_SSL_Crl:\n Master_SSL_Crlpath:\n Retrieved_Gtid_Set: 3e11fa47-71ca-11e1-9e33-c80aa9429562:1-5\n Executed_Gtid_Set: 3e11fa47-71ca-11e1-9e33-c80aa9429562:1-5\n Auto_Position: 1\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-slave-status.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-slave-status.html'),(585,'SHOW STATUS',3,'Syntax:\nSHOW [GLOBAL | SESSION] STATUS\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW STATUS provides server status information (see\nhttps://dev.mysql.com/doc/refman/5.6/en/server-status-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nStatus variable information is also available from these sources:\n\no The GLOBAL_STATUS and SESSION_STATUS tables. See\n https://dev.mysql.com/doc/refman/5.6/en/status-table.html.\n\no The mysqladmin extended-status command. See\n https://dev.mysql.com/doc/refman/5.6/en/mysqladmin.html.\n\nFor SHOW STATUS, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nSHOW STATUS accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays the global status\n values. A global status variable may represent status for some aspect\n of the server itself (for example, Aborted_connects), or the\n aggregated status over all connections to MySQL (for example,\n Bytes_received and Bytes_sent). If a variable has no global value,\n the session value is displayed.\n\no With a SESSION modifier, the statement displays the status variable\n values for the current connection. If a variable has no session\n value, the global value is displayed. LOCAL is a synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each status variable is listed at\nhttps://dev.mysql.com/doc/refman/5.6/en/server-status-variables.html.\n\nEach invocation of the SHOW STATUS statement uses an internal temporary\ntable and increments the global Created_tmp_tables value.\n\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern:\n\nmysql> SHOW STATUS LIKE \'Key%\';\n+--------------------+----------+\n| Variable_name | Value |\n+--------------------+----------+\n| Key_blocks_used | 14955 |\n| Key_read_requests | 96854827 |\n| Key_reads | 162040 |\n| Key_write_requests | 7589728 |\n| Key_writes | 3813196 |\n+--------------------+----------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-status.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-status.html'),(586,'SHOW TABLE STATUS',3,'Syntax:\nSHOW TABLE STATUS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLE STATUS works likes SHOW TABLES, but provides a lot of\ninformation about each non-TEMPORARY table. You can also get this list\nusing the mysqlshow --status db_name command. The LIKE clause, if\npresent, indicates which table names to match. The WHERE clause can be\ngiven to select rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-table-status.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-table-status.html'),(587,'SHOW TABLES',3,'Syntax:\nSHOW [FULL] TABLES\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TABLES lists the non-TEMPORARY tables in a given database. You can\nalso get this list using the mysqlshow db_name command. The LIKE\nclause, if present, indicates which table names to match. The WHERE\nclause can be given to select rows using more general conditions, as\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nMatching performed by the LIKE clause is dependent on the setting of\nthe lower_case_table_names system variable.\n\nThis statement also lists any views in the database. The optional FULL\nmodifier causes SHOW TABLES to display a second output column with\nvalues of BASE TABLE for a table, VIEW for a view, or SYSTEM VIEW for\nan INFORMATION_SCHEMA table.\n\nIf you have no privileges for a base table or view, it does not show up\nin the output from SHOW TABLES or mysqlshow db_name.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-tables.html'),(588,'SHOW TRIGGERS',3,'Syntax:\nSHOW TRIGGERS\n [{FROM | IN} db_name]\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW TRIGGERS lists the triggers currently defined for tables in a\ndatabase (the default database unless a FROM clause is given). This\nstatement returns results only for databases and tables for which you\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\nwhich table names (not trigger names) to match and causes the statement\nto display triggers for those tables. The WHERE clause can be given to\nselect rows using more general conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nFor the ins_sum trigger defined in\nhttps://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of\nSHOW TRIGGERS is as shown here:\n\nmysql> SHOW TRIGGERS LIKE \'acc%\'\\G\n*************************** 1. row ***************************\n Trigger: ins_sum\n Event: INSERT\n Table: account\n Statement: SET @sum = @sum + NEW.amount\n Timing: BEFORE\n Created: NULL\n sql_mode: NO_ENGINE_SUBSTITUTION\n Definer: me@localhost\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-triggers.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-triggers.html'),(589,'SHOW VARIABLES',3,'Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html).\nThis statement does not require any privilege. It requires only the\nability to connect to the server.\n\nSystem variable information is also available from these sources:\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n https://dev.mysql.com/doc/refman/5.6/en/variables-table.html.\n\no The mysqladmin variables command. See\n https://dev.mysql.com/doc/refman/5.6/en/mysqladmin.html.\n\nFor SHOW VARIABLES, a LIKE clause, if present, indicates which variable\nnames to match. A WHERE clause can be given to select rows using more\ngeneral conditions, as discussed in\nhttps://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\n\nSHOW VARIABLES accepts an optional GLOBAL or SESSION variable scope\nmodifier:\n\no With a GLOBAL modifier, the statement displays global system variable\n values. These are the values used to initialize the corresponding\n session variables for new connections to MySQL. If a variable has no\n global value, no value is displayed.\n\no With a SESSION modifier, the statement displays the system variable\n values that are in effect for the current connection. If a variable\n has no session value, the global value is displayed. LOCAL is a\n synonym for SESSION.\n\no If no modifier is present, the default is SESSION.\n\nThe scope for each system variable is listed at\nhttps://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html.\n\nSHOW VARIABLES is subject to a version-dependent display-width limit.\nFor variables with very long values that are not completely displayed,\nuse SELECT as a workaround. For example:\n\nSELECT @@GLOBAL.innodb_data_file_path;\n\nMost system variables can be set at server startup (read-only variables\nsuch as version_comment are exceptions). Many can be changed at runtime\nwith the SET statement. See\nhttps://dev.mysql.com/doc/refman/5.6/en/using-system-variables.html,\nand [HELP SET].\n\nWith a LIKE clause, the statement displays only rows for those\nvariables with names that match the pattern. To obtain the row for a\nspecific variable, use a LIKE clause as shown:\n\nSHOW VARIABLES LIKE \'max_join_size\';\nSHOW SESSION VARIABLES LIKE \'max_join_size\';\n\nTo get a list of variables whose name match a pattern, use the %\nwildcard character in a LIKE clause:\n\nSHOW VARIABLES LIKE \'%size%\';\nSHOW GLOBAL VARIABLES LIKE \'%size%\';\n\nWildcard characters can be used in any position within the pattern to\nbe matched. Strictly speaking, because _ is a wildcard that matches any\nsingle character, you should escape it as \\_ to match it literally. In\npractice, this is rarely necessary.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-variables.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-variables.html'),(590,'SHOW WARNINGS',3,'Syntax:\nSHOW WARNINGS [LIMIT [offset,] row_count]\nSHOW COUNT(*) WARNINGS\n\nSHOW WARNINGS is a diagnostic statement that displays information about\nthe conditions (errors, warnings, and notes) resulting from executing a\nstatement in the current session. Warnings are generated for DML\nstatements such as INSERT, UPDATE, and LOAD DATA as well as DDL\nstatements such as CREATE TABLE and ALTER TABLE.\n\nThe LIMIT clause has the same syntax as for the SELECT statement. See\nhttps://dev.mysql.com/doc/refman/5.6/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN EXTENDED, to display the\nextra information generated by EXPLAIN when the EXTENDED keyword is\nused. See\nhttps://dev.mysql.com/doc/refman/5.6/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nthe most recent statement in the current session that generated\nmessages. It shows nothing if the most recent statement used a table\nand generated no messages. (That is, statements that use a table but\ngenerate no messages clear the message list.) Statements that do not\nuse tables and do not generate messages have no effect on the message\nlist.\n\nThe SHOW COUNT(*) WARNINGS diagnostic statement displays the total\nnumber of errors, warnings, and notes. You can also retrieve this\nnumber from the warning_count system variable:\n\nSHOW COUNT(*) WARNINGS;\nSELECT @@warning_count;\n\nA related diagnostic statement, SHOW ERRORS, shows only error\nconditions (it excludes warnings and notes), and SHOW COUNT(*) ERRORS\nstatement displays the total number of errors. See [HELP SHOW ERRORS].\nGET DIAGNOSTICS can be used to examine information for individual\nconditions. See [HELP GET DIAGNOSTICS].\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/show-warnings.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/show-warnings.html'),(591,'BINLOG',3,'Syntax:\nBINLOG \'str\'\n\nBINLOG is an internal-use statement. It is generated by the mysqlbinlog\nprogram as the printable representation of certain events in binary log\nfiles. (See https://dev.mysql.com/doc/refman/5.6/en/mysqlbinlog.html.)\nThe \'str\' value is a base 64-encoded string the that server decodes to\ndetermine the data change indicated by the corresponding event. This\nstatement requires the SUPER privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/binlog.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/binlog.html'),(592,'CACHE INDEX',3,'Syntax:\nCACHE INDEX {\n tbl_index_list [, tbl_index_list] ...\n | tbl_name PARTITION (partition_list)\n }\n IN key_cache_name\n\ntbl_index_list:\n tbl_name [{INDEX|KEY} (index_name[, index_name] ...)]\n\npartition_list: {\n partition_name[, partition_name] ...\n | ALL\n}\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It applies only to MyISAM tables, including partitioned MyISAM\ntables. After the indexes have been assigned, they can be preloaded\ninto the cache if desired with LOAD INDEX INTO CACHE.\n\nThe following statement assigns indexes from the tables t1, t2, and t3\nto the key cache named hot_cache:\n\nmysql> CACHE INDEX t1, t2, t3 IN hot_cache;\n+---------+--------------------+----------+----------+\n| Table | Op | Msg_type | Msg_text |\n+---------+--------------------+----------+----------+\n| test.t1 | assign_to_keycache | status | OK |\n| test.t2 | assign_to_keycache | status | OK |\n| test.t3 | assign_to_keycache | status | OK |\n+---------+--------------------+----------+----------+\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/cache-index.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/cache-index.html'),(593,'FLUSH',3,'Syntax:\nFLUSH [NO_WRITE_TO_BINLOG | LOCAL] {\n flush_option [, flush_option] ...\n | tables_option\n}\n\nflush_option: {\n BINARY LOGS\n | DES_KEY_FILE\n | ENGINE LOGS\n | ERROR LOGS\n | GENERAL LOGS\n | HOSTS\n | LOGS\n | PRIVILEGES\n | QUERY CACHE\n | RELAY LOGS\n | SLOW LOGS\n | STATUS\n | USER_RESOURCES\n}\n\ntables_option: {\n TABLES\n | TABLES tbl_name [, tbl_name] ...\n | TABLES WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... WITH READ LOCK\n | TABLES tbl_name [, tbl_name] ... FOR EXPORT\n}\n\nThe FLUSH statement has several variant forms that clear or reload\nvarious internal caches, flush tables, or acquire locks. To execute\nFLUSH, you must have the RELOAD privilege. Specific flush options might\nrequire additional privileges, as described later.\n\n*Note*:\n\nIt is not possible to issue FLUSH statements within stored functions or\ntriggers. However, you may use FLUSH in stored procedures, so long as\nthese are not called from stored functions or triggers. See\nhttps://dev.mysql.com/doc/refman/5.6/en/stored-program-restrictions.htm\nl.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replication slaves. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*:\n\nFLUSH LOGS, FLUSH BINARY LOGS, FLUSH TABLES WITH READ LOCK (with or\nwithout a table list), and FLUSH TABLES tbl_name ... FOR EXPORT are not\nwritten to the binary log in any case because they would cause problems\nif replicated to a slave.\n\nThe FLUSH statement causes an implicit commit. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nThe mysqladmin utility provides a command-line interface to some flush\noperations, using commands such as flush-hosts, flush-logs,\nflush-privileges, flush-status, and flush-tables. See\nhttps://dev.mysql.com/doc/refman/5.6/en/mysqladmin.html.\n\nSending a SIGHUP signal to the server causes several flush operations\nto occur that are similar to various forms of the FLUSH statement.\nSignals can be sent by root or the account that owns the server\nprocess. They enable the applicable flush operations to be performed\nwithout having to connect to the server (which for these operations\nrequires an account that has the RELOAD privilege). See\nhttps://dev.mysql.com/doc/refman/5.6/en/unix-signal-response.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using the RESET statement with replication.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/flush.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/flush.html'),(594,'KILL',3,'Syntax:\nKILL [CONNECTION | QUERY] processlist_id\n\nEach connection to mysqld runs in a separate thread. You can kill a\nthread with the KILL processlist_id statement.\n\nThread processlist identifiers can be determined from the ID column of\nthe INFORMATION_SCHEMA PROCESSLIST table, the Id column of SHOW\nPROCESSLIST output, and the PROCESSLIST_ID column of the Performance\nSchema threads table. The value for the current thread is returned by\nthe CONNECTION_ID() function.\n\nKILL permits an optional CONNECTION or QUERY modifier:\n\no KILL CONNECTION is the same as KILL with no modifier: It terminates\n the connection associated with the given processlist_id, after\n terminating any statement the connection is executing.\n\no KILL QUERY terminates the statement the connection is currently\n executing, but leaves the connection itself intact.\n\nThe ability to see which threads are available to be killed depends on\nthe PROCESS privilege:\n\no Without PROCESS, you can see only your own threads.\n\no With PROCESS, you can see all threads.\n\nThe ability to kill threads and statements depends on the SUPER\nprivilege:\n\no Without SUPER, you can kill only your own threads and statements.\n\no With SUPER, you can kill all threads and statements.\n\nYou can also use the mysqladmin processlist and mysqladmin kill\ncommands to examine and kill threads.\n\n*Note*:\n\nYou cannot use KILL with the Embedded MySQL Server library because the\nembedded server merely runs inside the threads of the host application.\nIt does not create any connection threads of its own.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/kill.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/kill.html'),(595,'LOAD INDEX',3,'Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [PARTITION (partition_list)]\n [{INDEX|KEY} (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\npartition_list: {\n partition_name[, partition_name] ...\n | ALL\n}\n\nThe LOAD INDEX INTO CACHE statement preloads a table index into the key\ncache to which it has been assigned by an explicit CACHE INDEX\nstatement, or into the default key cache otherwise.\n\nLOAD INDEX INTO CACHE applies only to MyISAM tables, including\npartitioned MyISAM tables. In addition, indexes on partitioned tables\ncan be preloaded for one, several, or all partitions.\n\nThe IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of\nthe index to be preloaded.\n\nIGNORE LEAVES is also supported for partitioned MyISAM tables.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/load-index.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/load-index.html'),(596,'RESET',3,'Syntax:\nRESET reset_option [, reset_option] ...\n\nreset_option: {\n MASTER\n | QUERY CACHE\n | SLAVE\n}\n\nThe RESET statement is used to clear the state of various server\noperations. You must have the RELOAD privilege to execute RESET.\n\nRESET acts as a stronger version of the FLUSH statement. See [HELP\nFLUSH].\n\nThe RESET statement causes an implicit commit. See\nhttps://dev.mysql.com/doc/refman/5.6/en/implicit-commit.html.\n\nIn MySQL 5.6.11 only, gtid_next must be set to AUTOMATIC before issuing\nthis statement. (Bug #16062608, Bug #16715809, Bug #69045)\n\nThe following list describes the permitted RESET statement reset_option\nvalues:\n\no RESET MASTER\n\n Deletes all binary logs listed in the index file, resets the binary\n log index file to be empty, and creates a new binary log file.\n\no RESET QUERY CACHE\n\n Removes all query results from the query cache.\n\no RESET SLAVE\n\n Makes the slave forget its replication position in the master binary\n logs. Also resets the relay log by deleting any existing relay log\n files and beginning a new one.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/reset.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/reset.html'),(597,'EXPLAIN',41,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n explainable_stmt\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/explain.html'),(598,'DESCRIBE',41,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n explainable_stmt\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/explain.html'),(599,'DESC',41,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n explainable_stmt\n\nexplain_type: {\n EXTENDED\n | PARTITIONS\n | FORMAT = format_name\n}\n\nformat_name: {\n TRADITIONAL\n | JSON\n}\n\nexplainable_stmt: {\n SELECT statement\n | DELETE statement\n | INSERT statement\n | REPLACE statement\n | UPDATE statement\n}\n\nThe DESCRIBE and EXPLAIN statements are synonyms. In practice, the\nDESCRIBE keyword is more often used to obtain information about table\nstructure, whereas EXPLAIN is used to obtain a query execution plan\n(that is, an explanation of how MySQL would execute a query).\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/explain.html'),(600,'HELP STATEMENT',41,'Syntax:\nHELP \'search_string\'\n\nThe HELP statement returns online information from the MySQL Reference\nManual. Its proper operation requires that the help tables in the mysql\ndatabase be initialized with help topic information (see\nhttps://dev.mysql.com/doc/refman/5.6/en/server-side-help-support.html).\n\nThe HELP statement searches the help tables for the given search string\nand displays the result of the search. The search string is not\ncase-sensitive.\n\nThe search string can contain the wildcard characters % and _. These\nhave the same meaning as for pattern-matching operations performed with\nthe LIKE operator. For example, HELP \'rep%\' returns a list of topics\nthat begin with rep.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/help.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/help.html'),(601,'USE',41,'Syntax:\nUSE db_name\n\nThe USE statement tells MySQL to use the named database as the default\n(current) database for subsequent statements. This statement requires\nsome privilege for the database or some object within it.\n\nThe named database remains the default until the end of the session or\nanother USE statement is issued:\n\nUSE db1;\nSELECT COUNT(*) FROM mytable; # selects from db1.mytable\nUSE db2;\nSELECT COUNT(*) FROM mytable; # selects from db2.mytable\n\nThe database name must be specified on a single line. Newlines in\ndatabase names are not supported.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/use.html\n\n','','https://dev.mysql.com/doc/refman/5.6/en/use.html'),(602,'MERGE',42,'The MERGE storage engine, also known as the MRG_MyISAM engine, is a\ncollection of identical MyISAM tables that can be used as one.\n\"Identical\" means that all tables have identical column data types and\nindex information. You cannot merge MyISAM tables in which the columns\nare listed in a different order, do not have exactly the same data\ntypes in corresponding columns, or have the indexes in different order.\nHowever, any or all of the MyISAM tables can be compressed with\nmyisampack. See\nhttps://dev.mysql.com/doc/refman/5.6/en/myisampack.html. Differences\nbetween tables such as these do not matter:\n\no Names of corresponding columns and indexes can differ.\n\no Comments for tables, columns, and indexes can differ.\n\no Table options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS can\n differ.\n\nURL: https://dev.mysql.com/doc/refman/5.6/en/merge-storage-engine.html\n\n','mysql> CREATE TABLE t1 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> CREATE TABLE t2 (\n -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> message CHAR(20)) ENGINE=MyISAM;\nmysql> INSERT INTO t1 (message) VALUES (\'Testing\'),(\'table\'),(\'t1\');\nmysql> INSERT INTO t2 (message) VALUES (\'Testing\'),(\'table\'),(\'t2\');\nmysql> CREATE TABLE total (\n -> a INT NOT NULL AUTO_INCREMENT,\n -> message CHAR(20), INDEX(a))\n -> ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST;\n','https://dev.mysql.com/doc/refman/5.6/en/merge-storage-engine.html'); +/*!40000 ALTER TABLE `help_topic` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `innodb_index_stats` +-- + +DROP TABLE IF EXISTS `innodb_index_stats`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `innodb_index_stats` ( + `database_name` varchar(64) COLLATE utf8_bin NOT NULL, + `table_name` varchar(64) COLLATE utf8_bin NOT NULL, + `index_name` varchar(64) COLLATE utf8_bin NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `stat_name` varchar(64) COLLATE utf8_bin NOT NULL, + `stat_value` bigint(20) unsigned NOT NULL, + `sample_size` bigint(20) unsigned DEFAULT NULL, + `stat_description` varchar(1024) COLLATE utf8_bin NOT NULL, + PRIMARY KEY (`database_name`,`table_name`,`index_name`,`stat_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `innodb_index_stats` +-- + +LOCK TABLES `innodb_index_stats` WRITE; +/*!40000 ALTER TABLE `innodb_index_stats` DISABLE KEYS */; +INSERT INTO `innodb_index_stats` VALUES ('edxapp','announcements_announcement','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','announcements_announcement','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','announcements_announcement','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','api_admin_apiaccessconfig','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','api_admin_apiaccessconfig','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','api_admin_apiaccessconfig','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','api_admin_apiaccessconfig','api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id','2020-07-23 17:22:27','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','api_admin_apiaccessconfig','api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id','2020-07-23 17:22:27','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','api_admin_apiaccessconfig','api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','api_admin_apiaccessconfig','api_admin_apiaccessconfig_changed_by_id_d2f4cd88_fk_auth_user_id','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','api_admin_apiaccessrequest','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','api_admin_apiaccessrequest','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','api_admin_apiaccessrequest','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id','2020-07-23 17:22:27','n_diff_pfx01',0,1,'site_id'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id','2020-07-23 17:22:27','n_diff_pfx02',0,1,'site_id,id'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_site_id_b78f5161_fk_django_site_id','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_status_f8039aea','2020-07-23 17:22:27','n_diff_pfx01',0,1,'status'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_status_f8039aea','2020-07-23 17:22:27','n_diff_pfx02',0,1,'status,id'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_status_f8039aea','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_status_f8039aea','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_user_id_eb0cc217_uniq','2020-07-23 17:22:27','n_diff_pfx01',0,1,'user_id'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_user_id_eb0cc217_uniq','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','api_admin_apiaccessrequest','api_admin_apiaccessrequest_user_id_eb0cc217_uniq','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessment','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_assessment','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessment','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessment','assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id','2020-07-23 17:22:27','n_diff_pfx01',0,1,'rubric_id'),('edxapp','assessment_assessment','assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id','2020-07-23 17:22:27','n_diff_pfx02',0,1,'rubric_id,id'),('edxapp','assessment_assessment','assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessment','assessment_assessment_rubric_id_2ed0d5db_fk_assessment_rubric_id','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessment','assessment_assessment_scored_at_a1a213d6','2020-07-23 17:22:27','n_diff_pfx01',0,1,'scored_at'),('edxapp','assessment_assessment','assessment_assessment_scored_at_a1a213d6','2020-07-23 17:22:27','n_diff_pfx02',0,1,'scored_at,id'),('edxapp','assessment_assessment','assessment_assessment_scored_at_a1a213d6','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessment','assessment_assessment_scored_at_a1a213d6','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessment','assessment_assessment_scorer_id_ad1a38cb','2020-07-23 17:22:27','n_diff_pfx01',0,1,'scorer_id'),('edxapp','assessment_assessment','assessment_assessment_scorer_id_ad1a38cb','2020-07-23 17:22:27','n_diff_pfx02',0,1,'scorer_id,id'),('edxapp','assessment_assessment','assessment_assessment_scorer_id_ad1a38cb','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessment','assessment_assessment_scorer_id_ad1a38cb','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessment','assessment_assessment_submission_uuid_cf5817c5','2020-07-23 17:22:27','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','assessment_assessment','assessment_assessment_submission_uuid_cf5817c5','2020-07-23 17:22:27','n_diff_pfx02',0,1,'submission_uuid,id'),('edxapp','assessment_assessment','assessment_assessment_submission_uuid_cf5817c5','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessment','assessment_assessment_submission_uuid_cf5817c5','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_assessmentfeedback','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback','submission_uuid','2020-07-23 17:22:27','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','assessment_assessmentfeedback','submission_uuid','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback','submission_uuid','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback_assessments','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_assessmentfeedback_assessments','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback_assessments','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmen_assessment_id_033f1121_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessment_id'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmen_assessment_id_033f1121_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessment_id,id'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmen_assessment_id_033f1121_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmen_assessment_id_033f1121_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmentfee_assessmentfeedback_id_as_f8246578_uniq','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessmentfeedback_id'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmentfee_assessmentfeedback_id_as_f8246578_uniq','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessmentfeedback_id,assessment_id'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmentfee_assessmentfeedback_id_as_f8246578_uniq','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback_assessments','assessment_assessmentfee_assessmentfeedback_id_as_f8246578_uniq','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback_options','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_assessmentfeedback_options','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback_options','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessmentfeedbackoption_id'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessmentfeedbackoption_id,id'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmen_assessmentfeedbackop_a9af45f6_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmentfee_assessmentfeedback_id_as_4e554cc7_uniq','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessmentfeedback_id'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmentfee_assessmentfeedback_id_as_4e554cc7_uniq','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessmentfeedback_id,assessmentfeedbackoption_id'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmentfee_assessmentfeedback_id_as_4e554cc7_uniq','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedback_options','assessment_assessmentfee_assessmentfeedback_id_as_4e554cc7_uniq','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedbackoption','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_assessmentfeedbackoption','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedbackoption','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentfeedbackoption','text','2020-07-23 17:22:27','n_diff_pfx01',0,1,'text'),('edxapp','assessment_assessmentfeedbackoption','text','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentfeedbackoption','text','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentpart','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_assessmentpart','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentpart','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentpart','assessment_assessmen_assessment_id_de1999cd_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessment_id'),('edxapp','assessment_assessmentpart','assessment_assessmen_assessment_id_de1999cd_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessment_id,id'),('edxapp','assessment_assessmentpart','assessment_assessmen_assessment_id_de1999cd_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentpart','assessment_assessmen_assessment_id_de1999cd_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentpart','assessment_assessmen_criterion_id_5bc40925_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'criterion_id'),('edxapp','assessment_assessmentpart','assessment_assessmen_criterion_id_5bc40925_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'criterion_id,id'),('edxapp','assessment_assessmentpart','assessment_assessmen_criterion_id_5bc40925_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentpart','assessment_assessmen_criterion_id_5bc40925_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_assessmentpart','assessment_assessmen_option_id_dd35c2c5_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'option_id'),('edxapp','assessment_assessmentpart','assessment_assessmen_option_id_dd35c2c5_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'option_id,id'),('edxapp','assessment_assessmentpart','assessment_assessmen_option_id_dd35c2c5_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_assessmentpart','assessment_assessmen_option_id_dd35c2c5_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_criterion','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',2,1,'id'),('edxapp','assessment_criterion','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_criterion','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_criterion','assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id','2020-07-23 17:22:27','n_diff_pfx01',1,1,'rubric_id'),('edxapp','assessment_criterion','assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id','2020-07-23 17:22:27','n_diff_pfx02',2,1,'rubric_id,id'),('edxapp','assessment_criterion','assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_criterion','assessment_criterion_rubric_id_fe236962_fk_assessment_rubric_id','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_criterionoption','PRIMARY','2020-07-23 17:23:48','n_diff_pfx01',12,1,'id'),('edxapp','assessment_criterionoption','PRIMARY','2020-07-23 17:23:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_criterionoption','PRIMARY','2020-07-23 17:23:48','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_criterionoption','assessment_criterion_criterion_id_53928be7_fk_assessmen','2020-07-23 17:23:48','n_diff_pfx01',3,1,'criterion_id'),('edxapp','assessment_criterionoption','assessment_criterion_criterion_id_53928be7_fk_assessmen','2020-07-23 17:23:48','n_diff_pfx02',12,1,'criterion_id,id'),('edxapp','assessment_criterionoption','assessment_criterion_criterion_id_53928be7_fk_assessmen','2020-07-23 17:23:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_criterionoption','assessment_criterion_criterion_id_53928be7_fk_assessmen','2020-07-23 17:23:48','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'history_id'),('edxapp','assessment_historicalsharedfileupload','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historica_history_user_id_28fa87d9_fk_auth_user','2020-07-23 17:22:27','n_diff_pfx01',0,1,'history_user_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historica_history_user_id_28fa87d9_fk_auth_user','2020-07-23 17:22:27','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historica_history_user_id_28fa87d9_fk_auth_user','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historica_history_user_id_28fa87d9_fk_auth_user','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_course_id_7fd70b9d','2020-07-23 17:22:27','n_diff_pfx01',0,1,'course_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_course_id_7fd70b9d','2020-07-23 17:22:27','n_diff_pfx02',0,1,'course_id,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_course_id_7fd70b9d','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_course_id_7fd70b9d','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_file_key_03fbd3e7','2020-07-23 17:22:27','n_diff_pfx01',0,1,'file_key'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_file_key_03fbd3e7','2020-07-23 17:22:27','n_diff_pfx02',0,1,'file_key,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_file_key_03fbd3e7','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_file_key_03fbd3e7','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_id_34052991','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_id_34052991','2020-07-23 17:22:27','n_diff_pfx02',0,1,'id,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_id_34052991','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_id_34052991','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_item_id_b7bca199','2020-07-23 17:22:27','n_diff_pfx01',0,1,'item_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_item_id_b7bca199','2020-07-23 17:22:27','n_diff_pfx02',0,1,'item_id,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_item_id_b7bca199','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_item_id_b7bca199','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_owner_id_09b09e30','2020-07-23 17:22:27','n_diff_pfx01',0,1,'owner_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_owner_id_09b09e30','2020-07-23 17:22:27','n_diff_pfx02',0,1,'owner_id,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_owner_id_09b09e30','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_owner_id_09b09e30','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_team_id_e32268e1','2020-07-23 17:22:27','n_diff_pfx01',0,1,'team_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_team_id_e32268e1','2020-07-23 17:22:27','n_diff_pfx02',0,1,'team_id,history_id'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_team_id_e32268e1','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_historicalsharedfileupload','assessment_historicalsharedfileupload_team_id_e32268e1','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_peerworkflow','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_cancelled_at_0e258929','2020-07-23 17:22:27','n_diff_pfx01',0,1,'cancelled_at'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_cancelled_at_0e258929','2020-07-23 17:22:27','n_diff_pfx02',0,1,'cancelled_at,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_cancelled_at_0e258929','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_cancelled_at_0e258929','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_completed_at_681f19e1','2020-07-23 17:22:27','n_diff_pfx01',0,1,'completed_at'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_completed_at_681f19e1','2020-07-23 17:22:27','n_diff_pfx02',0,1,'completed_at,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_completed_at_681f19e1','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_completed_at_681f19e1','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_course_id_875599e3','2020-07-23 17:22:27','n_diff_pfx01',0,1,'course_id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_course_id_875599e3','2020-07-23 17:22:27','n_diff_pfx02',0,1,'course_id,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_course_id_875599e3','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_course_id_875599e3','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_created_at_b8aaf4a5','2020-07-23 17:22:27','n_diff_pfx01',0,1,'created_at'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_created_at_b8aaf4a5','2020-07-23 17:22:27','n_diff_pfx02',0,1,'created_at,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_created_at_b8aaf4a5','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_created_at_b8aaf4a5','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_grading_completed_at_33e2560c','2020-07-23 17:22:27','n_diff_pfx01',0,1,'grading_completed_at'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_grading_completed_at_33e2560c','2020-07-23 17:22:27','n_diff_pfx02',0,1,'grading_completed_at,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_grading_completed_at_33e2560c','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_grading_completed_at_33e2560c','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_item_id_c17d799e','2020-07-23 17:22:27','n_diff_pfx01',0,1,'item_id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_item_id_c17d799e','2020-07-23 17:22:27','n_diff_pfx02',0,1,'item_id,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_item_id_c17d799e','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_item_id_c17d799e','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_student_id_9382ae54','2020-07-23 17:22:27','n_diff_pfx01',0,1,'student_id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_student_id_9382ae54','2020-07-23 17:22:27','n_diff_pfx02',0,1,'student_id,id'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_student_id_9382ae54','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','assessment_peerworkflow_student_id_9382ae54','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflow','submission_uuid','2020-07-23 17:22:27','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','assessment_peerworkflow','submission_uuid','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflow','submission_uuid','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflowitem','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_peerworkflowitem','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflowitem','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessment_id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessment_id,id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_assessment_id_27f9ef1f_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_author_id_0e3ed804_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'author_id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_author_id_0e3ed804_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'author_id,id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_author_id_0e3ed804_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_author_id_0e3ed804_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'scorer_id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'scorer_id,id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkf_scorer_id_27e47cd4_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_started_at_8644e7a0','2020-07-23 17:22:27','n_diff_pfx01',0,1,'started_at'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_started_at_8644e7a0','2020-07-23 17:22:27','n_diff_pfx02',0,1,'started_at,id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_started_at_8644e7a0','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_started_at_8644e7a0','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_submission_uuid_edd446aa','2020-07-23 17:22:27','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_submission_uuid_edd446aa','2020-07-23 17:22:27','n_diff_pfx02',0,1,'submission_uuid,id'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_submission_uuid_edd446aa','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_peerworkflowitem','assessment_peerworkflowitem_submission_uuid_edd446aa','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_rubric','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_rubric','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_rubric','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_rubric','assessment_rubric_structure_hash_fb456373','2020-07-23 17:22:27','n_diff_pfx01',0,1,'structure_hash'),('edxapp','assessment_rubric','assessment_rubric_structure_hash_fb456373','2020-07-23 17:22:27','n_diff_pfx02',0,1,'structure_hash,id'),('edxapp','assessment_rubric','assessment_rubric_structure_hash_fb456373','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_rubric','assessment_rubric_structure_hash_fb456373','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_rubric','content_hash','2020-07-23 17:22:27','n_diff_pfx01',0,1,'content_hash'),('edxapp','assessment_rubric','content_hash','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_rubric','content_hash','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_sharedfileupload','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_sharedfileupload','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_sharedfileupload','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_course_id_73edb775','2020-07-23 17:22:27','n_diff_pfx01',0,1,'course_id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_course_id_73edb775','2020-07-23 17:22:27','n_diff_pfx02',0,1,'course_id,id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_course_id_73edb775','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_course_id_73edb775','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_item_id_b471d0c9','2020-07-23 17:22:27','n_diff_pfx01',0,1,'item_id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_item_id_b471d0c9','2020-07-23 17:22:27','n_diff_pfx02',0,1,'item_id,id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_item_id_b471d0c9','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_item_id_b471d0c9','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_owner_id_f4d7fe4f','2020-07-23 17:22:27','n_diff_pfx01',0,1,'owner_id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_owner_id_f4d7fe4f','2020-07-23 17:22:27','n_diff_pfx02',0,1,'owner_id,id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_owner_id_f4d7fe4f','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_owner_id_f4d7fe4f','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_team_id_dbdd3cb7','2020-07-23 17:22:27','n_diff_pfx01',0,1,'team_id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_team_id_dbdd3cb7','2020-07-23 17:22:27','n_diff_pfx02',0,1,'team_id,id'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_team_id_dbdd3cb7','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_sharedfileupload','assessment_sharedfileupload_team_id_dbdd3cb7','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_sharedfileupload','file_key','2020-07-23 17:22:27','n_diff_pfx01',0,1,'file_key'),('edxapp','assessment_sharedfileupload','file_key','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_sharedfileupload','file_key','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_staffworkflow','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_assessment_7c1dcc5d','2020-07-23 17:22:27','n_diff_pfx01',0,1,'assessment'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_assessment_7c1dcc5d','2020-07-23 17:22:27','n_diff_pfx02',0,1,'assessment,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_assessment_7c1dcc5d','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_assessment_7c1dcc5d','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_cancelled_at_bc8f93d5','2020-07-23 17:22:27','n_diff_pfx01',0,1,'cancelled_at'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_cancelled_at_bc8f93d5','2020-07-23 17:22:27','n_diff_pfx02',0,1,'cancelled_at,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_cancelled_at_bc8f93d5','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_cancelled_at_bc8f93d5','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_course_id_3f18693d','2020-07-23 17:22:27','n_diff_pfx01',0,1,'course_id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_course_id_3f18693d','2020-07-23 17:22:27','n_diff_pfx02',0,1,'course_id,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_course_id_3f18693d','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_course_id_3f18693d','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_created_at_a253bc02','2020-07-23 17:22:27','n_diff_pfx01',0,1,'created_at'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_created_at_a253bc02','2020-07-23 17:22:27','n_diff_pfx02',0,1,'created_at,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_created_at_a253bc02','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_created_at_a253bc02','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_completed_at_acd0199f','2020-07-23 17:22:27','n_diff_pfx01',0,1,'grading_completed_at'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_completed_at_acd0199f','2020-07-23 17:22:27','n_diff_pfx02',0,1,'grading_completed_at,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_completed_at_acd0199f','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_completed_at_acd0199f','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_started_at_90f99005','2020-07-23 17:22:27','n_diff_pfx01',0,1,'grading_started_at'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_started_at_90f99005','2020-07-23 17:22:27','n_diff_pfx02',0,1,'grading_started_at,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_started_at_90f99005','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_grading_started_at_90f99005','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_item_id_4fa3697b','2020-07-23 17:22:27','n_diff_pfx01',0,1,'item_id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_item_id_4fa3697b','2020-07-23 17:22:27','n_diff_pfx02',0,1,'item_id,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_item_id_4fa3697b','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_item_id_4fa3697b','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_scorer_id_ae799ebc','2020-07-23 17:22:27','n_diff_pfx01',0,1,'scorer_id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_scorer_id_ae799ebc','2020-07-23 17:22:27','n_diff_pfx02',0,1,'scorer_id,id'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_scorer_id_ae799ebc','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','assessment_staffworkflow_scorer_id_ae799ebc','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_staffworkflow','submission_uuid','2020-07-23 17:22:27','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','assessment_staffworkflow','submission_uuid','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_staffworkflow','submission_uuid','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflow','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_studenttrainingworkflow','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflow','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_course_id_a14d6cde','2020-07-23 17:22:27','n_diff_pfx01',0,1,'course_id'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_course_id_a14d6cde','2020-07-23 17:22:27','n_diff_pfx02',0,1,'course_id,id'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_course_id_a14d6cde','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_course_id_a14d6cde','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_item_id_f5812a25','2020-07-23 17:22:27','n_diff_pfx01',0,1,'item_id'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_item_id_f5812a25','2020-07-23 17:22:27','n_diff_pfx02',0,1,'item_id,id'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_item_id_f5812a25','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_item_id_f5812a25','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_student_id_ea8fdfa8','2020-07-23 17:22:27','n_diff_pfx01',0,1,'student_id'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_student_id_ea8fdfa8','2020-07-23 17:22:27','n_diff_pfx02',0,1,'student_id,id'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_student_id_ea8fdfa8','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflow','assessment_studenttrainingworkflow_student_id_ea8fdfa8','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflow','submission_uuid','2020-07-23 17:22:27','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','assessment_studenttrainingworkflow','submission_uuid','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflow','submission_uuid','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflowitem','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_studenttrainingworkflowitem','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflowitem','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttr_training_example_id_881dddbd_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'training_example_id'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttr_training_example_id_881dddbd_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'training_example_id,id'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttr_training_example_id_881dddbd_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttr_training_example_id_881dddbd_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttraini_workflow_id_order_num_1ab60238_uniq','2020-07-23 17:22:27','n_diff_pfx01',0,1,'workflow_id'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttraini_workflow_id_order_num_1ab60238_uniq','2020-07-23 17:22:27','n_diff_pfx02',0,1,'workflow_id,order_num'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttraini_workflow_id_order_num_1ab60238_uniq','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_studenttrainingworkflowitem','assessment_studenttraini_workflow_id_order_num_1ab60238_uniq','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_teamstaffworkflow','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'staffworkflow_ptr_id'),('edxapp','assessment_teamstaffworkflow','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_teamstaffworkflow','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_teamstaffworkflow','team_submission_uuid','2020-07-23 17:22:27','n_diff_pfx01',0,1,'team_submission_uuid'),('edxapp','assessment_teamstaffworkflow','team_submission_uuid','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_teamstaffworkflow','team_submission_uuid','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_trainingexample','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_trainingexample','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_trainingexample','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_trainingexample','assessment_traininge_rubric_id_cfb4afc3_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'rubric_id'),('edxapp','assessment_trainingexample','assessment_traininge_rubric_id_cfb4afc3_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'rubric_id,id'),('edxapp','assessment_trainingexample','assessment_traininge_rubric_id_cfb4afc3_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_trainingexample','assessment_traininge_rubric_id_cfb4afc3_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_trainingexample','content_hash','2020-07-23 17:22:27','n_diff_pfx01',0,1,'content_hash'),('edxapp','assessment_trainingexample','content_hash','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_trainingexample','content_hash','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_trainingexample_options_selected','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','assessment_trainingexample_options_selected','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_trainingexample_options_selected','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_trainingexample_options_selected','assessment_traininge_criterionoption_id_de6716f1_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx01',0,1,'criterionoption_id'),('edxapp','assessment_trainingexample_options_selected','assessment_traininge_criterionoption_id_de6716f1_fk_assessmen','2020-07-23 17:22:27','n_diff_pfx02',0,1,'criterionoption_id,id'),('edxapp','assessment_trainingexample_options_selected','assessment_traininge_criterionoption_id_de6716f1_fk_assessmen','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_trainingexample_options_selected','assessment_traininge_criterionoption_id_de6716f1_fk_assessmen','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','assessment_trainingexample_options_selected','assessment_trainingexamp_trainingexample_id_crite_4b6b8b90_uniq','2020-07-23 17:22:27','n_diff_pfx01',0,1,'trainingexample_id'),('edxapp','assessment_trainingexample_options_selected','assessment_trainingexamp_trainingexample_id_crite_4b6b8b90_uniq','2020-07-23 17:22:27','n_diff_pfx02',0,1,'trainingexample_id,criterionoption_id'),('edxapp','assessment_trainingexample_options_selected','assessment_trainingexamp_trainingexample_id_crite_4b6b8b90_uniq','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','assessment_trainingexample_options_selected','assessment_trainingexamp_trainingexample_id_crite_4b6b8b90_uniq','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','auth_accountrecovery','PRIMARY','2020-07-23 17:22:27','n_diff_pfx01',0,1,'id'),('edxapp','auth_accountrecovery','PRIMARY','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_accountrecovery','PRIMARY','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','auth_accountrecovery','secondary_email','2020-07-23 17:22:27','n_diff_pfx01',0,1,'secondary_email'),('edxapp','auth_accountrecovery','secondary_email','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_accountrecovery','secondary_email','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','auth_accountrecovery','user_id','2020-07-23 17:22:27','n_diff_pfx01',0,1,'user_id'),('edxapp','auth_accountrecovery','user_id','2020-07-23 17:22:27','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_accountrecovery','user_id','2020-07-23 17:22:27','size',1,NULL,'Number of pages in the index'),('edxapp','auth_group','PRIMARY','2020-07-23 17:24:29','n_diff_pfx01',0,1,'id'),('edxapp','auth_group','PRIMARY','2020-07-23 17:24:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_group','PRIMARY','2020-07-23 17:24:29','size',1,NULL,'Number of pages in the index'),('edxapp','auth_group','name','2020-07-23 17:24:29','n_diff_pfx01',0,1,'name'),('edxapp','auth_group','name','2020-07-23 17:24:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_group','name','2020-07-23 17:24:29','size',1,NULL,'Number of pages in the index'),('edxapp','auth_group_permissions','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','auth_group_permissions','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_group_permissions','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_group_permissions','auth_group_permissio_permission_id_84c5c92e_fk_auth_perm','2020-07-23 17:22:28','n_diff_pfx01',0,1,'permission_id'),('edxapp','auth_group_permissions','auth_group_permissio_permission_id_84c5c92e_fk_auth_perm','2020-07-23 17:22:28','n_diff_pfx02',0,1,'permission_id,id'),('edxapp','auth_group_permissions','auth_group_permissio_permission_id_84c5c92e_fk_auth_perm','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_group_permissions','auth_group_permissio_permission_id_84c5c92e_fk_auth_perm','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_group_permissions','auth_group_permissions_group_id_permission_id_0cd325b0_uniq','2020-07-23 17:22:28','n_diff_pfx01',0,1,'group_id'),('edxapp','auth_group_permissions','auth_group_permissions_group_id_permission_id_0cd325b0_uniq','2020-07-23 17:22:28','n_diff_pfx02',0,1,'group_id,permission_id'),('edxapp','auth_group_permissions','auth_group_permissions_group_id_permission_id_0cd325b0_uniq','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_group_permissions','auth_group_permissions_group_id_permission_id_0cd325b0_uniq','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_permission','PRIMARY','2020-07-23 17:24:54','n_diff_pfx01',1617,10,'id'),('edxapp','auth_permission','PRIMARY','2020-07-23 17:24:54','n_leaf_pages',10,NULL,'Number of leaf pages in the index'),('edxapp','auth_permission','PRIMARY','2020-07-23 17:24:54','size',11,NULL,'Number of pages in the index'),('edxapp','auth_permission','auth_permission_content_type_id_codename_01ab375a_uniq','2020-07-23 17:24:54','n_diff_pfx01',407,6,'content_type_id'),('edxapp','auth_permission','auth_permission_content_type_id_codename_01ab375a_uniq','2020-07-23 17:24:54','n_diff_pfx02',1617,6,'content_type_id,codename'),('edxapp','auth_permission','auth_permission_content_type_id_codename_01ab375a_uniq','2020-07-23 17:24:54','n_leaf_pages',6,NULL,'Number of leaf pages in the index'),('edxapp','auth_permission','auth_permission_content_type_id_codename_01ab375a_uniq','2020-07-23 17:24:54','size',7,NULL,'Number of pages in the index'),('edxapp','auth_registration','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','auth_registration','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_registration','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_registration','activation_key','2020-07-23 17:22:28','n_diff_pfx01',0,1,'activation_key'),('edxapp','auth_registration','activation_key','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_registration','activation_key','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_registration','user_id','2020-07-23 17:22:28','n_diff_pfx01',0,1,'user_id'),('edxapp','auth_registration','user_id','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_registration','user_id','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user','PRIMARY','2020-07-23 17:24:29','n_diff_pfx01',9,1,'id'),('edxapp','auth_user','PRIMARY','2020-07-23 17:24:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user','PRIMARY','2020-07-23 17:24:29','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user','email','2020-07-23 17:24:29','n_diff_pfx01',9,1,'email'),('edxapp','auth_user','email','2020-07-23 17:24:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user','email','2020-07-23 17:24:29','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user','username','2020-07-23 17:24:29','n_diff_pfx01',9,1,'username'),('edxapp','auth_user','username','2020-07-23 17:24:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user','username','2020-07-23 17:24:29','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user_groups','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','auth_user_groups','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user_groups','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user_groups','auth_user_groups_group_id_97559544_fk_auth_group_id','2020-07-23 17:22:28','n_diff_pfx01',0,1,'group_id'),('edxapp','auth_user_groups','auth_user_groups_group_id_97559544_fk_auth_group_id','2020-07-23 17:22:28','n_diff_pfx02',0,1,'group_id,id'),('edxapp','auth_user_groups','auth_user_groups_group_id_97559544_fk_auth_group_id','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user_groups','auth_user_groups_group_id_97559544_fk_auth_group_id','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user_groups','auth_user_groups_user_id_group_id_94350c0c_uniq','2020-07-23 17:22:28','n_diff_pfx01',0,1,'user_id'),('edxapp','auth_user_groups','auth_user_groups_user_id_group_id_94350c0c_uniq','2020-07-23 17:22:28','n_diff_pfx02',0,1,'user_id,group_id'),('edxapp','auth_user_groups','auth_user_groups_user_id_group_id_94350c0c_uniq','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user_groups','auth_user_groups_user_id_group_id_94350c0c_uniq','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user_user_permissions','PRIMARY','2020-07-23 17:26:16','n_diff_pfx01',100,1,'id'),('edxapp','auth_user_user_permissions','PRIMARY','2020-07-23 17:26:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user_user_permissions','PRIMARY','2020-07-23 17:26:16','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user_user_permissions','auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm','2020-07-23 17:26:16','n_diff_pfx01',100,1,'permission_id'),('edxapp','auth_user_user_permissions','auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm','2020-07-23 17:26:16','n_diff_pfx02',100,1,'permission_id,id'),('edxapp','auth_user_user_permissions','auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm','2020-07-23 17:26:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user_user_permissions','auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm','2020-07-23 17:26:16','size',1,NULL,'Number of pages in the index'),('edxapp','auth_user_user_permissions','auth_user_user_permissions_user_id_permission_id_14a6b632_uniq','2020-07-23 17:26:16','n_diff_pfx01',1,1,'user_id'),('edxapp','auth_user_user_permissions','auth_user_user_permissions_user_id_permission_id_14a6b632_uniq','2020-07-23 17:26:16','n_diff_pfx02',100,1,'user_id,permission_id'),('edxapp','auth_user_user_permissions','auth_user_user_permissions_user_id_permission_id_14a6b632_uniq','2020-07-23 17:26:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_user_user_permissions','auth_user_user_permissions_user_id_permission_id_14a6b632_uniq','2020-07-23 17:26:16','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','PRIMARY','2020-07-23 17:24:42','n_diff_pfx01',7,1,'id'),('edxapp','auth_userprofile','PRIMARY','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','PRIMARY','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','auth_userprofile_gender_44a122fb','2020-07-23 17:24:42','n_diff_pfx01',1,1,'gender'),('edxapp','auth_userprofile','auth_userprofile_gender_44a122fb','2020-07-23 17:24:42','n_diff_pfx02',7,1,'gender,id'),('edxapp','auth_userprofile','auth_userprofile_gender_44a122fb','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','auth_userprofile_gender_44a122fb','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','auth_userprofile_language_8948d814','2020-07-23 17:24:42','n_diff_pfx01',1,1,'language'),('edxapp','auth_userprofile','auth_userprofile_language_8948d814','2020-07-23 17:24:42','n_diff_pfx02',7,1,'language,id'),('edxapp','auth_userprofile','auth_userprofile_language_8948d814','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','auth_userprofile_language_8948d814','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','auth_userprofile_level_of_education_93927e04','2020-07-23 17:24:42','n_diff_pfx01',1,1,'level_of_education'),('edxapp','auth_userprofile','auth_userprofile_level_of_education_93927e04','2020-07-23 17:24:42','n_diff_pfx02',7,1,'level_of_education,id'),('edxapp','auth_userprofile','auth_userprofile_level_of_education_93927e04','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','auth_userprofile_level_of_education_93927e04','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','auth_userprofile_location_ca92e4f6','2020-07-23 17:24:42','n_diff_pfx01',1,1,'location'),('edxapp','auth_userprofile','auth_userprofile_location_ca92e4f6','2020-07-23 17:24:42','n_diff_pfx02',7,1,'location,id'),('edxapp','auth_userprofile','auth_userprofile_location_ca92e4f6','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','auth_userprofile_location_ca92e4f6','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','auth_userprofile_name_50909f10','2020-07-23 17:24:42','n_diff_pfx01',1,1,'name'),('edxapp','auth_userprofile','auth_userprofile_name_50909f10','2020-07-23 17:24:42','n_diff_pfx02',7,1,'name,id'),('edxapp','auth_userprofile','auth_userprofile_name_50909f10','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','auth_userprofile_name_50909f10','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','auth_userprofile_year_of_birth_6559b9a5','2020-07-23 17:24:42','n_diff_pfx01',1,1,'year_of_birth'),('edxapp','auth_userprofile','auth_userprofile_year_of_birth_6559b9a5','2020-07-23 17:24:42','n_diff_pfx02',7,1,'year_of_birth,id'),('edxapp','auth_userprofile','auth_userprofile_year_of_birth_6559b9a5','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','auth_userprofile_year_of_birth_6559b9a5','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','auth_userprofile','user_id','2020-07-23 17:24:42','n_diff_pfx01',7,1,'user_id'),('edxapp','auth_userprofile','user_id','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','auth_userprofile','user_id','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeassertion','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','badges_badgeassertion','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeassertion','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeassertion','badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba','2020-07-23 17:22:28','n_diff_pfx01',0,1,'badge_class_id'),('edxapp','badges_badgeassertion','badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba','2020-07-23 17:22:28','n_diff_pfx02',0,1,'badge_class_id,id'),('edxapp','badges_badgeassertion','badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeassertion','badges_badgeassertio_badge_class_id_902ac30e_fk_badges_ba','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeassertion','badges_badgeassertion_created_d098832e','2020-07-23 17:22:28','n_diff_pfx01',0,1,'created'),('edxapp','badges_badgeassertion','badges_badgeassertion_created_d098832e','2020-07-23 17:22:28','n_diff_pfx02',0,1,'created,id'),('edxapp','badges_badgeassertion','badges_badgeassertion_created_d098832e','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeassertion','badges_badgeassertion_created_d098832e','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeassertion','badges_badgeassertion_user_id_13665630_fk_auth_user_id','2020-07-23 17:22:28','n_diff_pfx01',0,1,'user_id'),('edxapp','badges_badgeassertion','badges_badgeassertion_user_id_13665630_fk_auth_user_id','2020-07-23 17:22:28','n_diff_pfx02',0,1,'user_id,id'),('edxapp','badges_badgeassertion','badges_badgeassertion_user_id_13665630_fk_auth_user_id','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeassertion','badges_badgeassertion_user_id_13665630_fk_auth_user_id','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeclass','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','badges_badgeclass','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeclass','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeclass','badges_badgeclass_issuing_component_85b6d93d','2020-07-23 17:22:28','n_diff_pfx01',0,1,'issuing_component'),('edxapp','badges_badgeclass','badges_badgeclass_issuing_component_85b6d93d','2020-07-23 17:22:28','n_diff_pfx02',0,1,'issuing_component,id'),('edxapp','badges_badgeclass','badges_badgeclass_issuing_component_85b6d93d','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeclass','badges_badgeclass_issuing_component_85b6d93d','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeclass','badges_badgeclass_slug_5f420f6f','2020-07-23 17:22:28','n_diff_pfx01',0,1,'slug'),('edxapp','badges_badgeclass','badges_badgeclass_slug_5f420f6f','2020-07-23 17:22:28','n_diff_pfx02',0,1,'slug,id'),('edxapp','badges_badgeclass','badges_badgeclass_slug_5f420f6f','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeclass','badges_badgeclass_slug_5f420f6f','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_badgeclass','badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq','2020-07-23 17:22:28','n_diff_pfx01',0,1,'slug'),('edxapp','badges_badgeclass','badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq','2020-07-23 17:22:28','n_diff_pfx02',0,1,'slug,issuing_component'),('edxapp','badges_badgeclass','badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq','2020-07-23 17:22:28','n_diff_pfx03',0,1,'slug,issuing_component,course_id'),('edxapp','badges_badgeclass','badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_badgeclass','badges_badgeclass_slug_issuing_component_course_id_92cd3912_uniq','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_coursecompleteimageconfiguration','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',3,1,'id'),('edxapp','badges_coursecompleteimageconfiguration','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_coursecompleteimageconfiguration','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','badges_coursecompleteimageconfiguration','mode','2020-07-23 17:22:29','n_diff_pfx01',3,1,'mode'),('edxapp','badges_coursecompleteimageconfiguration','mode','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_coursecompleteimageconfiguration','mode','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','badges_courseeventbadgesconfiguration','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','badges_courseeventbadgesconfiguration','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_courseeventbadgesconfiguration','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','badges_courseeventbadgesconfiguration','badges_courseeventba_changed_by_id_db04ed01_fk_auth_user','2020-07-23 17:22:28','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','badges_courseeventbadgesconfiguration','badges_courseeventba_changed_by_id_db04ed01_fk_auth_user','2020-07-23 17:22:28','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','badges_courseeventbadgesconfiguration','badges_courseeventba_changed_by_id_db04ed01_fk_auth_user','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','badges_courseeventbadgesconfiguration','badges_courseeventba_changed_by_id_db04ed01_fk_auth_user','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','block_structure','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','block_structure','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','block_structure','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','block_structure','data_usage_key','2020-07-23 17:22:28','n_diff_pfx01',0,1,'data_usage_key'),('edxapp','block_structure','data_usage_key','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','block_structure','data_usage_key','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','block_structure_config','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','block_structure_config','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','block_structure_config','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','block_structure_config','block_structure_config_changed_by_id_45af0b10_fk_auth_user_id','2020-07-23 17:22:28','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','block_structure_config','block_structure_config_changed_by_id_45af0b10_fk_auth_user_id','2020-07-23 17:22:28','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','block_structure_config','block_structure_config_changed_by_id_45af0b10_fk_auth_user_id','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','block_structure_config','block_structure_config_changed_by_id_45af0b10_fk_auth_user_id','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_bookmark','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','bookmarks_bookmark','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_bookmark','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_course_key_46609583','2020-07-23 17:22:28','n_diff_pfx01',0,1,'course_key'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_course_key_46609583','2020-07-23 17:22:28','n_diff_pfx02',0,1,'course_key,id'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_course_key_46609583','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_course_key_46609583','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_usage_key_d07927c9','2020-07-23 17:22:28','n_diff_pfx01',0,1,'usage_key'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_usage_key_d07927c9','2020-07-23 17:22:28','n_diff_pfx02',0,1,'usage_key,id'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_usage_key_d07927c9','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_usage_key_d07927c9','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_user_id_usage_key_61eac24b_uniq','2020-07-23 17:22:28','n_diff_pfx01',0,1,'user_id'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_user_id_usage_key_61eac24b_uniq','2020-07-23 17:22:28','n_diff_pfx02',0,1,'user_id,usage_key'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_user_id_usage_key_61eac24b_uniq','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_user_id_usage_key_61eac24b_uniq','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks','2020-07-23 17:22:28','n_diff_pfx01',0,1,'xblock_cache_id'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks','2020-07-23 17:22:28','n_diff_pfx02',0,1,'xblock_cache_id,id'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_bookmark','bookmarks_bookmark_xblock_cache_id_808a7639_fk_bookmarks','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_xblockcache','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',159,6,'id'),('edxapp','bookmarks_xblockcache','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',6,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_xblockcache','PRIMARY','2020-07-23 17:22:30','size',7,NULL,'Number of pages in the index'),('edxapp','bookmarks_xblockcache','bookmarks_xblockcache_course_key_5297fa77','2020-07-23 17:22:30','n_diff_pfx01',1,1,'course_key'),('edxapp','bookmarks_xblockcache','bookmarks_xblockcache_course_key_5297fa77','2020-07-23 17:22:30','n_diff_pfx02',159,1,'course_key,id'),('edxapp','bookmarks_xblockcache','bookmarks_xblockcache_course_key_5297fa77','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_xblockcache','bookmarks_xblockcache_course_key_5297fa77','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','bookmarks_xblockcache','usage_key','2020-07-23 17:22:30','n_diff_pfx01',159,1,'usage_key'),('edxapp','bookmarks_xblockcache','usage_key','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bookmarks_xblockcache','usage_key','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','branding_brandingapiconfig','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','branding_brandingapiconfig','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','branding_brandingapiconfig','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','branding_brandingapiconfig','branding_brandingapi_changed_by_id_bab2730f_fk_auth_user','2020-07-23 17:22:28','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','branding_brandingapiconfig','branding_brandingapi_changed_by_id_bab2730f_fk_auth_user','2020-07-23 17:22:28','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','branding_brandingapiconfig','branding_brandingapi_changed_by_id_bab2730f_fk_auth_user','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','branding_brandingapiconfig','branding_brandingapi_changed_by_id_bab2730f_fk_auth_user','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','branding_brandinginfoconfig','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','branding_brandinginfoconfig','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','branding_brandinginfoconfig','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','branding_brandinginfoconfig','branding_brandinginf_changed_by_id_616dd172_fk_auth_user','2020-07-23 17:22:28','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','branding_brandinginfoconfig','branding_brandinginf_changed_by_id_616dd172_fk_auth_user','2020-07-23 17:22:28','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','branding_brandinginfoconfig','branding_brandinginf_changed_by_id_616dd172_fk_auth_user','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','branding_brandinginfoconfig','branding_brandinginf_changed_by_id_616dd172_fk_auth_user','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_bulkemailflag','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','bulk_email_bulkemailflag','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_bulkemailflag','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_bulkemailflag','bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id','2020-07-23 17:22:28','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','bulk_email_bulkemailflag','bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id','2020-07-23 17:22:28','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','bulk_email_bulkemailflag','bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_bulkemailflag','bulk_email_bulkemailflag_changed_by_id_c510754b_fk_auth_user_id','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_cohorttarget','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'target_ptr_id'),('edxapp','bulk_email_cohorttarget','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_cohorttarget','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_cohorttarget','bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr','2020-07-23 17:22:28','n_diff_pfx01',0,1,'cohort_id'),('edxapp','bulk_email_cohorttarget','bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr','2020-07-23 17:22:28','n_diff_pfx02',0,1,'cohort_id,target_ptr_id'),('edxapp','bulk_email_cohorttarget','bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_cohorttarget','bulk_email_cohorttar_cohort_id_096f39c9_fk_course_gr','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseauthorization','PRIMARY','2020-07-23 17:22:28','n_diff_pfx01',0,1,'id'),('edxapp','bulk_email_courseauthorization','PRIMARY','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseauthorization','PRIMARY','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseauthorization','course_id','2020-07-23 17:22:28','n_diff_pfx01',0,1,'course_id'),('edxapp','bulk_email_courseauthorization','course_id','2020-07-23 17:22:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseauthorization','course_id','2020-07-23 17:22:28','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','bulk_email_courseemail','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_course_id_b7b8a9a2','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_id'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_course_id_b7b8a9a2','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_id,id'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_course_id_b7b8a9a2','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_course_id_b7b8a9a2','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id','2020-07-23 17:22:29','n_diff_pfx01',0,1,'sender_id'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id','2020-07-23 17:22:29','n_diff_pfx02',0,1,'sender_id,id'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_sender_id_865f6979_fk_auth_user_id','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_slug_bd25801f','2020-07-23 17:22:29','n_diff_pfx01',0,1,'slug'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_slug_bd25801f','2020-07-23 17:22:29','n_diff_pfx02',0,1,'slug,id'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_slug_bd25801f','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail','bulk_email_courseemail_slug_bd25801f','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail_targets','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','bulk_email_courseemail_targets','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail_targets','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai','2020-07-23 17:22:29','n_diff_pfx01',0,1,'target_id'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai','2020-07-23 17:22:29','n_diff_pfx02',0,1,'target_id,id'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseema_target_id_52b11fa9_fk_bulk_emai','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseemail_t_courseemail_id_target_id_e0440acc_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'courseemail_id'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseemail_t_courseemail_id_target_id_e0440acc_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'courseemail_id,target_id'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseemail_t_courseemail_id_target_id_e0440acc_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemail_targets','bulk_email_courseemail_t_courseemail_id_target_id_e0440acc_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemailtemplate','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',2,1,'id'),('edxapp','bulk_email_courseemailtemplate','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemailtemplate','PRIMARY','2020-07-23 17:22:30','size',5,NULL,'Number of pages in the index'),('edxapp','bulk_email_courseemailtemplate','name','2020-07-23 17:22:30','n_diff_pfx01',2,1,'name'),('edxapp','bulk_email_courseemailtemplate','name','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_courseemailtemplate','name','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_coursemodetarget','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'target_ptr_id'),('edxapp','bulk_email_coursemodetarget','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_coursemodetarget','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_coursemodetarget','bulk_email_coursemod_track_id_2b68bb43_fk_course_mo','2020-07-23 17:22:29','n_diff_pfx01',0,1,'track_id'),('edxapp','bulk_email_coursemodetarget','bulk_email_coursemod_track_id_2b68bb43_fk_course_mo','2020-07-23 17:22:29','n_diff_pfx02',0,1,'track_id,target_ptr_id'),('edxapp','bulk_email_coursemodetarget','bulk_email_coursemod_track_id_2b68bb43_fk_course_mo','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_coursemodetarget','bulk_email_coursemod_track_id_2b68bb43_fk_course_mo','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_optout','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','bulk_email_optout','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_optout','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_optout','bulk_email_optout_course_id_5c5836a8','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_id'),('edxapp','bulk_email_optout','bulk_email_optout_course_id_5c5836a8','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_id,id'),('edxapp','bulk_email_optout','bulk_email_optout_course_id_5c5836a8','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_optout','bulk_email_optout_course_id_5c5836a8','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_optout','bulk_email_optout_user_id_course_id_e0e2d6a6_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'user_id'),('edxapp','bulk_email_optout','bulk_email_optout_user_id_course_id_e0e2d6a6_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','bulk_email_optout','bulk_email_optout_user_id_course_id_e0e2d6a6_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_optout','bulk_email_optout_user_id_course_id_e0e2d6a6_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_email_target','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','bulk_email_target','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_email_target','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_grades_scoreoverrider','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','bulk_grades_scoreoverrider','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_grades_scoreoverrider','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreove_module_id_33617068_fk_coursewar','2020-07-23 17:22:29','n_diff_pfx01',0,1,'module_id'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreove_module_id_33617068_fk_coursewar','2020-07-23 17:22:29','n_diff_pfx02',0,1,'module_id,id'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreove_module_id_33617068_fk_coursewar','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreove_module_id_33617068_fk_coursewar','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_created_2d9c74a5','2020-07-23 17:22:29','n_diff_pfx01',0,1,'created'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_created_2d9c74a5','2020-07-23 17:22:29','n_diff_pfx02',0,1,'created,id'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_created_2d9c74a5','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_created_2d9c74a5','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id','2020-07-23 17:22:29','n_diff_pfx01',0,1,'user_id'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id','2020-07-23 17:22:29','n_diff_pfx02',0,1,'user_id,id'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','bulk_grades_scoreoverrider','bulk_grades_scoreoverrider_user_id_9768d9f6_fk_auth_user_id','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','PRIMARY','2020-07-23 17:24:30','n_diff_pfx01',0,1,'history_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','PRIMARY','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','PRIMARY','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_histor_history_user_id_e696e2d5_fk_auth_user','2020-07-23 17:24:30','n_diff_pfx01',0,1,'history_user_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_histor_history_user_id_e696e2d5_fk_auth_user','2020-07-23 17:24:30','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_histor_history_user_id_e696e2d5_fk_auth_user','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_histor_history_user_id_e696e2d5_fk_auth_user','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicaluse_course_key_0f40c91a','2020-07-23 17:24:30','n_diff_pfx01',0,1,'course_key'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicaluse_course_key_0f40c91a','2020-07-23 17:24:30','n_diff_pfx02',0,1,'course_key,history_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicaluse_course_key_0f40c91a','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicaluse_course_key_0f40c91a','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_id_2b36f9ae','2020-07-23 17:24:30','n_diff_pfx01',0,1,'id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_id_2b36f9ae','2020-07-23 17:24:30','n_diff_pfx02',0,1,'id,history_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_id_2b36f9ae','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_id_2b36f9ae','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_user_id_c2855120','2020-07-23 17:24:30','n_diff_pfx01',0,1,'user_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_user_id_c2855120','2020-07-23 17:24:30','n_diff_pfx02',0,1,'user_id,history_id'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_user_id_c2855120','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_historicalusercalendarsyncconfig','calendar_sync_historicalusercalendarsyncconfig_user_id_c2855120','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_usercalendarsyncconfig','PRIMARY','2020-07-23 17:24:30','n_diff_pfx01',0,1,'id'),('edxapp','calendar_sync_usercalendarsyncconfig','PRIMARY','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_usercalendarsyncconfig','PRIMARY','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalend_user_id_course_key_57c343ab_uniq','2020-07-23 17:24:30','n_diff_pfx01',0,1,'user_id'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalend_user_id_course_key_57c343ab_uniq','2020-07-23 17:24:30','n_diff_pfx02',0,1,'user_id,course_key'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalend_user_id_course_key_57c343ab_uniq','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalend_user_id_course_key_57c343ab_uniq','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalendarsyncconfig_course_key_86657ca7','2020-07-23 17:24:30','n_diff_pfx01',0,1,'course_key'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalendarsyncconfig_course_key_86657ca7','2020-07-23 17:24:30','n_diff_pfx02',0,1,'course_key,id'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalendarsyncconfig_course_key_86657ca7','2020-07-23 17:24:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','calendar_sync_usercalendarsyncconfig','calendar_sync_usercalendarsyncconfig_course_key_86657ca7','2020-07-23 17:24:30','size',1,NULL,'Number of pages in the index'),('edxapp','catalog_catalogintegration','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','catalog_catalogintegration','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','catalog_catalogintegration','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','catalog_catalogintegration','catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','catalog_catalogintegration','catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','catalog_catalogintegration','catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','catalog_catalogintegration','catalog_cataloginteg_changed_by_id_cde406de_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_taskmeta','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','celery_taskmeta','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_taskmeta','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_taskmeta','celery_taskmeta_hidden_23fd02dc','2020-07-23 17:22:29','n_diff_pfx01',0,1,'hidden'),('edxapp','celery_taskmeta','celery_taskmeta_hidden_23fd02dc','2020-07-23 17:22:29','n_diff_pfx02',0,1,'hidden,id'),('edxapp','celery_taskmeta','celery_taskmeta_hidden_23fd02dc','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_taskmeta','celery_taskmeta_hidden_23fd02dc','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_taskmeta','task_id','2020-07-23 17:22:29','n_diff_pfx01',0,1,'task_id'),('edxapp','celery_taskmeta','task_id','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_taskmeta','task_id','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_tasksetmeta','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','celery_tasksetmeta','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_tasksetmeta','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_tasksetmeta','celery_tasksetmeta_hidden_593cfc24','2020-07-23 17:22:29','n_diff_pfx01',0,1,'hidden'),('edxapp','celery_tasksetmeta','celery_tasksetmeta_hidden_593cfc24','2020-07-23 17:22:29','n_diff_pfx02',0,1,'hidden,id'),('edxapp','celery_tasksetmeta','celery_tasksetmeta_hidden_593cfc24','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_tasksetmeta','celery_tasksetmeta_hidden_593cfc24','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_tasksetmeta','taskset_id','2020-07-23 17:22:29','n_diff_pfx01',0,1,'taskset_id'),('edxapp','celery_tasksetmeta','taskset_id','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_tasksetmeta','taskset_id','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_utils_failedtask','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','celery_utils_failedtask','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_utils_failedtask','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_datetime_resolved_8160e407','2020-07-23 17:22:29','n_diff_pfx01',0,1,'datetime_resolved'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_datetime_resolved_8160e407','2020-07-23 17:22:29','n_diff_pfx02',0,1,'datetime_resolved,id'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_datetime_resolved_8160e407','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_datetime_resolved_8160e407','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_id_37af0933','2020-07-23 17:22:29','n_diff_pfx01',0,1,'task_id'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_id_37af0933','2020-07-23 17:22:29','n_diff_pfx02',0,1,'task_id,id'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_id_37af0933','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_id_37af0933','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_name_exc_efb8c9be_idx','2020-07-23 17:22:29','n_diff_pfx01',0,1,'task_name'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_name_exc_efb8c9be_idx','2020-07-23 17:22:29','n_diff_pfx02',0,1,'task_name,exc'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_name_exc_efb8c9be_idx','2020-07-23 17:22:29','n_diff_pfx03',0,1,'task_name,exc,id'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_name_exc_efb8c9be_idx','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','celery_utils_failedtask','celery_utils_failedtask_task_name_exc_efb8c9be_idx','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationconfiguration','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificategenerationconfiguration','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationconfiguration','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationconfiguration','certificates_certifi_changed_by_id_a6d06e99_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','certificates_certificategenerationconfiguration','certificates_certifi_changed_by_id_a6d06e99_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','certificates_certificategenerationconfiguration','certificates_certifi_changed_by_id_a6d06e99_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationconfiguration','certificates_certifi_changed_by_id_a6d06e99_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationcoursesetting','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificategenerationcoursesetting','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationcoursesetting','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationcoursesetting','certificates_certificategen_course_key_dd10af41','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_key'),('edxapp','certificates_certificategenerationcoursesetting','certificates_certificategen_course_key_dd10af41','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_key,id'),('edxapp','certificates_certificategenerationcoursesetting','certificates_certificategen_course_key_dd10af41','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationcoursesetting','certificates_certificategen_course_key_dd10af41','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationhistory','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificategenerationhistory','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationhistory','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'generated_by_id'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'generated_by_id,id'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_generated_by_id_e9d4b7f2_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_instructor_task_id_8f7176a6_fk_instructo','2020-07-23 17:22:29','n_diff_pfx01',0,1,'instructor_task_id'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_instructor_task_id_8f7176a6_fk_instructo','2020-07-23 17:22:29','n_diff_pfx02',0,1,'instructor_task_id,id'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_instructor_task_id_8f7176a6_fk_instructo','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificategenerationhistory','certificates_certifi_instructor_task_id_8f7176a6_fk_instructo','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatehtmlviewconfiguration','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificatehtmlviewconfiguration','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatehtmlviewconfiguration','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatehtmlviewconfiguration','certificates_certifi_changed_by_id_bcf656f2_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','certificates_certificatehtmlviewconfiguration','certificates_certifi_changed_by_id_bcf656f2_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','certificates_certificatehtmlviewconfiguration','certificates_certifi_changed_by_id_bcf656f2_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatehtmlviewconfiguration','certificates_certifi_changed_by_id_bcf656f2_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificateinvalidation','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificateinvalidation','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificateinvalidation','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificateinvalidation','certificates_certifi_generated_certificat_31bed498_fk_certifica','2020-07-23 17:22:29','n_diff_pfx01',0,1,'generated_certificate_id'),('edxapp','certificates_certificateinvalidation','certificates_certifi_generated_certificat_31bed498_fk_certifica','2020-07-23 17:22:29','n_diff_pfx02',0,1,'generated_certificate_id,id'),('edxapp','certificates_certificateinvalidation','certificates_certifi_generated_certificat_31bed498_fk_certifica','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificateinvalidation','certificates_certifi_generated_certificat_31bed498_fk_certifica','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificateinvalidation','certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'invalidated_by_id'),('edxapp','certificates_certificateinvalidation','certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'invalidated_by_id,id'),('edxapp','certificates_certificateinvalidation','certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificateinvalidation','certificates_certifi_invalidated_by_id_e3c101f1_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatetemplate','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificatetemplate','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatetemplate','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatetemplate','certificates_certificate_organization_id_course_k_88e26c0d_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'organization_id'),('edxapp','certificates_certificatetemplate','certificates_certificate_organization_id_course_k_88e26c0d_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'organization_id,course_key'),('edxapp','certificates_certificatetemplate','certificates_certificate_organization_id_course_k_88e26c0d_uniq','2020-07-23 17:22:29','n_diff_pfx03',0,1,'organization_id,course_key,mode'),('edxapp','certificates_certificatetemplate','certificates_certificate_organization_id_course_k_88e26c0d_uniq','2020-07-23 17:22:29','n_diff_pfx04',0,1,'organization_id,course_key,mode,language'),('edxapp','certificates_certificatetemplate','certificates_certificate_organization_id_course_k_88e26c0d_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatetemplate','certificates_certificate_organization_id_course_k_88e26c0d_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_course_key_9a6a823d','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_key'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_course_key_9a6a823d','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_key,id'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_course_key_9a6a823d','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_course_key_9a6a823d','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_organization_id_030a747d','2020-07-23 17:22:29','n_diff_pfx01',0,1,'organization_id'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_organization_id_030a747d','2020-07-23 17:22:29','n_diff_pfx02',0,1,'organization_id,id'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_organization_id_030a747d','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatetemplate','certificates_certificatetemplate_organization_id_030a747d','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatetemplateasset','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_certificatetemplateasset','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatetemplateasset','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatetemplateasset','asset_slug','2020-07-23 17:22:29','n_diff_pfx01',0,1,'asset_slug'),('edxapp','certificates_certificatetemplateasset','asset_slug','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatetemplateasset','asset_slug','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatewhitelist','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',3,1,'id'),('edxapp','certificates_certificatewhitelist','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatewhitelist','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_certificatewhitelist','certificates_certifi_user_id_c2ab1b7c_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',3,1,'user_id'),('edxapp','certificates_certificatewhitelist','certificates_certifi_user_id_c2ab1b7c_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',3,1,'user_id,id'),('edxapp','certificates_certificatewhitelist','certificates_certifi_user_id_c2ab1b7c_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_certificatewhitelist','certificates_certifi_user_id_c2ab1b7c_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_examplecertificate','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_examplecertificate','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_examplecertificate','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_examplecertificate','certificates_example_example_cert_set_id_7e660917_fk_certifica','2020-07-23 17:22:29','n_diff_pfx01',0,1,'example_cert_set_id'),('edxapp','certificates_examplecertificate','certificates_example_example_cert_set_id_7e660917_fk_certifica','2020-07-23 17:22:29','n_diff_pfx02',0,1,'example_cert_set_id,id'),('edxapp','certificates_examplecertificate','certificates_example_example_cert_set_id_7e660917_fk_certifica','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_examplecertificate','certificates_example_example_cert_set_id_7e660917_fk_certifica','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_examplecertificate','certificates_examplecertificate_access_key_8b745a5d','2020-07-23 17:22:29','n_diff_pfx01',0,1,'access_key'),('edxapp','certificates_examplecertificate','certificates_examplecertificate_access_key_8b745a5d','2020-07-23 17:22:29','n_diff_pfx02',0,1,'access_key,id'),('edxapp','certificates_examplecertificate','certificates_examplecertificate_access_key_8b745a5d','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_examplecertificate','certificates_examplecertificate_access_key_8b745a5d','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_examplecertificate','uuid','2020-07-23 17:22:29','n_diff_pfx01',0,1,'uuid'),('edxapp','certificates_examplecertificate','uuid','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_examplecertificate','uuid','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_examplecertificateset','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_examplecertificateset','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_examplecertificateset','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_examplecertificateset','certificates_examplecertificateset_course_key_16497ee9','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_key'),('edxapp','certificates_examplecertificateset','certificates_examplecertificateset_course_key_16497ee9','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_key,id'),('edxapp','certificates_examplecertificateset','certificates_examplecertificateset_course_key_16497ee9','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_examplecertificateset','certificates_examplecertificateset_course_key_16497ee9','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_generatedcertificate','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_generatedcertificate','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_generatedcertificate','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_generatedcertificate','certificates_generatedce_user_id_course_id_fc1bb3ee_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'user_id'),('edxapp','certificates_generatedcertificate','certificates_generatedce_user_id_course_id_fc1bb3ee_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','certificates_generatedcertificate','certificates_generatedce_user_id_course_id_fc1bb3ee_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_generatedcertificate','certificates_generatedce_user_id_course_id_fc1bb3ee_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_generatedcertificate','certificates_generatedcertificate_verify_uuid_97405316','2020-07-23 17:22:29','n_diff_pfx01',0,1,'verify_uuid'),('edxapp','certificates_generatedcertificate','certificates_generatedcertificate_verify_uuid_97405316','2020-07-23 17:22:29','n_diff_pfx02',0,1,'verify_uuid,id'),('edxapp','certificates_generatedcertificate','certificates_generatedcertificate_verify_uuid_97405316','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_generatedcertificate','certificates_generatedcertificate_verify_uuid_97405316','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'history_id'),('edxapp','certificates_historicalgeneratedcertificate','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_histori_history_user_id_1b53bb5f_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'history_user_id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_histori_history_user_id_1b53bb5f_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_histori_history_user_id_1b53bb5f_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_histori_history_user_id_1b53bb5f_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_id_269c8929','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_id_269c8929','2020-07-23 17:22:29','n_diff_pfx02',0,1,'id,history_id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_id_269c8929','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_id_269c8929','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_user_id_e7970938','2020-07-23 17:22:29','n_diff_pfx01',0,1,'user_id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_user_id_e7970938','2020-07-23 17:22:29','n_diff_pfx02',0,1,'user_id,history_id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_user_id_e7970938','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_user_id_e7970938','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_verify_uuid_783d764e','2020-07-23 17:22:29','n_diff_pfx01',0,1,'verify_uuid'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_verify_uuid_783d764e','2020-07-23 17:22:29','n_diff_pfx02',0,1,'verify_uuid,history_id'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_verify_uuid_783d764e','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','certificates_historicalgeneratedcertificate','certificates_historicalgeneratedcertificate_verify_uuid_783d764e','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','commerce_commerceconfiguration','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','commerce_commerceconfiguration','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','commerce_commerceconfiguration','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','commerce_commerceconfiguration','commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','commerce_commerceconfiguration','commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','commerce_commerceconfiguration','commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','commerce_commerceconfiguration','commerce_commercecon_changed_by_id_2c9a6f14_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','completion_blockcompletion','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','completion_blockcompletion','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','completion_blockcompletion','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','completion_blockcompletion','completion_blockcompleti_course_key_block_key_use_b15bac54_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_key'),('edxapp','completion_blockcompletion','completion_blockcompleti_course_key_block_key_use_b15bac54_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_key,block_key'),('edxapp','completion_blockcompletion','completion_blockcompleti_course_key_block_key_use_b15bac54_uniq','2020-07-23 17:22:29','n_diff_pfx03',0,1,'course_key,block_key,user_id'),('edxapp','completion_blockcompletion','completion_blockcompleti_course_key_block_key_use_b15bac54_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','completion_blockcompletion','completion_blockcompleti_course_key_block_key_use_b15bac54_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','completion_blockcompletion','completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_key'),('edxapp','completion_blockcompletion','completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_key,block_type'),('edxapp','completion_blockcompletion','completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx','2020-07-23 17:22:29','n_diff_pfx03',0,1,'course_key,block_type,user_id'),('edxapp','completion_blockcompletion','completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx','2020-07-23 17:22:29','n_diff_pfx04',0,1,'course_key,block_type,user_id,id'),('edxapp','completion_blockcompletion','completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','completion_blockcompletion','completion_blockcompletio_course_key_block_type_use_0f0d4d2d_idx','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','completion_blockcompletion','completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx','2020-07-23 17:22:29','n_diff_pfx01',0,1,'user_id'),('edxapp','completion_blockcompletion','completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx','2020-07-23 17:22:29','n_diff_pfx02',0,1,'user_id,course_key'),('edxapp','completion_blockcompletion','completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx','2020-07-23 17:22:29','n_diff_pfx03',0,1,'user_id,course_key,modified'),('edxapp','completion_blockcompletion','completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx','2020-07-23 17:22:29','n_diff_pfx04',0,1,'user_id,course_key,modified,id'),('edxapp','completion_blockcompletion','completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','completion_blockcompletion','completion_blockcompletio_user_id_course_key_modifi_ed54291e_idx','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_datasharingconsent','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','consent_datasharingconsent','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_datasharingconsent','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_datasharingconsent','consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','consent_datasharingconsent','consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'enterprise_customer_id,username'),('edxapp','consent_datasharingconsent','consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq','2020-07-23 17:22:29','n_diff_pfx03',0,1,'enterprise_customer_id,username,course_id'),('edxapp','consent_datasharingconsent','consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_datasharingconsent','consent_datasharingconse_enterprise_customer_id_u_8bdd34e4_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_datasharingconsenttextoverrides','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','consent_datasharingconsenttextoverrides','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_datasharingconsenttextoverrides','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_datasharingconsenttextoverrides','enterprise_customer_id','2020-07-23 17:22:29','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','consent_datasharingconsenttextoverrides','enterprise_customer_id','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_datasharingconsenttextoverrides','enterprise_customer_id','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_historicaldatasharingconsent','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'history_id'),('edxapp','consent_historicaldatasharingconsent','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_historicaldatasharingconsent','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_historicaldatasharingconsent','consent_historicalda_history_user_id_08d7bf89_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'history_user_id'),('edxapp','consent_historicaldatasharingconsent','consent_historicalda_history_user_id_08d7bf89_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','consent_historicaldatasharingconsent','consent_historicalda_history_user_id_08d7bf89_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_historicaldatasharingconsent','consent_historicalda_history_user_id_08d7bf89_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatashari_enterprise_customer_id_35c184bf','2020-07-23 17:22:29','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatashari_enterprise_customer_id_35c184bf','2020-07-23 17:22:29','n_diff_pfx02',0,1,'enterprise_customer_id,history_id'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatashari_enterprise_customer_id_35c184bf','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatashari_enterprise_customer_id_35c184bf','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatasharingconsent_id_69bef37e','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatasharingconsent_id_69bef37e','2020-07-23 17:22:29','n_diff_pfx02',0,1,'id,history_id'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatasharingconsent_id_69bef37e','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','consent_historicaldatasharingconsent','consent_historicaldatasharingconsent_id_69bef37e','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrary','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','content_libraries_contentlibrary','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrary','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrary','bundle_uuid','2020-07-23 17:22:29','n_diff_pfx01',0,1,'bundle_uuid'),('edxapp','content_libraries_contentlibrary','bundle_uuid','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrary','bundle_uuid','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_org_id_slug_2b964108_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'org_id'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_org_id_slug_2b964108_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'org_id,slug'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_org_id_slug_2b964108_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_org_id_slug_2b964108_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_slug_30d5507f','2020-07-23 17:22:29','n_diff_pfx01',0,1,'slug'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_slug_30d5507f','2020-07-23 17:22:29','n_diff_pfx02',0,1,'slug,id'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_slug_30d5507f','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrary','content_libraries_contentlibrary_slug_30d5507f','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrarypermission','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','content_libraries_contentlibrarypermission','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrarypermission','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_group_id_c2a4b6a1_fk_auth_grou','2020-07-23 17:22:29','n_diff_pfx01',0,1,'group_id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_group_id_c2a4b6a1_fk_auth_grou','2020-07-23 17:22:29','n_diff_pfx02',0,1,'group_id,id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_group_id_c2a4b6a1_fk_auth_grou','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_group_id_c2a4b6a1_fk_auth_grou','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_user_id_b071c54d_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'user_id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_user_id_b071c54d_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'user_id,id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_user_id_b071c54d_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_co_user_id_b071c54d_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_group_id_3ecc38b9_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'library_id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_group_id_3ecc38b9_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'library_id,group_id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_group_id_3ecc38b9_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_group_id_3ecc38b9_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_user_id_81babe29_uniq','2020-07-23 17:22:29','n_diff_pfx01',0,1,'library_id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_user_id_81babe29_uniq','2020-07-23 17:22:29','n_diff_pfx02',0,1,'library_id,user_id'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_user_id_81babe29_uniq','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_libraries_contentlibrarypermission','content_libraries_conten_library_id_user_id_81babe29_uniq','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','content_type_gating_contenttypegatingconfig','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','n_diff_pfx01',0,1,'site_id'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','n_diff_pfx02',0,1,'site_id,org'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','n_diff_pfx03',0,1,'site_id,org,org_course'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','n_diff_pfx04',0,1,'site_id,org,org_course,course_id'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','n_diff_pfx05',0,1,'site_id,org,org_course,course_id,id'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_650310_idx','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_e91576_idx','2020-07-23 17:22:29','n_diff_pfx01',0,1,'site_id'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_e91576_idx','2020-07-23 17:22:29','n_diff_pfx02',0,1,'site_id,org'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_e91576_idx','2020-07-23 17:22:29','n_diff_pfx03',0,1,'site_id,org,course_id'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_e91576_idx','2020-07-23 17:22:29','n_diff_pfx04',0,1,'site_id,org,course_id,id'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_e91576_idx','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_typ_site_id_e91576_idx','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__changed_by_id_e1754c4b_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__changed_by_id_e1754c4b_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__changed_by_id_e1754c4b_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__changed_by_id_e1754c4b_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__course_id_f19cc50d_fk_course_ov','2020-07-23 17:22:29','n_diff_pfx01',0,1,'course_id'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__course_id_f19cc50d_fk_course_ov','2020-07-23 17:22:29','n_diff_pfx02',0,1,'course_id,id'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__course_id_f19cc50d_fk_course_ov','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating__course_id_f19cc50d_fk_course_ov','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_043e72a9','2020-07-23 17:22:29','n_diff_pfx01',0,1,'org'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_043e72a9','2020-07-23 17:22:29','n_diff_pfx02',0,1,'org,id'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_043e72a9','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_043e72a9','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_course_70742f9e','2020-07-23 17:22:29','n_diff_pfx01',0,1,'org_course'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_course_70742f9e','2020-07-23 17:22:29','n_diff_pfx02',0,1,'org_course,id'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_course_70742f9e','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','content_type_gating_contenttypegatingconfig','content_type_gating_contenttypegatingconfig_org_course_70742f9e','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','contentserver_cdnuseragentsconfig','PRIMARY','2020-07-23 17:22:29','n_diff_pfx01',0,1,'id'),('edxapp','contentserver_cdnuseragentsconfig','PRIMARY','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','contentserver_cdnuseragentsconfig','PRIMARY','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','contentserver_cdnuseragentsconfig','contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','contentserver_cdnuseragentsconfig','contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user','2020-07-23 17:22:29','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','contentserver_cdnuseragentsconfig','contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user','2020-07-23 17:22:29','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','contentserver_cdnuseragentsconfig','contentserver_cdnuse_changed_by_id_19d8cb94_fk_auth_user','2020-07-23 17:22:29','size',1,NULL,'Number of pages in the index'),('edxapp','contentserver_courseassetcachettlconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','contentserver_courseassetcachettlconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','contentserver_courseassetcachettlconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','contentserver_courseassetcachettlconfig','contentserver_course_changed_by_id_a9213047_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','contentserver_courseassetcachettlconfig','contentserver_course_changed_by_id_a9213047_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','contentserver_courseassetcachettlconfig','contentserver_course_changed_by_id_a9213047_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','contentserver_courseassetcachettlconfig','contentserver_course_changed_by_id_a9213047_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','contentstore_videouploadconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','contentstore_videouploadconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','contentstore_videouploadconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','contentstore_videouploadconfig','contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','contentstore_videouploadconfig','contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','contentstore_videouploadconfig','contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','contentstore_videouploadconfig','contentstore_videoup_changed_by_id_e7352cb2_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','enterprise_customer_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','enterprise_customer_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','enterprise_customer_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstoneglobalconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','cornerstone_cornerstoneglobalconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstoneglobalconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstoneglobalconfiguration','cornerstone_cornerst_changed_by_id_117db502_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','cornerstone_cornerstoneglobalconfiguration','cornerstone_cornerst_changed_by_id_117db502_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','cornerstone_cornerstoneglobalconfiguration','cornerstone_cornerst_changed_by_id_117db502_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstoneglobalconfiguration','cornerstone_cornerst_changed_by_id_117db502_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonel_user_id_course_id_c975cc5f_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'user_id'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonel_user_id_course_id_c975cc5f_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonel_user_id_course_id_c975cc5f_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonel_user_id_course_id_c975cc5f_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonelear_enterprise_course_enrollmen_e3b05dac','2020-07-23 17:22:30','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonelear_enterprise_course_enrollmen_e3b05dac','2020-07-23 17:22:30','n_diff_pfx02',0,1,'enterprise_course_enrollment_id,id'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonelear_enterprise_course_enrollmen_e3b05dac','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','cornerstone_cornerstonelear_enterprise_course_enrollmen_e3b05dac','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'history_id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historic_history_user_id_1ded83c5_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'history_user_id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historic_history_user_id_1ded83c5_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historic_history_user_id_1ded83c5_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historic_history_user_id_1ded83c5_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_enterprise_customer_id_7f1c53b1','2020-07-23 17:22:30','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_enterprise_customer_id_7f1c53b1','2020-07-23 17:22:30','n_diff_pfx02',0,1,'enterprise_customer_id,history_id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_enterprise_customer_id_7f1c53b1','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_enterprise_customer_id_7f1c53b1','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_id_513efd93','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_id_513efd93','2020-07-23 17:22:30','n_diff_pfx02',0,1,'id,history_id'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_id_513efd93','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','cornerstone_historicalcorne_id_513efd93','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cors_csrf_xdomainproxyconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','cors_csrf_xdomainproxyconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cors_csrf_xdomainproxyconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','cors_csrf_xdomainproxyconfiguration','cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','cors_csrf_xdomainproxyconfiguration','cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','cors_csrf_xdomainproxyconfiguration','cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','cors_csrf_xdomainproxyconfiguration','cors_csrf_xdomainpro_changed_by_id_b8e97ec3_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_action_state_coursererunstate','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state__created_user_id_5373c218_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created_user_id'),('edxapp','course_action_state_coursererunstate','course_action_state__created_user_id_5373c218_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created_user_id,id'),('edxapp','course_action_state_coursererunstate','course_action_state__created_user_id_5373c218_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state__created_user_id_5373c218_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state__updated_user_id_3689fe4b_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'updated_user_id'),('edxapp','course_action_state_coursererunstate','course_action_state__updated_user_id_3689fe4b_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'updated_user_id,id'),('edxapp','course_action_state_coursererunstate','course_action_state__updated_user_id_3689fe4b_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state__updated_user_id_3689fe4b_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_cour_course_key_action_2a8434fb_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_key'),('edxapp','course_action_state_coursererunstate','course_action_state_cour_course_key_action_2a8434fb_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_key,action'),('edxapp','course_action_state_coursererunstate','course_action_state_cour_course_key_action_2a8434fb_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_cour_course_key_action_2a8434fb_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_action_149773f1','2020-07-23 17:22:30','n_diff_pfx01',0,1,'action'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_action_149773f1','2020-07-23 17:22:30','n_diff_pfx02',0,1,'action,id'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_action_149773f1','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_action_149773f1','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_course_key_f87bef79','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_key'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_course_key_f87bef79','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_key,id'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_course_key_f87bef79','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_course_key_f87bef79','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_source_course_key_b5037317','2020-07-23 17:22:30','n_diff_pfx01',0,1,'source_course_key'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_source_course_key_b5037317','2020-07-23 17:22:30','n_diff_pfx02',0,1,'source_course_key,id'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_source_course_key_b5037317','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_action_state_coursererunstate','course_action_state_coursererunstate_source_course_key_b5037317','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_creators_coursecreator','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_creators_coursecreator','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_creators_coursecreator','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_creators_coursecreator','user_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'user_id'),('edxapp','course_creators_coursecreator','user_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_creators_coursecreator','user_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__changed_by_id_5f8228f2_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__changed_by_id_5f8228f2_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__changed_by_id_5f8228f2_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__changed_by_id_5f8228f2_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__course_id_361d8ca8_fk_course_ov','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__course_id_361d8ca8_fk_course_ov','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__course_id_361d8ca8_fk_course_ov','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals__course_id_361d8ca8_fk_course_ov','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpac_org_course_b7041c4f','2020-07-23 17:22:30','n_diff_pfx01',0,1,'org_course'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpac_org_course_b7041c4f','2020-07-23 17:22:30','n_diff_pfx02',0,1,'org_course,id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpac_org_course_b7041c4f','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpac_org_course_b7041c4f','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpacedrelativedatesconfig_org_9c13e820','2020-07-23 17:22:30','n_diff_pfx01',0,1,'org'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpacedrelativedatesconfig_org_9c13e820','2020-07-23 17:22:30','n_diff_pfx02',0,1,'org,id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpacedrelativedatesconfig_org_9c13e820','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_signals_selfpacedrelativedatesconfig_org_9c13e820','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_a44836_idx','2020-07-23 17:22:30','n_diff_pfx01',0,1,'site_id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_a44836_idx','2020-07-23 17:22:30','n_diff_pfx02',0,1,'site_id,org'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_a44836_idx','2020-07-23 17:22:30','n_diff_pfx03',0,1,'site_id,org,course_id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_a44836_idx','2020-07-23 17:22:30','n_diff_pfx04',0,1,'site_id,org,course_id,id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_a44836_idx','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_a44836_idx','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','n_diff_pfx01',0,1,'site_id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','n_diff_pfx02',0,1,'site_id,org'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','n_diff_pfx03',0,1,'site_id,org,org_course'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','n_diff_pfx04',0,1,'site_id,org,org_course,course_id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','n_diff_pfx05',0,1,'site_id,org,org_course,course_id,id'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_date_signals_selfpacedrelativedatesconfig','course_date_site_id_c0164a_idx','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_duration_limits_coursedurationlimitconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_424016_idx','2020-07-23 17:22:30','n_diff_pfx01',0,1,'site_id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_424016_idx','2020-07-23 17:22:30','n_diff_pfx02',0,1,'site_id,org'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_424016_idx','2020-07-23 17:22:30','n_diff_pfx03',0,1,'site_id,org,course_id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_424016_idx','2020-07-23 17:22:30','n_diff_pfx04',0,1,'site_id,org,course_id,id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_424016_idx','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_424016_idx','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','n_diff_pfx01',0,1,'site_id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','n_diff_pfx02',0,1,'site_id,org'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','n_diff_pfx03',0,1,'site_id,org,org_course'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','n_diff_pfx04',0,1,'site_id,org,org_course,course_id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','n_diff_pfx05',0,1,'site_id,org,org_course,course_id,id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_dura_site_id_b5bbcd_idx','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_changed_by_id_f320fd76_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_changed_by_id_f320fd76_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_changed_by_id_f320fd76_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_changed_by_id_f320fd76_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_course_id_97b7a8e9_fk_course_ov','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_course_id_97b7a8e9_fk_course_ov','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_course_id_97b7a8e9_fk_course_ov','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limi_course_id_97b7a8e9_fk_course_ov','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_cour_org_course_bcd05764','2020-07-23 17:22:30','n_diff_pfx01',0,1,'org_course'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_cour_org_course_bcd05764','2020-07-23 17:22:30','n_diff_pfx02',0,1,'org_course,id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_cour_org_course_bcd05764','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_cour_org_course_bcd05764','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_coursedurationlimitconfig_org_c2cc0091','2020-07-23 17:22:30','n_diff_pfx01',0,1,'org'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_coursedurationlimitconfig_org_c2cc0091','2020-07-23 17:22:30','n_diff_pfx02',0,1,'org,id'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_coursedurationlimitconfig_org_c2cc0091','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_duration_limits_coursedurationlimitconfig','course_duration_limits_coursedurationlimitconfig_org_c2cc0091','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_goals_coursegoal','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_goals_coursegoal','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_goals_coursegoal','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_course_key_5585ca51','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_key'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_course_key_5585ca51','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_key,id'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_course_key_5585ca51','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_course_key_5585ca51','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_user_id_course_key_052bc0d3_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'user_id'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_user_id_course_key_052bc0d3_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'user_id,course_key'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_user_id_course_key_052bc0d3_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_goals_coursegoal','course_goals_coursegoal_user_id_course_key_052bc0d3_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_cohortmembership','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_cohortmembership','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_cohortmembership','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_cohortmembership','course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_user_group_id'),('edxapp','course_groups_cohortmembership','course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_user_group_id,id'),('edxapp','course_groups_cohortmembership','course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_cohortmembership','course_groups_cohort_course_user_group_id_6ea50b45_fk_course_gr','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_cohortmembership','course_groups_cohortmembership_user_id_course_id_c247eb7f_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'user_id'),('edxapp','course_groups_cohortmembership','course_groups_cohortmembership_user_id_course_id_c247eb7f_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','course_groups_cohortmembership','course_groups_cohortmembership_user_id_course_id_c247eb7f_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_cohortmembership','course_groups_cohortmembership_user_id_course_id_c247eb7f_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_coursecohort','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_coursecohort','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_coursecohort','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_coursecohort','course_user_group_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_user_group_id'),('edxapp','course_groups_coursecohort','course_user_group_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_coursecohort','course_user_group_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_coursecohortssettings','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_coursecohortssettings','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_coursecohortssettings','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_coursecohortssettings','course_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_groups_coursecohortssettings','course_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_coursecohortssettings','course_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergroup','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_courseusergroup','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergroup','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_course_id_902aea4c','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_course_id_902aea4c','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_course_id_902aea4c','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_course_id_902aea4c','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_name_course_id_b767231d_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'name'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_name_course_id_b767231d_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'name,course_id'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_name_course_id_b767231d_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergroup','course_groups_courseusergroup_name_course_id_b767231d_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergroup_users','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_courseusergroup_users','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergroup_users','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergroup_users','course_groups_course_user_id_28aff981_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'user_id'),('edxapp','course_groups_courseusergroup_users','course_groups_course_user_id_28aff981_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'user_id,id'),('edxapp','course_groups_courseusergroup_users','course_groups_course_user_id_28aff981_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergroup_users','course_groups_course_user_id_28aff981_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergroup_users','course_groups_courseuser_courseusergroup_id_user__694e8c30_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'courseusergroup_id'),('edxapp','course_groups_courseusergroup_users','course_groups_courseuser_courseusergroup_id_user__694e8c30_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'courseusergroup_id,user_id'),('edxapp','course_groups_courseusergroup_users','course_groups_courseuser_courseusergroup_id_user__694e8c30_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergroup_users','course_groups_courseuser_courseusergroup_id_user__694e8c30_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergrouppartitiongroup','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_courseusergrouppartitiongroup','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergrouppartitiongroup','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_courseusergrouppartitiongroup','course_user_group_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_user_group_id'),('edxapp','course_groups_courseusergrouppartitiongroup','course_user_group_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_courseusergrouppartitiongroup','course_user_group_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_groups_unregisteredlearnercohortassignments','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_user_group_id'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_user_group_id,id'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregi_course_user_group_id_c1c8a247_fk_course_gr','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregister_course_id_email_81a9d1db_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregister_course_id_email_81a9d1db_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,email'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregister_course_id_email_81a9d1db_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregister_course_id_email_81a9d1db_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregisteredl_email_05d0e40e','2020-07-23 17:22:30','n_diff_pfx01',0,1,'email'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregisteredl_email_05d0e40e','2020-07-23 17:22:30','n_diff_pfx02',0,1,'email,id'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregisteredl_email_05d0e40e','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_groups_unregisteredlearnercohortassignments','course_groups_unregisteredl_email_05d0e40e','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemode','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_modes_coursemode','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemode','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_3daf3b9d','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_3daf3b9d','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_3daf3b9d','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_3daf3b9d','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,mode_slug'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq','2020-07-23 17:22:30','n_diff_pfx03',0,1,'course_id,mode_slug,currency'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemode','course_modes_coursemode_course_id_mode_slug_curr_56f8e675_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemodeexpirationconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_modes_coursemodeexpirationconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemodeexpirationconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemodeexpirationconfig','course_modes_coursem_changed_by_id_208463ee_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','course_modes_coursemodeexpirationconfig','course_modes_coursem_changed_by_id_208463ee_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','course_modes_coursemodeexpirationconfig','course_modes_coursem_changed_by_id_208463ee_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemodeexpirationconfig','course_modes_coursem_changed_by_id_208463ee_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemodesarchive','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_modes_coursemodesarchive','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemodesarchive','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_coursemodesarchive','course_modes_coursemodesarchive_course_id_f67bbd35','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_modes_coursemodesarchive','course_modes_coursemodesarchive_course_id_f67bbd35','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','course_modes_coursemodesarchive','course_modes_coursemodesarchive_course_id_f67bbd35','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_coursemodesarchive','course_modes_coursemodesarchive_course_id_f67bbd35','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_historicalcoursemode','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'history_id'),('edxapp','course_modes_historicalcoursemode','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_historicalcoursemode','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_historicalcoursemode','course_modes_histori_history_user_id_d92d6b6e_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'history_user_id'),('edxapp','course_modes_historicalcoursemode','course_modes_histori_history_user_id_d92d6b6e_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','course_modes_historicalcoursemode','course_modes_histori_history_user_id_d92d6b6e_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_historicalcoursemode','course_modes_histori_history_user_id_d92d6b6e_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_course_id_e8de13cd','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_course_id_e8de13cd','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,history_id'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_course_id_e8de13cd','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_course_id_e8de13cd','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_id_14918a77','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_id_14918a77','2020-07-23 17:22:30','n_diff_pfx02',0,1,'id,history_id'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_id_14918a77','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_modes_historicalcoursemode','course_modes_historicalcoursemode_id_14918a77','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverview','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_overviews_courseoverview','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverview','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverviewimageconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_overviews_courseoverviewimageconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverviewimageconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverviewimageconfig','course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','course_overviews_courseoverviewimageconfig','course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','course_overviews_courseoverviewimageconfig','course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverviewimageconfig','course_overviews_cou_changed_by_id_b60ae39a_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverviewimageset','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_overviews_courseoverviewimageset','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverviewimageset','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverviewimageset','course_overview_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_overview_id'),('edxapp','course_overviews_courseoverviewimageset','course_overview_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverviewimageset','course_overview_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverviewtab','PRIMARY','2020-07-23 17:28:09','n_diff_pfx01',6,1,'id'),('edxapp','course_overviews_courseoverviewtab','PRIMARY','2020-07-23 17:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverviewtab','PRIMARY','2020-07-23 17:28:09','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_courseoverviewtab','course_overviews_cou_course_overview_id_71fa6321_fk_course_ov','2020-07-23 17:28:09','n_diff_pfx01',1,1,'course_overview_id'),('edxapp','course_overviews_courseoverviewtab','course_overviews_cou_course_overview_id_71fa6321_fk_course_ov','2020-07-23 17:28:09','n_diff_pfx02',6,1,'course_overview_id,id'),('edxapp','course_overviews_courseoverviewtab','course_overviews_cou_course_overview_id_71fa6321_fk_course_ov','2020-07-23 17:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_courseoverviewtab','course_overviews_cou_course_overview_id_71fa6321_fk_course_ov','2020-07-23 17:28:09','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_historicalcourseoverview','PRIMARY','2020-07-23 17:27:48','n_diff_pfx01',5,1,'history_id'),('edxapp','course_overviews_historicalcourseoverview','PRIMARY','2020-07-23 17:27:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_historicalcourseoverview','PRIMARY','2020-07-23 17:27:48','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_his_history_user_id_e21063d9_fk_auth_user','2020-07-23 17:27:48','n_diff_pfx01',1,1,'history_user_id'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_his_history_user_id_e21063d9_fk_auth_user','2020-07-23 17:27:48','n_diff_pfx02',5,1,'history_user_id,history_id'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_his_history_user_id_e21063d9_fk_auth_user','2020-07-23 17:27:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_his_history_user_id_e21063d9_fk_auth_user','2020-07-23 17:27:48','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_historicalcourseoverview_id_647043f0','2020-07-23 17:27:48','n_diff_pfx01',1,1,'id'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_historicalcourseoverview_id_647043f0','2020-07-23 17:27:48','n_diff_pfx02',5,1,'id,history_id'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_historicalcourseoverview_id_647043f0','2020-07-23 17:27:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_historicalcourseoverview','course_overviews_historicalcourseoverview_id_647043f0','2020-07-23 17:27:48','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_simulatecoursepublishconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','course_overviews_simulatecoursepublishconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_simulatecoursepublishconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','course_overviews_simulatecoursepublishconfig','course_overviews_sim_changed_by_id_3413c118_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','course_overviews_simulatecoursepublishconfig','course_overviews_sim_changed_by_id_3413c118_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','course_overviews_simulatecoursepublishconfig','course_overviews_sim_changed_by_id_3413c118_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','course_overviews_simulatecoursepublishconfig','course_overviews_sim_changed_by_id_3413c118_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedyn_changed_by_id_2c4efc3a_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedynamicupg_course_id_60b88041','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedynamicupg_course_id_60b88041','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedynamicupg_course_id_60b88041','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','courseware_coursedynamicupg_course_id_60b88041','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_dynamicupgradedeadlineconfiguration','courseware_dynamicup_changed_by_id_6a450e2c_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgrade','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_offlinecomputedgrade','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgrade','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_course_id_03e21ba7','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_course_id_03e21ba7','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_course_id_03e21ba7','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_course_id_03e21ba7','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_created_b5bca47f','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_created_b5bca47f','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_created_b5bca47f','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_created_b5bca47f','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_updated_6f3faff6','2020-07-23 17:22:30','n_diff_pfx01',0,1,'updated'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_updated_6f3faff6','2020-07-23 17:22:30','n_diff_pfx02',0,1,'updated,id'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_updated_6f3faff6','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_updated_6f3faff6','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_user_id_course_id_18dfd343_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'user_id'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_user_id_course_id_18dfd343_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_user_id_course_id_18dfd343_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgrade','courseware_offlinecomputedgrade_user_id_course_id_18dfd343_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgradelog','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_offlinecomputedgradelog','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgradelog','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_course_id_1014e127','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_course_id_1014e127','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_course_id_1014e127','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_course_id_1014e127','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_created_33076a1a','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_created_33076a1a','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_created_33076a1a','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_offlinecomputedgradelog','courseware_offlinecomputedgradelog_created_33076a1a','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynami_changed_by_id_b557a1ea_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynamicupgrad_org_id_85d3cbe4','2020-07-23 17:22:30','n_diff_pfx01',0,1,'org_id'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynamicupgrad_org_id_85d3cbe4','2020-07-23 17:22:30','n_diff_pfx02',0,1,'org_id,id'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynamicupgrad_org_id_85d3cbe4','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','courseware_orgdynamicupgrad_org_id_85d3cbe4','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentfieldoverride','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_studentfieldoverride','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentfieldoverride','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfi_student_id_7a972765_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx01',0,1,'student_id'),('edxapp','courseware_studentfieldoverride','courseware_studentfi_student_id_7a972765_fk_auth_user','2020-07-23 17:22:30','n_diff_pfx02',0,1,'student_id,id'),('edxapp','courseware_studentfieldoverride','courseware_studentfi_student_id_7a972765_fk_auth_user','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfi_student_id_7a972765_fk_auth_user','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldo_course_id_field_location_a1f7da25_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldo_course_id_field_location_a1f7da25_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,field'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldo_course_id_field_location_a1f7da25_uniq','2020-07-23 17:22:30','n_diff_pfx03',0,1,'course_id,field,location'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldo_course_id_field_location_a1f7da25_uniq','2020-07-23 17:22:30','n_diff_pfx04',0,1,'course_id,field,location,student_id'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldo_course_id_field_location_a1f7da25_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldo_course_id_field_location_a1f7da25_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_course_id_7ca0051c','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_course_id_7ca0051c','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_course_id_7ca0051c','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_course_id_7ca0051c','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_location_95ad5047','2020-07-23 17:22:30','n_diff_pfx01',0,1,'location'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_location_95ad5047','2020-07-23 17:22:30','n_diff_pfx02',0,1,'location,id'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_location_95ad5047','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentfieldoverride','courseware_studentfieldoverride_location_95ad5047','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_studentmodule','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_course_id_0637cb49','2020-07-23 17:22:30','n_diff_pfx01',0,1,'course_id'),('edxapp','courseware_studentmodule','courseware_studentmodule_course_id_0637cb49','2020-07-23 17:22:30','n_diff_pfx02',0,1,'course_id,id'),('edxapp','courseware_studentmodule','courseware_studentmodule_course_id_0637cb49','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_course_id_0637cb49','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_created_9976b4ad','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_studentmodule','courseware_studentmodule_created_9976b4ad','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_studentmodule','courseware_studentmodule_created_9976b4ad','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_created_9976b4ad','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_grade_adac1ba7','2020-07-23 17:22:30','n_diff_pfx01',0,1,'grade'),('edxapp','courseware_studentmodule','courseware_studentmodule_grade_adac1ba7','2020-07-23 17:22:30','n_diff_pfx02',0,1,'grade,id'),('edxapp','courseware_studentmodule','courseware_studentmodule_grade_adac1ba7','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_grade_adac1ba7','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_modified_f6a0b0cc','2020-07-23 17:22:30','n_diff_pfx01',0,1,'modified'),('edxapp','courseware_studentmodule','courseware_studentmodule_modified_f6a0b0cc','2020-07-23 17:22:30','n_diff_pfx02',0,1,'modified,id'),('edxapp','courseware_studentmodule','courseware_studentmodule_modified_f6a0b0cc','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_modified_f6a0b0cc','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_module_type_f4f8863f','2020-07-23 17:22:30','n_diff_pfx01',0,1,'module_type'),('edxapp','courseware_studentmodule','courseware_studentmodule_module_type_f4f8863f','2020-07-23 17:22:30','n_diff_pfx02',0,1,'module_type,id'),('edxapp','courseware_studentmodule','courseware_studentmodule_module_type_f4f8863f','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_module_type_f4f8863f','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'student_id'),('edxapp','courseware_studentmodule','courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'student_id,module_id'),('edxapp','courseware_studentmodule','courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq','2020-07-23 17:22:30','n_diff_pfx03',0,1,'student_id,module_id,course_id'),('edxapp','courseware_studentmodule','courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodule','courseware_studentmodule_student_id_module_id_cou_48e8deef_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodulehistory','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_studentmodulehistory','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodulehistory','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodulehistory','courseware_studentmo_student_module_id_6efc64cf_fk_coursewar','2020-07-23 17:22:30','n_diff_pfx01',0,1,'student_module_id'),('edxapp','courseware_studentmodulehistory','courseware_studentmo_student_module_id_6efc64cf_fk_coursewar','2020-07-23 17:22:30','n_diff_pfx02',0,1,'student_module_id,id'),('edxapp','courseware_studentmodulehistory','courseware_studentmo_student_module_id_6efc64cf_fk_coursewar','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodulehistory','courseware_studentmo_student_module_id_6efc64cf_fk_coursewar','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_created_19cb94d2','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_created_19cb94d2','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_created_19cb94d2','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_created_19cb94d2','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_version_d3823ad1','2020-07-23 17:22:30','n_diff_pfx01',0,1,'version'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_version_d3823ad1','2020-07-23 17:22:30','n_diff_pfx02',0,1,'version,id'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_version_d3823ad1','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_studentmodulehistory','courseware_studentmodulehistory_version_d3823ad1','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentinfofield','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_xmodulestudentinfofield','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentinfofield','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestuden_student_id_field_name_2f3a4ee8_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'student_id'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestuden_student_id_field_name_2f3a4ee8_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'student_id,field_name'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestuden_student_id_field_name_2f3a4ee8_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestuden_student_id_field_name_2f3a4ee8_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_created_beada63d','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_created_beada63d','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_created_beada63d','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_created_beada63d','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_field_name_191b762e','2020-07-23 17:22:30','n_diff_pfx01',0,1,'field_name'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_field_name_191b762e','2020-07-23 17:22:30','n_diff_pfx02',0,1,'field_name,id'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_field_name_191b762e','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_field_name_191b762e','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_modified_b53f9c88','2020-07-23 17:22:30','n_diff_pfx01',0,1,'modified'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_modified_b53f9c88','2020-07-23 17:22:30','n_diff_pfx02',0,1,'modified,id'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_modified_b53f9c88','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentinfofield','courseware_xmodulestudentinfofield_modified_b53f9c88','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_xmodulestudentprefsfield','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'student_id'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'student_id,module_type'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq','2020-07-23 17:22:30','n_diff_pfx03',0,1,'student_id,module_type,field_name'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestuden_student_id_module_type_f_1c218850_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_created_16090241','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_created_16090241','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_created_16090241','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_created_16090241','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_field_name_68d5e66e','2020-07-23 17:22:30','n_diff_pfx01',0,1,'field_name'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_field_name_68d5e66e','2020-07-23 17:22:30','n_diff_pfx02',0,1,'field_name,id'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_field_name_68d5e66e','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_field_name_68d5e66e','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_modified_5b4e5525','2020-07-23 17:22:30','n_diff_pfx01',0,1,'modified'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_modified_5b4e5525','2020-07-23 17:22:30','n_diff_pfx02',0,1,'modified,id'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_modified_5b4e5525','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_modified_5b4e5525','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_module_type_45b994b9','2020-07-23 17:22:30','n_diff_pfx01',0,1,'module_type'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_module_type_45b994b9','2020-07-23 17:22:30','n_diff_pfx02',0,1,'module_type,id'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_module_type_45b994b9','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmodulestudentprefsfield','courseware_xmodulestudentprefsfield_module_type_45b994b9','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','courseware_xmoduleuserstatesummaryfield','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserst_usage_id_field_name_e4e34c44_uniq','2020-07-23 17:22:30','n_diff_pfx01',0,1,'usage_id'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserst_usage_id_field_name_e4e34c44_uniq','2020-07-23 17:22:30','n_diff_pfx02',0,1,'usage_id,field_name'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserst_usage_id_field_name_e4e34c44_uniq','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserst_usage_id_field_name_e4e34c44_uniq','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_created_57d773a1','2020-07-23 17:22:30','n_diff_pfx01',0,1,'created'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_created_57d773a1','2020-07-23 17:22:30','n_diff_pfx02',0,1,'created,id'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_created_57d773a1','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_created_57d773a1','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_field_name_395cd2a6','2020-07-23 17:22:30','n_diff_pfx01',0,1,'field_name'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_field_name_395cd2a6','2020-07-23 17:22:30','n_diff_pfx02',0,1,'field_name,id'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_field_name_395cd2a6','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_field_name_395cd2a6','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_modified_b4277a5d','2020-07-23 17:22:30','n_diff_pfx01',0,1,'modified'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_modified_b4277a5d','2020-07-23 17:22:30','n_diff_pfx02',0,1,'modified,id'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_modified_b4277a5d','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_modified_b4277a5d','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_usage_id_9f239d1f','2020-07-23 17:22:30','n_diff_pfx01',0,1,'usage_id'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_usage_id_9f239d1f','2020-07-23 17:22:30','n_diff_pfx02',0,1,'usage_id,id'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_usage_id_9f239d1f','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','courseware_xmoduleuserstatesummaryfield','courseware_xmoduleuserstatesummaryfield_usage_id_9f239d1f','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','crawlers_crawlersconfig','PRIMARY','2020-07-23 17:22:30','n_diff_pfx01',0,1,'id'),('edxapp','crawlers_crawlersconfig','PRIMARY','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','crawlers_crawlersconfig','PRIMARY','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','crawlers_crawlersconfig','crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id','2020-07-23 17:22:30','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','crawlers_crawlersconfig','crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id','2020-07-23 17:22:30','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','crawlers_crawlersconfig','crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id','2020-07-23 17:22:30','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','crawlers_crawlersconfig','crawlers_crawlersconfig_changed_by_id_544af924_fk_auth_user_id','2020-07-23 17:22:30','size',1,NULL,'Number of pages in the index'),('edxapp','credentials_credentialsapiconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credentials_credentialsapiconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credentials_credentialsapiconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credentials_credentialsapiconfig','credentials_credenti_changed_by_id_9e145a81_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','credentials_credentialsapiconfig','credentials_credenti_changed_by_id_9e145a81_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','credentials_credentialsapiconfig','credentials_credenti_changed_by_id_9e145a81_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credentials_credentialsapiconfig','credentials_credenti_changed_by_id_9e145a81_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credentials_notifycredentialsconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credentials_notifycredentialsconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credentials_notifycredentialsconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credentials_notifycredentialsconfig','credentials_notifycr_changed_by_id_e31cde0e_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','credentials_notifycredentialsconfig','credentials_notifycr_changed_by_id_e31cde0e_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','credentials_notifycredentialsconfig','credentials_notifycr_changed_by_id_e31cde0e_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credentials_notifycredentialsconfig','credentials_notifycr_changed_by_id_e31cde0e_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_creditconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditconfig','credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','credit_creditconfig','credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','credit_creditconfig','credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditconfig','credit_creditconfig_changed_by_id_72e1eca9_fk_auth_user_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditcourse','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_creditcourse','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditcourse','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditcourse','course_key','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_key'),('edxapp','credit_creditcourse','course_key','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditcourse','course_key','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_crediteligibility','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_crediteligibility','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_crediteligibility','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_crediteligibility','credit_crediteligibi_course_id_d86f481f_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','credit_crediteligibility','credit_crediteligibi_course_id_d86f481f_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,id'),('edxapp','credit_crediteligibility','credit_crediteligibi_course_id_d86f481f_fk_credit_cr','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_crediteligibility','credit_crediteligibi_course_id_d86f481f_fk_credit_cr','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_4c275fb5','2020-07-23 17:22:31','n_diff_pfx01',0,1,'username'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_4c275fb5','2020-07-23 17:22:31','n_diff_pfx02',0,1,'username,id'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_4c275fb5','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_4c275fb5','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_course_id_7906b4c1_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'username'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_course_id_7906b4c1_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'username,course_id'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_course_id_7906b4c1_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_crediteligibility','credit_crediteligibility_username_course_id_7906b4c1_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditprovider','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_creditprovider','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditprovider','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditprovider','provider_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'provider_id'),('edxapp','credit_creditprovider','provider_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditprovider','provider_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequest','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_creditrequest','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequest','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_course_id_5478ceaf_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','credit_creditrequest','credit_creditrequest_course_id_5478ceaf_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,id'),('edxapp','credit_creditrequest','credit_creditrequest_course_id_5478ceaf_fk_credit_cr','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_course_id_5478ceaf_fk_credit_cr','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_provider_id_5465ab8b_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx01',0,1,'provider_id'),('edxapp','credit_creditrequest','credit_creditrequest_provider_id_5465ab8b_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx02',0,1,'provider_id,id'),('edxapp','credit_creditrequest','credit_creditrequest_provider_id_5465ab8b_fk_credit_cr','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_provider_id_5465ab8b_fk_credit_cr','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_username_bd5623e4','2020-07-23 17:22:31','n_diff_pfx01',0,1,'username'),('edxapp','credit_creditrequest','credit_creditrequest_username_bd5623e4','2020-07-23 17:22:31','n_diff_pfx02',0,1,'username,id'),('edxapp','credit_creditrequest','credit_creditrequest_username_bd5623e4','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_username_bd5623e4','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_username_course_id_provi_3b019afe_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'username'),('edxapp','credit_creditrequest','credit_creditrequest_username_course_id_provi_3b019afe_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'username,course_id'),('edxapp','credit_creditrequest','credit_creditrequest_username_course_id_provi_3b019afe_uniq','2020-07-23 17:22:31','n_diff_pfx03',0,1,'username,course_id,provider_id'),('edxapp','credit_creditrequest','credit_creditrequest_username_course_id_provi_3b019afe_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequest','credit_creditrequest_username_course_id_provi_3b019afe_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequest','uuid','2020-07-23 17:22:31','n_diff_pfx01',0,1,'uuid'),('edxapp','credit_creditrequest','uuid','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequest','uuid','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirement','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_creditrequirement','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirement','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirement','credit_creditrequire_course_id_b6aa812a_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','credit_creditrequirement','credit_creditrequire_course_id_b6aa812a_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,id'),('edxapp','credit_creditrequirement','credit_creditrequire_course_id_b6aa812a_fk_credit_cr','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirement','credit_creditrequire_course_id_b6aa812a_fk_credit_cr','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirement','credit_creditrequirement_namespace_name_course_id_87c301e6_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'namespace'),('edxapp','credit_creditrequirement','credit_creditrequirement_namespace_name_course_id_87c301e6_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'namespace,name'),('edxapp','credit_creditrequirement','credit_creditrequirement_namespace_name_course_id_87c301e6_uniq','2020-07-23 17:22:31','n_diff_pfx03',0,1,'namespace,name,course_id'),('edxapp','credit_creditrequirement','credit_creditrequirement_namespace_name_course_id_87c301e6_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirement','credit_creditrequirement_namespace_name_course_id_87c301e6_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirementstatus','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','credit_creditrequirementstatus','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirementstatus','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirementstatus','credit_creditrequire_requirement_id_cde25c76_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx01',0,1,'requirement_id'),('edxapp','credit_creditrequirementstatus','credit_creditrequire_requirement_id_cde25c76_fk_credit_cr','2020-07-23 17:22:31','n_diff_pfx02',0,1,'requirement_id,id'),('edxapp','credit_creditrequirementstatus','credit_creditrequire_requirement_id_cde25c76_fk_credit_cr','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirementstatus','credit_creditrequire_requirement_id_cde25c76_fk_credit_cr','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirementstatus','credit_creditrequirement_username_requirement_id_f761eba5_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'username'),('edxapp','credit_creditrequirementstatus','credit_creditrequirement_username_requirement_id_f761eba5_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'username,requirement_id'),('edxapp','credit_creditrequirementstatus','credit_creditrequirement_username_requirement_id_f761eba5_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirementstatus','credit_creditrequirement_username_requirement_id_f761eba5_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','credit_creditrequirementstatus','credit_creditrequirementstatus_username_4c2511ed','2020-07-23 17:22:31','n_diff_pfx01',0,1,'username'),('edxapp','credit_creditrequirementstatus','credit_creditrequirementstatus_username_4c2511ed','2020-07-23 17:22:31','n_diff_pfx02',0,1,'username,id'),('edxapp','credit_creditrequirementstatus','credit_creditrequirementstatus_username_4c2511ed','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','credit_creditrequirementstatus','credit_creditrequirementstatus_username_4c2511ed','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','dark_lang_darklangconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','dark_lang_darklangconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','dark_lang_darklangconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','dark_lang_darklangconfig','dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','dark_lang_darklangconfig','dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','dark_lang_darklangconfig','dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','dark_lang_darklangconfig','dark_lang_darklangconfig_changed_by_id_9a7df899_fk_auth_user_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_degreedenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','degreed_degreedenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_degreedenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_degreedenterprisecustomerconfiguration','enterprise_customer_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','degreed_degreedenterprisecustomerconfiguration','enterprise_customer_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_degreedenterprisecustomerconfiguration','enterprise_customer_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_degreedglobalconfiguration','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','degreed_degreedglobalconfiguration','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_degreedglobalconfiguration','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_degreedglobalconfiguration','degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','degreed_degreedglobalconfiguration','degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','degreed_degreedglobalconfiguration','degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_degreedglobalconfiguration','degreed_degreedgloba_changed_by_id_00a8a7be_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','degreed_degreedlearnerdatat_enterprise_course_enrollmen_2b4fe278','2020-07-23 17:22:31','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','degreed_degreedlearnerdatat_enterprise_course_enrollmen_2b4fe278','2020-07-23 17:22:31','n_diff_pfx02',0,1,'enterprise_course_enrollment_id,id'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','degreed_degreedlearnerdatat_enterprise_course_enrollmen_2b4fe278','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_degreedlearnerdatatransmissionaudit','degreed_degreedlearnerdatat_enterprise_course_enrollmen_2b4fe278','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'history_id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicalde_history_user_id_5b4776d8_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'history_user_id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicalde_history_user_id_5b4776d8_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicalde_history_user_id_5b4776d8_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicalde_history_user_id_5b4776d8_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_enterprise_customer_id_12129e6f','2020-07-23 17:22:31','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_enterprise_customer_id_12129e6f','2020-07-23 17:22:31','n_diff_pfx02',0,1,'enterprise_customer_id,history_id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_enterprise_customer_id_12129e6f','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_enterprise_customer_id_12129e6f','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_id_756f1445','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_id_756f1445','2020-07-23 17:22:31','n_diff_pfx02',0,1,'id,history_id'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_id_756f1445','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','degreed_historicaldegreeden_id_756f1445','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','discounts_discountpercentageconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','n_diff_pfx01',0,1,'site_id'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','n_diff_pfx02',0,1,'site_id,org'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','n_diff_pfx03',0,1,'site_id,org,org_course'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','n_diff_pfx04',0,1,'site_id,org,org_course,course_id'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','n_diff_pfx05',0,1,'site_id,org,org_course,course_id,id'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_9fe8d6_idx','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_f87020_idx','2020-07-23 17:22:31','n_diff_pfx01',0,1,'site_id'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_f87020_idx','2020-07-23 17:22:31','n_diff_pfx02',0,1,'site_id,org'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_f87020_idx','2020-07-23 17:22:31','n_diff_pfx03',0,1,'site_id,org,course_id'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_f87020_idx','2020-07-23 17:22:31','n_diff_pfx04',0,1,'site_id,org,course_id,id'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_f87020_idx','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_d_site_id_f87020_idx','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_changed_by_id_b00d7aa3_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_changed_by_id_b00d7aa3_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_changed_by_id_b00d7aa3_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_changed_by_id_b00d7aa3_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_course_id_19913d92_fk_course_ov','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_course_id_19913d92_fk_course_ov','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,id'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_course_id_19913d92_fk_course_ov','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpe_course_id_19913d92_fk_course_ov','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_294e22dd','2020-07-23 17:22:31','n_diff_pfx01',0,1,'org'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_294e22dd','2020-07-23 17:22:31','n_diff_pfx02',0,1,'org,id'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_294e22dd','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_294e22dd','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_course_31d0939e','2020-07-23 17:22:31','n_diff_pfx01',0,1,'org_course'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_course_31d0939e','2020-07-23 17:22:31','n_diff_pfx02',0,1,'org_course,id'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_course_31d0939e','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountpercentageconfig','discounts_discountpercentageconfig_org_course_31d0939e','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','discounts_discountrestrictionconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_d67da3_idx','2020-07-23 17:22:31','n_diff_pfx01',0,1,'site_id'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_d67da3_idx','2020-07-23 17:22:31','n_diff_pfx02',0,1,'site_id,org'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_d67da3_idx','2020-07-23 17:22:31','n_diff_pfx03',0,1,'site_id,org,course_id'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_d67da3_idx','2020-07-23 17:22:31','n_diff_pfx04',0,1,'site_id,org,course_id,id'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_d67da3_idx','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_d67da3_idx','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','n_diff_pfx01',0,1,'site_id'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','n_diff_pfx02',0,1,'site_id,org'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','n_diff_pfx03',0,1,'site_id,org,org_course'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','n_diff_pfx04',0,1,'site_id,org,org_course,course_id'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','n_diff_pfx05',0,1,'site_id,org,org_course,course_id,id'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_d_site_id_f83727_idx','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_changed_by_id_f18a5c1b_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_changed_by_id_f18a5c1b_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_changed_by_id_f18a5c1b_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_changed_by_id_f18a5c1b_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_course_id_d7f6674b_fk_course_ov','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_course_id_d7f6674b_fk_course_ov','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,id'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_course_id_d7f6674b_fk_course_ov','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountre_course_id_d7f6674b_fk_course_ov','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_010f786f','2020-07-23 17:22:31','n_diff_pfx01',0,1,'org'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_010f786f','2020-07-23 17:22:31','n_diff_pfx02',0,1,'org,id'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_010f786f','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_010f786f','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_course_bb36b3cd','2020-07-23 17:22:31','n_diff_pfx01',0,1,'org_course'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_course_bb36b3cd','2020-07-23 17:22:31','n_diff_pfx02',0,1,'org_course,id'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_course_bb36b3cd','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','discounts_discountrestrictionconfig','discounts_discountrestrictionconfig_org_course_bb36b3cd','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_admin_log','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','django_admin_log','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_admin_log','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_admin_log','django_admin_log_content_type_id_c4bce8eb_fk_django_co','2020-07-23 17:22:31','n_diff_pfx01',0,1,'content_type_id'),('edxapp','django_admin_log','django_admin_log_content_type_id_c4bce8eb_fk_django_co','2020-07-23 17:22:31','n_diff_pfx02',0,1,'content_type_id,id'),('edxapp','django_admin_log','django_admin_log_content_type_id_c4bce8eb_fk_django_co','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_admin_log','django_admin_log_content_type_id_c4bce8eb_fk_django_co','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_admin_log','django_admin_log_user_id_c564eba6_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'user_id'),('edxapp','django_admin_log','django_admin_log_user_id_c564eba6_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'user_id,id'),('edxapp','django_admin_log','django_admin_log_user_id_c564eba6_fk_auth_user_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_admin_log','django_admin_log_user_id_c564eba6_fk_auth_user_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_permission','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',23,1,'name'),('edxapp','django_comment_client_permission','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_permission','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_permission_roles','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',79,1,'id'),('edxapp','django_comment_client_permission_roles','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_permission_roles','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_permission_roles','django_comment_clien_role_id_d2cb08a2_fk_django_co','2020-07-23 17:22:31','n_diff_pfx01',5,1,'role_id'),('edxapp','django_comment_client_permission_roles','django_comment_clien_role_id_d2cb08a2_fk_django_co','2020-07-23 17:22:31','n_diff_pfx02',79,1,'role_id,id'),('edxapp','django_comment_client_permission_roles','django_comment_clien_role_id_d2cb08a2_fk_django_co','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_permission_roles','django_comment_clien_role_id_d2cb08a2_fk_django_co','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_permission_roles','django_comment_client_pe_permission_id_role_id_d3680ec3_uniq','2020-07-23 17:22:31','n_diff_pfx01',23,1,'permission_id'),('edxapp','django_comment_client_permission_roles','django_comment_client_pe_permission_id_role_id_d3680ec3_uniq','2020-07-23 17:22:31','n_diff_pfx02',79,1,'permission_id,role_id'),('edxapp','django_comment_client_permission_roles','django_comment_client_pe_permission_id_role_id_d3680ec3_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_permission_roles','django_comment_client_pe_permission_id_role_id_d3680ec3_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_role','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',5,1,'id'),('edxapp','django_comment_client_role','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_role','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_role','django_comment_client_role_course_id_08a9c1d1','2020-07-23 17:22:31','n_diff_pfx01',1,1,'course_id'),('edxapp','django_comment_client_role','django_comment_client_role_course_id_08a9c1d1','2020-07-23 17:22:31','n_diff_pfx02',5,1,'course_id,id'),('edxapp','django_comment_client_role','django_comment_client_role_course_id_08a9c1d1','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_role','django_comment_client_role_course_id_08a9c1d1','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_role_users','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',4,1,'id'),('edxapp','django_comment_client_role_users','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_role_users','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_role_users','dcc_role_users_user_role_idx','2020-07-23 17:22:31','n_diff_pfx01',4,1,'user_id'),('edxapp','django_comment_client_role_users','dcc_role_users_user_role_idx','2020-07-23 17:22:31','n_diff_pfx02',4,1,'user_id,role_id'),('edxapp','django_comment_client_role_users','dcc_role_users_user_role_idx','2020-07-23 17:22:31','n_diff_pfx03',4,1,'user_id,role_id,id'),('edxapp','django_comment_client_role_users','dcc_role_users_user_role_idx','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_role_users','dcc_role_users_user_role_idx','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_client_role_users','django_comment_client_role_users_role_id_user_id_93ab4289_uniq','2020-07-23 17:22:31','n_diff_pfx01',1,1,'role_id'),('edxapp','django_comment_client_role_users','django_comment_client_role_users_role_id_user_id_93ab4289_uniq','2020-07-23 17:22:31','n_diff_pfx02',4,1,'role_id,user_id'),('edxapp','django_comment_client_role_users','django_comment_client_role_users_role_id_user_id_93ab4289_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_client_role_users','django_comment_client_role_users_role_id_user_id_93ab4289_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_common_coursediscussionsettings','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','django_comment_common_coursediscussionsettings','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_common_coursediscussionsettings','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_common_coursediscussionsettings','course_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','django_comment_common_coursediscussionsettings','course_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_common_coursediscussionsettings','course_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_common_discussionsidmapping','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','django_comment_common_discussionsidmapping','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_common_discussionsidmapping','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_common_forumsconfig','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','django_comment_common_forumsconfig','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_common_forumsconfig','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_comment_common_forumsconfig','django_comment_commo_changed_by_id_9292e296_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','django_comment_common_forumsconfig','django_comment_commo_changed_by_id_9292e296_fk_auth_user','2020-07-23 17:22:31','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','django_comment_common_forumsconfig','django_comment_commo_changed_by_id_9292e296_fk_auth_user','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_comment_common_forumsconfig','django_comment_commo_changed_by_id_9292e296_fk_auth_user','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_content_type','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',399,2,'id'),('edxapp','django_content_type','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('edxapp','django_content_type','PRIMARY','2020-07-23 17:22:31','size',3,NULL,'Number of pages in the index'),('edxapp','django_content_type','django_content_type_app_label_model_76bd3d3b_uniq','2020-07-23 17:22:31','n_diff_pfx01',104,2,'app_label'),('edxapp','django_content_type','django_content_type_app_label_model_76bd3d3b_uniq','2020-07-23 17:22:31','n_diff_pfx02',399,2,'app_label,model'),('edxapp','django_content_type','django_content_type_app_label_model_76bd3d3b_uniq','2020-07-23 17:22:31','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('edxapp','django_content_type','django_content_type_app_label_model_76bd3d3b_uniq','2020-07-23 17:22:31','size',3,NULL,'Number of pages in the index'),('edxapp','django_migrations','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',676,4,'id'),('edxapp','django_migrations','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('edxapp','django_migrations','PRIMARY','2020-07-23 17:22:32','size',5,NULL,'Number of pages in the index'),('edxapp','django_redirect','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','django_redirect','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_redirect','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_redirect','django_redirect_old_path_c6cc94d3','2020-07-23 17:22:31','n_diff_pfx01',0,1,'old_path'),('edxapp','django_redirect','django_redirect_old_path_c6cc94d3','2020-07-23 17:22:31','n_diff_pfx02',0,1,'old_path,id'),('edxapp','django_redirect','django_redirect_old_path_c6cc94d3','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_redirect','django_redirect_old_path_c6cc94d3','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_redirect','django_redirect_site_id_old_path_ac5dd16b_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'site_id'),('edxapp','django_redirect','django_redirect_site_id_old_path_ac5dd16b_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'site_id,old_path'),('edxapp','django_redirect','django_redirect_site_id_old_path_ac5dd16b_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_redirect','django_redirect_site_id_old_path_ac5dd16b_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_session','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'session_key'),('edxapp','django_session','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_session','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_session','django_session_expire_date_a5c62663','2020-07-23 17:22:31','n_diff_pfx01',0,1,'expire_date'),('edxapp','django_session','django_session_expire_date_a5c62663','2020-07-23 17:22:31','n_diff_pfx02',0,1,'expire_date,session_key'),('edxapp','django_session','django_session_expire_date_a5c62663','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_session','django_session_expire_date_a5c62663','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_site','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','django_site','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_site','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','django_site','django_site_domain_a2e37b91_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'domain'),('edxapp','django_site','django_site_domain_a2e37b91_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','django_site','django_site_domain_a2e37b91_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_crontabschedule','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','djcelery_crontabschedule','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_crontabschedule','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_intervalschedule','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','djcelery_intervalschedule','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_intervalschedule','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_periodictask','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','djcelery_periodictask','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_periodictask','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_periodictask','djcelery_periodictas_crontab_id_75609bab_fk_djcelery_','2020-07-23 17:22:31','n_diff_pfx01',0,1,'crontab_id'),('edxapp','djcelery_periodictask','djcelery_periodictas_crontab_id_75609bab_fk_djcelery_','2020-07-23 17:22:31','n_diff_pfx02',0,1,'crontab_id,id'),('edxapp','djcelery_periodictask','djcelery_periodictas_crontab_id_75609bab_fk_djcelery_','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_periodictask','djcelery_periodictas_crontab_id_75609bab_fk_djcelery_','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_periodictask','djcelery_periodictas_interval_id_b426ab02_fk_djcelery_','2020-07-23 17:22:31','n_diff_pfx01',0,1,'interval_id'),('edxapp','djcelery_periodictask','djcelery_periodictas_interval_id_b426ab02_fk_djcelery_','2020-07-23 17:22:31','n_diff_pfx02',0,1,'interval_id,id'),('edxapp','djcelery_periodictask','djcelery_periodictas_interval_id_b426ab02_fk_djcelery_','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_periodictask','djcelery_periodictas_interval_id_b426ab02_fk_djcelery_','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_periodictask','name','2020-07-23 17:22:31','n_diff_pfx01',0,1,'name'),('edxapp','djcelery_periodictask','name','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_periodictask','name','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_periodictasks','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'ident'),('edxapp','djcelery_periodictasks','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_periodictasks','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','djcelery_taskstate','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_hidden_c3905e57','2020-07-23 17:22:31','n_diff_pfx01',0,1,'hidden'),('edxapp','djcelery_taskstate','djcelery_taskstate_hidden_c3905e57','2020-07-23 17:22:31','n_diff_pfx02',0,1,'hidden,id'),('edxapp','djcelery_taskstate','djcelery_taskstate_hidden_c3905e57','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_hidden_c3905e57','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_name_8af9eded','2020-07-23 17:22:31','n_diff_pfx01',0,1,'name'),('edxapp','djcelery_taskstate','djcelery_taskstate_name_8af9eded','2020-07-23 17:22:31','n_diff_pfx02',0,1,'name,id'),('edxapp','djcelery_taskstate','djcelery_taskstate_name_8af9eded','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_name_8af9eded','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_state_53543be4','2020-07-23 17:22:31','n_diff_pfx01',0,1,'state'),('edxapp','djcelery_taskstate','djcelery_taskstate_state_53543be4','2020-07-23 17:22:31','n_diff_pfx02',0,1,'state,id'),('edxapp','djcelery_taskstate','djcelery_taskstate_state_53543be4','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_state_53543be4','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_tstamp_4c3f93a1','2020-07-23 17:22:31','n_diff_pfx01',0,1,'tstamp'),('edxapp','djcelery_taskstate','djcelery_taskstate_tstamp_4c3f93a1','2020-07-23 17:22:31','n_diff_pfx02',0,1,'tstamp,id'),('edxapp','djcelery_taskstate','djcelery_taskstate_tstamp_4c3f93a1','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_tstamp_4c3f93a1','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'worker_id'),('edxapp','djcelery_taskstate','djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'worker_id,id'),('edxapp','djcelery_taskstate','djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','djcelery_taskstate_worker_id_f7f57a05_fk_djcelery_workerstate_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_taskstate','task_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'task_id'),('edxapp','djcelery_taskstate','task_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_taskstate','task_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_workerstate','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','djcelery_workerstate','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_workerstate','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_workerstate','djcelery_workerstate_last_heartbeat_4539b544','2020-07-23 17:22:31','n_diff_pfx01',0,1,'last_heartbeat'),('edxapp','djcelery_workerstate','djcelery_workerstate_last_heartbeat_4539b544','2020-07-23 17:22:31','n_diff_pfx02',0,1,'last_heartbeat,id'),('edxapp','djcelery_workerstate','djcelery_workerstate_last_heartbeat_4539b544','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_workerstate','djcelery_workerstate_last_heartbeat_4539b544','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','djcelery_workerstate','hostname','2020-07-23 17:22:31','n_diff_pfx01',0,1,'hostname'),('edxapp','djcelery_workerstate','hostname','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','djcelery_workerstate','hostname','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_contentdate','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',17,1,'id'),('edxapp','edx_when_contentdate','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_contentdate','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_course_id_e6c39fdc','2020-07-23 17:22:32','n_diff_pfx01',1,1,'course_id'),('edxapp','edx_when_contentdate','edx_when_contentdate_course_id_e6c39fdc','2020-07-23 17:22:32','n_diff_pfx02',17,1,'course_id,id'),('edxapp','edx_when_contentdate','edx_when_contentdate_course_id_e6c39fdc','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_course_id_e6c39fdc','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_location_485206ea','2020-07-23 17:22:32','n_diff_pfx01',17,1,'location'),('edxapp','edx_when_contentdate','edx_when_contentdate_location_485206ea','2020-07-23 17:22:32','n_diff_pfx02',17,1,'location,id'),('edxapp','edx_when_contentdate','edx_when_contentdate_location_485206ea','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_location_485206ea','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_af2bcaf4','2020-07-23 17:22:32','n_diff_pfx01',5,1,'policy_id'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_af2bcaf4','2020-07-23 17:22:32','n_diff_pfx02',17,1,'policy_id,id'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_af2bcaf4','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_af2bcaf4','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_location_field_a26790ec_uniq','2020-07-23 17:22:32','n_diff_pfx01',5,1,'policy_id'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_location_field_a26790ec_uniq','2020-07-23 17:22:32','n_diff_pfx02',17,1,'policy_id,location'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_location_field_a26790ec_uniq','2020-07-23 17:22:32','n_diff_pfx03',17,1,'policy_id,location,field'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_location_field_a26790ec_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_contentdate','edx_when_contentdate_policy_id_location_field_a26790ec_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_datepolicy','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',5,1,'id'),('edxapp','edx_when_datepolicy','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_datepolicy','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_abs_date_1a510cd3','2020-07-23 17:22:32','n_diff_pfx01',5,1,'abs_date'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_abs_date_1a510cd3','2020-07-23 17:22:32','n_diff_pfx02',5,1,'abs_date,id'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_abs_date_1a510cd3','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_abs_date_1a510cd3','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_rel_date_836d6051','2020-07-23 17:22:32','n_diff_pfx01',1,1,'rel_date'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_rel_date_836d6051','2020-07-23 17:22:32','n_diff_pfx02',5,1,'rel_date,id'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_rel_date_836d6051','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_datepolicy','edx_when_datepolicy_rel_date_836d6051','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_userdate','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edx_when_userdate','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_userdate','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_actor_id_cbef1cdc_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'actor_id'),('edxapp','edx_when_userdate','edx_when_userdate_actor_id_cbef1cdc_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'actor_id,id'),('edxapp','edx_when_userdate','edx_when_userdate_actor_id_cbef1cdc_fk_auth_user_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_actor_id_cbef1cdc_fk_auth_user_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_content_date_id_35c5e2e2_fk_edx_when_','2020-07-23 17:22:31','n_diff_pfx01',0,1,'content_date_id'),('edxapp','edx_when_userdate','edx_when_userdate_content_date_id_35c5e2e2_fk_edx_when_','2020-07-23 17:22:31','n_diff_pfx02',0,1,'content_date_id,id'),('edxapp','edx_when_userdate','edx_when_userdate_content_date_id_35c5e2e2_fk_edx_when_','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_content_date_id_35c5e2e2_fk_edx_when_','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_rel_date_954ee5b4','2020-07-23 17:22:31','n_diff_pfx01',0,1,'rel_date'),('edxapp','edx_when_userdate','edx_when_userdate_rel_date_954ee5b4','2020-07-23 17:22:31','n_diff_pfx02',0,1,'rel_date,id'),('edxapp','edx_when_userdate','edx_when_userdate_rel_date_954ee5b4','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_rel_date_954ee5b4','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_user_id_46e8cc36_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'user_id'),('edxapp','edx_when_userdate','edx_when_userdate_user_id_46e8cc36_fk_auth_user_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'user_id,id'),('edxapp','edx_when_userdate','edx_when_userdate_user_id_46e8cc36_fk_auth_user_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_when_userdate','edx_when_userdate_user_id_46e8cc36_fk_auth_user_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_launchlog','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edx_zoom_launchlog','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_launchlog','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_course_id_df466312','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_course_id_df466312','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,id'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_course_id_df466312','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_course_id_df466312','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_first_access_f45fc5ee','2020-07-23 17:22:31','n_diff_pfx01',0,1,'first_access'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_first_access_f45fc5ee','2020-07-23 17:22:31','n_diff_pfx02',0,1,'first_access,id'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_first_access_f45fc5ee','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_first_access_f45fc5ee','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_last_access_5c5d612f','2020-07-23 17:22:31','n_diff_pfx01',0,1,'last_access'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_last_access_5c5d612f','2020-07-23 17:22:31','n_diff_pfx02',0,1,'last_access,id'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_last_access_5c5d612f','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_last_access_5c5d612f','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_managed_426683ea','2020-07-23 17:22:31','n_diff_pfx01',0,1,'managed'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_managed_426683ea','2020-07-23 17:22:31','n_diff_pfx02',0,1,'managed,id'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_managed_426683ea','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_managed_426683ea','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_user_id_location_1a925a87_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'user_id'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_user_id_location_1a925a87_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'user_id,location'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_user_id_location_1a925a87_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_launchlog','edx_zoom_launchlog_user_id_location_1a925a87_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_lticredential','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edx_zoom_lticredential','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_lticredential','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edx_zoom_lticredential','course_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','edx_zoom_lticredential','course_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edx_zoom_lticredential','course_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_coursevideo','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edxval_coursevideo','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_coursevideo','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_coursevideo','edxval_coursevideo_course_id_video_id_ebd82f35_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','edxval_coursevideo','edxval_coursevideo_course_id_video_id_ebd82f35_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'course_id,video_id'),('edxapp','edxval_coursevideo','edxval_coursevideo_course_id_video_id_ebd82f35_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_coursevideo','edxval_coursevideo_course_id_video_id_ebd82f35_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_coursevideo','edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'video_id'),('edxapp','edxval_coursevideo','edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'video_id,id'),('edxapp','edxval_coursevideo','edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_coursevideo','edxval_coursevideo_video_id_85dfcf76_fk_edxval_video_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_encodedvideo','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edxval_encodedvideo','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_encodedvideo','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'profile_id'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'profile_id,id'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_profile_id_d9f3e086_fk_edxval_profile_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'video_id'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id','2020-07-23 17:22:31','n_diff_pfx02',0,1,'video_id,id'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_encodedvideo','edxval_encodedvideo_video_id_d8857acb_fk_edxval_video_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_profile','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',7,1,'id'),('edxapp','edxval_profile','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_profile','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_profile','profile_name','2020-07-23 17:22:32','n_diff_pfx01',7,1,'profile_name'),('edxapp','edxval_profile','profile_name','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_profile','profile_name','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','edxval_thirdpartytranscr_org_provider_188f7ddf_uniq','2020-07-23 17:22:31','n_diff_pfx01',0,1,'org'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','edxval_thirdpartytranscr_org_provider_188f7ddf_uniq','2020-07-23 17:22:31','n_diff_pfx02',0,1,'org,provider'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','edxval_thirdpartytranscr_org_provider_188f7ddf_uniq','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_thirdpartytranscriptcredentialsstate','edxval_thirdpartytranscr_org_provider_188f7ddf_uniq','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_transcriptpreference','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edxval_transcriptpreference','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_transcriptpreference','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_transcriptpreference','course_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_id'),('edxapp','edxval_transcriptpreference','course_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_transcriptpreference','course_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_video','PRIMARY','2020-07-23 17:27:49','n_diff_pfx01',18,1,'id'),('edxapp','edxval_video','PRIMARY','2020-07-23 17:27:49','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_video','PRIMARY','2020-07-23 17:27:49','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_video','edx_video_id','2020-07-23 17:27:49','n_diff_pfx01',18,1,'edx_video_id'),('edxapp','edxval_video','edx_video_id','2020-07-23 17:27:49','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_video','edx_video_id','2020-07-23 17:27:49','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_video','edxval_video_client_video_id_2b668312','2020-07-23 17:27:49','n_diff_pfx01',1,1,'client_video_id'),('edxapp','edxval_video','edxval_video_client_video_id_2b668312','2020-07-23 17:27:49','n_diff_pfx02',18,1,'client_video_id,id'),('edxapp','edxval_video','edxval_video_client_video_id_2b668312','2020-07-23 17:27:49','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_video','edxval_video_client_video_id_2b668312','2020-07-23 17:27:49','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_video','edxval_video_status_5f33a104','2020-07-23 17:27:49','n_diff_pfx01',1,1,'status'),('edxapp','edxval_video','edxval_video_status_5f33a104','2020-07-23 17:27:49','n_diff_pfx02',18,1,'status,id'),('edxapp','edxval_video','edxval_video_status_5f33a104','2020-07-23 17:27:49','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_video','edxval_video_status_5f33a104','2020-07-23 17:27:49','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_videoimage','PRIMARY','2020-07-23 17:22:31','n_diff_pfx01',0,1,'id'),('edxapp','edxval_videoimage','PRIMARY','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_videoimage','PRIMARY','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_videoimage','course_video_id','2020-07-23 17:22:31','n_diff_pfx01',0,1,'course_video_id'),('edxapp','edxval_videoimage','course_video_id','2020-07-23 17:22:31','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_videoimage','course_video_id','2020-07-23 17:22:31','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_videotranscript','PRIMARY','2020-07-23 17:27:59','n_diff_pfx01',16,1,'id'),('edxapp','edxval_videotranscript','PRIMARY','2020-07-23 17:27:59','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_videotranscript','PRIMARY','2020-07-23 17:27:59','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_videotranscript','edxval_videotranscript_file_format_3adddaf7','2020-07-23 17:27:59','n_diff_pfx01',1,1,'file_format'),('edxapp','edxval_videotranscript','edxval_videotranscript_file_format_3adddaf7','2020-07-23 17:27:59','n_diff_pfx02',16,1,'file_format,id'),('edxapp','edxval_videotranscript','edxval_videotranscript_file_format_3adddaf7','2020-07-23 17:27:59','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_videotranscript','edxval_videotranscript_file_format_3adddaf7','2020-07-23 17:27:59','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_videotranscript','edxval_videotranscript_language_code_d78ce3d1','2020-07-23 17:27:59','n_diff_pfx01',1,1,'language_code'),('edxapp','edxval_videotranscript','edxval_videotranscript_language_code_d78ce3d1','2020-07-23 17:27:59','n_diff_pfx02',16,1,'language_code,id'),('edxapp','edxval_videotranscript','edxval_videotranscript_language_code_d78ce3d1','2020-07-23 17:27:59','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_videotranscript','edxval_videotranscript_language_code_d78ce3d1','2020-07-23 17:27:59','size',1,NULL,'Number of pages in the index'),('edxapp','edxval_videotranscript','edxval_videotranscript_video_id_language_code_37532906_uniq','2020-07-23 17:27:59','n_diff_pfx01',16,1,'video_id'),('edxapp','edxval_videotranscript','edxval_videotranscript_video_id_language_code_37532906_uniq','2020-07-23 17:27:59','n_diff_pfx02',16,1,'video_id,language_code'),('edxapp','edxval_videotranscript','edxval_videotranscript_video_id_language_code_37532906_uniq','2020-07-23 17:27:59','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','edxval_videotranscript','edxval_videotranscript_video_id_language_code_37532906_uniq','2020-07-23 17:27:59','size',1,NULL,'Number of pages in the index'),('edxapp','email_marketing_emailmarketingconfiguration','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','email_marketing_emailmarketingconfiguration','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','email_marketing_emailmarketingconfiguration','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','email_marketing_emailmarketingconfiguration','email_marketing_emai_changed_by_id_15ce753b_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','email_marketing_emailmarketingconfiguration','email_marketing_emai_changed_by_id_15ce753b_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','email_marketing_emailmarketingconfiguration','email_marketing_emai_changed_by_id_15ce753b_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','email_marketing_emailmarketingconfiguration','email_marketing_emai_changed_by_id_15ce753b_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_country','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',250,1,'id'),('edxapp','embargo_country','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_country','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_country','country','2020-07-23 17:22:35','n_diff_pfx01',250,1,'country'),('edxapp','embargo_country','country','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_country','country','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_countryaccessrule','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','embargo_countryaccessrule','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_countryaccessrule','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_countryaccessrule','embargo_countryacces_country_id_6af33e89_fk_embargo_c','2020-07-23 17:22:32','n_diff_pfx01',0,1,'country_id'),('edxapp','embargo_countryaccessrule','embargo_countryacces_country_id_6af33e89_fk_embargo_c','2020-07-23 17:22:32','n_diff_pfx02',0,1,'country_id,id'),('edxapp','embargo_countryaccessrule','embargo_countryacces_country_id_6af33e89_fk_embargo_c','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_countryaccessrule','embargo_countryacces_country_id_6af33e89_fk_embargo_c','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_countryaccessrule','embargo_countryaccessrul_restricted_course_id_cou_477b6bb1_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'restricted_course_id'),('edxapp','embargo_countryaccessrule','embargo_countryaccessrul_restricted_course_id_cou_477b6bb1_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'restricted_course_id,country_id'),('edxapp','embargo_countryaccessrule','embargo_countryaccessrul_restricted_course_id_cou_477b6bb1_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_countryaccessrule','embargo_countryaccessrul_restricted_course_id_cou_477b6bb1_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_courseaccessrulehistory','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','embargo_courseaccessrulehistory','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_courseaccessrulehistory','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_course_key_6f7a7a06','2020-07-23 17:22:32','n_diff_pfx01',0,1,'course_key'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_course_key_6f7a7a06','2020-07-23 17:22:32','n_diff_pfx02',0,1,'course_key,id'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_course_key_6f7a7a06','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_course_key_6f7a7a06','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_timestamp_0267f0e6','2020-07-23 17:22:32','n_diff_pfx01',0,1,'timestamp'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_timestamp_0267f0e6','2020-07-23 17:22:32','n_diff_pfx02',0,1,'timestamp,id'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_timestamp_0267f0e6','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_courseaccessrulehistory','embargo_courseaccessrulehistory_timestamp_0267f0e6','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_embargoedcourse','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','embargo_embargoedcourse','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_embargoedcourse','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_embargoedcourse','course_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'course_id'),('edxapp','embargo_embargoedcourse','course_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_embargoedcourse','course_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_embargoedstate','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','embargo_embargoedstate','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_embargoedstate','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_embargoedstate','embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','embargo_embargoedstate','embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id','2020-07-23 17:22:32','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','embargo_embargoedstate','embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_embargoedstate','embargo_embargoedstate_changed_by_id_f7763260_fk_auth_user_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_ipfilter','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','embargo_ipfilter','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_ipfilter','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_ipfilter','embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','embargo_ipfilter','embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id','2020-07-23 17:22:32','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','embargo_ipfilter','embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_ipfilter','embargo_ipfilter_changed_by_id_39e4eed2_fk_auth_user_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_restrictedcourse','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','embargo_restrictedcourse','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_restrictedcourse','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','embargo_restrictedcourse','course_key','2020-07-23 17:22:32','n_diff_pfx01',0,1,'course_key'),('edxapp','embargo_restrictedcourse','course_key','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','embargo_restrictedcourse','course_key','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enrollmentnotificationemailtemplate','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enrollmentnotificationemailtemplate','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enrollmentnotificationemailtemplate','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enrollmentnotificationemailtemplate','enterprise_customer_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_enrollmentnotificationemailtemplate','enterprise_customer_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enrollmentnotificationemailtemplate','enterprise_customer_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecatalogquery','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecatalogquery','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecatalogquery','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterpris_source_id_c347bfa6_fk_enterpris','2020-07-23 17:24:37','n_diff_pfx01',0,1,'source_id'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterpris_source_id_c347bfa6_fk_enterpris','2020-07-23 17:24:37','n_diff_pfx02',0,1,'source_id,id'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterpris_source_id_c347bfa6_fk_enterpris','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterpris_source_id_c347bfa6_fk_enterpris','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq','2020-07-23 17:24:37','n_diff_pfx01',0,1,'enterprise_customer_user_id'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq','2020-07-23 17:24:37','n_diff_pfx02',0,1,'enterprise_customer_user_id,course_id'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecourseenrollment','enterprise_enterprisecou_enterprise_customer_user_71fe301a_uniq','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomer','PRIMARY','2020-07-23 17:24:37','n_diff_pfx01',0,1,'uuid'),('edxapp','enterprise_enterprisecustomer','PRIMARY','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomer','PRIMARY','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomer','enterprise_enterpris_customer_type_id_4b1ee315_fk_enterpris','2020-07-23 17:24:37','n_diff_pfx01',0,1,'customer_type_id'),('edxapp','enterprise_enterprisecustomer','enterprise_enterpris_customer_type_id_4b1ee315_fk_enterpris','2020-07-23 17:24:37','n_diff_pfx02',0,1,'customer_type_id,uuid'),('edxapp','enterprise_enterprisecustomer','enterprise_enterpris_customer_type_id_4b1ee315_fk_enterpris','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomer','enterprise_enterpris_customer_type_id_4b1ee315_fk_enterpris','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id','2020-07-23 17:24:37','n_diff_pfx01',0,1,'site_id'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id','2020-07-23 17:24:37','n_diff_pfx02',0,1,'site_id,uuid'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_site_id_947ed084_fk_django_site_id','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_slug_80411f46_uniq','2020-07-23 17:24:37','n_diff_pfx01',0,1,'slug'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_slug_80411f46_uniq','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomer','enterprise_enterprisecustomer_slug_80411f46_uniq','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','enterprise_customer_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','enterprise_customer_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','enterprise_customer_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomercatalog','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'uuid'),('edxapp','enterprise_enterprisecustomercatalog','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomercatalog','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_catalog_q_aa53eb7d_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_catalog_query_id'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_catalog_q_aa53eb7d_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_catalog_query_id,uuid'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_catalog_q_aa53eb7d_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_catalog_q_aa53eb7d_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,uuid'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomercatalog','enterprise_enterpris_enterprise_customer__3b4660ad_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomeridentityprovider','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecustomeridentityprovider','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomeridentityprovider','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomeridentityprovider','enterprise_customer_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_enterprisecustomeridentityprovider','enterprise_customer_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomeridentityprovider','enterprise_customer_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomeridentityprovider','provider_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'provider_id'),('edxapp','enterprise_enterprisecustomeridentityprovider','provider_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomeridentityprovider','provider_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecus_uuid_9df3c307_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'uuid'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecus_uuid_9df3c307_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecus_uuid_9df3c307_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecustom_enterprise_customer_id_d5b55543','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecustom_enterprise_customer_id_d5b55543','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecustom_enterprise_customer_id_d5b55543','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration','enterprise_enterprisecustom_enterprise_customer_id_d5b55543','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterpris_enterprisecustomerca_ebdae525_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprisecustomercatalog_id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterpris_enterprisecustomerca_ebdae525_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprisecustomercatalog_id,id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterpris_enterprisecustomerca_ebdae525_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterpris_enterprisecustomerca_ebdae525_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterprisecus_enterprisecustomerreport_cc87ab4c_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprisecustomerreportingconfiguration_id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterprisecus_enterprisecustomerreport_cc87ab4c_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprisecustomerreportingconfiguration_id,enterprisecustomercatalog_id'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterprisecus_enterprisecustomerreport_cc87ab4c_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','enterprise_enterprisecus_enterprisecustomerreport_cc87ab4c_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomertype','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecustomertype','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomertype','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecus_enterprise_customer_id_u_ffddc29f_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecus_enterprise_customer_id_u_ffddc29f_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,user_id'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecus_enterprise_customer_id_u_ffddc29f_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecus_enterprise_customer_id_u_ffddc29f_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecustomeruser_user_id_aa8d772f','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecustomeruser_user_id_aa8d772f','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,id'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecustomeruser_user_id_aa8d772f','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisecustomeruser','enterprise_enterprisecustomeruser_user_id_aa8d772f','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterpriseenrollmentsource','PRIMARY','2020-07-23 17:22:38','n_diff_pfx01',6,1,'id'),('edxapp','enterprise_enterpriseenrollmentsource','PRIMARY','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterpriseenrollmentsource','PRIMARY','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterpriseenrollmentsource','slug','2020-07-23 17:22:38','n_diff_pfx01',6,1,'slug'),('edxapp','enterprise_enterpriseenrollmentsource','slug','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterpriseenrollmentsource','slug','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisefeaturerole','PRIMARY','2020-07-23 17:22:48','n_diff_pfx01',4,1,'id'),('edxapp','enterprise_enterprisefeaturerole','PRIMARY','2020-07-23 17:22:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisefeaturerole','PRIMARY','2020-07-23 17:22:48','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisefeaturerole','name','2020-07-23 17:22:48','n_diff_pfx01',4,1,'name'),('edxapp','enterprise_enterprisefeaturerole','name','2020-07-23 17:22:48','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisefeaturerole','name','2020-07-23 17:22:48','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisefeatureuserroleassignment','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_enterprisefeatureuserroleassignment','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisefeatureuserroleassignment','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_role_id_5e8cff42_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'role_id'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_role_id_5e8cff42_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'role_id,id'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_role_id_5e8cff42_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_role_id_5e8cff42_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_user_id_2d335bd4_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_user_id_2d335bd4_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,id'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_user_id_2d335bd4_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_enterprisefeatureuserroleassignment','enterprise_enterpris_user_id_2d335bd4_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historica_history_user_id_f2a6d605_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historica_history_user_id_f2a6d605_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historica_history_user_id_f2a6d605_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historica_history_user_id_f2a6d605_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_enterprise_customer_id_bc826535','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_enterprise_customer_id_bc826535','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,history_id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_enterprise_customer_id_bc826535','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_enterprise_customer_id_bc826535','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_id_d4b3fed2','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_id_d4b3fed2','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_id_d4b3fed2','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','enterprise_historicalenroll_id_d4b3fed2','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:38','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historica_history_user_id_a7d84786_fk_auth_user','2020-07-23 17:24:38','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historica_history_user_id_a7d84786_fk_auth_user','2020-07-23 17:24:38','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historica_history_user_id_a7d84786_fk_auth_user','2020-07-23 17:24:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historica_history_user_id_a7d84786_fk_auth_user','2020-07-23 17:24:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_enterprise_customer_user_id_380ecc4e','2020-07-23 17:24:38','n_diff_pfx01',0,1,'enterprise_customer_user_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_enterprise_customer_user_id_380ecc4e','2020-07-23 17:24:38','n_diff_pfx02',0,1,'enterprise_customer_user_id,history_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_enterprise_customer_user_id_380ecc4e','2020-07-23 17:24:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_enterprise_customer_user_id_380ecc4e','2020-07-23 17:24:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_source_id_015c9e9c','2020-07-23 17:24:38','n_diff_pfx01',0,1,'source_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_source_id_015c9e9c','2020-07-23 17:24:38','n_diff_pfx02',0,1,'source_id,history_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_source_id_015c9e9c','2020-07-23 17:24:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterp_source_id_015c9e9c','2020-07-23 17:24:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterprisecourseenrollment_id_452a4b04','2020-07-23 17:24:38','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterprisecourseenrollment_id_452a4b04','2020-07-23 17:24:38','n_diff_pfx02',0,1,'id,history_id'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterprisecourseenrollment_id_452a4b04','2020-07-23 17:24:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecourseenrollment','enterprise_historicalenterprisecourseenrollment_id_452a4b04','2020-07-23 17:24:38','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','PRIMARY','2020-07-23 17:24:37','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicalenterprisecustomer','PRIMARY','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','PRIMARY','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user','2020-07-23 17:24:37','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user','2020-07-23 17:24:37','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historica_history_user_id_bbd9b0d6_fk_auth_user','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterp_customer_type_id_8fbc8526','2020-07-23 17:24:37','n_diff_pfx01',0,1,'customer_type_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterp_customer_type_id_8fbc8526','2020-07-23 17:24:37','n_diff_pfx02',0,1,'customer_type_id,history_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterp_customer_type_id_8fbc8526','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterp_customer_type_id_8fbc8526','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_site_id_2463b5d7','2020-07-23 17:24:37','n_diff_pfx01',0,1,'site_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_site_id_2463b5d7','2020-07-23 17:24:37','n_diff_pfx02',0,1,'site_id,history_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_site_id_2463b5d7','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_site_id_2463b5d7','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_slug_04622dd4','2020-07-23 17:24:37','n_diff_pfx01',0,1,'slug'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_slug_04622dd4','2020-07-23 17:24:37','n_diff_pfx02',0,1,'slug,history_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_slug_04622dd4','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_slug_04622dd4','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_uuid_75c3528e','2020-07-23 17:24:37','n_diff_pfx01',0,1,'uuid'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_uuid_75c3528e','2020-07-23 17:24:37','n_diff_pfx02',0,1,'uuid,history_id'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_uuid_75c3528e','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomer','enterprise_historicalenterprisecustomer_uuid_75c3528e','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historica_history_user_id_31eab231_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historica_history_user_id_31eab231_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historica_history_user_id_31eab231_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historica_history_user_id_31eab231_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_catalog_query_id_bf435a3a','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_catalog_query_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_catalog_query_id_bf435a3a','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_catalog_query_id,history_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_catalog_query_id_bf435a3a','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_catalog_query_id_bf435a3a','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_customer_id_664f4480','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_customer_id_664f4480','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,history_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_customer_id_664f4480','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterp_enterprise_customer_id_664f4480','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterprisecustomercatalog_uuid_42403101','2020-07-23 17:22:32','n_diff_pfx01',0,1,'uuid'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterprisecustomercatalog_uuid_42403101','2020-07-23 17:22:32','n_diff_pfx02',0,1,'uuid,history_id'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterprisecustomercatalog_uuid_42403101','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalenterprisecustomercatalog','enterprise_historicalenterprisecustomercatalog_uuid_42403101','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historica_history_user_id_1db87766_fk_auth_user','2020-07-23 17:24:37','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historica_history_user_id_1db87766_fk_auth_user','2020-07-23 17:24:37','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historica_history_user_id_1db87766_fk_auth_user','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historica_history_user_id_1db87766_fk_auth_user','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_enterprise_course_enrollmen_1b0d3427','2020-07-23 17:24:37','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_enterprise_course_enrollmen_1b0d3427','2020-07-23 17:24:37','n_diff_pfx02',0,1,'enterprise_course_enrollment_id,history_id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_enterprise_course_enrollmen_1b0d3427','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_enterprise_course_enrollmen_1b0d3427','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_id_ff4cfd4f','2020-07-23 17:24:37','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_id_ff4cfd4f','2020-07-23 17:24:37','n_diff_pfx02',0,1,'id,history_id'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_id_ff4cfd4f','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','enterprise_historicallicens_id_ff4cfd4f','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenrollment','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicalpendingenrollment','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenrollment','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historica_history_user_id_894ad7d0_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historica_history_user_id_894ad7d0_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historica_history_user_id_894ad7d0_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historica_history_user_id_894ad7d0_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_id_27077b0b','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_id_27077b0b','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_id_27077b0b','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_id_27077b0b','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_source_id_3a208cd2','2020-07-23 17:22:32','n_diff_pfx01',0,1,'source_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_source_id_3a208cd2','2020-07-23 17:22:32','n_diff_pfx02',0,1,'source_id,history_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_source_id_3a208cd2','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_source_id_3a208cd2','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_user_id_97ded265','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_user_id_97ded265','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,history_id'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_user_id_97ded265','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenrollment','enterprise_historicalpendingenrollment_user_id_97ded265','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historica_history_user_id_c491461b_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historica_history_user_id_c491461b_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historica_history_user_id_c491461b_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historica_history_user_id_c491461b_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_enterprise_customer_id_6c02ed95','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_enterprise_customer_id_6c02ed95','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,history_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_enterprise_customer_id_6c02ed95','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_enterprise_customer_id_6c02ed95','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_user_email_88c478b4','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_email'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_user_email_88c478b4','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_email,history_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_user_email_88c478b4','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendin_user_email_88c478b4','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendingenterprisecustomeruser_id_3cf88198','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendingenterprisecustomeruser_id_3cf88198','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendingenterprisecustomeruser_id_3cf88198','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_historicalpendingenterprisecustomeruser','enterprise_historicalpendingenterprisecustomeruser_id_3cf88198','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_licensedenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_licensedenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_licensedenterprisecourseenrollment','PRIMARY','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_licensedenterprisecourseenrollment','enterprise_course_enrollment_id','2020-07-23 17:24:37','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','enterprise_licensedenterprisecourseenrollment','enterprise_course_enrollment_id','2020-07-23 17:24:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_licensedenterprisecourseenrollment','enterprise_course_enrollment_id','2020-07-23 17:24:37','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_pendingenrollment','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_pendingenrollment','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_pendingenrollment','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_pendingenrollment','enterprise_pendingen_source_id_7b6fed0c_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'source_id'),('edxapp','enterprise_pendingenrollment','enterprise_pendingen_source_id_7b6fed0c_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'source_id,id'),('edxapp','enterprise_pendingenrollment','enterprise_pendingen_source_id_7b6fed0c_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_pendingenrollment','enterprise_pendingen_source_id_7b6fed0c_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_pendingenrollment','enterprise_pendingenrollment_user_id_course_id_6d4141c7_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','enterprise_pendingenrollment','enterprise_pendingenrollment_user_id_course_id_6d4141c7_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','enterprise_pendingenrollment','enterprise_pendingenrollment_user_id_course_id_6d4141c7_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_pendingenrollment','enterprise_pendingenrollment_user_id_course_id_6d4141c7_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_pendingenterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_pendingenterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_pendingenterprisecustomeruser','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enterprise_customer_id,id'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingen_enterprise_customer__a858ce2d_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingenterp_user_email_5440d1d3_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_email'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingenterp_user_email_5440d1d3_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_pendingenterprisecustomeruser','enterprise_pendingenterp_user_email_5440d1d3_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_systemwideenterpriserole','PRIMARY','2020-07-23 17:22:58','n_diff_pfx01',3,1,'id'),('edxapp','enterprise_systemwideenterpriserole','PRIMARY','2020-07-23 17:22:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_systemwideenterpriserole','PRIMARY','2020-07-23 17:22:58','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_systemwideenterpriserole','name','2020-07-23 17:22:58','n_diff_pfx01',3,1,'name'),('edxapp','enterprise_systemwideenterpriserole','name','2020-07-23 17:22:58','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_systemwideenterpriserole','name','2020-07-23 17:22:58','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_role_id_bc7092f0_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx01',0,1,'role_id'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_role_id_bc7092f0_fk_enterpris','2020-07-23 17:22:32','n_diff_pfx02',0,1,'role_id,id'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_role_id_bc7092f0_fk_enterpris','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_role_id_bc7092f0_fk_enterpris','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_user_id_e890aef2_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_user_id_e890aef2_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,id'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_user_id_e890aef2_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','enterprise_systemwideenterpriseuserroleassignment','enterprise_systemwid_user_id_e890aef2_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlement','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','entitlements_courseentitlement','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlement','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_coursee__policy_id_37bd7c13_fk_entitleme','2020-07-23 17:22:32','n_diff_pfx01',0,1,'_policy_id'),('edxapp','entitlements_courseentitlement','entitlements_coursee__policy_id_37bd7c13_fk_entitleme','2020-07-23 17:22:32','n_diff_pfx02',0,1,'_policy_id,id'),('edxapp','entitlements_courseentitlement','entitlements_coursee__policy_id_37bd7c13_fk_entitleme','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_coursee__policy_id_37bd7c13_fk_entitleme','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enrollment_course_run_id'),('edxapp','entitlements_courseentitlement','entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enrollment_course_run_id,id'),('edxapp','entitlements_courseentitlement','entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_coursee_enrollment_course_ru_3fc796af_fk_student_c','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_courseentit_course_uuid_order_number_b37c9e13_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'course_uuid'),('edxapp','entitlements_courseentitlement','entitlements_courseentit_course_uuid_order_number_b37c9e13_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'course_uuid,order_number'),('edxapp','entitlements_courseentitlement','entitlements_courseentit_course_uuid_order_number_b37c9e13_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_courseentit_course_uuid_order_number_b37c9e13_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,id'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_user_id_a518a225_fk_auth_user_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_uuid_2228ffad_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'uuid'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_uuid_2228ffad_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlement','entitlements_courseentitlement_uuid_2228ffad_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlementpolicy','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','entitlements_courseentitlementpolicy','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlementpolicy','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlementpolicy','entitlements_coursee_site_id_c7a9e107_fk_django_si','2020-07-23 17:22:32','n_diff_pfx01',0,1,'site_id'),('edxapp','entitlements_courseentitlementpolicy','entitlements_coursee_site_id_c7a9e107_fk_django_si','2020-07-23 17:22:32','n_diff_pfx02',0,1,'site_id,id'),('edxapp','entitlements_courseentitlementpolicy','entitlements_coursee_site_id_c7a9e107_fk_django_si','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlementpolicy','entitlements_coursee_site_id_c7a9e107_fk_django_si','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','entitlements_courseentitlementsupportdetail','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_entitlement_id_93b9020b_fk_entitleme','2020-07-23 17:22:32','n_diff_pfx01',0,1,'entitlement_id'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_entitlement_id_93b9020b_fk_entitleme','2020-07-23 17:22:32','n_diff_pfx02',0,1,'entitlement_id,id'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_entitlement_id_93b9020b_fk_entitleme','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_entitlement_id_93b9020b_fk_entitleme','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_support_user_id_97d3095e_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'support_user_id'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_support_user_id_97d3095e_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'support_user_id,id'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_support_user_id_97d3095e_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_coursee_support_user_id_97d3095e_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_courseentitlem_unenrolled_run_id_d72860e3','2020-07-23 17:22:32','n_diff_pfx01',0,1,'unenrolled_run_id'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_courseentitlem_unenrolled_run_id_d72860e3','2020-07-23 17:22:32','n_diff_pfx02',0,1,'unenrolled_run_id,id'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_courseentitlem_unenrolled_run_id_d72860e3','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_courseentitlementsupportdetail','entitlements_courseentitlem_unenrolled_run_id_d72860e3','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','entitlements_historicalcourseentitlement','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_histori_history_user_id_a3bc1823_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_histori_history_user_id_a3bc1823_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_histori_history_user_id_a3bc1823_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_histori_history_user_id_a3bc1823_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcour_enrollment_course_run_id_1b92719b','2020-07-23 17:22:32','n_diff_pfx01',0,1,'enrollment_course_run_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcour_enrollment_course_run_id_1b92719b','2020-07-23 17:22:32','n_diff_pfx02',0,1,'enrollment_course_run_id,history_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcour_enrollment_course_run_id_1b92719b','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcour_enrollment_course_run_id_1b92719b','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement__policy_id_71c21d43','2020-07-23 17:22:32','n_diff_pfx01',0,1,'_policy_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement__policy_id_71c21d43','2020-07-23 17:22:32','n_diff_pfx02',0,1,'_policy_id,history_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement__policy_id_71c21d43','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement__policy_id_71c21d43','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_id_e3740062','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_id_e3740062','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_id_e3740062','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_id_e3740062','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_user_id_c770997b','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_user_id_c770997b','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,history_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_user_id_c770997b','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_user_id_c770997b','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_uuid_54fd331f','2020-07-23 17:22:32','n_diff_pfx01',0,1,'uuid'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_uuid_54fd331f','2020-07-23 17:22:32','n_diff_pfx02',0,1,'uuid,history_id'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_uuid_54fd331f','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlement','entitlements_historicalcourseentitlement_uuid_54fd331f','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_histori_history_user_id_b00a74ce_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_histori_history_user_id_b00a74ce_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_histori_history_user_id_b00a74ce_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_histori_history_user_id_b00a74ce_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_entitlement_id_a5a6c6cc','2020-07-23 17:22:32','n_diff_pfx01',0,1,'entitlement_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_entitlement_id_a5a6c6cc','2020-07-23 17:22:32','n_diff_pfx02',0,1,'entitlement_id,history_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_entitlement_id_a5a6c6cc','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_entitlement_id_a5a6c6cc','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_id_d019368b','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_id_d019368b','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_id_d019368b','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_id_d019368b','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_support_user_id_8788841f','2020-07-23 17:22:32','n_diff_pfx01',0,1,'support_user_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_support_user_id_8788841f','2020-07-23 17:22:32','n_diff_pfx02',0,1,'support_user_id,history_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_support_user_id_8788841f','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_support_user_id_8788841f','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_unenrolled_run_id_67b11a08','2020-07-23 17:22:32','n_diff_pfx01',0,1,'unenrolled_run_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_unenrolled_run_id_67b11a08','2020-07-23 17:22:32','n_diff_pfx02',0,1,'unenrolled_run_id,history_id'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_unenrolled_run_id_67b11a08','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','entitlements_historicalcourseentitlementsupportdetail','entitlements_historicalcour_unenrolled_run_id_67b11a08','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentdata','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','experiments_experimentdata','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentdata','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentdata','experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','experiments_experimentdata','experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,experiment_id'),('edxapp','experiments_experimentdata','experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq','2020-07-23 17:22:32','n_diff_pfx03',0,1,'user_id,experiment_id,key'),('edxapp','experiments_experimentdata','experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentdata','experiments_experimentda_user_id_experiment_id_ke_0ff27a32_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentdata','experiments_experimentdata_experiment_id_e816cee5','2020-07-23 17:22:32','n_diff_pfx01',0,1,'experiment_id'),('edxapp','experiments_experimentdata','experiments_experimentdata_experiment_id_e816cee5','2020-07-23 17:22:32','n_diff_pfx02',0,1,'experiment_id,id'),('edxapp','experiments_experimentdata','experiments_experimentdata_experiment_id_e816cee5','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentdata','experiments_experimentdata_experiment_id_e816cee5','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentdata','experiments_experimentdata_user_id_experiment_id_15bd1b30_idx','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','experiments_experimentdata','experiments_experimentdata_user_id_experiment_id_15bd1b30_idx','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,experiment_id'),('edxapp','experiments_experimentdata','experiments_experimentdata_user_id_experiment_id_15bd1b30_idx','2020-07-23 17:22:32','n_diff_pfx03',0,1,'user_id,experiment_id,id'),('edxapp','experiments_experimentdata','experiments_experimentdata_user_id_experiment_id_15bd1b30_idx','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentdata','experiments_experimentdata_user_id_experiment_id_15bd1b30_idx','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentkeyvalue','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','experiments_experimentkeyvalue','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentkeyvalue','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_741d1a4b','2020-07-23 17:22:32','n_diff_pfx01',0,1,'experiment_id'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_741d1a4b','2020-07-23 17:22:32','n_diff_pfx02',0,1,'experiment_id,id'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_741d1a4b','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_741d1a4b','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_key_15347f43_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'experiment_id'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_key_15347f43_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'experiment_id,key'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_key_15347f43_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_experimentkeyvalue','experiments_experimentkeyvalue_experiment_id_key_15347f43_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','experiments_historicalexperimentkeyvalue','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historic_history_user_id_3892eb1a_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historic_history_user_id_3892eb1a_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historic_history_user_id_3892eb1a_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historic_history_user_id_3892eb1a_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_experiment_id_6a3c1624','2020-07-23 17:22:32','n_diff_pfx01',0,1,'experiment_id'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_experiment_id_6a3c1624','2020-07-23 17:22:32','n_diff_pfx02',0,1,'experiment_id,history_id'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_experiment_id_6a3c1624','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_experiment_id_6a3c1624','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_id_13f6f6d3','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_id_13f6f6d3','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_id_13f6f6d3','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','experiments_historicalexperimentkeyvalue','experiments_historicalexperimentkeyvalue_id_13f6f6d3','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_externalid','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','external_user_ids_externalid','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_externalid','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_externalid','external_user_id','2020-07-23 17:22:32','n_diff_pfx01',0,1,'external_user_id'),('edxapp','external_user_ids_externalid','external_user_id','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_externalid','external_user_id','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_externalid','external_user_ids_ex_external_id_type_id_421db1af_fk_external_','2020-07-23 17:22:32','n_diff_pfx01',0,1,'external_id_type_id'),('edxapp','external_user_ids_externalid','external_user_ids_ex_external_id_type_id_421db1af_fk_external_','2020-07-23 17:22:32','n_diff_pfx02',0,1,'external_id_type_id,id'),('edxapp','external_user_ids_externalid','external_user_ids_ex_external_id_type_id_421db1af_fk_external_','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_externalid','external_user_ids_ex_external_id_type_id_421db1af_fk_external_','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_externalid','external_user_ids_extern_user_id_external_id_type_cf1d16bc_uniq','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','external_user_ids_externalid','external_user_ids_extern_user_id_external_id_type_cf1d16bc_uniq','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,external_id_type_id'),('edxapp','external_user_ids_externalid','external_user_ids_extern_user_id_external_id_type_cf1d16bc_uniq','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_externalid','external_user_ids_extern_user_id_external_id_type_cf1d16bc_uniq','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_externalidtype','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','external_user_ids_externalidtype','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_externalidtype','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_externalidtype','name','2020-07-23 17:22:32','n_diff_pfx01',0,1,'name'),('edxapp','external_user_ids_externalidtype','name','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_externalidtype','name','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalid','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','external_user_ids_historicalexternalid','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalid','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_hi_history_user_id_fd67f897_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_hi_history_user_id_fd67f897_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_hi_history_user_id_fd67f897_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_hi_history_user_id_fd67f897_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historica_external_id_type_id_74b65da9','2020-07-23 17:22:32','n_diff_pfx01',0,1,'external_id_type_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historica_external_id_type_id_74b65da9','2020-07-23 17:22:32','n_diff_pfx02',0,1,'external_id_type_id,history_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historica_external_id_type_id_74b65da9','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historica_external_id_type_id_74b65da9','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_external_user_id_03a5f871','2020-07-23 17:22:32','n_diff_pfx01',0,1,'external_user_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_external_user_id_03a5f871','2020-07-23 17:22:32','n_diff_pfx02',0,1,'external_user_id,history_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_external_user_id_03a5f871','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_external_user_id_03a5f871','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_id_1444e43e','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_id_1444e43e','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_id_1444e43e','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_id_1444e43e','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_user_id_64337ddb','2020-07-23 17:22:32','n_diff_pfx01',0,1,'user_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_user_id_64337ddb','2020-07-23 17:22:32','n_diff_pfx02',0,1,'user_id,history_id'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_user_id_64337ddb','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalid','external_user_ids_historicalexternalid_user_id_64337ddb','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','external_user_ids_historicalexternalidtype','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_hi_history_user_id_6a2c78fc_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_hi_history_user_id_6a2c78fc_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_hi_history_user_id_6a2c78fc_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_hi_history_user_id_6a2c78fc_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_id_4cc44c83','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_id_4cc44c83','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_id_4cc44c83','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_id_4cc44c83','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_name_a2e9fa4e','2020-07-23 17:22:32','n_diff_pfx01',0,1,'name'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_name_a2e9fa4e','2020-07-23 17:22:32','n_diff_pfx02',0,1,'name,history_id'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_name_a2e9fa4e','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','external_user_ids_historicalexternalidtype','external_user_ids_historicalexternalidtype_name_a2e9fa4e','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_computegradessetting','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','grades_computegradessetting','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_computegradessetting','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_computegradessetting','grades_computegrades_changed_by_id_f2bf3678_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','grades_computegradessetting','grades_computegrades_changed_by_id_f2bf3678_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','grades_computegradessetting','grades_computegrades_changed_by_id_f2bf3678_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_computegradessetting','grades_computegrades_changed_by_id_f2bf3678_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_coursepersistentgradesflag','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','grades_coursepersistentgradesflag','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_coursepersistentgradesflag','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersist_changed_by_id_c8c392d6_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersistentgradesflag_course_id_b494f1e7','2020-07-23 17:22:32','n_diff_pfx01',0,1,'course_id'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersistentgradesflag_course_id_b494f1e7','2020-07-23 17:22:32','n_diff_pfx02',0,1,'course_id,id'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersistentgradesflag_course_id_b494f1e7','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_coursepersistentgradesflag','grades_coursepersistentgradesflag_course_id_b494f1e7','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','PRIMARY','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','PRIMARY','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','PRIMARY','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalper_history_user_id_05000562_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx01',0,1,'history_user_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalper_history_user_id_05000562_fk_auth_user','2020-07-23 17:22:32','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalper_history_user_id_05000562_fk_auth_user','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalper_history_user_id_05000562_fk_auth_user','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_created_e5fb4d96','2020-07-23 17:22:32','n_diff_pfx01',0,1,'created'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_created_e5fb4d96','2020-07-23 17:22:32','n_diff_pfx02',0,1,'created,history_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_created_e5fb4d96','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_created_e5fb4d96','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_grade_id_ecfb45cc','2020-07-23 17:22:32','n_diff_pfx01',0,1,'grade_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_grade_id_ecfb45cc','2020-07-23 17:22:32','n_diff_pfx02',0,1,'grade_id,history_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_grade_id_ecfb45cc','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_grade_id_ecfb45cc','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_modified_7355e846','2020-07-23 17:22:32','n_diff_pfx01',0,1,'modified'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_modified_7355e846','2020-07-23 17:22:32','n_diff_pfx02',0,1,'modified,history_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_modified_7355e846','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistent_modified_7355e846','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistentsubsectiongradeoverride_id_e30d8953','2020-07-23 17:22:32','n_diff_pfx01',0,1,'id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistentsubsectiongradeoverride_id_e30d8953','2020-07-23 17:22:32','n_diff_pfx02',0,1,'id,history_id'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistentsubsectiongradeoverride_id_e30d8953','2020-07-23 17:22:32','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_historicalpersistentsubsectiongradeoverride','grades_historicalpersistentsubsectiongradeoverride_id_e30d8953','2020-07-23 17:22:32','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentcoursegrade','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','grades_persistentcoursegrade','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentcoursegrade','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx','2020-07-23 17:22:33','n_diff_pfx01',0,1,'passed_timestamp'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx','2020-07-23 17:22:33','n_diff_pfx02',0,1,'passed_timestamp,course_id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx','2020-07-23 17:22:33','n_diff_pfx03',0,1,'passed_timestamp,course_id,id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegr_passed_timestamp_course_i_27d4396e_idx','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_course_id_user_id_d7b585c9_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_course_id_user_id_d7b585c9_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,user_id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_course_id_user_id_d7b585c9_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_course_id_user_id_d7b585c9_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx','2020-07-23 17:22:33','n_diff_pfx01',0,1,'modified'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx','2020-07-23 17:22:33','n_diff_pfx02',0,1,'modified,course_id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx','2020-07-23 17:22:33','n_diff_pfx03',0,1,'modified,course_id,id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_modified_course_id_0e2ef09a_idx','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_user_id_b2296589','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_user_id_b2296589','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_user_id_b2296589','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentcoursegrade','grades_persistentcoursegrade_user_id_b2296589','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentgradesenabledflag','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','grades_persistentgradesenabledflag','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentgradesenabledflag','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentgradesenabledflag','grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','grades_persistentgradesenabledflag','grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','grades_persistentgradesenabledflag','grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentgradesenabledflag','grades_persistentgra_changed_by_id_f80cdad1_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongrade','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','grades_persistentsubsectiongrade','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongrade','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi','2020-07-23 17:22:33','n_diff_pfx01',0,1,'visible_blocks_hash'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi','2020-07-23 17:22:33','n_diff_pfx02',0,1,'visible_blocks_hash,id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsub_visible_blocks_hash_20836274_fk_grades_vi','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsect_course_id_user_id_usage__42820224_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsect_course_id_user_id_usage__42820224_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,user_id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsect_course_id_user_id_usage__42820224_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'course_id,user_id,usage_key'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsect_course_id_user_id_usage__42820224_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsect_course_id_user_id_usage__42820224_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx','2020-07-23 17:22:33','n_diff_pfx01',0,1,'first_attempted'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx','2020-07-23 17:22:33','n_diff_pfx02',0,1,'first_attempted,course_id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx','2020-07-23 17:22:33','n_diff_pfx03',0,1,'first_attempted,course_id,user_id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx','2020-07-23 17:22:33','n_diff_pfx04',0,1,'first_attempted,course_id,user_id,id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_first_attempted_course_id_f59f063c_idx','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx','2020-07-23 17:22:33','n_diff_pfx01',0,1,'modified'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx','2020-07-23 17:22:33','n_diff_pfx02',0,1,'modified,course_id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx','2020-07-23 17:22:33','n_diff_pfx03',0,1,'modified,course_id,usage_key'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx','2020-07-23 17:22:33','n_diff_pfx04',0,1,'modified,course_id,usage_key,id'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongrade','grades_persistentsubsecti_modified_course_id_usage__80ab6572_idx','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','grades_persistentsubsectiongradeoverride','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','grade_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'grade_id'),('edxapp','grades_persistentsubsectiongradeoverride','grade_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','grade_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_created_f80819d0','2020-07-23 17:22:33','n_diff_pfx01',0,1,'created'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_created_f80819d0','2020-07-23 17:22:33','n_diff_pfx02',0,1,'created,id'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_created_f80819d0','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_created_f80819d0','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_modified_21efde2a','2020-07-23 17:22:33','n_diff_pfx01',0,1,'modified'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_modified_21efde2a','2020-07-23 17:22:33','n_diff_pfx02',0,1,'modified,id'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_modified_21efde2a','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_persistentsubsectiongradeoverride','grades_persistentsubsectiongradeoverride_modified_21efde2a','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_visibleblocks','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','grades_visibleblocks','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_visibleblocks','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_visibleblocks','grades_visibleblocks_course_id_d5f8e206','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','grades_visibleblocks','grades_visibleblocks_course_id_d5f8e206','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,id'),('edxapp','grades_visibleblocks','grades_visibleblocks_course_id_d5f8e206','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_visibleblocks','grades_visibleblocks_course_id_d5f8e206','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','grades_visibleblocks','hashed','2020-07-23 17:22:33','n_diff_pfx01',0,1,'hashed'),('edxapp','grades_visibleblocks','hashed','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','grades_visibleblocks','hashed','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_gradereportsetting','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','instructor_task_gradereportsetting','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_gradereportsetting','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_gradereportsetting','instructor_task_grad_changed_by_id_dae9a995_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','instructor_task_gradereportsetting','instructor_task_grad_changed_by_id_dae9a995_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','instructor_task_gradereportsetting','instructor_task_grad_changed_by_id_dae9a995_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_gradereportsetting','instructor_task_grad_changed_by_id_dae9a995_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','instructor_task_instructortask','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_inst_requester_id_307f955d_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'requester_id'),('edxapp','instructor_task_instructortask','instructor_task_inst_requester_id_307f955d_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'requester_id,id'),('edxapp','instructor_task_instructortask','instructor_task_inst_requester_id_307f955d_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_inst_requester_id_307f955d_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_course_id_b160f709','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_course_id_b160f709','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_course_id_b160f709','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_course_id_b160f709','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_id_4aa92d04','2020-07-23 17:22:33','n_diff_pfx01',0,1,'task_id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_id_4aa92d04','2020-07-23 17:22:33','n_diff_pfx02',0,1,'task_id,id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_id_4aa92d04','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_id_4aa92d04','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_key_c1af3961','2020-07-23 17:22:33','n_diff_pfx01',0,1,'task_key'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_key_c1af3961','2020-07-23 17:22:33','n_diff_pfx02',0,1,'task_key,id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_key_c1af3961','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_key_c1af3961','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_state_3ee4e9cb','2020-07-23 17:22:33','n_diff_pfx01',0,1,'task_state'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_state_3ee4e9cb','2020-07-23 17:22:33','n_diff_pfx02',0,1,'task_state,id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_state_3ee4e9cb','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_state_3ee4e9cb','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_type_cefe183d','2020-07-23 17:22:33','n_diff_pfx01',0,1,'task_type'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_type_cefe183d','2020-07-23 17:22:33','n_diff_pfx02',0,1,'task_type,id'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_type_cefe183d','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','instructor_task_instructortask','instructor_task_instructortask_task_type_cefe183d','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','integrated_channel_contentmetadataitemtransmission','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','integrated_channel_contentmetadataitemtransmission','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','integrated_channel_contentmetadataitemtransmission','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','integrated_channel_contentmetadataitemtransmission','integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','integrated_channel_contentmetadataitemtransmission','integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'enterprise_customer_id,integrated_channel_code'),('edxapp','integrated_channel_contentmetadataitemtransmission','integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'enterprise_customer_id,integrated_channel_code,content_id'),('edxapp','integrated_channel_contentmetadataitemtransmission','integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','integrated_channel_contentmetadataitemtransmission','integrated_channel_conte_enterprise_customer_id_i_44ca3772_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','integrated_channel_learnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','integrated_channel_learnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','integrated_channel_learnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','integrated_channel_learnerdatatransmissionaudit','integrated_channel_learnerd_enterprise_course_enrollmen_c2e6c2e0','2020-07-23 17:22:33','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','integrated_channel_learnerdatatransmissionaudit','integrated_channel_learnerd_enterprise_course_enrollmen_c2e6c2e0','2020-07-23 17:22:33','n_diff_pfx02',0,1,'enterprise_course_enrollment_id,id'),('edxapp','integrated_channel_learnerdatatransmissionaudit','integrated_channel_learnerd_enterprise_course_enrollmen_c2e6c2e0','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','integrated_channel_learnerdatatransmissionaudit','integrated_channel_learnerd_enterprise_course_enrollmen_c2e6c2e0','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesection','PRIMARY','2020-07-23 17:24:40','n_diff_pfx01',0,1,'id'),('edxapp','learning_sequences_coursesection','PRIMARY','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesection','PRIMARY','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesection','learning_sequences_cours_learning_context_id_usag_9348bc89_uniq','2020-07-23 17:24:40','n_diff_pfx01',0,1,'learning_context_id'),('edxapp','learning_sequences_coursesection','learning_sequences_cours_learning_context_id_usag_9348bc89_uniq','2020-07-23 17:24:40','n_diff_pfx02',0,1,'learning_context_id,usage_key'),('edxapp','learning_sequences_coursesection','learning_sequences_cours_learning_context_id_usag_9348bc89_uniq','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesection','learning_sequences_cours_learning_context_id_usag_9348bc89_uniq','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesection','learning_sequences_course_learning_context_id_order_46e992d3_idx','2020-07-23 17:24:40','n_diff_pfx01',0,1,'learning_context_id'),('edxapp','learning_sequences_coursesection','learning_sequences_course_learning_context_id_order_46e992d3_idx','2020-07-23 17:24:40','n_diff_pfx02',0,1,'learning_context_id,ordering'),('edxapp','learning_sequences_coursesection','learning_sequences_course_learning_context_id_order_46e992d3_idx','2020-07-23 17:24:40','n_diff_pfx03',0,1,'learning_context_id,ordering,id'),('edxapp','learning_sequences_coursesection','learning_sequences_course_learning_context_id_order_46e992d3_idx','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesection','learning_sequences_course_learning_context_id_order_46e992d3_idx','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesectionsequence','PRIMARY','2020-07-23 17:24:40','n_diff_pfx01',0,1,'id'),('edxapp','learning_sequences_coursesectionsequence','PRIMARY','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesectionsequence','PRIMARY','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_section_id_646c2074_fk_learning_','2020-07-23 17:24:40','n_diff_pfx01',0,1,'section_id'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_section_id_646c2074_fk_learning_','2020-07-23 17:24:40','n_diff_pfx02',0,1,'section_id,id'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_section_id_646c2074_fk_learning_','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_section_id_646c2074_fk_learning_','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_sequence_id_e6a12a64_fk_learning_','2020-07-23 17:24:40','n_diff_pfx01',0,1,'sequence_id'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_sequence_id_e6a12a64_fk_learning_','2020-07-23 17:24:40','n_diff_pfx02',0,1,'sequence_id,id'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_sequence_id_e6a12a64_fk_learning_','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_c_sequence_id_e6a12a64_fk_learning_','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_cours_learning_context_id_orde_ad7604bd_uniq','2020-07-23 17:24:40','n_diff_pfx01',0,1,'learning_context_id'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_cours_learning_context_id_orde_ad7604bd_uniq','2020-07-23 17:24:40','n_diff_pfx02',0,1,'learning_context_id,ordering'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_cours_learning_context_id_orde_ad7604bd_uniq','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_coursesectionsequence','learning_sequences_cours_learning_context_id_orde_ad7604bd_uniq','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_learningcontext','PRIMARY','2020-07-23 17:24:40','n_diff_pfx01',0,1,'id'),('edxapp','learning_sequences_learningcontext','PRIMARY','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_learningcontext','PRIMARY','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_learningcontext','context_key','2020-07-23 17:24:40','n_diff_pfx01',0,1,'context_key'),('edxapp','learning_sequences_learningcontext','context_key','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_learningcontext','context_key','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_learningcontext','learning_se_publish_62319b_idx','2020-07-23 17:24:40','n_diff_pfx01',0,1,'published_at'),('edxapp','learning_sequences_learningcontext','learning_se_publish_62319b_idx','2020-07-23 17:24:40','n_diff_pfx02',0,1,'published_at,id'),('edxapp','learning_sequences_learningcontext','learning_se_publish_62319b_idx','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_learningcontext','learning_se_publish_62319b_idx','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_learningsequence','PRIMARY','2020-07-23 17:24:40','n_diff_pfx01',0,1,'id'),('edxapp','learning_sequences_learningsequence','PRIMARY','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_learningsequence','PRIMARY','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','learning_sequences_learningsequence','learning_sequences_learn_learning_context_id_usag_6a13230f_uniq','2020-07-23 17:24:40','n_diff_pfx01',0,1,'learning_context_id'),('edxapp','learning_sequences_learningsequence','learning_sequences_learn_learning_context_id_usag_6a13230f_uniq','2020-07-23 17:24:40','n_diff_pfx02',0,1,'learning_context_id,usage_key'),('edxapp','learning_sequences_learningsequence','learning_sequences_learn_learning_context_id_usag_6a13230f_uniq','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','learning_sequences_learningsequence','learning_sequences_learn_learning_context_id_usag_6a13230f_uniq','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','lms_xblock_xblockasidesconfig','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','lms_xblock_xblockasidesconfig','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','lms_xblock_xblockasidesconfig','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','lms_xblock_xblockasidesconfig','lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','lms_xblock_xblockasidesconfig','lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','lms_xblock_xblockasidesconfig','lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','lms_xblock_xblockasidesconfig','lms_xblock_xblockasi_changed_by_id_71928be3_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','lx_pathway_plugin_pathway','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','lx_pathway_plugin_pathway','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','lx_pathway_plugin_pathway','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pa_owner_group_id_b20ab5de_fk_auth_grou','2020-07-23 17:22:33','n_diff_pfx01',0,1,'owner_group_id'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pa_owner_group_id_b20ab5de_fk_auth_grou','2020-07-23 17:22:33','n_diff_pfx02',0,1,'owner_group_id,id'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pa_owner_group_id_b20ab5de_fk_auth_grou','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pa_owner_group_id_b20ab5de_fk_auth_grou','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pathway_owner_user_id_bd987df6_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'owner_user_id'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pathway_owner_user_id_bd987df6_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx02',0,1,'owner_user_id,id'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pathway_owner_user_id_bd987df6_fk_auth_user_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','lx_pathway_plugin_pathway','lx_pathway_plugin_pathway_owner_user_id_bd987df6_fk_auth_user_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','lx_pathway_plugin_pathway','uuid','2020-07-23 17:22:33','n_diff_pfx01',0,1,'uuid'),('edxapp','lx_pathway_plugin_pathway','uuid','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','lx_pathway_plugin_pathway','uuid','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','milestones_coursecontentmilestone','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_id_bd7a608b_fk_milestone','2020-07-23 17:22:33','n_diff_pfx01',0,1,'milestone_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_id_bd7a608b_fk_milestone','2020-07-23 17:22:33','n_diff_pfx02',0,1,'milestone_id,id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_id_bd7a608b_fk_milestone','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_id_bd7a608b_fk_milestone','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone','2020-07-23 17:22:33','n_diff_pfx01',0,1,'milestone_relationship_type_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone','2020-07-23 17:22:33','n_diff_pfx02',0,1,'milestone_relationship_type_id,id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecon_milestone_relationsh_31556ebf_fk_milestone','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,content_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'course_id,content_id,milestone_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontent_course_id_content_id_mil_7caa5ba5_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_active_b7ab709d','2020-07-23 17:22:33','n_diff_pfx01',0,1,'active'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_active_b7ab709d','2020-07-23 17:22:33','n_diff_pfx02',0,1,'active,id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_active_b7ab709d','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_active_b7ab709d','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_content_id_21f4c95f','2020-07-23 17:22:33','n_diff_pfx01',0,1,'content_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_content_id_21f4c95f','2020-07-23 17:22:33','n_diff_pfx02',0,1,'content_id,id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_content_id_21f4c95f','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_content_id_21f4c95f','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_course_id_6fd3fad0','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_course_id_6fd3fad0','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,id'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_course_id_6fd3fad0','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursecontentmilestone','milestones_coursecontentmilestone_course_id_6fd3fad0','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursemilestone','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','milestones_coursemilestone','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursemilestone','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_id_03d9ef01_fk_milestone','2020-07-23 17:22:33','n_diff_pfx01',0,1,'milestone_id'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_id_03d9ef01_fk_milestone','2020-07-23 17:22:33','n_diff_pfx02',0,1,'milestone_id,id'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_id_03d9ef01_fk_milestone','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_id_03d9ef01_fk_milestone','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone','2020-07-23 17:22:33','n_diff_pfx01',0,1,'milestone_relationship_type_id'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone','2020-07-23 17:22:33','n_diff_pfx02',0,1,'milestone_relationship_type_id,id'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemil_milestone_relationsh_6c64b782_fk_milestone','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_active_c590442e','2020-07-23 17:22:33','n_diff_pfx01',0,1,'active'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_active_c590442e','2020-07-23 17:22:33','n_diff_pfx02',0,1,'active,id'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_active_c590442e','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_active_c590442e','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_ce46a0fc','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_ce46a0fc','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,id'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_ce46a0fc','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_ce46a0fc','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_milestone_id_36b21ae8_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_milestone_id_36b21ae8_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,milestone_id'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_milestone_id_36b21ae8_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_coursemilestone','milestones_coursemilestone_course_id_milestone_id_36b21ae8_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestone','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','milestones_milestone','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestone','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestone','milestones_milestone_active_9a6c1703','2020-07-23 17:22:33','n_diff_pfx01',0,1,'active'),('edxapp','milestones_milestone','milestones_milestone_active_9a6c1703','2020-07-23 17:22:33','n_diff_pfx02',0,1,'active,id'),('edxapp','milestones_milestone','milestones_milestone_active_9a6c1703','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestone','milestones_milestone_active_9a6c1703','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestone','milestones_milestone_name_23fb0698','2020-07-23 17:22:33','n_diff_pfx01',0,1,'name'),('edxapp','milestones_milestone','milestones_milestone_name_23fb0698','2020-07-23 17:22:33','n_diff_pfx02',0,1,'name,id'),('edxapp','milestones_milestone','milestones_milestone_name_23fb0698','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestone','milestones_milestone_name_23fb0698','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestone','milestones_milestone_namespace_a8e8807c','2020-07-23 17:22:33','n_diff_pfx01',0,1,'namespace'),('edxapp','milestones_milestone','milestones_milestone_namespace_a8e8807c','2020-07-23 17:22:33','n_diff_pfx02',0,1,'namespace,id'),('edxapp','milestones_milestone','milestones_milestone_namespace_a8e8807c','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestone','milestones_milestone_namespace_a8e8807c','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestone','milestones_milestone_namespace_name_0b80f867_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'namespace'),('edxapp','milestones_milestone','milestones_milestone_namespace_name_0b80f867_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'namespace,name'),('edxapp','milestones_milestone','milestones_milestone_namespace_name_0b80f867_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestone','milestones_milestone_namespace_name_0b80f867_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestonerelationshiptype','PRIMARY','2020-07-23 17:23:08','n_diff_pfx01',2,1,'id'),('edxapp','milestones_milestonerelationshiptype','PRIMARY','2020-07-23 17:23:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestonerelationshiptype','PRIMARY','2020-07-23 17:23:08','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_milestonerelationshiptype','name','2020-07-23 17:23:08','n_diff_pfx01',2,1,'name'),('edxapp','milestones_milestonerelationshiptype','name','2020-07-23 17:23:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_milestonerelationshiptype','name','2020-07-23 17:23:08','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_usermilestone','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','milestones_usermilestone','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_usermilestone','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_usermilestone','milestones_usermiles_milestone_id_f90f9430_fk_milestone','2020-07-23 17:22:33','n_diff_pfx01',0,1,'milestone_id'),('edxapp','milestones_usermilestone','milestones_usermiles_milestone_id_f90f9430_fk_milestone','2020-07-23 17:22:33','n_diff_pfx02',0,1,'milestone_id,id'),('edxapp','milestones_usermilestone','milestones_usermiles_milestone_id_f90f9430_fk_milestone','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_usermilestone','milestones_usermiles_milestone_id_f90f9430_fk_milestone','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_usermilestone','milestones_usermilestone_active_93a18e7f','2020-07-23 17:22:33','n_diff_pfx01',0,1,'active'),('edxapp','milestones_usermilestone','milestones_usermilestone_active_93a18e7f','2020-07-23 17:22:33','n_diff_pfx02',0,1,'active,id'),('edxapp','milestones_usermilestone','milestones_usermilestone_active_93a18e7f','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_usermilestone','milestones_usermilestone_active_93a18e7f','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_b3e9aef4','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_b3e9aef4','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_b3e9aef4','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_b3e9aef4','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_milestone_id_02197f01_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_milestone_id_02197f01_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,milestone_id'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_milestone_id_02197f01_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','milestones_usermilestone','milestones_usermilestone_user_id_milestone_id_02197f01_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','mobile_api_appversionconfig','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','mobile_api_appversionconfig','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','mobile_api_appversionconfig','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','mobile_api_appversionconfig','mobile_api_appversionconfig_platform_version_6b577430_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'platform'),('edxapp','mobile_api_appversionconfig','mobile_api_appversionconfig_platform_version_6b577430_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'platform,version'),('edxapp','mobile_api_appversionconfig','mobile_api_appversionconfig_platform_version_6b577430_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','mobile_api_appversionconfig','mobile_api_appversionconfig_platform_version_6b577430_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','mobile_api_ignoremobileavailableflagconfig','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','mobile_api_ignoremobileavailableflagconfig','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','mobile_api_ignoremobileavailableflagconfig','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','mobile_api_ignoremobileavailableflagconfig','mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','mobile_api_ignoremobileavailableflagconfig','mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','mobile_api_ignoremobileavailableflagconfig','mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','mobile_api_ignoremobileavailableflagconfig','mobile_api_ignoremob_changed_by_id_4ca9c0d6_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','mobile_api_mobileapiconfig','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','mobile_api_mobileapiconfig','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','mobile_api_mobileapiconfig','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','mobile_api_mobileapiconfig','mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','mobile_api_mobileapiconfig','mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','mobile_api_mobileapiconfig','mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','mobile_api_mobileapiconfig','mobile_api_mobileapi_changed_by_id_8799981a_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_notification','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','notify_notification','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_notification','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_notification','notify_notification_subscription_id_0eae0084_fk_notify_su','2020-07-23 17:22:33','n_diff_pfx01',0,1,'subscription_id'),('edxapp','notify_notification','notify_notification_subscription_id_0eae0084_fk_notify_su','2020-07-23 17:22:33','n_diff_pfx02',0,1,'subscription_id,id'),('edxapp','notify_notification','notify_notification_subscription_id_0eae0084_fk_notify_su','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_notification','notify_notification_subscription_id_0eae0084_fk_notify_su','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_notificationtype','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'key'),('edxapp','notify_notificationtype','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_notificationtype','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_notificationtype','notify_notificationt_content_type_id_f575bac5_fk_django_co','2020-07-23 17:22:33','n_diff_pfx01',0,1,'content_type_id'),('edxapp','notify_notificationtype','notify_notificationt_content_type_id_f575bac5_fk_django_co','2020-07-23 17:22:33','n_diff_pfx02',0,1,'content_type_id,key'),('edxapp','notify_notificationtype','notify_notificationt_content_type_id_f575bac5_fk_django_co','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_notificationtype','notify_notificationt_content_type_id_f575bac5_fk_django_co','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_settings','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','notify_settings','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_settings','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_settings','notify_settings_user_id_088ebffc_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','notify_settings','notify_settings_user_id_088ebffc_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','notify_settings','notify_settings_user_id_088ebffc_fk_auth_user_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_settings','notify_settings_user_id_088ebffc_fk_auth_user_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_subscription','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'subscription_id'),('edxapp','notify_subscription','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_subscription','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_subscription','notify_subscription_notification_type_id_f73a8b13_fk_notify_no','2020-07-23 17:22:33','n_diff_pfx01',0,1,'notification_type_id'),('edxapp','notify_subscription','notify_subscription_notification_type_id_f73a8b13_fk_notify_no','2020-07-23 17:22:33','n_diff_pfx02',0,1,'notification_type_id,subscription_id'),('edxapp','notify_subscription','notify_subscription_notification_type_id_f73a8b13_fk_notify_no','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_subscription','notify_subscription_notification_type_id_f73a8b13_fk_notify_no','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','notify_subscription','notify_subscription_settings_id_dbc3961d_fk_notify_settings_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'settings_id'),('edxapp','notify_subscription','notify_subscription_settings_id_dbc3961d_fk_notify_settings_id','2020-07-23 17:22:33','n_diff_pfx02',0,1,'settings_id,subscription_id'),('edxapp','notify_subscription','notify_subscription_settings_id_dbc3961d_fk_notify_settings_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','notify_subscription','notify_subscription_settings_id_dbc3961d_fk_notify_settings_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_accesstoken','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','oauth2_provider_accesstoken','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_accesstoken','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_application_id_b22886e1_fk','2020-07-23 17:22:33','n_diff_pfx01',0,1,'application_id'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_application_id_b22886e1_fk','2020-07-23 17:22:33','n_diff_pfx02',0,1,'application_id,id'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_application_id_b22886e1_fk','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_application_id_b22886e1_fk','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_token_8af090f8_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'token'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_token_8af090f8_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_token_8af090f8_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_accesstoken','oauth2_provider_accesstoken_user_id_6e4c9a65_fk_auth_user_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_accesstoken','source_refresh_token_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'source_refresh_token_id'),('edxapp','oauth2_provider_accesstoken','source_refresh_token_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_accesstoken','source_refresh_token_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_application','PRIMARY','2020-07-23 17:23:18','n_diff_pfx01',2,1,'id'),('edxapp','oauth2_provider_application','PRIMARY','2020-07-23 17:23:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_application','PRIMARY','2020-07-23 17:23:18','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_application','client_id','2020-07-23 17:23:18','n_diff_pfx01',2,1,'client_id'),('edxapp','oauth2_provider_application','client_id','2020-07-23 17:23:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_application','client_id','2020-07-23 17:23:18','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_application','oauth2_provider_application_client_secret_53133678','2020-07-23 17:23:18','n_diff_pfx01',2,1,'client_secret'),('edxapp','oauth2_provider_application','oauth2_provider_application_client_secret_53133678','2020-07-23 17:23:18','n_diff_pfx02',2,1,'client_secret,id'),('edxapp','oauth2_provider_application','oauth2_provider_application_client_secret_53133678','2020-07-23 17:23:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_application','oauth2_provider_application_client_secret_53133678','2020-07-23 17:23:18','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_application','oauth2_provider_application_user_id_79829054_fk_auth_user_id','2020-07-23 17:23:18','n_diff_pfx01',2,1,'user_id'),('edxapp','oauth2_provider_application','oauth2_provider_application_user_id_79829054_fk_auth_user_id','2020-07-23 17:23:18','n_diff_pfx02',2,1,'user_id,id'),('edxapp','oauth2_provider_application','oauth2_provider_application_user_id_79829054_fk_auth_user_id','2020-07-23 17:23:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_application','oauth2_provider_application_user_id_79829054_fk_auth_user_id','2020-07-23 17:23:18','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_grant','PRIMARY','2020-07-23 17:24:40','n_diff_pfx01',0,1,'id'),('edxapp','oauth2_provider_grant','PRIMARY','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_grant','PRIMARY','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_application_id_81923564_fk','2020-07-23 17:24:40','n_diff_pfx01',0,1,'application_id'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_application_id_81923564_fk','2020-07-23 17:24:40','n_diff_pfx02',0,1,'application_id,id'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_application_id_81923564_fk','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_application_id_81923564_fk','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_code_49ab4ddf_uniq','2020-07-23 17:24:40','n_diff_pfx01',0,1,'code'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_code_49ab4ddf_uniq','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_code_49ab4ddf_uniq','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id','2020-07-23 17:24:40','n_diff_pfx01',0,1,'user_id'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id','2020-07-23 17:24:40','n_diff_pfx02',0,1,'user_id,id'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id','2020-07-23 17:24:40','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_grant','oauth2_provider_grant_user_id_e8f62af8_fk_auth_user_id','2020-07-23 17:24:40','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_refreshtoken','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','oauth2_provider_refreshtoken','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_refreshtoken','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_refreshtoken','access_token_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'access_token_id'),('edxapp','oauth2_provider_refreshtoken','access_token_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_refreshtoken','access_token_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_application_id_2d1c311b_fk','2020-07-23 17:22:33','n_diff_pfx01',0,1,'application_id'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_application_id_2d1c311b_fk','2020-07-23 17:22:33','n_diff_pfx02',0,1,'application_id,id'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_application_id_2d1c311b_fk','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_application_id_2d1c311b_fk','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'token'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'token,revoked'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_token_revoked_af8a5134_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth2_provider_refreshtoken','oauth2_provider_refreshtoken_user_id_da837fce_fk_auth_user_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_applicationaccess','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','oauth_dispatch_applicationaccess','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_applicationaccess','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_applicationaccess','application_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'application_id'),('edxapp','oauth_dispatch_applicationaccess','application_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_applicationaccess','application_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_applicationorganization','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','oauth_dispatch_applicationorganization','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_applicationorganization','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat','2020-07-23 17:22:33','n_diff_pfx01',0,1,'organization_id'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat','2020-07-23 17:22:33','n_diff_pfx02',0,1,'organization_id,id'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_appli_organization_id_fe63a7f2_fk_organizat','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'application_id'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'application_id,relation_type'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'application_id,relation_type,organization_id'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_applicationorganization','oauth_dispatch_applicati_application_id_relation__1b4017f2_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_restrictedapplication','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','oauth_dispatch_restrictedapplication','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_restrictedapplication','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','oauth_dispatch_restrictedapplication','oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr','2020-07-23 17:22:33','n_diff_pfx01',0,1,'application_id'),('edxapp','oauth_dispatch_restrictedapplication','oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr','2020-07-23 17:22:33','n_diff_pfx02',0,1,'application_id,id'),('edxapp','oauth_dispatch_restrictedapplication','oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','oauth_dispatch_restrictedapplication','oauth_dispatch_restr_application_id_6b8d0930_fk_oauth2_pr','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_historicalorganization','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'history_id'),('edxapp','organizations_historicalorganization','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_historicalorganization','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_historicalorganization','organizations_histor_history_user_id_bb516493_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'history_user_id'),('edxapp','organizations_historicalorganization','organizations_histor_history_user_id_bb516493_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','organizations_historicalorganization','organizations_histor_history_user_id_bb516493_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_historicalorganization','organizations_histor_history_user_id_bb516493_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_id_4327d8f9','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_id_4327d8f9','2020-07-23 17:22:33','n_diff_pfx02',0,1,'id,history_id'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_id_4327d8f9','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_id_4327d8f9','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_name_5f4e354b','2020-07-23 17:22:33','n_diff_pfx01',0,1,'name'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_name_5f4e354b','2020-07-23 17:22:33','n_diff_pfx02',0,1,'name,history_id'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_name_5f4e354b','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_name_5f4e354b','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_short_name_07087b46','2020-07-23 17:22:33','n_diff_pfx01',0,1,'short_name'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_short_name_07087b46','2020-07-23 17:22:33','n_diff_pfx02',0,1,'short_name,history_id'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_short_name_07087b46','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_historicalorganization','organizations_historicalorganization_short_name_07087b46','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organization','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','organizations_organization','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organization','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organization','organizations_organization_name_71edc74b','2020-07-23 17:22:33','n_diff_pfx01',0,1,'name'),('edxapp','organizations_organization','organizations_organization_name_71edc74b','2020-07-23 17:22:33','n_diff_pfx02',0,1,'name,id'),('edxapp','organizations_organization','organizations_organization_name_71edc74b','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organization','organizations_organization_name_71edc74b','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organization','organizations_organization_short_name_ef338963','2020-07-23 17:22:33','n_diff_pfx01',0,1,'short_name'),('edxapp','organizations_organization','organizations_organization_short_name_ef338963','2020-07-23 17:22:33','n_diff_pfx02',0,1,'short_name,id'),('edxapp','organizations_organization','organizations_organization_short_name_ef338963','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organization','organizations_organization_short_name_ef338963','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organizationcourse','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','organizations_organizationcourse','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organizationcourse','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organizationcourse','organizations_organi_organization_id_99e77fe0_fk_organizat','2020-07-23 17:22:33','n_diff_pfx01',0,1,'organization_id'),('edxapp','organizations_organizationcourse','organizations_organi_organization_id_99e77fe0_fk_organizat','2020-07-23 17:22:33','n_diff_pfx02',0,1,'organization_id,id'),('edxapp','organizations_organizationcourse','organizations_organi_organization_id_99e77fe0_fk_organizat','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organizationcourse','organizations_organi_organization_id_99e77fe0_fk_organizat','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organizationcourse','organizations_organizati_course_id_organization_i_06b1db31_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','organizations_organizationcourse','organizations_organizati_course_id_organization_i_06b1db31_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,organization_id'),('edxapp','organizations_organizationcourse','organizations_organizati_course_id_organization_i_06b1db31_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organizationcourse','organizations_organizati_course_id_organization_i_06b1db31_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','organizations_organizationcourse','organizations_organizationcourse_course_id_227b73bc','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','organizations_organizationcourse','organizations_organizationcourse_course_id_227b73bc','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,id'),('edxapp','organizations_organizationcourse','organizations_organizationcourse_course_id_227b73bc','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','organizations_organizationcourse','organizations_organizationcourse_course_id_227b73bc','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_answer','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','problem_builder_answer','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_answer','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_course_key_41ccad30','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_key'),('edxapp','problem_builder_answer','problem_builder_answer_course_key_41ccad30','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_key,id'),('edxapp','problem_builder_answer','problem_builder_answer_course_key_41ccad30','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_course_key_41ccad30','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_name_af0a2a0d','2020-07-23 17:22:33','n_diff_pfx01',0,1,'name'),('edxapp','problem_builder_answer','problem_builder_answer_name_af0a2a0d','2020-07-23 17:22:33','n_diff_pfx02',0,1,'name,id'),('edxapp','problem_builder_answer','problem_builder_answer_name_af0a2a0d','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_name_af0a2a0d','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_8b0fa669','2020-07-23 17:22:33','n_diff_pfx01',0,1,'student_id'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_8b0fa669','2020-07-23 17:22:33','n_diff_pfx02',0,1,'student_id,id'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_8b0fa669','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_8b0fa669','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_course_key_name_eaac343f_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'student_id'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_course_key_name_eaac343f_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'student_id,course_key'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_course_key_name_eaac343f_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'student_id,course_key,name'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_course_key_name_eaac343f_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_answer','problem_builder_answer_student_id_course_key_name_eaac343f_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_share','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','problem_builder_share','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_share','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_share','problem_builder_share_block_id_6f0dc5f7','2020-07-23 17:22:33','n_diff_pfx01',0,1,'block_id'),('edxapp','problem_builder_share','problem_builder_share_block_id_6f0dc5f7','2020-07-23 17:22:33','n_diff_pfx02',0,1,'block_id,id'),('edxapp','problem_builder_share','problem_builder_share_block_id_6f0dc5f7','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_share','problem_builder_share_block_id_6f0dc5f7','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_share','problem_builder_share_notified_ad79eba9','2020-07-23 17:22:33','n_diff_pfx01',0,1,'notified'),('edxapp','problem_builder_share','problem_builder_share_notified_ad79eba9','2020-07-23 17:22:33','n_diff_pfx02',0,1,'notified,id'),('edxapp','problem_builder_share','problem_builder_share_notified_ad79eba9','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_share','problem_builder_share_notified_ad79eba9','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_share','problem_builder_share_shared_by_id_shared_with_812f19a2_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'shared_by_id'),('edxapp','problem_builder_share','problem_builder_share_shared_by_id_shared_with_812f19a2_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'shared_by_id,shared_with_id'),('edxapp','problem_builder_share','problem_builder_share_shared_by_id_shared_with_812f19a2_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'shared_by_id,shared_with_id,block_id'),('edxapp','problem_builder_share','problem_builder_share_shared_by_id_shared_with_812f19a2_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_share','problem_builder_share_shared_by_id_shared_with_812f19a2_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','problem_builder_share','problem_builder_share_shared_with_id_acab4570_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx01',0,1,'shared_with_id'),('edxapp','problem_builder_share','problem_builder_share_shared_with_id_acab4570_fk_auth_user_id','2020-07-23 17:22:33','n_diff_pfx02',0,1,'shared_with_id,id'),('edxapp','problem_builder_share','problem_builder_share_shared_with_id_acab4570_fk_auth_user_id','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','problem_builder_share','problem_builder_share_shared_with_id_acab4570_fk_auth_user_id','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexam','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexam','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexam','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_content_id_13d3bec4','2020-07-23 17:22:33','n_diff_pfx01',0,1,'content_id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_content_id_13d3bec4','2020-07-23 17:22:33','n_diff_pfx02',0,1,'content_id,id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_content_id_13d3bec4','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_content_id_13d3bec4','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_8787b34f','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_8787b34f','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_8787b34f','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_8787b34f','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_content_id_1d8358cc_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_content_id_1d8358cc_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_id,content_id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_content_id_1d8358cc_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_course_id_content_id_1d8358cc_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_external_id_0181c110','2020-07-23 17:22:33','n_diff_pfx01',0,1,'external_id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_external_id_0181c110','2020-07-23 17:22:33','n_diff_pfx02',0,1,'external_id,id'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_external_id_0181c110','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexam','proctoring_proctoredexam_external_id_0181c110','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicy','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamreviewpolicy','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicy','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'proctored_exam_id'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'proctored_exam_id,id'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_proctored_exam_id_57f9ce30_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_set_by_user_id_7c101300_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'set_by_user_id'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_set_by_user_id_7c101300_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'set_by_user_id,id'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_set_by_user_id_7c101300_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicy','proctoring_proctored_set_by_user_id_7c101300_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'proctored_exam_id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'proctored_exam_id,id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_proctored_exam_id_8126b616_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'set_by_user_id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'set_by_user_id,id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctored_set_by_user_id_42ce126e_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctoredexamreviewpolicyhistory_original_id_ca04913d','2020-07-23 17:22:33','n_diff_pfx01',0,1,'original_id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctoredexamreviewpolicyhistory_original_id_ca04913d','2020-07-23 17:22:33','n_diff_pfx02',0,1,'original_id,id'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctoredexamreviewpolicyhistory_original_id_ca04913d','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamreviewpolicyhistory','proctoring_proctoredexamreviewpolicyhistory_original_id_ca04913d','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_exam_id_ea6095a3_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'exam_id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_exam_id_ea6095a3_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'exam_id,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_exam_id_ea6095a3_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_exam_id_ea6095a3_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'reviewed_by_id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'reviewed_by_id,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_reviewed_by_id_546b4204_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_student_id_7e197288_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'student_id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_student_id_7e197288_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'student_id,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_student_id_7e197288_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctored_student_id_7e197288_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctoredexam_attempt_code_706d3717_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'attempt_code'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctoredexam_attempt_code_706d3717_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereview','proctoring_proctoredexam_attempt_code_706d3717_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_exam_id_380d8588_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'exam_id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_exam_id_380d8588_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'exam_id,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_exam_id_380d8588_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_exam_id_380d8588_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'reviewed_by_id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'reviewed_by_id,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_reviewed_by_id_bb993b3a_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_student_id_97a63653_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'student_id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_student_id_97a63653_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'student_id,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_student_id_97a63653_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctored_student_id_97a63653_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctoredexamsof_attempt_code_695faa63','2020-07-23 17:22:33','n_diff_pfx01',0,1,'attempt_code'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctoredexamsof_attempt_code_695faa63','2020-07-23 17:22:33','n_diff_pfx02',0,1,'attempt_code,id'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctoredexamsof_attempt_code_695faa63','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','proctoring_proctoredexamsof_attempt_code_695faa63','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentallowance','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamstudentallowance','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentallowance','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'proctored_exam_id'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'proctored_exam_id,id'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctored_proctored_exam_id_9baf5a64_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,proctored_exam_id'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq','2020-07-23 17:22:33','n_diff_pfx03',0,1,'user_id,proctored_exam_id,key'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentallowance','proctoring_proctoredexam_user_id_proctored_exam_i_56de5b8f_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentallowancehistory','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamstudentallowancehistory','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentallowancehistory','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'proctored_exam_id'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'proctored_exam_id,id'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_proctored_exam_id_a4c8237c_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_user_id_29b863c1_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_user_id_29b863c1_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_user_id_29b863c1_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentallowancehistory','proctoring_proctored_user_id_29b863c1_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamstudentattempt','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'proctored_exam_id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'proctored_exam_id,id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctored_proctored_exam_id_0732c688_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexam_user_id_proctored_exam_i_1464b206_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexam_user_id_proctored_exam_i_1464b206_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,proctored_exam_id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexam_user_id_proctored_exam_i_1464b206_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexam_user_id_proctored_exam_i_1464b206_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_attempt_code_b10ad854','2020-07-23 17:22:33','n_diff_pfx01',0,1,'attempt_code'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_attempt_code_b10ad854','2020-07-23 17:22:33','n_diff_pfx02',0,1,'attempt_code,id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_attempt_code_b10ad854','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_attempt_code_b10ad854','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_external_id_9c302af3','2020-07-23 17:22:33','n_diff_pfx01',0,1,'external_id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_external_id_9c302af3','2020-07-23 17:22:33','n_diff_pfx02',0,1,'external_id,id'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_external_id_9c302af3','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempt','proctoring_proctoredexamstudentattempt_external_id_9c302af3','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattemptcomment','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamstudentattemptcomment','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattemptcomment','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattemptcomment','proctoring_proctored_review_id_7f4eec67_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'review_id'),('edxapp','proctoring_proctoredexamstudentattemptcomment','proctoring_proctored_review_id_7f4eec67_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'review_id,id'),('edxapp','proctoring_proctoredexamstudentattemptcomment','proctoring_proctored_review_id_7f4eec67_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattemptcomment','proctoring_proctored_review_id_7f4eec67_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','proctoring_proctoredexamstudentattempthistory','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx01',0,1,'proctored_exam_id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin','2020-07-23 17:22:33','n_diff_pfx02',0,1,'proctored_exam_id,id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_proctored_exam_id_72c6f4ab_fk_proctorin','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_user_id_52fb8674_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_user_id_52fb8674_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_user_id_52fb8674_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctored_user_id_52fb8674_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_attempt_code_8db28074','2020-07-23 17:22:33','n_diff_pfx01',0,1,'attempt_code'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_attempt_code_8db28074','2020-07-23 17:22:33','n_diff_pfx02',0,1,'attempt_code,id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_attempt_code_8db28074','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_attempt_code_8db28074','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_external_id_65de5faf','2020-07-23 17:22:33','n_diff_pfx01',0,1,'external_id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_external_id_65de5faf','2020-07-23 17:22:33','n_diff_pfx02',0,1,'external_id,id'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_external_id_65de5faf','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','proctoring_proctoredexamstudentattempthistory','proctoring_proctoredexamstu_external_id_65de5faf','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_courseaccessroleassignment','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','program_enrollments_courseaccessroleassignment','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_courseaccessroleassignment','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments__enrollment_id_4e0853f0_fk_program_e','2020-07-23 17:22:33','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments__enrollment_id_4e0853f0_fk_program_e','2020-07-23 17:22:33','n_diff_pfx02',0,1,'enrollment_id,id'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments__enrollment_id_4e0853f0_fk_program_e','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments__enrollment_id_4e0853f0_fk_program_e','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments_cour_role_enrollment_id_5a7bfa63_uniq','2020-07-23 17:22:33','n_diff_pfx01',0,1,'role'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments_cour_role_enrollment_id_5a7bfa63_uniq','2020-07-23 17:22:33','n_diff_pfx02',0,1,'role,enrollment_id'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments_cour_role_enrollment_id_5a7bfa63_uniq','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_courseaccessroleassignment','program_enrollments_cour_role_enrollment_id_5a7bfa63_uniq','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'history_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments__history_user_id_428d002e_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'history_user_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments__history_user_id_428d002e_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments__history_user_id_428d002e_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments__history_user_id_428d002e_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_course_enrollment_id_4014ff73','2020-07-23 17:22:33','n_diff_pfx01',0,1,'course_enrollment_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_course_enrollment_id_4014ff73','2020-07-23 17:22:33','n_diff_pfx02',0,1,'course_enrollment_id,history_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_course_enrollment_id_4014ff73','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_course_enrollment_id_4014ff73','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_id_fe3a72a7','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_id_fe3a72a7','2020-07-23 17:22:33','n_diff_pfx02',0,1,'id,history_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_id_fe3a72a7','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_id_fe3a72a7','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_program_enrollment_id_ebb94d42','2020-07-23 17:22:33','n_diff_pfx01',0,1,'program_enrollment_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_program_enrollment_id_ebb94d42','2020-07-23 17:22:33','n_diff_pfx02',0,1,'program_enrollment_id,history_id'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_program_enrollment_id_ebb94d42','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramcourseenrollment','program_enrollments_histori_program_enrollment_id_ebb94d42','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','PRIMARY','2020-07-23 17:22:33','n_diff_pfx01',0,1,'history_id'),('edxapp','program_enrollments_historicalprogramenrollment','PRIMARY','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','PRIMARY','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments__history_user_id_abf2d584_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx01',0,1,'history_user_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments__history_user_id_abf2d584_fk_auth_user','2020-07-23 17:22:33','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments__history_user_id_abf2d584_fk_auth_user','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments__history_user_id_abf2d584_fk_auth_user','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_curriculum_uuid_a8325208','2020-07-23 17:22:33','n_diff_pfx01',0,1,'curriculum_uuid'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_curriculum_uuid_a8325208','2020-07-23 17:22:33','n_diff_pfx02',0,1,'curriculum_uuid,history_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_curriculum_uuid_a8325208','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_curriculum_uuid_a8325208','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_external_user_key_5cd8d804','2020-07-23 17:22:33','n_diff_pfx01',0,1,'external_user_key'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_external_user_key_5cd8d804','2020-07-23 17:22:33','n_diff_pfx02',0,1,'external_user_key,history_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_external_user_key_5cd8d804','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_external_user_key_5cd8d804','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_program_uuid_4c520e40','2020-07-23 17:22:33','n_diff_pfx01',0,1,'program_uuid'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_program_uuid_4c520e40','2020-07-23 17:22:33','n_diff_pfx02',0,1,'program_uuid,history_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_program_uuid_4c520e40','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_histori_program_uuid_4c520e40','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_id_947c385f','2020-07-23 17:22:33','n_diff_pfx01',0,1,'id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_id_947c385f','2020-07-23 17:22:33','n_diff_pfx02',0,1,'id,history_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_id_947c385f','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_id_947c385f','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_user_id_e205ccdf','2020-07-23 17:22:33','n_diff_pfx01',0,1,'user_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_user_id_e205ccdf','2020-07-23 17:22:33','n_diff_pfx02',0,1,'user_id,history_id'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_user_id_e205ccdf','2020-07-23 17:22:33','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_historicalprogramenrollment','program_enrollments_historicalprogramenrollment_user_id_e205ccdf','2020-07-23 17:22:33','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programcourseenrollment','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','program_enrollments_programcourseenrollment','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programcourseenrollment','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_prog_program_enrollment_id_co_7d2701fb_uniq','2020-07-23 17:22:34','n_diff_pfx01',0,1,'program_enrollment_id'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_prog_program_enrollment_id_co_7d2701fb_uniq','2020-07-23 17:22:34','n_diff_pfx02',0,1,'program_enrollment_id,course_key'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_prog_program_enrollment_id_co_7d2701fb_uniq','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_prog_program_enrollment_id_co_7d2701fb_uniq','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_program_course_enrollment_id_d7890690','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_enrollment_id'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_program_course_enrollment_id_d7890690','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_enrollment_id,id'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_program_course_enrollment_id_d7890690','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programcourseenrollment','program_enrollments_program_course_enrollment_id_d7890690','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','program_enrollments_programenrollment','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_external_user_key_progra_ec52a567_uniq','2020-07-23 17:22:34','n_diff_pfx01',0,1,'external_user_key'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_external_user_key_progra_ec52a567_uniq','2020-07-23 17:22:34','n_diff_pfx02',0,1,'external_user_key,program_uuid'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_external_user_key_progra_ec52a567_uniq','2020-07-23 17:22:34','n_diff_pfx03',0,1,'external_user_key,program_uuid,curriculum_uuid'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_external_user_key_progra_ec52a567_uniq','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_external_user_key_progra_ec52a567_uniq','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_user_id_program_uuid_cur_ecf769fd_uniq','2020-07-23 17:22:34','n_diff_pfx01',0,1,'user_id'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_user_id_program_uuid_cur_ecf769fd_uniq','2020-07-23 17:22:34','n_diff_pfx02',0,1,'user_id,program_uuid'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_user_id_program_uuid_cur_ecf769fd_uniq','2020-07-23 17:22:34','n_diff_pfx03',0,1,'user_id,program_uuid,curriculum_uuid'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_user_id_program_uuid_cur_ecf769fd_uniq','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_prog_user_id_program_uuid_cur_ecf769fd_uniq','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_curriculum_uuid_da64e123','2020-07-23 17:22:34','n_diff_pfx01',0,1,'curriculum_uuid'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_curriculum_uuid_da64e123','2020-07-23 17:22:34','n_diff_pfx02',0,1,'curriculum_uuid,id'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_curriculum_uuid_da64e123','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_curriculum_uuid_da64e123','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_external_user_key_c27b83c5','2020-07-23 17:22:34','n_diff_pfx01',0,1,'external_user_key'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_external_user_key_c27b83c5','2020-07-23 17:22:34','n_diff_pfx02',0,1,'external_user_key,id'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_external_user_key_c27b83c5','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_external_user_key_c27b83c5','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_program_uuid_131378e0','2020-07-23 17:22:34','n_diff_pfx01',0,1,'program_uuid'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_program_uuid_131378e0','2020-07-23 17:22:34','n_diff_pfx02',0,1,'program_uuid,id'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_program_uuid_131378e0','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_program_uuid_131378e0','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_user_id_dcfde442','2020-07-23 17:22:34','n_diff_pfx01',0,1,'user_id'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_user_id_dcfde442','2020-07-23 17:22:34','n_diff_pfx02',0,1,'user_id,id'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_user_id_dcfde442','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','program_enrollments_programenrollment','program_enrollments_programenrollment_user_id_dcfde442','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','programs_customprogramsconfig','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','programs_customprogramsconfig','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','programs_customprogramsconfig','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','programs_customprogramsconfig','programs_customprogr_changed_by_id_ae95c36c_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','programs_customprogramsconfig','programs_customprogr_changed_by_id_ae95c36c_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','programs_customprogramsconfig','programs_customprogr_changed_by_id_ae95c36c_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','programs_customprogramsconfig','programs_customprogr_changed_by_id_ae95c36c_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','programs_programsapiconfig','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','programs_programsapiconfig','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','programs_programsapiconfig','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','programs_programsapiconfig','programs_programsapi_changed_by_id_93e09d74_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','programs_programsapiconfig','programs_programsapi_changed_by_id_93e09d74_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','programs_programsapiconfig','programs_programsapi_changed_by_id_93e09d74_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','programs_programsapiconfig','programs_programsapi_changed_by_id_93e09d74_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','rss_proxy_whitelistedrssurl','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','rss_proxy_whitelistedrssurl','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','rss_proxy_whitelistedrssurl','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','rss_proxy_whitelistedrssurl','url','2020-07-23 17:22:34','n_diff_pfx01',0,1,'url'),('edxapp','rss_proxy_whitelistedrssurl','url','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','rss_proxy_whitelistedrssurl','url','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','enterprise_customer_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','enterprise_customer_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','enterprise_customer_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','sap_success_factors__changed_by_id_e3241cc9_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','sap_success_factors__changed_by_id_e3241cc9_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','sap_success_factors__changed_by_id_e3241cc9_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','sap_success_factors__changed_by_id_e3241cc9_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','sap_success_factors_sapsucc_enterprise_course_enrollmen_99be77d5','2020-07-23 17:22:34','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','sap_success_factors_sapsucc_enterprise_course_enrollmen_99be77d5','2020-07-23 17:22:34','n_diff_pfx02',0,1,'enterprise_course_enrollment_id,id'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','sap_success_factors_sapsucc_enterprise_course_enrollmen_99be77d5','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','sap_success_factors_sapsucc_enterprise_course_enrollmen_99be77d5','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_historicalschedule','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'history_id'),('edxapp','schedules_historicalschedule','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_historicalschedule','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_historicalschedule','schedules_historical_history_user_id_6f5d6d7b_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'history_user_id'),('edxapp','schedules_historicalschedule','schedules_historical_history_user_id_6f5d6d7b_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','schedules_historicalschedule','schedules_historical_history_user_id_6f5d6d7b_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_historicalschedule','schedules_historical_history_user_id_6f5d6d7b_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_enrollment_id_cd620413','2020-07-23 17:22:34','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_enrollment_id_cd620413','2020-07-23 17:22:34','n_diff_pfx02',0,1,'enrollment_id,history_id'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_enrollment_id_cd620413','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_enrollment_id_cd620413','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_id_f1648c81','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_id_f1648c81','2020-07-23 17:22:34','n_diff_pfx02',0,1,'id,history_id'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_id_f1648c81','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_id_f1648c81','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_start_date_8c02ff20','2020-07-23 17:22:34','n_diff_pfx01',0,1,'start_date'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_start_date_8c02ff20','2020-07-23 17:22:34','n_diff_pfx02',0,1,'start_date,history_id'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_start_date_8c02ff20','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_start_date_8c02ff20','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_upgrade_deadline_ba67bbd9','2020-07-23 17:22:34','n_diff_pfx01',0,1,'upgrade_deadline'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_upgrade_deadline_ba67bbd9','2020-07-23 17:22:34','n_diff_pfx02',0,1,'upgrade_deadline,history_id'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_upgrade_deadline_ba67bbd9','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_historicalschedule','schedules_historicalschedule_upgrade_deadline_ba67bbd9','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_schedule','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','schedules_schedule','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_schedule','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_schedule','enrollment_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','schedules_schedule','enrollment_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_schedule','enrollment_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_schedule','schedules_schedule_start_date_3a1c341e','2020-07-23 17:22:34','n_diff_pfx01',0,1,'start_date'),('edxapp','schedules_schedule','schedules_schedule_start_date_3a1c341e','2020-07-23 17:22:34','n_diff_pfx02',0,1,'start_date,id'),('edxapp','schedules_schedule','schedules_schedule_start_date_3a1c341e','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_schedule','schedules_schedule_start_date_3a1c341e','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_schedule','schedules_schedule_upgrade_deadline_0079081d','2020-07-23 17:22:34','n_diff_pfx01',0,1,'upgrade_deadline'),('edxapp','schedules_schedule','schedules_schedule_upgrade_deadline_0079081d','2020-07-23 17:22:34','n_diff_pfx02',0,1,'upgrade_deadline,id'),('edxapp','schedules_schedule','schedules_schedule_upgrade_deadline_0079081d','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_schedule','schedules_schedule_upgrade_deadline_0079081d','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_scheduleconfig','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','schedules_scheduleconfig','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_scheduleconfig','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_changed_by_id_38ef599b_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'site_id'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'site_id,id'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_scheduleconfig','schedules_scheduleconfig_site_id_44296ee1_fk_django_site_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_scheduleexperience','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','schedules_scheduleexperience','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_scheduleexperience','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','schedules_scheduleexperience','schedule_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'schedule_id'),('edxapp','schedules_scheduleexperience','schedule_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','schedules_scheduleexperience','schedule_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','self_paced_selfpacedconfiguration','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','self_paced_selfpacedconfiguration','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','self_paced_selfpacedconfiguration','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','self_paced_selfpacedconfiguration','self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','self_paced_selfpacedconfiguration','self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','self_paced_selfpacedconfiguration','self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','self_paced_selfpacedconfiguration','self_paced_selfpaced_changed_by_id_02789a26_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_certificateitem','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'orderitem_ptr_id'),('edxapp','shoppingcart_certificateitem','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_certificateitem','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_certificateitem','shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_enrollment_id'),('edxapp','shoppingcart_certificateitem','shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_enrollment_id,orderitem_ptr_id'),('edxapp','shoppingcart_certificateitem','shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_certificateitem','shoppingcart_certifi_course_enrollment_id_f2966a98_fk_student_c','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_course_id_a2a7b56c','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_course_id_a2a7b56c','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,orderitem_ptr_id'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_course_id_a2a7b56c','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_course_id_a2a7b56c','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_mode_0b5e8a8c','2020-07-23 17:22:34','n_diff_pfx01',0,1,'mode'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_mode_0b5e8a8c','2020-07-23 17:22:34','n_diff_pfx02',0,1,'mode,orderitem_ptr_id'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_mode_0b5e8a8c','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_certificateitem','shoppingcart_certificateitem_mode_0b5e8a8c','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_coupon','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_coupon','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_coupon','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_code_67dfa4a3','2020-07-23 17:22:34','n_diff_pfx01',0,1,'code'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_code_67dfa4a3','2020-07-23 17:22:34','n_diff_pfx02',0,1,'code,id'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_code_67dfa4a3','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_code_67dfa4a3','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'created_by_id'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'created_by_id,id'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_coupon','shoppingcart_coupon_created_by_id_1d622c7e_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_couponredemption','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_couponredemption','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_couponredemption','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'coupon_id'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'coupon_id,id'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_coupon_id_d2906e5b_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'order_id'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'order_id,id'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponr_order_id_ef555f0f_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'user_id'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'user_id,id'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_couponredemption','shoppingcart_couponredemption_user_id_bbac8149_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregcodeitem','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'orderitem_ptr_id'),('edxapp','shoppingcart_courseregcodeitem','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregcodeitem','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_course_id_7c18f431','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_course_id_7c18f431','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,orderitem_ptr_id'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_course_id_7c18f431','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_course_id_7c18f431','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_mode_279aa3a8','2020-07-23 17:22:34','n_diff_pfx01',0,1,'mode'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_mode_279aa3a8','2020-07-23 17:22:34','n_diff_pfx02',0,1,'mode,orderitem_ptr_id'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_mode_279aa3a8','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregcodeitem','shoppingcart_courseregcodeitem_mode_279aa3a8','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregcodeitemannotation','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_courseregcodeitemannotation','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregcodeitemannotation','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregcodeitemannotation','course_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_courseregcodeitemannotation','course_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregcodeitemannotation','course_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_courseregistrationcode','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','code','2020-07-23 17:22:34','n_diff_pfx01',0,1,'code'),('edxapp','shoppingcart_courseregistrationcode','code','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','code','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'created_by_id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'created_by_id,id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_created_by_id_4a0a3481_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'invoice_id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'invoice_id,id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_id_3f58e05e_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'invoice_item_id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'invoice_item_id,id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_invoice_item_id_2bd62f44_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_order_id_18d73357_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'order_id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_order_id_18d73357_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'order_id,id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_order_id_18d73357_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courser_order_id_18d73357_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courseregistrationcode_course_id_ebec7eb9','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courseregistrationcode_course_id_ebec7eb9','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,id'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courseregistrationcode_course_id_ebec7eb9','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcode','shoppingcart_courseregistrationcode_course_id_ebec7eb9','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'invoiceitem_ptr_id'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','shoppingcart_courseregistra_course_id_e8c94aec','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','shoppingcart_courseregistra_course_id_e8c94aec','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,invoiceitem_ptr_id'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','shoppingcart_courseregistra_course_id_e8c94aec','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','shoppingcart_courseregistra_course_id_e8c94aec','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_donation','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'orderitem_ptr_id'),('edxapp','shoppingcart_donation','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_donation','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_donation','shoppingcart_donation_course_id_e0c7203c','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_donation','shoppingcart_donation_course_id_e0c7203c','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,orderitem_ptr_id'),('edxapp','shoppingcart_donation','shoppingcart_donation_course_id_e0c7203c','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_donation','shoppingcart_donation_course_id_e0c7203c','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_donationconfiguration','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_donationconfiguration','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_donationconfiguration','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_donationconfiguration','shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','shoppingcart_donationconfiguration','shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','shoppingcart_donationconfiguration','shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_donationconfiguration','shoppingcart_donatio_changed_by_id_154b1cbe_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoice','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_invoice','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoice','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_company_name_4d19b1d3','2020-07-23 17:22:34','n_diff_pfx01',0,1,'company_name'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_company_name_4d19b1d3','2020-07-23 17:22:34','n_diff_pfx02',0,1,'company_name,id'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_company_name_4d19b1d3','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_company_name_4d19b1d3','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_course_id_eaefd2e0','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_course_id_eaefd2e0','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,id'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_course_id_eaefd2e0','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoice','shoppingcart_invoice_course_id_eaefd2e0','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicehistory','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_invoicehistory','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicehistory','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'invoice_id'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'invoice_id,id'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoice_invoice_id_d53805cc_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoicehistory_timestamp_61c10fc3','2020-07-23 17:22:34','n_diff_pfx01',0,1,'timestamp'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoicehistory_timestamp_61c10fc3','2020-07-23 17:22:34','n_diff_pfx02',0,1,'timestamp,id'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoicehistory_timestamp_61c10fc3','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicehistory','shoppingcart_invoicehistory_timestamp_61c10fc3','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoiceitem','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_invoiceitem','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoiceitem','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoiceitem','shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'invoice_id'),('edxapp','shoppingcart_invoiceitem','shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'invoice_id,id'),('edxapp','shoppingcart_invoiceitem','shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoiceitem','shoppingcart_invoice_invoice_id_0c1d1f5f_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicetransaction','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_invoicetransaction','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicetransaction','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'created_by_id'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'created_by_id,id'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_created_by_id_89f3faae_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'invoice_id'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'invoice_id,id'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_invoice_id_37da939f_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'last_modified_by_id'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'last_modified_by_id,id'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_invoicetransaction','shoppingcart_invoice_last_modified_by_id_6957893b_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_order','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_order','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_order','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_order','shoppingcart_order_user_id_ca2398bc_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'user_id'),('edxapp','shoppingcart_order','shoppingcart_order_user_id_ca2398bc_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'user_id,id'),('edxapp','shoppingcart_order','shoppingcart_order_user_id_ca2398bc_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_order','shoppingcart_order_user_id_ca2398bc_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_orderitem','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_orderitem','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_orderitem','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderit_order_id_063915e1_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'order_id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderit_order_id_063915e1_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'order_id,id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderit_order_id_063915e1_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderit_order_id_063915e1_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_fulfilled_time_336eded2','2020-07-23 17:22:34','n_diff_pfx01',0,1,'fulfilled_time'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_fulfilled_time_336eded2','2020-07-23 17:22:34','n_diff_pfx02',0,1,'fulfilled_time,id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_fulfilled_time_336eded2','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_fulfilled_time_336eded2','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_refund_requested_time_36e52146','2020-07-23 17:22:34','n_diff_pfx01',0,1,'refund_requested_time'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_refund_requested_time_36e52146','2020-07-23 17:22:34','n_diff_pfx02',0,1,'refund_requested_time,id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_refund_requested_time_36e52146','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_refund_requested_time_36e52146','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_status_f6dfbdae','2020-07-23 17:22:34','n_diff_pfx01',0,1,'status'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_status_f6dfbdae','2020-07-23 17:22:34','n_diff_pfx02',0,1,'status,id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_status_f6dfbdae','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_status_f6dfbdae','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'user_id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'user_id,id'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_orderitem','shoppingcart_orderitem_user_id_93073a67_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_paidcourseregistration','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'orderitem_ptr_id'),('edxapp','shoppingcart_paidcourseregistration','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_paidcourseregistration','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_enrollment_id'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_enrollment_id,orderitem_ptr_id'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcou_course_enrollment_id_853e3ed0_fk_student_c','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_course_id_33b51281','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_course_id_33b51281','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,orderitem_ptr_id'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_course_id_33b51281','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_course_id_33b51281','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_mode_8be64323','2020-07-23 17:22:34','n_diff_pfx01',0,1,'mode'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_mode_8be64323','2020-07-23 17:22:34','n_diff_pfx02',0,1,'mode,orderitem_ptr_id'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_mode_8be64323','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_paidcourseregistration','shoppingcart_paidcourseregistration_mode_8be64323','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_paidcourseregistrationannotation','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_paidcourseregistrationannotation','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_paidcourseregistrationannotation','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_paidcourseregistrationannotation','course_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','shoppingcart_paidcourseregistrationannotation','course_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_paidcourseregistrationannotation','course_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','shoppingcart_registrationcoderedemption','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_enrollment_id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_enrollment_id,id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_course_enrollment_id_d6f78911_fk_student_c','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_order_id_240ef603_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'order_id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_order_id_240ef603_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'order_id,id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_order_id_240ef603_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_order_id_240ef603_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'redeemed_by_id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'redeemed_by_id,id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_redeemed_by_id_95c54187_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx01',0,1,'registration_code_id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc','2020-07-23 17:22:34','n_diff_pfx02',0,1,'registration_code_id,id'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','shoppingcart_registrationcoderedemption','shoppingcart_registr_registration_code_id_e5681508_fk_shoppingc','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','site_configuration_siteconfiguration','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','site_configuration_siteconfiguration','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','site_configuration_siteconfiguration','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','site_configuration_siteconfiguration','site_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'site_id'),('edxapp','site_configuration_siteconfiguration','site_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','site_configuration_siteconfiguration','site_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','site_configuration_siteconfigurationhistory','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','site_configuration_siteconfigurationhistory','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','site_configuration_siteconfigurationhistory','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','site_configuration_siteconfigurationhistory','site_configuration_s_site_id_272f5c1a_fk_django_si','2020-07-23 17:22:34','n_diff_pfx01',0,1,'site_id'),('edxapp','site_configuration_siteconfigurationhistory','site_configuration_s_site_id_272f5c1a_fk_django_si','2020-07-23 17:22:34','n_diff_pfx02',0,1,'site_id,id'),('edxapp','site_configuration_siteconfigurationhistory','site_configuration_s_site_id_272f5c1a_fk_django_si','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','site_configuration_siteconfigurationhistory','site_configuration_s_site_id_272f5c1a_fk_django_si','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_association','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','social_auth_association','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_association','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_association','social_auth_association_server_url_handle_078befa2_uniq','2020-07-23 17:22:34','n_diff_pfx01',0,1,'server_url'),('edxapp','social_auth_association','social_auth_association_server_url_handle_078befa2_uniq','2020-07-23 17:22:34','n_diff_pfx02',0,1,'server_url,handle'),('edxapp','social_auth_association','social_auth_association_server_url_handle_078befa2_uniq','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_association','social_auth_association_server_url_handle_078befa2_uniq','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_code','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','social_auth_code','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_code','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_code','social_auth_code_code_a2393167','2020-07-23 17:22:34','n_diff_pfx01',0,1,'code'),('edxapp','social_auth_code','social_auth_code_code_a2393167','2020-07-23 17:22:34','n_diff_pfx02',0,1,'code,id'),('edxapp','social_auth_code','social_auth_code_code_a2393167','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_code','social_auth_code_code_a2393167','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_code','social_auth_code_email_code_801b2d02_uniq','2020-07-23 17:22:34','n_diff_pfx01',0,1,'email'),('edxapp','social_auth_code','social_auth_code_email_code_801b2d02_uniq','2020-07-23 17:22:34','n_diff_pfx02',0,1,'email,code'),('edxapp','social_auth_code','social_auth_code_email_code_801b2d02_uniq','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_code','social_auth_code_email_code_801b2d02_uniq','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_code','social_auth_code_timestamp_176b341f','2020-07-23 17:22:34','n_diff_pfx01',0,1,'timestamp'),('edxapp','social_auth_code','social_auth_code_timestamp_176b341f','2020-07-23 17:22:34','n_diff_pfx02',0,1,'timestamp,id'),('edxapp','social_auth_code','social_auth_code_timestamp_176b341f','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_code','social_auth_code_timestamp_176b341f','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_nonce','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','social_auth_nonce','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_nonce','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_nonce','social_auth_nonce_server_url_timestamp_salt_f6284463_uniq','2020-07-23 17:22:34','n_diff_pfx01',0,1,'server_url'),('edxapp','social_auth_nonce','social_auth_nonce_server_url_timestamp_salt_f6284463_uniq','2020-07-23 17:22:34','n_diff_pfx02',0,1,'server_url,timestamp'),('edxapp','social_auth_nonce','social_auth_nonce_server_url_timestamp_salt_f6284463_uniq','2020-07-23 17:22:34','n_diff_pfx03',0,1,'server_url,timestamp,salt'),('edxapp','social_auth_nonce','social_auth_nonce_server_url_timestamp_salt_f6284463_uniq','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_nonce','social_auth_nonce_server_url_timestamp_salt_f6284463_uniq','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_partial','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','social_auth_partial','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_partial','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_partial','social_auth_partial_timestamp_50f2119f','2020-07-23 17:22:34','n_diff_pfx01',0,1,'timestamp'),('edxapp','social_auth_partial','social_auth_partial_timestamp_50f2119f','2020-07-23 17:22:34','n_diff_pfx02',0,1,'timestamp,id'),('edxapp','social_auth_partial','social_auth_partial_timestamp_50f2119f','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_partial','social_auth_partial_timestamp_50f2119f','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_partial','social_auth_partial_token_3017fea3','2020-07-23 17:22:34','n_diff_pfx01',0,1,'token'),('edxapp','social_auth_partial','social_auth_partial_token_3017fea3','2020-07-23 17:22:34','n_diff_pfx02',0,1,'token,id'),('edxapp','social_auth_partial','social_auth_partial_token_3017fea3','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_partial','social_auth_partial_token_3017fea3','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_usersocialauth','PRIMARY','2020-07-23 17:24:41','n_diff_pfx01',0,1,'id'),('edxapp','social_auth_usersocialauth','PRIMARY','2020-07-23 17:24:41','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_usersocialauth','PRIMARY','2020-07-23 17:24:41','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_provider_uid_e6b5e668_uniq','2020-07-23 17:24:41','n_diff_pfx01',0,1,'provider'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_provider_uid_e6b5e668_uniq','2020-07-23 17:24:41','n_diff_pfx02',0,1,'provider,uid'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_provider_uid_e6b5e668_uniq','2020-07-23 17:24:41','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_provider_uid_e6b5e668_uniq','2020-07-23 17:24:41','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_uid_796e51dc','2020-07-23 17:24:41','n_diff_pfx01',0,1,'uid'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_uid_796e51dc','2020-07-23 17:24:41','n_diff_pfx02',0,1,'uid,id'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_uid_796e51dc','2020-07-23 17:24:41','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_uid_796e51dc','2020-07-23 17:24:41','size',1,NULL,'Number of pages in the index'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id','2020-07-23 17:24:41','n_diff_pfx01',0,1,'user_id'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id','2020-07-23 17:24:41','n_diff_pfx02',0,1,'user_id,id'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id','2020-07-23 17:24:41','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','social_auth_usersocialauth','social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id','2020-07-23 17:24:41','size',1,NULL,'Number of pages in the index'),('edxapp','splash_splashconfig','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','splash_splashconfig','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','splash_splashconfig','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','splash_splashconfig','splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','splash_splashconfig','splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','splash_splashconfig','splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','splash_splashconfig','splash_splashconfig_changed_by_id_883b17ba_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','static_replace_assetbaseurlconfig','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','static_replace_assetbaseurlconfig','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','static_replace_assetbaseurlconfig','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','static_replace_assetbaseurlconfig','static_replace_asset_changed_by_id_f592e050_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','static_replace_assetbaseurlconfig','static_replace_asset_changed_by_id_f592e050_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','static_replace_assetbaseurlconfig','static_replace_asset_changed_by_id_f592e050_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','static_replace_assetbaseurlconfig','static_replace_asset_changed_by_id_f592e050_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','static_replace_assetexcludedextensionsconfig','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','static_replace_assetexcludedextensionsconfig','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','static_replace_assetexcludedextensionsconfig','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','static_replace_assetexcludedextensionsconfig','static_replace_asset_changed_by_id_e58299b3_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','static_replace_assetexcludedextensionsconfig','static_replace_asset_changed_by_id_e58299b3_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','static_replace_assetexcludedextensionsconfig','static_replace_asset_changed_by_id_e58299b3_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','static_replace_assetexcludedextensionsconfig','static_replace_asset_changed_by_id_e58299b3_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','status_coursemessage','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','status_coursemessage','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','status_coursemessage','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','status_coursemessage','status_coursemessage_course_key_90c77a2e','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_key'),('edxapp','status_coursemessage','status_coursemessage_course_key_90c77a2e','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_key,id'),('edxapp','status_coursemessage','status_coursemessage_course_key_90c77a2e','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','status_coursemessage','status_coursemessage_course_key_90c77a2e','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','status_coursemessage','status_coursemessage_global_message_id_01bbfbe6_fk_status_gl','2020-07-23 17:22:34','n_diff_pfx01',0,1,'global_message_id'),('edxapp','status_coursemessage','status_coursemessage_global_message_id_01bbfbe6_fk_status_gl','2020-07-23 17:22:34','n_diff_pfx02',0,1,'global_message_id,id'),('edxapp','status_coursemessage','status_coursemessage_global_message_id_01bbfbe6_fk_status_gl','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','status_coursemessage','status_coursemessage_global_message_id_01bbfbe6_fk_status_gl','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','status_globalstatusmessage','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','status_globalstatusmessage','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','status_globalstatusmessage','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','status_globalstatusmessage','status_globalstatusm_changed_by_id_3c627848_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','status_globalstatusmessage','status_globalstatusm_changed_by_id_3c627848_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','status_globalstatusmessage','status_globalstatusm_changed_by_id_3c627848_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','status_globalstatusmessage','status_globalstatusm_changed_by_id_3c627848_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_accountrecoveryconfiguration','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','student_accountrecoveryconfiguration','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_accountrecoveryconfiguration','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_accountrecoveryconfiguration','student_accountrecov_changed_by_id_d9d1ddf6_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_accountrecoveryconfiguration','student_accountrecov_changed_by_id_d9d1ddf6_fk_auth_user','2020-07-23 17:22:34','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_accountrecoveryconfiguration','student_accountrecov_changed_by_id_d9d1ddf6_fk_auth_user','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_accountrecoveryconfiguration','student_accountrecov_changed_by_id_d9d1ddf6_fk_auth_user','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_allowedauthuser','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','student_allowedauthuser','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_allowedauthuser','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_allowedauthuser','email','2020-07-23 17:22:34','n_diff_pfx01',0,1,'email'),('edxapp','student_allowedauthuser','email','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_allowedauthuser','email','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_allowedauthuser','student_allowedauthuser_site_id_9a6aae9b_fk_django_site_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'site_id'),('edxapp','student_allowedauthuser','student_allowedauthuser_site_id_9a6aae9b_fk_django_site_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'site_id,id'),('edxapp','student_allowedauthuser','student_allowedauthuser_site_id_9a6aae9b_fk_django_site_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_allowedauthuser','student_allowedauthuser_site_id_9a6aae9b_fk_django_site_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_anonymoususerid','PRIMARY','2020-07-23 17:22:34','n_diff_pfx01',0,1,'id'),('edxapp','student_anonymoususerid','PRIMARY','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_anonymoususerid','PRIMARY','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_anonymoususerid','anonymous_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'anonymous_user_id'),('edxapp','student_anonymoususerid','anonymous_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_anonymoususerid','anonymous_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_anonymoususerid','student_anonymoususerid_course_id_99cc6a18','2020-07-23 17:22:34','n_diff_pfx01',0,1,'course_id'),('edxapp','student_anonymoususerid','student_anonymoususerid_course_id_99cc6a18','2020-07-23 17:22:34','n_diff_pfx02',0,1,'course_id,id'),('edxapp','student_anonymoususerid','student_anonymoususerid_course_id_99cc6a18','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_anonymoususerid','student_anonymoususerid_course_id_99cc6a18','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_anonymoususerid','student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx01',0,1,'user_id'),('edxapp','student_anonymoususerid','student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id','2020-07-23 17:22:34','n_diff_pfx02',0,1,'user_id,id'),('edxapp','student_anonymoususerid','student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id','2020-07-23 17:22:34','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_anonymoususerid','student_anonymoususerid_user_id_0fb2ad5c_fk_auth_user_id','2020-07-23 17:22:34','size',1,NULL,'Number of pages in the index'),('edxapp','student_bulkunenrollconfiguration','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_bulkunenrollconfiguration','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_bulkunenrollconfiguration','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_bulkunenrollconfiguration','student_bulkunenroll_changed_by_id_7b6131b9_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_bulkunenrollconfiguration','student_bulkunenroll_changed_by_id_7b6131b9_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_bulkunenrollconfiguration','student_bulkunenroll_changed_by_id_7b6131b9_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_bulkunenrollconfiguration','student_bulkunenroll_changed_by_id_7b6131b9_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseaccessrole','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_courseaccessrole','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseaccessrole','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_course_id_60fb355e','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','student_courseaccessrole','student_courseaccessrole_course_id_60fb355e','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,id'),('edxapp','student_courseaccessrole','student_courseaccessrole_course_id_60fb355e','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_course_id_60fb355e','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_org_6d2dbb7a','2020-07-23 17:22:35','n_diff_pfx01',0,1,'org'),('edxapp','student_courseaccessrole','student_courseaccessrole_org_6d2dbb7a','2020-07-23 17:22:35','n_diff_pfx02',0,1,'org,id'),('edxapp','student_courseaccessrole','student_courseaccessrole_org_6d2dbb7a','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_org_6d2dbb7a','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_role_1ac888ea','2020-07-23 17:22:35','n_diff_pfx01',0,1,'role'),('edxapp','student_courseaccessrole','student_courseaccessrole_role_1ac888ea','2020-07-23 17:22:35','n_diff_pfx02',0,1,'role,id'),('edxapp','student_courseaccessrole','student_courseaccessrole_role_1ac888ea','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_role_1ac888ea','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_courseaccessrole','student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,org'),('edxapp','student_courseaccessrole','student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq','2020-07-23 17:22:35','n_diff_pfx03',0,1,'user_id,org,course_id'),('edxapp','student_courseaccessrole','student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq','2020-07-23 17:22:35','n_diff_pfx04',0,1,'user_id,org,course_id,role'),('edxapp','student_courseaccessrole','student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseaccessrole','student_courseaccessrole_user_id_org_course_id_ro_bbf71126_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment','PRIMARY','2020-07-23 17:23:28','n_diff_pfx01',4,1,'id'),('edxapp','student_courseenrollment','PRIMARY','2020-07-23 17:23:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment','PRIMARY','2020-07-23 17:23:28','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment','student_cou_user_id_b19dcd_idx','2020-07-23 17:23:28','n_diff_pfx01',4,1,'user_id'),('edxapp','student_courseenrollment','student_cou_user_id_b19dcd_idx','2020-07-23 17:23:28','n_diff_pfx02',4,1,'user_id,created'),('edxapp','student_courseenrollment','student_cou_user_id_b19dcd_idx','2020-07-23 17:23:28','n_diff_pfx03',4,1,'user_id,created,id'),('edxapp','student_courseenrollment','student_cou_user_id_b19dcd_idx','2020-07-23 17:23:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment','student_cou_user_id_b19dcd_idx','2020-07-23 17:23:28','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment','student_courseenrollment_course_id_a6f93be8','2020-07-23 17:23:28','n_diff_pfx01',1,1,'course_id'),('edxapp','student_courseenrollment','student_courseenrollment_course_id_a6f93be8','2020-07-23 17:23:28','n_diff_pfx02',4,1,'course_id,id'),('edxapp','student_courseenrollment','student_courseenrollment_course_id_a6f93be8','2020-07-23 17:23:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment','student_courseenrollment_course_id_a6f93be8','2020-07-23 17:23:28','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment','student_courseenrollment_created_79829893','2020-07-23 17:23:28','n_diff_pfx01',4,1,'created'),('edxapp','student_courseenrollment','student_courseenrollment_created_79829893','2020-07-23 17:23:28','n_diff_pfx02',4,1,'created,id'),('edxapp','student_courseenrollment','student_courseenrollment_created_79829893','2020-07-23 17:23:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment','student_courseenrollment_created_79829893','2020-07-23 17:23:28','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment','student_courseenrollment_user_id_course_id_5d34a47f_uniq','2020-07-23 17:23:28','n_diff_pfx01',4,1,'user_id'),('edxapp','student_courseenrollment','student_courseenrollment_user_id_course_id_5d34a47f_uniq','2020-07-23 17:23:28','n_diff_pfx02',4,1,'user_id,course_id'),('edxapp','student_courseenrollment','student_courseenrollment_user_id_course_id_5d34a47f_uniq','2020-07-23 17:23:28','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment','student_courseenrollment_user_id_course_id_5d34a47f_uniq','2020-07-23 17:23:28','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment_history','PRIMARY','2020-07-23 17:23:38','n_diff_pfx01',12,1,'history_id'),('edxapp','student_courseenrollment_history','PRIMARY','2020-07-23 17:23:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment_history','PRIMARY','2020-07-23 17:23:38','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment_history','student_courseenroll_history_user_id_7065c772_fk_auth_user','2020-07-23 17:23:38','n_diff_pfx01',1,1,'history_user_id'),('edxapp','student_courseenrollment_history','student_courseenroll_history_user_id_7065c772_fk_auth_user','2020-07-23 17:23:38','n_diff_pfx02',12,1,'history_user_id,history_id'),('edxapp','student_courseenrollment_history','student_courseenroll_history_user_id_7065c772_fk_auth_user','2020-07-23 17:23:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment_history','student_courseenroll_history_user_id_7065c772_fk_auth_user','2020-07-23 17:23:38','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_course_id_98f13917','2020-07-23 17:23:38','n_diff_pfx01',1,1,'course_id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_course_id_98f13917','2020-07-23 17:23:38','n_diff_pfx02',12,1,'course_id,history_id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_course_id_98f13917','2020-07-23 17:23:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_course_id_98f13917','2020-07-23 17:23:38','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_created_6b3154af','2020-07-23 17:23:38','n_diff_pfx01',4,1,'created'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_created_6b3154af','2020-07-23 17:23:38','n_diff_pfx02',12,1,'created,history_id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_created_6b3154af','2020-07-23 17:23:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_created_6b3154af','2020-07-23 17:23:38','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_id_2d80b9b3','2020-07-23 17:23:38','n_diff_pfx01',4,1,'id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_id_2d80b9b3','2020-07-23 17:23:38','n_diff_pfx02',12,1,'id,history_id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_id_2d80b9b3','2020-07-23 17:23:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_id_2d80b9b3','2020-07-23 17:23:38','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_user_id_5f94c628','2020-07-23 17:23:38','n_diff_pfx01',4,1,'user_id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_user_id_5f94c628','2020-07-23 17:23:38','n_diff_pfx02',12,1,'user_id,history_id'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_user_id_5f94c628','2020-07-23 17:23:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollment_history','student_courseenrollment_history_user_id_5f94c628','2020-07-23 17:23:38','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentallowed','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_courseenrollmentallowed','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentallowed','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_course_id_67eff667','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_course_id_67eff667','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_course_id_67eff667','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_course_id_67eff667','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_created_b2066658','2020-07-23 17:22:35','n_diff_pfx01',0,1,'created'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_created_b2066658','2020-07-23 17:22:35','n_diff_pfx02',0,1,'created,id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_created_b2066658','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_created_b2066658','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_969706a0','2020-07-23 17:22:35','n_diff_pfx01',0,1,'email'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_969706a0','2020-07-23 17:22:35','n_diff_pfx02',0,1,'email,id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_969706a0','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_969706a0','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_course_id_1e23ed5e_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'email'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_course_id_1e23ed5e_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'email,course_id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_course_id_1e23ed5e_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_email_course_id_1e23ed5e_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentallowed','student_courseenrollmentallowed_user_id_5875cce6_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentattribute','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_courseenrollmentattribute','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentattribute','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentattribute','student_courseenroll_enrollment_id_b2173db0_fk_student_c','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','student_courseenrollmentattribute','student_courseenroll_enrollment_id_b2173db0_fk_student_c','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrollment_id,id'),('edxapp','student_courseenrollmentattribute','student_courseenroll_enrollment_id_b2173db0_fk_student_c','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentattribute','student_courseenroll_enrollment_id_b2173db0_fk_student_c','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentcelebration','PRIMARY','2020-07-23 17:24:42','n_diff_pfx01',0,1,'id'),('edxapp','student_courseenrollmentcelebration','PRIMARY','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentcelebration','PRIMARY','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','student_courseenrollmentcelebration','enrollment_id','2020-07-23 17:24:42','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','student_courseenrollmentcelebration','enrollment_id','2020-07-23 17:24:42','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_courseenrollmentcelebration','enrollment_id','2020-07-23 17:24:42','size',1,NULL,'Number of pages in the index'),('edxapp','student_dashboardconfiguration','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_dashboardconfiguration','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_dashboardconfiguration','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_dashboardconfiguration','student_dashboardcon_changed_by_id_1960484b_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_dashboardconfiguration','student_dashboardcon_changed_by_id_1960484b_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_dashboardconfiguration','student_dashboardcon_changed_by_id_1960484b_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_dashboardconfiguration','student_dashboardcon_changed_by_id_1960484b_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_enrollmentrefundconfiguration','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_enrollmentrefundconfiguration','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_enrollmentrefundconfiguration','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_enrollmentrefundconfiguration','student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_enrollmentrefundconfiguration','student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_enrollmentrefundconfiguration','student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_enrollmentrefundconfiguration','student_enrollmentre_changed_by_id_082b4f6f_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_entranceexamconfiguration','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_entranceexamconfiguration','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_entranceexamconfiguration','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconf_user_id_course_id_23bbcf9b_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_entranceexamconfiguration','student_entranceexamconf_user_id_course_id_23bbcf9b_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','student_entranceexamconfiguration','student_entranceexamconf_user_id_course_id_23bbcf9b_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconf_user_id_course_id_23bbcf9b_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_course_id_eca5c3d4','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_course_id_eca5c3d4','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,id'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_course_id_eca5c3d4','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_course_id_eca5c3d4','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_created_27e80637','2020-07-23 17:22:35','n_diff_pfx01',0,1,'created'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_created_27e80637','2020-07-23 17:22:35','n_diff_pfx02',0,1,'created,id'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_created_27e80637','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_created_27e80637','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_updated_d560d552','2020-07-23 17:22:35','n_diff_pfx01',0,1,'updated'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_updated_d560d552','2020-07-23 17:22:35','n_diff_pfx02',0,1,'updated,id'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_updated_d560d552','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_entranceexamconfiguration','student_entranceexamconfiguration_updated_d560d552','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_fbeenrollmentexclusion','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_fbeenrollmentexclusion','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_fbeenrollmentexclusion','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_fbeenrollmentexclusion','enrollment_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','student_fbeenrollmentexclusion','enrollment_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_fbeenrollmentexclusion','enrollment_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'history_id'),('edxapp','student_historicalmanualenrollmentaudit','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalma_history_user_id_b5f488c2_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'history_user_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalma_history_user_id_b5f488c2_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'history_user_id,history_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalma_history_user_id_b5f488c2_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalma_history_user_id_b5f488c2_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_by_id_0838a44b','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrolled_by_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_by_id_0838a44b','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrolled_by_id,history_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_by_id_0838a44b','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_by_id_0838a44b','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_email_bfaa34b3','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrolled_email'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_email_bfaa34b3','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrolled_email,history_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_email_bfaa34b3','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrolled_email_bfaa34b3','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrollment_id_b74f8923','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrollment_id_b74f8923','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrollment_id,history_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrollment_id_b74f8923','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_enrollment_id_b74f8923','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_id_18eb7e98','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_id_18eb7e98','2020-07-23 17:22:35','n_diff_pfx02',0,1,'id,history_id'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_id_18eb7e98','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_historicalmanualenrollmentaudit','student_historicalmanualenrollmentaudit_id_18eb7e98','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_languageproficiency','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_languageproficiency','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_languageproficiency','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_languageproficiency','student_languageprof_user_profile_id_768cd3eb_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_profile_id'),('edxapp','student_languageproficiency','student_languageprof_user_profile_id_768cd3eb_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_profile_id,id'),('edxapp','student_languageproficiency','student_languageprof_user_profile_id_768cd3eb_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_languageproficiency','student_languageprof_user_profile_id_768cd3eb_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_languageproficiency','student_languageproficiency_code_user_profile_id_9aa4e2f5_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'code'),('edxapp','student_languageproficiency','student_languageproficiency_code_user_profile_id_9aa4e2f5_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'code,user_profile_id'),('edxapp','student_languageproficiency','student_languageproficiency_code_user_profile_id_9aa4e2f5_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_languageproficiency','student_languageproficiency_code_user_profile_id_9aa4e2f5_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_linkedinaddtoprofileconfiguration','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_linkedinaddtoprofileconfiguration','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_linkedinaddtoprofileconfiguration','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_linkedinaddtoprofileconfiguration','student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_linkedinaddtoprofileconfiguration','student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_linkedinaddtoprofileconfiguration','student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_linkedinaddtoprofileconfiguration','student_linkedinaddt_changed_by_id_dc1c453f_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_loginfailures','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_loginfailures','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_loginfailures','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_loginfailures','student_loginfailures_user_id_50d85202_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_loginfailures','student_loginfailures_user_id_50d85202_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','student_loginfailures','student_loginfailures_user_id_50d85202_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_loginfailures','student_loginfailures_user_id_50d85202_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_manualenrollmentaudit','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_manualenrollmentaudit','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_manualenrollmentaudit','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrolled_by_id'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrolled_by_id,id'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrolled_by_id_1217a0dc_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrollment_id_decc94fe_fk_student_c','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrollment_id'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrollment_id_decc94fe_fk_student_c','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrollment_id,id'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrollment_id_decc94fe_fk_student_c','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_manualenrollmentaudit','student_manualenroll_enrollment_id_decc94fe_fk_student_c','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_manualenrollmentaudit','student_manualenrollmentaudit_enrolled_email_47ce6524','2020-07-23 17:22:35','n_diff_pfx01',0,1,'enrolled_email'),('edxapp','student_manualenrollmentaudit','student_manualenrollmentaudit_enrolled_email_47ce6524','2020-07-23 17:22:35','n_diff_pfx02',0,1,'enrolled_email,id'),('edxapp','student_manualenrollmentaudit','student_manualenrollmentaudit_enrolled_email_47ce6524','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_manualenrollmentaudit','student_manualenrollmentaudit_enrolled_email_47ce6524','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingemailchange','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_pendingemailchange','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingemailchange','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingemailchange','activation_key','2020-07-23 17:22:35','n_diff_pfx01',0,1,'activation_key'),('edxapp','student_pendingemailchange','activation_key','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingemailchange','activation_key','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingemailchange','student_pendingemailchange_new_email_6887bdea','2020-07-23 17:22:35','n_diff_pfx01',0,1,'new_email'),('edxapp','student_pendingemailchange','student_pendingemailchange_new_email_6887bdea','2020-07-23 17:22:35','n_diff_pfx02',0,1,'new_email,id'),('edxapp','student_pendingemailchange','student_pendingemailchange_new_email_6887bdea','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingemailchange','student_pendingemailchange_new_email_6887bdea','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingemailchange','user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_pendingemailchange','user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingemailchange','user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingnamechange','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_pendingnamechange','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingnamechange','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingnamechange','user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_pendingnamechange','user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingnamechange','user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingsecondaryemailchange','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_pendingsecondaryemailchange','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingsecondaryemailchange','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingsecondaryemailchange','activation_key','2020-07-23 17:22:35','n_diff_pfx01',0,1,'activation_key'),('edxapp','student_pendingsecondaryemailchange','activation_key','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingsecondaryemailchange','activation_key','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingsecondaryemailchange','student_pendingsecondaryemailchange_new_secondary_email_5e79db59','2020-07-23 17:22:35','n_diff_pfx01',0,1,'new_secondary_email'),('edxapp','student_pendingsecondaryemailchange','student_pendingsecondaryemailchange_new_secondary_email_5e79db59','2020-07-23 17:22:35','n_diff_pfx02',0,1,'new_secondary_email,id'),('edxapp','student_pendingsecondaryemailchange','student_pendingsecondaryemailchange_new_secondary_email_5e79db59','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingsecondaryemailchange','student_pendingsecondaryemailchange_new_secondary_email_5e79db59','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_pendingsecondaryemailchange','user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_pendingsecondaryemailchange','user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_pendingsecondaryemailchange','user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_registrationcookieconfiguration','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_registrationcookieconfiguration','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_registrationcookieconfiguration','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_registrationcookieconfiguration','student_registration_changed_by_id_52ac88b0_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_registrationcookieconfiguration','student_registration_changed_by_id_52ac88b0_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_registrationcookieconfiguration','student_registration_changed_by_id_52ac88b0_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_registrationcookieconfiguration','student_registration_changed_by_id_52ac88b0_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_sociallink','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_sociallink','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_sociallink','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_sociallink','student_sociallink_user_profile_id_19f54475_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_profile_id'),('edxapp','student_sociallink','student_sociallink_user_profile_id_19f54475_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_profile_id,id'),('edxapp','student_sociallink','student_sociallink_user_profile_id_19f54475_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_sociallink','student_sociallink_user_profile_id_19f54475_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_userattribute','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_userattribute','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_userattribute','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_userattribute','student_userattribute_name_a55155e3','2020-07-23 17:22:35','n_diff_pfx01',0,1,'name'),('edxapp','student_userattribute','student_userattribute_name_a55155e3','2020-07-23 17:22:35','n_diff_pfx02',0,1,'name,id'),('edxapp','student_userattribute','student_userattribute_name_a55155e3','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_userattribute','student_userattribute_name_a55155e3','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_userattribute','student_userattribute_user_id_name_70e18f46_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_userattribute','student_userattribute_user_id_name_70e18f46_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,name'),('edxapp','student_userattribute','student_userattribute_user_id_name_70e18f46_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_userattribute','student_userattribute_user_id_name_70e18f46_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usersignupsource','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_usersignupsource','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usersignupsource','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usersignupsource','student_usersignupsource_site_beb4d383','2020-07-23 17:22:35','n_diff_pfx01',0,1,'site'),('edxapp','student_usersignupsource','student_usersignupsource_site_beb4d383','2020-07-23 17:22:35','n_diff_pfx02',0,1,'site,id'),('edxapp','student_usersignupsource','student_usersignupsource_site_beb4d383','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usersignupsource','student_usersignupsource_site_beb4d383','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usersignupsource','student_usersignupsource_user_id_4979dd6e_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_usersignupsource','student_usersignupsource_user_id_4979dd6e_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','student_usersignupsource','student_usersignupsource_user_id_4979dd6e_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usersignupsource','student_usersignupsource_user_id_4979dd6e_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_userstanding','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_userstanding','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_userstanding','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_userstanding','student_userstanding_changed_by_id_469252b4_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','student_userstanding','student_userstanding_changed_by_id_469252b4_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','student_userstanding','student_userstanding_changed_by_id_469252b4_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_userstanding','student_userstanding_changed_by_id_469252b4_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_userstanding','user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_userstanding','user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_userstanding','user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usertestgroup','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_usertestgroup','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usertestgroup','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usertestgroup','student_usertestgroup_name_94f48ddb','2020-07-23 17:22:35','n_diff_pfx01',0,1,'name'),('edxapp','student_usertestgroup','student_usertestgroup_name_94f48ddb','2020-07-23 17:22:35','n_diff_pfx02',0,1,'name,id'),('edxapp','student_usertestgroup','student_usertestgroup_name_94f48ddb','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usertestgroup','student_usertestgroup_name_94f48ddb','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usertestgroup_users','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','student_usertestgroup_users','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usertestgroup_users','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usertestgroup_users','student_usertestgroup_us_usertestgroup_id_user_id_2bbf095a_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'usertestgroup_id'),('edxapp','student_usertestgroup_users','student_usertestgroup_us_usertestgroup_id_user_id_2bbf095a_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'usertestgroup_id,user_id'),('edxapp','student_usertestgroup_users','student_usertestgroup_us_usertestgroup_id_user_id_2bbf095a_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usertestgroup_users','student_usertestgroup_us_usertestgroup_id_user_id_2bbf095a_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','student_usertestgroup_users','student_usertestgroup_users_user_id_81b93062_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','student_usertestgroup_users','student_usertestgroup_users_user_id_81b93062_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','student_usertestgroup_users','student_usertestgroup_users_user_id_81b93062_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','student_usertestgroup_users','student_usertestgroup_users_user_id_81b93062_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_score','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','submissions_score','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_score','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_score','submissions_score_created_at_b65f0390','2020-07-23 17:22:35','n_diff_pfx01',0,1,'created_at'),('edxapp','submissions_score','submissions_score_created_at_b65f0390','2020-07-23 17:22:35','n_diff_pfx02',0,1,'created_at,id'),('edxapp','submissions_score','submissions_score_created_at_b65f0390','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_score','submissions_score_created_at_b65f0390','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_score','submissions_score_student_item_id_de4f5954_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'student_item_id'),('edxapp','submissions_score','submissions_score_student_item_id_de4f5954_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'student_item_id,id'),('edxapp','submissions_score','submissions_score_student_item_id_de4f5954_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_score','submissions_score_student_item_id_de4f5954_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_score','submissions_score_submission_id_ba095829_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'submission_id'),('edxapp','submissions_score','submissions_score_submission_id_ba095829_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'submission_id,id'),('edxapp','submissions_score','submissions_score_submission_id_ba095829_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_score','submissions_score_submission_id_ba095829_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoreannotation','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','submissions_scoreannotation','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoreannotation','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoreannotation','submissions_scoreann_score_id_2dda6e02_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'score_id'),('edxapp','submissions_scoreannotation','submissions_scoreann_score_id_2dda6e02_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'score_id,id'),('edxapp','submissions_scoreannotation','submissions_scoreann_score_id_2dda6e02_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoreannotation','submissions_scoreann_score_id_2dda6e02_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_annotation_type_117a2607','2020-07-23 17:22:35','n_diff_pfx01',0,1,'annotation_type'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_annotation_type_117a2607','2020-07-23 17:22:35','n_diff_pfx02',0,1,'annotation_type,id'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_annotation_type_117a2607','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_annotation_type_117a2607','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_creator_5cc126cc','2020-07-23 17:22:35','n_diff_pfx01',0,1,'creator'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_creator_5cc126cc','2020-07-23 17:22:35','n_diff_pfx02',0,1,'creator,id'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_creator_5cc126cc','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoreannotation','submissions_scoreannotation_creator_5cc126cc','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoresummary','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','submissions_scoresummary','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoresummary','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoresummary','student_item_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'student_item_id'),('edxapp','submissions_scoresummary','student_item_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoresummary','student_item_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoresummary','submissions_scoresum_highest_id_3efe897d_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'highest_id'),('edxapp','submissions_scoresummary','submissions_scoresum_highest_id_3efe897d_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'highest_id,id'),('edxapp','submissions_scoresummary','submissions_scoresum_highest_id_3efe897d_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoresummary','submissions_scoresum_highest_id_3efe897d_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_scoresummary','submissions_scoresum_latest_id_dd8a17bb_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'latest_id'),('edxapp','submissions_scoresummary','submissions_scoresum_latest_id_dd8a17bb_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'latest_id,id'),('edxapp','submissions_scoresummary','submissions_scoresum_latest_id_dd8a17bb_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_scoresummary','submissions_scoresum_latest_id_dd8a17bb_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_studentitem','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','submissions_studentitem','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_studentitem','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_05ee1efe','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_05ee1efe','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,id'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_05ee1efe','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_05ee1efe','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,student_id'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq','2020-07-23 17:22:35','n_diff_pfx03',0,1,'course_id,student_id,item_id'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_course_id_student_id_ite_5b02ecf8_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_item_id_6c409784','2020-07-23 17:22:35','n_diff_pfx01',0,1,'item_id'),('edxapp','submissions_studentitem','submissions_studentitem_item_id_6c409784','2020-07-23 17:22:35','n_diff_pfx02',0,1,'item_id,id'),('edxapp','submissions_studentitem','submissions_studentitem_item_id_6c409784','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_item_id_6c409784','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_student_id_8e72bcd9','2020-07-23 17:22:35','n_diff_pfx01',0,1,'student_id'),('edxapp','submissions_studentitem','submissions_studentitem_student_id_8e72bcd9','2020-07-23 17:22:35','n_diff_pfx02',0,1,'student_id,id'),('edxapp','submissions_studentitem','submissions_studentitem_student_id_8e72bcd9','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_studentitem','submissions_studentitem_student_id_8e72bcd9','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_submission','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','submissions_submission','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_submission','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_submission','submissions_submissi_student_item_id_9d087470_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'student_item_id'),('edxapp','submissions_submission','submissions_submissi_student_item_id_9d087470_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'student_item_id,id'),('edxapp','submissions_submission','submissions_submissi_student_item_id_9d087470_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_submission','submissions_submissi_student_item_id_9d087470_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_submission','submissions_submissi_team_submission_id_40e6bc97_fk_submissio','2020-07-23 17:22:35','n_diff_pfx01',0,1,'team_submission_id'),('edxapp','submissions_submission','submissions_submissi_team_submission_id_40e6bc97_fk_submissio','2020-07-23 17:22:35','n_diff_pfx02',0,1,'team_submission_id,id'),('edxapp','submissions_submission','submissions_submissi_team_submission_id_40e6bc97_fk_submissio','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_submission','submissions_submissi_team_submission_id_40e6bc97_fk_submissio','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_submission','submissions_submission_created_at_01c4bf22','2020-07-23 17:22:35','n_diff_pfx01',0,1,'created_at'),('edxapp','submissions_submission','submissions_submission_created_at_01c4bf22','2020-07-23 17:22:35','n_diff_pfx02',0,1,'created_at,id'),('edxapp','submissions_submission','submissions_submission_created_at_01c4bf22','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_submission','submissions_submission_created_at_01c4bf22','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_submission','submissions_submission_submitted_at_9653124d','2020-07-23 17:22:35','n_diff_pfx01',0,1,'submitted_at'),('edxapp','submissions_submission','submissions_submission_submitted_at_9653124d','2020-07-23 17:22:35','n_diff_pfx02',0,1,'submitted_at,id'),('edxapp','submissions_submission','submissions_submission_submitted_at_9653124d','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_submission','submissions_submission_submitted_at_9653124d','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_submission','submissions_submission_uuid_210428ab','2020-07-23 17:22:35','n_diff_pfx01',0,1,'uuid'),('edxapp','submissions_submission','submissions_submission_uuid_210428ab','2020-07-23 17:22:35','n_diff_pfx02',0,1,'uuid,id'),('edxapp','submissions_submission','submissions_submission_uuid_210428ab','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_submission','submissions_submission_uuid_210428ab','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','submissions_teamsubmission','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubm_submitted_by_id_5a27162a_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'submitted_by_id'),('edxapp','submissions_teamsubmission','submissions_teamsubm_submitted_by_id_5a27162a_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'submitted_by_id,id'),('edxapp','submissions_teamsubmission','submissions_teamsubm_submitted_by_id_5a27162a_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubm_submitted_by_id_5a27162a_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_course_id_68c6908d','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_course_id_68c6908d','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_course_id_68c6908d','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_course_id_68c6908d','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_item_id_2bdcb26c','2020-07-23 17:22:35','n_diff_pfx01',0,1,'item_id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_item_id_2bdcb26c','2020-07-23 17:22:35','n_diff_pfx02',0,1,'item_id,id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_item_id_2bdcb26c','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_item_id_2bdcb26c','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_submitted_at_74e28ed6','2020-07-23 17:22:35','n_diff_pfx01',0,1,'submitted_at'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_submitted_at_74e28ed6','2020-07-23 17:22:35','n_diff_pfx02',0,1,'submitted_at,id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_submitted_at_74e28ed6','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_submitted_at_74e28ed6','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_team_id_5fda0e54','2020-07-23 17:22:35','n_diff_pfx01',0,1,'team_id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_team_id_5fda0e54','2020-07-23 17:22:35','n_diff_pfx02',0,1,'team_id,id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_team_id_5fda0e54','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_team_id_5fda0e54','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_uuid_4d1aef87','2020-07-23 17:22:35','n_diff_pfx01',0,1,'uuid'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_uuid_4d1aef87','2020-07-23 17:22:35','n_diff_pfx02',0,1,'uuid,id'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_uuid_4d1aef87','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','submissions_teamsubmission','submissions_teamsubmission_uuid_4d1aef87','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','super_csv_csvoperation','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','super_csv_csvoperation','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','super_csv_csvoperation','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_class_name_c8b5b4e2','2020-07-23 17:22:35','n_diff_pfx01',0,1,'class_name'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_class_name_c8b5b4e2','2020-07-23 17:22:35','n_diff_pfx02',0,1,'class_name,id'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_class_name_c8b5b4e2','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_class_name_c8b5b4e2','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_unique_id_08aa974e','2020-07-23 17:22:35','n_diff_pfx01',0,1,'unique_id'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_unique_id_08aa974e','2020-07-23 17:22:35','n_diff_pfx02',0,1,'unique_id,id'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_unique_id_08aa974e','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_unique_id_08aa974e','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','super_csv_csvoperation','super_csv_csvoperation_user_id_f87de59a_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyanswer','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','survey_surveyanswer','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyanswer','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_course_key_497ade68','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_key'),('edxapp','survey_surveyanswer','survey_surveyanswer_course_key_497ade68','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_key,id'),('edxapp','survey_surveyanswer','survey_surveyanswer_course_key_497ade68','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_course_key_497ade68','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_field_name_7123dc3d','2020-07-23 17:22:35','n_diff_pfx01',0,1,'field_name'),('edxapp','survey_surveyanswer','survey_surveyanswer_field_name_7123dc3d','2020-07-23 17:22:35','n_diff_pfx02',0,1,'field_name,id'),('edxapp','survey_surveyanswer','survey_surveyanswer_field_name_7123dc3d','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_field_name_7123dc3d','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'form_id'),('edxapp','survey_surveyanswer','survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'form_id,id'),('edxapp','survey_surveyanswer','survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_form_id_7f0df59f_fk_survey_surveyform_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_user_id_4c028d25_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','survey_surveyanswer','survey_surveyanswer_user_id_4c028d25_fk_auth_user_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','survey_surveyanswer','survey_surveyanswer_user_id_4c028d25_fk_auth_user_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyanswer','survey_surveyanswer_user_id_4c028d25_fk_auth_user_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyform','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','survey_surveyform','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyform','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','survey_surveyform','name','2020-07-23 17:22:35','n_diff_pfx01',0,1,'name'),('edxapp','survey_surveyform','name','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','survey_surveyform','name','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','system_wide_roles_systemwiderole','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','system_wide_roles_systemwiderole','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','system_wide_roles_systemwiderole','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','system_wide_roles_systemwiderole','name','2020-07-23 17:22:35','n_diff_pfx01',0,1,'name'),('edxapp','system_wide_roles_systemwiderole','name','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','system_wide_roles_systemwiderole','name','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','system_wide_roles_systemwideroleassignment','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','system_wide_roles_systemwideroleassignment','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','system_wide_roles_systemwideroleassignment','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_role_id_b553068b_fk_system_wi','2020-07-23 17:22:35','n_diff_pfx01',0,1,'role_id'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_role_id_b553068b_fk_system_wi','2020-07-23 17:22:35','n_diff_pfx02',0,1,'role_id,id'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_role_id_b553068b_fk_system_wi','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_role_id_b553068b_fk_system_wi','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_user_id_8ec7ad0d_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_user_id_8ec7ad0d_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,id'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_user_id_8ec7ad0d_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','system_wide_roles_systemwideroleassignment','system_wide_roles_sy_user_id_8ec7ad0d_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','tagging_tagavailablevalues','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','tagging_tagavailablevalues','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','tagging_tagavailablevalues','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','tagging_tagavailablevalues','tagging_tagavailable_category_id_9cc60a44_fk_tagging_t','2020-07-23 17:22:35','n_diff_pfx01',0,1,'category_id'),('edxapp','tagging_tagavailablevalues','tagging_tagavailable_category_id_9cc60a44_fk_tagging_t','2020-07-23 17:22:35','n_diff_pfx02',0,1,'category_id,id'),('edxapp','tagging_tagavailablevalues','tagging_tagavailable_category_id_9cc60a44_fk_tagging_t','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','tagging_tagavailablevalues','tagging_tagavailable_category_id_9cc60a44_fk_tagging_t','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','tagging_tagcategories','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','tagging_tagcategories','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','tagging_tagcategories','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','tagging_tagcategories','name','2020-07-23 17:22:35','n_diff_pfx01',0,1,'name'),('edxapp','tagging_tagcategories','name','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','tagging_tagcategories','name','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','teams_courseteam','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','discussion_topic_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'discussion_topic_id'),('edxapp','teams_courseteam','discussion_topic_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','discussion_topic_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','team_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'team_id'),('edxapp','teams_courseteam','team_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','team_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','teams_courseteam_course_id_1e7dbede','2020-07-23 17:22:35','n_diff_pfx01',0,1,'course_id'),('edxapp','teams_courseteam','teams_courseteam_course_id_1e7dbede','2020-07-23 17:22:35','n_diff_pfx02',0,1,'course_id,id'),('edxapp','teams_courseteam','teams_courseteam_course_id_1e7dbede','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','teams_courseteam_course_id_1e7dbede','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','teams_courseteam_last_activity_at_376db5d3','2020-07-23 17:22:35','n_diff_pfx01',0,1,'last_activity_at'),('edxapp','teams_courseteam','teams_courseteam_last_activity_at_376db5d3','2020-07-23 17:22:35','n_diff_pfx02',0,1,'last_activity_at,id'),('edxapp','teams_courseteam','teams_courseteam_last_activity_at_376db5d3','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','teams_courseteam_last_activity_at_376db5d3','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','teams_courseteam_name_3bef5f8c','2020-07-23 17:22:35','n_diff_pfx01',0,1,'name'),('edxapp','teams_courseteam','teams_courseteam_name_3bef5f8c','2020-07-23 17:22:35','n_diff_pfx02',0,1,'name,id'),('edxapp','teams_courseteam','teams_courseteam_name_3bef5f8c','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','teams_courseteam_name_3bef5f8c','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','teams_courseteam_team_size_d264574e','2020-07-23 17:22:35','n_diff_pfx01',0,1,'team_size'),('edxapp','teams_courseteam','teams_courseteam_team_size_d264574e','2020-07-23 17:22:35','n_diff_pfx02',0,1,'team_size,id'),('edxapp','teams_courseteam','teams_courseteam_team_size_d264574e','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','teams_courseteam_team_size_d264574e','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteam','teams_courseteam_topic_id_4d4f5d0d','2020-07-23 17:22:35','n_diff_pfx01',0,1,'topic_id'),('edxapp','teams_courseteam','teams_courseteam_topic_id_4d4f5d0d','2020-07-23 17:22:35','n_diff_pfx02',0,1,'topic_id,id'),('edxapp','teams_courseteam','teams_courseteam_topic_id_4d4f5d0d','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteam','teams_courseteam_topic_id_4d4f5d0d','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteammembership','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','teams_courseteammembership','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteammembership','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteammembership','teams_courseteammemb_team_id_b021eccd_fk_teams_cou','2020-07-23 17:22:35','n_diff_pfx01',0,1,'team_id'),('edxapp','teams_courseteammembership','teams_courseteammemb_team_id_b021eccd_fk_teams_cou','2020-07-23 17:22:35','n_diff_pfx02',0,1,'team_id,id'),('edxapp','teams_courseteammembership','teams_courseteammemb_team_id_b021eccd_fk_teams_cou','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteammembership','teams_courseteammemb_team_id_b021eccd_fk_teams_cou','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','teams_courseteammembership','teams_courseteammembership_user_id_team_id_aa45a20c_uniq','2020-07-23 17:22:35','n_diff_pfx01',0,1,'user_id'),('edxapp','teams_courseteammembership','teams_courseteammembership_user_id_team_id_aa45a20c_uniq','2020-07-23 17:22:35','n_diff_pfx02',0,1,'user_id,team_id'),('edxapp','teams_courseteammembership','teams_courseteammembership_user_id_team_id_aa45a20c_uniq','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','teams_courseteammembership','teams_courseteammembership_user_id_team_id_aa45a20c_uniq','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','theming_sitetheme','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','theming_sitetheme','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','theming_sitetheme','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','theming_sitetheme','theming_sitetheme_site_id_fe93d039_fk_django_site_id','2020-07-23 17:22:35','n_diff_pfx01',0,1,'site_id'),('edxapp','theming_sitetheme','theming_sitetheme_site_id_fe93d039_fk_django_site_id','2020-07-23 17:22:35','n_diff_pfx02',0,1,'site_id,id'),('edxapp','theming_sitetheme','theming_sitetheme_site_id_fe93d039_fk_django_site_id','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','theming_sitetheme','theming_sitetheme_site_id_fe93d039_fk_django_site_id','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','PRIMARY','2020-07-23 17:22:35','n_diff_pfx01',0,1,'id'),('edxapp','third_party_auth_ltiproviderconfig','PRIMARY','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','PRIMARY','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user','2020-07-23 17:22:35','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_changed_by_id_7b39c829_fk_auth_user','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_site_id_c8442a80_fk_django_si','2020-07-23 17:22:35','n_diff_pfx01',0,1,'site_id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_site_id_c8442a80_fk_django_si','2020-07-23 17:22:35','n_diff_pfx02',0,1,'site_id,id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_site_id_c8442a80_fk_django_si','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_lti_site_id_c8442a80_fk_django_si','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_lti_hostname_540ce676','2020-07-23 17:22:35','n_diff_pfx01',0,1,'lti_hostname'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_lti_hostname_540ce676','2020-07-23 17:22:35','n_diff_pfx02',0,1,'lti_hostname,id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_lti_hostname_540ce676','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_lti_hostname_540ce676','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_organization_id_7494c417','2020-07-23 17:22:35','n_diff_pfx01',0,1,'organization_id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_organization_id_7494c417','2020-07-23 17:22:35','n_diff_pfx02',0,1,'organization_id,id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_organization_id_7494c417','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_organization_id_7494c417','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_slug_9cd23a79','2020-07-23 17:22:35','n_diff_pfx01',0,1,'slug'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_slug_9cd23a79','2020-07-23 17:22:35','n_diff_pfx02',0,1,'slug,id'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_slug_9cd23a79','2020-07-23 17:22:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_ltiproviderconfig','third_party_auth_ltiproviderconfig_slug_9cd23a79','2020-07-23 17:22:35','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','third_party_auth_oauth2providerconfig','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_changed_by_id_55219296_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_changed_by_id_55219296_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_changed_by_id_55219296_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_changed_by_id_55219296_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_site_id_a4ae3e66_fk_django_si','2020-07-23 17:22:36','n_diff_pfx01',0,1,'site_id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_site_id_a4ae3e66_fk_django_si','2020-07-23 17:22:36','n_diff_pfx02',0,1,'site_id,id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_site_id_a4ae3e66_fk_django_si','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oau_site_id_a4ae3e66_fk_django_si','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_backend_name_0c14d294','2020-07-23 17:22:36','n_diff_pfx01',0,1,'backend_name'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_backend_name_0c14d294','2020-07-23 17:22:36','n_diff_pfx02',0,1,'backend_name,id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_backend_name_0c14d294','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_backend_name_0c14d294','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_organization_id_cc8874ba','2020-07-23 17:22:36','n_diff_pfx01',0,1,'organization_id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_organization_id_cc8874ba','2020-07-23 17:22:36','n_diff_pfx02',0,1,'organization_id,id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_organization_id_cc8874ba','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_organization_id_cc8874ba','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_slug_226038d8','2020-07-23 17:22:36','n_diff_pfx01',0,1,'slug'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_slug_226038d8','2020-07-23 17:22:36','n_diff_pfx02',0,1,'slug,id'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_slug_226038d8','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_oauth2providerconfig','third_party_auth_oauth2providerconfig_slug_226038d8','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlconfiguration','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','third_party_auth_samlconfiguration','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlconfiguration','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_changed_by_id_c9343fb9_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_site_id_8fab01ee_fk_django_si','2020-07-23 17:22:36','n_diff_pfx01',0,1,'site_id'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_site_id_8fab01ee_fk_django_si','2020-07-23 17:22:36','n_diff_pfx02',0,1,'site_id,id'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_site_id_8fab01ee_fk_django_si','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_sam_site_id_8fab01ee_fk_django_si','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_samlconfiguration_slug_f9008e26','2020-07-23 17:22:36','n_diff_pfx01',0,1,'slug'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_samlconfiguration_slug_f9008e26','2020-07-23 17:22:36','n_diff_pfx02',0,1,'slug,id'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_samlconfiguration_slug_f9008e26','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlconfiguration','third_party_auth_samlconfiguration_slug_f9008e26','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderconfig','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','third_party_auth_samlproviderconfig','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderconfig','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_changed_by_id_4c8fa8c0_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par','2020-07-23 17:22:36','n_diff_pfx01',0,1,'saml_configuration_id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par','2020-07-23 17:22:36','n_diff_pfx02',0,1,'saml_configuration_id,id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_saml_configuration_i_eeb9fe72_fk_third_par','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_site_id_b7e2af73_fk_django_si','2020-07-23 17:22:36','n_diff_pfx01',0,1,'site_id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_site_id_b7e2af73_fk_django_si','2020-07-23 17:22:36','n_diff_pfx02',0,1,'site_id,id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_site_id_b7e2af73_fk_django_si','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_sam_site_id_b7e2af73_fk_django_si','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_organization_id_8a7f5596','2020-07-23 17:22:36','n_diff_pfx01',0,1,'organization_id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_organization_id_8a7f5596','2020-07-23 17:22:36','n_diff_pfx02',0,1,'organization_id,id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_organization_id_8a7f5596','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_organization_id_8a7f5596','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_slug_95883dea','2020-07-23 17:22:36','n_diff_pfx01',0,1,'slug'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_slug_95883dea','2020-07-23 17:22:36','n_diff_pfx02',0,1,'slug,id'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_slug_95883dea','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderconfig','third_party_auth_samlproviderconfig_slug_95883dea','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderdata','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','third_party_auth_samlproviderdata','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderdata','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_entity_id_b163c6fc','2020-07-23 17:22:36','n_diff_pfx01',0,1,'entity_id'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_entity_id_b163c6fc','2020-07-23 17:22:36','n_diff_pfx02',0,1,'entity_id,id'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_entity_id_b163c6fc','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_entity_id_b163c6fc','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_expires_at_eaf594c7','2020-07-23 17:22:36','n_diff_pfx01',0,1,'expires_at'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_expires_at_eaf594c7','2020-07-23 17:22:36','n_diff_pfx02',0,1,'expires_at,id'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_expires_at_eaf594c7','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_expires_at_eaf594c7','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_fetched_at_2286ac32','2020-07-23 17:22:36','n_diff_pfx01',0,1,'fetched_at'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_fetched_at_2286ac32','2020-07-23 17:22:36','n_diff_pfx02',0,1,'fetched_at,id'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_fetched_at_2286ac32','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','third_party_auth_samlproviderdata','third_party_auth_samlproviderdata_fetched_at_2286ac32','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','thumbnail_kvstore','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'key'),('edxapp','thumbnail_kvstore','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','thumbnail_kvstore','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_retirementstate','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_retirementstate','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_retirementstate','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_retirementstate','state_execution_order','2020-07-23 17:22:36','n_diff_pfx01',0,1,'state_execution_order'),('edxapp','user_api_retirementstate','state_execution_order','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_retirementstate','state_execution_order','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_retirementstate','state_name','2020-07-23 17:22:36','n_diff_pfx01',0,1,'state_name'),('edxapp','user_api_retirementstate','state_name','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_retirementstate','state_name','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_retirementstate','user_api_retirementstate_is_dead_end_state_62eaf9b7','2020-07-23 17:22:36','n_diff_pfx01',0,1,'is_dead_end_state'),('edxapp','user_api_retirementstate','user_api_retirementstate_is_dead_end_state_62eaf9b7','2020-07-23 17:22:36','n_diff_pfx02',0,1,'is_dead_end_state,id'),('edxapp','user_api_retirementstate','user_api_retirementstate_is_dead_end_state_62eaf9b7','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_retirementstate','user_api_retirementstate_is_dead_end_state_62eaf9b7','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_usercoursetag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_usercoursetag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_usercoursetag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_course_id_a336d583','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_course_id_a336d583','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_course_id_a336d583','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_course_id_a336d583','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_key_d6420575','2020-07-23 17:22:36','n_diff_pfx01',0,1,'key'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_key_d6420575','2020-07-23 17:22:36','n_diff_pfx02',0,1,'key,id'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_key_d6420575','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_key_d6420575','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq','2020-07-23 17:22:36','n_diff_pfx03',0,1,'user_id,course_id,key'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_usercoursetag','user_api_usercoursetag_user_id_course_id_key_d73150ab_uniq','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userorgtag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_userorgtag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userorgtag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userorgtag','user_api_userorgtag_key_b1f2bafe','2020-07-23 17:22:36','n_diff_pfx01',0,1,'key'),('edxapp','user_api_userorgtag','user_api_userorgtag_key_b1f2bafe','2020-07-23 17:22:36','n_diff_pfx02',0,1,'key,id'),('edxapp','user_api_userorgtag','user_api_userorgtag_key_b1f2bafe','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userorgtag','user_api_userorgtag_key_b1f2bafe','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userorgtag','user_api_userorgtag_org_41caa15c','2020-07-23 17:22:36','n_diff_pfx01',0,1,'org'),('edxapp','user_api_userorgtag','user_api_userorgtag_org_41caa15c','2020-07-23 17:22:36','n_diff_pfx02',0,1,'org,id'),('edxapp','user_api_userorgtag','user_api_userorgtag_org_41caa15c','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userorgtag','user_api_userorgtag_org_41caa15c','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userorgtag','user_api_userorgtag_user_id_org_key_d4df9ac1_uniq','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_api_userorgtag','user_api_userorgtag_user_id_org_key_d4df9ac1_uniq','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,org'),('edxapp','user_api_userorgtag','user_api_userorgtag_user_id_org_key_d4df9ac1_uniq','2020-07-23 17:22:36','n_diff_pfx03',0,1,'user_id,org,key'),('edxapp','user_api_userorgtag','user_api_userorgtag_user_id_org_key_d4df9ac1_uniq','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userorgtag','user_api_userorgtag_user_id_org_key_d4df9ac1_uniq','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userpreference','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_userpreference','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userpreference','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userpreference','user_api_userpreference_key_9c8a8f6b','2020-07-23 17:22:36','n_diff_pfx01',0,1,'key'),('edxapp','user_api_userpreference','user_api_userpreference_key_9c8a8f6b','2020-07-23 17:22:36','n_diff_pfx02',0,1,'key,id'),('edxapp','user_api_userpreference','user_api_userpreference_key_9c8a8f6b','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userpreference','user_api_userpreference_key_9c8a8f6b','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userpreference','user_api_userpreference_user_id_key_17924c0d_uniq','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_api_userpreference','user_api_userpreference_user_id_key_17924c0d_uniq','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,key'),('edxapp','user_api_userpreference','user_api_userpreference_user_id_key_17924c0d_uniq','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userpreference','user_api_userpreference_user_id_key_17924c0d_uniq','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_userretirementpartnerreportingstatus','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_email_aaab0bc9','2020-07-23 17:22:36','n_diff_pfx01',0,1,'original_email'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_email_aaab0bc9','2020-07-23 17:22:36','n_diff_pfx02',0,1,'original_email,id'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_email_aaab0bc9','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_email_aaab0bc9','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_name_9aedd7f0','2020-07-23 17:22:36','n_diff_pfx01',0,1,'original_name'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_name_9aedd7f0','2020-07-23 17:22:36','n_diff_pfx02',0,1,'original_name,id'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_name_9aedd7f0','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_name_9aedd7f0','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_username_6bf5d3d1','2020-07-23 17:22:36','n_diff_pfx01',0,1,'original_username'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_username_6bf5d3d1','2020-07-23 17:22:36','n_diff_pfx02',0,1,'original_username,id'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_username_6bf5d3d1','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_api_userretirementpart_original_username_6bf5d3d1','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_api_userretirementpartnerreportingstatus','user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementpartnerreportingstatus','user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementrequest','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_userretirementrequest','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementrequest','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementrequest','user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_api_userretirementrequest','user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementrequest','user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_api_userretirementstatus','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirem_current_state_id_e37bb094_fk_user_api_','2020-07-23 17:22:36','n_diff_pfx01',0,1,'current_state_id'),('edxapp','user_api_userretirementstatus','user_api_userretirem_current_state_id_e37bb094_fk_user_api_','2020-07-23 17:22:36','n_diff_pfx02',0,1,'current_state_id,id'),('edxapp','user_api_userretirementstatus','user_api_userretirem_current_state_id_e37bb094_fk_user_api_','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirem_current_state_id_e37bb094_fk_user_api_','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirem_last_state_id_359e74cd_fk_user_api_','2020-07-23 17:22:36','n_diff_pfx01',0,1,'last_state_id'),('edxapp','user_api_userretirementstatus','user_api_userretirem_last_state_id_359e74cd_fk_user_api_','2020-07-23 17:22:36','n_diff_pfx02',0,1,'last_state_id,id'),('edxapp','user_api_userretirementstatus','user_api_userretirem_last_state_id_359e74cd_fk_user_api_','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirem_last_state_id_359e74cd_fk_user_api_','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_email_a7203bff','2020-07-23 17:22:36','n_diff_pfx01',0,1,'original_email'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_email_a7203bff','2020-07-23 17:22:36','n_diff_pfx02',0,1,'original_email,id'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_email_a7203bff','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_email_a7203bff','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_name_17c2846b','2020-07-23 17:22:36','n_diff_pfx01',0,1,'original_name'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_name_17c2846b','2020-07-23 17:22:36','n_diff_pfx02',0,1,'original_name,id'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_name_17c2846b','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_name_17c2846b','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_username_fa5d4a21','2020-07-23 17:22:36','n_diff_pfx01',0,1,'original_username'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_username_fa5d4a21','2020-07-23 17:22:36','n_diff_pfx02',0,1,'original_username,id'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_username_fa5d4a21','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_original_username_fa5d4a21','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_email_ee7c1579','2020-07-23 17:22:36','n_diff_pfx01',0,1,'retired_email'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_email_ee7c1579','2020-07-23 17:22:36','n_diff_pfx02',0,1,'retired_email,id'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_email_ee7c1579','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_email_ee7c1579','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_username_52067a53','2020-07-23 17:22:36','n_diff_pfx01',0,1,'retired_username'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_username_52067a53','2020-07-23 17:22:36','n_diff_pfx02',0,1,'retired_username,id'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_username_52067a53','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_api_userretirementstatus_retired_username_52067a53','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_api_userretirementstatus','user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_api_userretirementstatus','user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_api_userretirementstatus','user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskartifact','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_tasks_usertaskartifact','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskartifact','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskartifact','user_tasks_usertaska_status_id_641f31be_fk_user_task','2020-07-23 17:22:36','n_diff_pfx01',0,1,'status_id'),('edxapp','user_tasks_usertaskartifact','user_tasks_usertaska_status_id_641f31be_fk_user_task','2020-07-23 17:22:36','n_diff_pfx02',0,1,'status_id,id'),('edxapp','user_tasks_usertaskartifact','user_tasks_usertaska_status_id_641f31be_fk_user_task','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskartifact','user_tasks_usertaska_status_id_641f31be_fk_user_task','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskartifact','uuid','2020-07-23 17:22:36','n_diff_pfx01',0,1,'uuid'),('edxapp','user_tasks_usertaskartifact','uuid','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskartifact','uuid','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskstatus','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','user_tasks_usertaskstatus','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskstatus','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskstatus','task_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'task_id'),('edxapp','user_tasks_usertaskstatus','task_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskstatus','task_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertasks_parent_id_5009f727_fk_user_task','2020-07-23 17:22:36','n_diff_pfx01',0,1,'parent_id'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertasks_parent_id_5009f727_fk_user_task','2020-07-23 17:22:36','n_diff_pfx02',0,1,'parent_id,id'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertasks_parent_id_5009f727_fk_user_task','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertasks_parent_id_5009f727_fk_user_task','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,id'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskstatus','user_tasks_usertaskstatus_user_id_5bec3d4a_fk_auth_user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','user_tasks_usertaskstatus','uuid','2020-07-23 17:22:36','n_diff_pfx01',0,1,'uuid'),('edxapp','user_tasks_usertaskstatus','uuid','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','user_tasks_usertaskstatus','uuid','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','util_ratelimitconfiguration','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','util_ratelimitconfiguration','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','util_ratelimitconfiguration','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','util_ratelimitconfiguration','util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','util_ratelimitconfiguration','util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','util_ratelimitconfiguration','util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','util_ratelimitconfiguration','util_ratelimitconfig_changed_by_id_794ac118_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','verified_track_conte_changed_by_id_29944bff_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','verified_track_conte_changed_by_id_29944bff_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','verified_track_conte_changed_by_id_29944bff_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','verified_track_conte_changed_by_id_29944bff_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verified_track_content_verifiedtrackcohortedcourse','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verified_track_content_verifiedtrackcohortedcourse','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verified_track_content_verifiedtrackcohortedcourse','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verified_track_content_verifiedtrackcohortedcourse','course_key','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_key'),('edxapp','verified_track_content_verifiedtrackcohortedcourse','course_key','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verified_track_content_verifiedtrackcohortedcourse','course_key','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_manualverification','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verify_student_manualverification','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_manualverification','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_manualverification','verify_student_manua_user_id_f38b72b4_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','verify_student_manualverification','verify_student_manua_user_id_f38b72b4_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,id'),('edxapp','verify_student_manualverification','verify_student_manua_user_id_f38b72b4_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_manualverification','verify_student_manua_user_id_f38b72b4_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_manualverification','verify_student_manualverification_created_at_e4e3731a','2020-07-23 17:22:36','n_diff_pfx01',0,1,'created_at'),('edxapp','verify_student_manualverification','verify_student_manualverification_created_at_e4e3731a','2020-07-23 17:22:36','n_diff_pfx02',0,1,'created_at,id'),('edxapp','verify_student_manualverification','verify_student_manualverification_created_at_e4e3731a','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_manualverification','verify_student_manualverification_created_at_e4e3731a','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_manualverification','verify_student_manualverification_updated_at_1a350690','2020-07-23 17:22:36','n_diff_pfx01',0,1,'updated_at'),('edxapp','verify_student_manualverification','verify_student_manualverification_updated_at_1a350690','2020-07-23 17:22:36','n_diff_pfx02',0,1,'updated_at,id'),('edxapp','verify_student_manualverification','verify_student_manualverification_updated_at_1a350690','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_manualverification','verify_student_manualverification_updated_at_1a350690','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verify_student_softwaresecurephotoverification','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st','2020-07-23 17:22:36','n_diff_pfx01',0,1,'copy_id_photo_from_id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st','2020-07-23 17:22:36','n_diff_pfx02',0,1,'copy_id_photo_from_id,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_copy_id_photo_from_i_059e40b6_fk_verify_st','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'reviewing_user_id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'reviewing_user_id,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_reviewing_user_id_55fd003a_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_user_id_66ca4f6d_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_user_id_66ca4f6d_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_user_id_66ca4f6d_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softw_user_id_66ca4f6d_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_created_at_566f779f','2020-07-23 17:22:36','n_diff_pfx01',0,1,'created_at'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_created_at_566f779f','2020-07-23 17:22:36','n_diff_pfx02',0,1,'created_at,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_created_at_566f779f','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_created_at_566f779f','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_date_5c297927','2020-07-23 17:22:36','n_diff_pfx01',0,1,'expiry_date'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_date_5c297927','2020-07-23 17:22:36','n_diff_pfx02',0,1,'expiry_date,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_date_5c297927','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_date_5c297927','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_email_date_6ae6d6c9','2020-07-23 17:22:36','n_diff_pfx01',0,1,'expiry_email_date'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_email_date_6ae6d6c9','2020-07-23 17:22:36','n_diff_pfx02',0,1,'expiry_email_date,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_email_date_6ae6d6c9','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_expiry_email_date_6ae6d6c9','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_receipt_id_2160ce88','2020-07-23 17:22:36','n_diff_pfx01',0,1,'receipt_id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_receipt_id_2160ce88','2020-07-23 17:22:36','n_diff_pfx02',0,1,'receipt_id,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_receipt_id_2160ce88','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_receipt_id_2160ce88','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_submitted_at_f3d5cd03','2020-07-23 17:22:36','n_diff_pfx01',0,1,'submitted_at'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_submitted_at_f3d5cd03','2020-07-23 17:22:36','n_diff_pfx02',0,1,'submitted_at,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_submitted_at_f3d5cd03','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_submitted_at_f3d5cd03','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_updated_at_8f5cf2d7','2020-07-23 17:22:36','n_diff_pfx01',0,1,'updated_at'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_updated_at_8f5cf2d7','2020-07-23 17:22:36','n_diff_pfx02',0,1,'updated_at,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_updated_at_8f5cf2d7','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecu_updated_at_8f5cf2d7','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecurephotoverification_display_287287f8','2020-07-23 17:22:36','n_diff_pfx01',0,1,'display'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecurephotoverification_display_287287f8','2020-07-23 17:22:36','n_diff_pfx02',0,1,'display,id'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecurephotoverification_display_287287f8','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_softwaresecurephotoverification','verify_student_softwaresecurephotoverification_display_287287f8','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_ssoverification','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verify_student_ssoverification','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_ssoverification','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_created_at_6381e5a4','2020-07-23 17:22:36','n_diff_pfx01',0,1,'created_at'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_created_at_6381e5a4','2020-07-23 17:22:36','n_diff_pfx02',0,1,'created_at,id'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_created_at_6381e5a4','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_created_at_6381e5a4','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_identity_provider_slug_56c53eb6','2020-07-23 17:22:36','n_diff_pfx01',0,1,'identity_provider_slug'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_identity_provider_slug_56c53eb6','2020-07-23 17:22:36','n_diff_pfx02',0,1,'identity_provider_slug,id'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_identity_provider_slug_56c53eb6','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_identity_provider_slug_56c53eb6','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_updated_at_9d6cc952','2020-07-23 17:22:36','n_diff_pfx01',0,1,'updated_at'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_updated_at_9d6cc952','2020-07-23 17:22:36','n_diff_pfx02',0,1,'updated_at,id'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_updated_at_9d6cc952','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_updated_at_9d6cc952','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,id'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_ssoverification','verify_student_ssoverification_user_id_5e6186eb_fk_auth_user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_sspverificationretryconfig','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verify_student_sspverificationretryconfig','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_sspverificationretryconfig','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_sspverificationretryconfig','verify_student_sspve_changed_by_id_c035fbe5_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','verify_student_sspverificationretryconfig','verify_student_sspve_changed_by_id_c035fbe5_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','verify_student_sspverificationretryconfig','verify_student_sspve_changed_by_id_c035fbe5_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_sspverificationretryconfig','verify_student_sspve_changed_by_id_c035fbe5_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_verificationdeadline','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','verify_student_verificationdeadline','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_verificationdeadline','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','verify_student_verificationdeadline','course_key','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_key'),('edxapp','verify_student_verificationdeadline','course_key','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','verify_student_verificationdeadline','course_key','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_coursehlsplaybackenabledflag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_coursehlsplaybackenabledflag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_coursehlsplaybackenabledflag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_courseh_changed_by_id_fa268d53_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_courseh_changed_by_id_fa268d53_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_courseh_changed_by_id_fa268d53_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_courseh_changed_by_id_fa268d53_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_coursehlsplaybackenabledflag_course_id_c0fcaead','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_coursehlsplaybackenabledflag_course_id_c0fcaead','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_coursehlsplaybackenabledflag_course_id_c0fcaead','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_coursehlsplaybackenabledflag','video_config_coursehlsplaybackenabledflag_course_id_c0fcaead','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_coursevideotranscriptenabledflag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_coursevideotranscriptenabledflag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_coursevideotranscriptenabledflag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursev_changed_by_id_3bdcf2a6_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursevideotranscriptenabledflag_course_id_fcfacf5b','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursevideotranscriptenabledflag_course_id_fcfacf5b','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursevideotranscriptenabledflag_course_id_fcfacf5b','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_coursevideotranscriptenabledflag','video_config_coursevideotranscriptenabledflag_course_id_fcfacf5b','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_courseyoutubeblockedflag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_courseyoutubeblockedflag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_courseyoutubeblockedflag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_courseyoutubeblockedflag','video_config_coursey_changed_by_id_3496713f_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_courseyoutubeblockedflag','video_config_coursey_changed_by_id_3496713f_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_courseyoutubeblockedflag','video_config_coursey_changed_by_id_3496713f_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_courseyoutubeblockedflag','video_config_coursey_changed_by_id_3496713f_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_courseyoutubeblockedflag','video_config_courseyoutubeblockedflag_course_id_4c9395c6','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_config_courseyoutubeblockedflag','video_config_courseyoutubeblockedflag_course_id_4c9395c6','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','video_config_courseyoutubeblockedflag','video_config_courseyoutubeblockedflag_course_id_4c9395c6','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_courseyoutubeblockedflag','video_config_courseyoutubeblockedflag_course_id_4c9395c6','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_hlsplaybackenabledflag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_hlsplaybackenabledflag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_hlsplaybackenabledflag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_hlsplaybackenabledflag','video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_hlsplaybackenabledflag','video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_hlsplaybackenabledflag','video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_hlsplaybackenabledflag','video_config_hlsplay_changed_by_id_d93f2234_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_migrationenqueuedcourse','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_config_migrationenqueuedcourse','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_migrationenqueuedcourse','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_transcriptmigrationsetting','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_transcriptmigrationsetting','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_transcriptmigrationsetting','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_transcriptmigrationsetting','video_config_transcr_changed_by_id_4c7817bd_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_transcriptmigrationsetting','video_config_transcr_changed_by_id_4c7817bd_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_transcriptmigrationsetting','video_config_transcr_changed_by_id_4c7817bd_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_transcriptmigrationsetting','video_config_transcr_changed_by_id_4c7817bd_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_updatedcoursevideos','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_updatedcoursevideos','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_updatedcoursevideos','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcour_course_id_edx_video_id_455a73ff_uniq','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcour_course_id_edx_video_id_455a73ff_uniq','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,edx_video_id'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcour_course_id_edx_video_id_455a73ff_uniq','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcour_course_id_edx_video_id_455a73ff_uniq','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcoursevideos_course_id_e72703a3','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcoursevideos_course_id_e72703a3','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcoursevideos_course_id_e72703a3','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_updatedcoursevideos','video_config_updatedcoursevideos_course_id_e72703a3','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_videothumbnailsetting','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_videothumbnailsetting','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_videothumbnailsetting','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_videothumbnailsetting','video_config_videoth_changed_by_id_9385a0b2_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_videothumbnailsetting','video_config_videoth_changed_by_id_9385a0b2_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_videothumbnailsetting','video_config_videoth_changed_by_id_9385a0b2_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_videothumbnailsetting','video_config_videoth_changed_by_id_9385a0b2_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_videotranscriptenabledflag','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_config_videotranscriptenabledflag','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_videotranscriptenabledflag','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_config_videotranscriptenabledflag','video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_config_videotranscriptenabledflag','video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_config_videotranscriptenabledflag','video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_config_videotranscriptenabledflag','video_config_videotr_changed_by_id_9f0afd7f_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_cours_changed_by_id_84ec1a58_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_coursevideou_course_id_9fd1b18b','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_coursevideou_course_id_9fd1b18b','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_coursevideou_course_id_9fd1b18b','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','video_pipeline_coursevideou_course_id_9fd1b18b','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_vempipelineintegration','PRIMARY','2020-07-23 17:24:43','n_diff_pfx01',0,1,'id'),('edxapp','video_pipeline_vempipelineintegration','PRIMARY','2020-07-23 17:24:43','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_vempipelineintegration','PRIMARY','2020-07-23 17:24:43','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_vempipelineintegration','video_pipeline_vempi_changed_by_id_cadc1895_fk_auth_user','2020-07-23 17:24:43','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_pipeline_vempipelineintegration','video_pipeline_vempi_changed_by_id_cadc1895_fk_auth_user','2020-07-23 17:24:43','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_pipeline_vempipelineintegration','video_pipeline_vempi_changed_by_id_cadc1895_fk_auth_user','2020-07-23 17:24:43','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_vempipelineintegration','video_pipeline_vempi_changed_by_id_cadc1895_fk_auth_user','2020-07-23 17:24:43','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_videopipelineintegration','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_pipeline_videopipelineintegration','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_videopipelineintegration','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_videopipelineintegration','video_pipeline_video_changed_by_id_b169f329_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_pipeline_videopipelineintegration','video_pipeline_video_changed_by_id_b169f329_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_pipeline_videopipelineintegration','video_pipeline_video_changed_by_id_b169f329_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_videopipelineintegration','video_pipeline_video_changed_by_id_b169f329_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_videouploadsenabledbydefault','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','video_pipeline_videouploadsenabledbydefault','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_videouploadsenabledbydefault','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','video_pipeline_videouploadsenabledbydefault','video_pipeline_video_changed_by_id_3d066822_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','video_pipeline_videouploadsenabledbydefault','video_pipeline_video_changed_by_id_3d066822_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','video_pipeline_videouploadsenabledbydefault','video_pipeline_video_changed_by_id_3d066822_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','video_pipeline_videouploadsenabledbydefault','video_pipeline_video_changed_by_id_3d066822_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag','PRIMARY','2020-07-23 17:24:44','n_diff_pfx01',3,1,'id'),('edxapp','waffle_flag','PRIMARY','2020-07-23 17:24:44','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag','PRIMARY','2020-07-23 17:24:44','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag','name','2020-07-23 17:24:44','n_diff_pfx01',3,1,'name'),('edxapp','waffle_flag','name','2020-07-23 17:24:44','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag','name','2020-07-23 17:24:44','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag','waffle_flag_created_4a6e8cef','2020-07-23 17:24:44','n_diff_pfx01',3,1,'created'),('edxapp','waffle_flag','waffle_flag_created_4a6e8cef','2020-07-23 17:24:44','n_diff_pfx02',3,1,'created,id'),('edxapp','waffle_flag','waffle_flag_created_4a6e8cef','2020-07-23 17:24:44','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag','waffle_flag_created_4a6e8cef','2020-07-23 17:24:44','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag_groups','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','waffle_flag_groups','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag_groups','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag_groups','waffle_flag_groups_flag_id_group_id_8ba0c71b_uniq','2020-07-23 17:22:36','n_diff_pfx01',0,1,'flag_id'),('edxapp','waffle_flag_groups','waffle_flag_groups_flag_id_group_id_8ba0c71b_uniq','2020-07-23 17:22:36','n_diff_pfx02',0,1,'flag_id,group_id'),('edxapp','waffle_flag_groups','waffle_flag_groups_flag_id_group_id_8ba0c71b_uniq','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag_groups','waffle_flag_groups_flag_id_group_id_8ba0c71b_uniq','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag_groups','waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'group_id'),('edxapp','waffle_flag_groups','waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id','2020-07-23 17:22:36','n_diff_pfx02',0,1,'group_id,id'),('edxapp','waffle_flag_groups','waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag_groups','waffle_flag_groups_group_id_a97c4f66_fk_auth_group_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag_users','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','waffle_flag_users','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag_users','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag_users','waffle_flag_users_flag_id_user_id_b46f76b0_uniq','2020-07-23 17:22:36','n_diff_pfx01',0,1,'flag_id'),('edxapp','waffle_flag_users','waffle_flag_users_flag_id_user_id_b46f76b0_uniq','2020-07-23 17:22:36','n_diff_pfx02',0,1,'flag_id,user_id'),('edxapp','waffle_flag_users','waffle_flag_users_flag_id_user_id_b46f76b0_uniq','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag_users','waffle_flag_users_flag_id_user_id_b46f76b0_uniq','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_flag_users','waffle_flag_users_user_id_8026df9b_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'user_id'),('edxapp','waffle_flag_users','waffle_flag_users_user_id_8026df9b_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx02',0,1,'user_id,id'),('edxapp','waffle_flag_users','waffle_flag_users_user_id_8026df9b_fk_auth_user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_flag_users','waffle_flag_users_user_id_8026df9b_fk_auth_user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_sample','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','waffle_sample','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_sample','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_sample','name','2020-07-23 17:22:36','n_diff_pfx01',0,1,'name'),('edxapp','waffle_sample','name','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_sample','name','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_sample','waffle_sample_created_76198bd5','2020-07-23 17:22:36','n_diff_pfx01',0,1,'created'),('edxapp','waffle_sample','waffle_sample_created_76198bd5','2020-07-23 17:22:36','n_diff_pfx02',0,1,'created,id'),('edxapp','waffle_sample','waffle_sample_created_76198bd5','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_sample','waffle_sample_created_76198bd5','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_switch','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','waffle_switch','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_switch','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_switch','name','2020-07-23 17:22:36','n_diff_pfx01',0,1,'name'),('edxapp','waffle_switch','name','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_switch','name','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_switch','waffle_switch_created_c004e77e','2020-07-23 17:22:36','n_diff_pfx01',0,1,'created'),('edxapp','waffle_switch','waffle_switch_created_c004e77e','2020-07-23 17:22:36','n_diff_pfx02',0,1,'created,id'),('edxapp','waffle_switch','waffle_switch_created_c004e77e','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_switch','waffle_switch_created_c004e77e','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user','2020-07-23 17:22:36','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_wafflef_changed_by_id_28429bf5_fk_auth_user','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_course_id_e94a9fc3','2020-07-23 17:22:36','n_diff_pfx01',0,1,'course_id'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_course_id_e94a9fc3','2020-07-23 17:22:36','n_diff_pfx02',0,1,'course_id,id'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_course_id_e94a9fc3','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_course_id_e94a9fc3','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_waffle_flag_d261aad1','2020-07-23 17:22:36','n_diff_pfx01',0,1,'waffle_flag'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_waffle_flag_d261aad1','2020-07-23 17:22:36','n_diff_pfx02',0,1,'waffle_flag,id'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_waffle_flag_d261aad1','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','waffle_utils_waffleflagcourseoverridemodel','waffle_utils_waffleflagcourseoverridemodel_waffle_flag_d261aad1','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_article','PRIMARY','2020-07-23 17:22:36','n_diff_pfx01',0,1,'id'),('edxapp','wiki_article','PRIMARY','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_article','PRIMARY','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_article','current_revision_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'current_revision_id'),('edxapp','wiki_article','current_revision_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_article','current_revision_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_article','wiki_article_group_id_bf035c83_fk_auth_group_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'group_id'),('edxapp','wiki_article','wiki_article_group_id_bf035c83_fk_auth_group_id','2020-07-23 17:22:36','n_diff_pfx02',0,1,'group_id,id'),('edxapp','wiki_article','wiki_article_group_id_bf035c83_fk_auth_group_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_article','wiki_article_group_id_bf035c83_fk_auth_group_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_article','wiki_article_owner_id_956bc94a_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx01',0,1,'owner_id'),('edxapp','wiki_article','wiki_article_owner_id_956bc94a_fk_auth_user_id','2020-07-23 17:22:36','n_diff_pfx02',0,1,'owner_id,id'),('edxapp','wiki_article','wiki_article_owner_id_956bc94a_fk_auth_user_id','2020-07-23 17:22:36','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_article','wiki_article_owner_id_956bc94a_fk_auth_user_id','2020-07-23 17:22:36','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articleforobject','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','wiki_articleforobject','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articleforobject','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articleforobject','wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'article_id'),('edxapp','wiki_articleforobject','wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id','2020-07-23 17:22:37','n_diff_pfx02',0,1,'article_id,id'),('edxapp','wiki_articleforobject','wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articleforobject','wiki_articleforobject_article_id_7d67d809_fk_wiki_article_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articleforobject','wiki_articleforobject_content_type_id_object_id_046be756_uniq','2020-07-23 17:22:37','n_diff_pfx01',0,1,'content_type_id'),('edxapp','wiki_articleforobject','wiki_articleforobject_content_type_id_object_id_046be756_uniq','2020-07-23 17:22:37','n_diff_pfx02',0,1,'content_type_id,object_id'),('edxapp','wiki_articleforobject','wiki_articleforobject_content_type_id_object_id_046be756_uniq','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articleforobject','wiki_articleforobject_content_type_id_object_id_046be756_uniq','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articleplugin','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','wiki_articleplugin','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articleplugin','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articleplugin','wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'article_id'),('edxapp','wiki_articleplugin','wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id','2020-07-23 17:22:37','n_diff_pfx02',0,1,'article_id,id'),('edxapp','wiki_articleplugin','wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articleplugin','wiki_articleplugin_article_id_9ab0e854_fk_wiki_article_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articlerevision','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','wiki_articlerevision','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articlerevision','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articlerevision','wiki_articlerevision_article_id_revision_number_5bcd5334_uniq','2020-07-23 17:22:37','n_diff_pfx01',0,1,'article_id'),('edxapp','wiki_articlerevision','wiki_articlerevision_article_id_revision_number_5bcd5334_uniq','2020-07-23 17:22:37','n_diff_pfx02',0,1,'article_id,revision_number'),('edxapp','wiki_articlerevision','wiki_articlerevision_article_id_revision_number_5bcd5334_uniq','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articlerevision','wiki_articlerevision_article_id_revision_number_5bcd5334_uniq','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articlerevision','wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti','2020-07-23 17:22:37','n_diff_pfx01',0,1,'previous_revision_id'),('edxapp','wiki_articlerevision','wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti','2020-07-23 17:22:37','n_diff_pfx02',0,1,'previous_revision_id,id'),('edxapp','wiki_articlerevision','wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articlerevision','wiki_articlerevision_previous_revision_id_bcfaf4c9_fk_wiki_arti','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_articlerevision','wiki_articlerevision_user_id_c687e4de_fk_auth_user_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'user_id'),('edxapp','wiki_articlerevision','wiki_articlerevision_user_id_c687e4de_fk_auth_user_id','2020-07-23 17:22:37','n_diff_pfx02',0,1,'user_id,id'),('edxapp','wiki_articlerevision','wiki_articlerevision_user_id_c687e4de_fk_auth_user_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_articlerevision','wiki_articlerevision_user_id_c687e4de_fk_auth_user_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_reusableplugin','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'articleplugin_ptr_id'),('edxapp','wiki_reusableplugin','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_reusableplugin','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_reusableplugin_articles','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','wiki_reusableplugin_articles','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_reusableplugin_articles','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti','2020-07-23 17:22:37','n_diff_pfx01',0,1,'article_id'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti','2020-07-23 17:22:37','n_diff_pfx02',0,1,'article_id,id'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin__article_id_8a09d39e_fk_wiki_arti','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin_arti_reusableplugin_id_articl_302a7a01_uniq','2020-07-23 17:22:37','n_diff_pfx01',0,1,'reusableplugin_id'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin_arti_reusableplugin_id_articl_302a7a01_uniq','2020-07-23 17:22:37','n_diff_pfx02',0,1,'reusableplugin_id,article_id'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin_arti_reusableplugin_id_articl_302a7a01_uniq','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_reusableplugin_articles','wiki_reusableplugin_arti_reusableplugin_id_articl_302a7a01_uniq','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_revisionplugin','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'articleplugin_ptr_id'),('edxapp','wiki_revisionplugin','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_revisionplugin','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_revisionplugin','current_revision_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'current_revision_id'),('edxapp','wiki_revisionplugin','current_revision_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_revisionplugin','current_revision_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_revisionpluginrevision','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','wiki_revisionpluginrevision','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_revisionpluginrevision','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi','2020-07-23 17:22:37','n_diff_pfx01',0,1,'plugin_id'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi','2020-07-23 17:22:37','n_diff_pfx02',0,1,'plugin_id,id'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_plugin_id_c8f4475b_fk_wiki_revi','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi','2020-07-23 17:22:37','n_diff_pfx01',0,1,'previous_revision_id'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi','2020-07-23 17:22:37','n_diff_pfx02',0,1,'previous_revision_id,id'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginr_previous_revision_id_38c877c0_fk_wiki_revi','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'user_id'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id','2020-07-23 17:22:37','n_diff_pfx02',0,1,'user_id,id'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_revisionpluginrevision','wiki_revisionpluginrevision_user_id_ee40f729_fk_auth_user_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_simpleplugin','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'articleplugin_ptr_id'),('edxapp','wiki_simpleplugin','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_simpleplugin','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_simpleplugin','wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti','2020-07-23 17:22:37','n_diff_pfx01',0,1,'article_revision_id'),('edxapp','wiki_simpleplugin','wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti','2020-07-23 17:22:37','n_diff_pfx02',0,1,'article_revision_id,articleplugin_ptr_id'),('edxapp','wiki_simpleplugin','wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_simpleplugin','wiki_simpleplugin_article_revision_id_cff7df92_fk_wiki_arti','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_urlpath','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','wiki_urlpath','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_urlpath','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'article_id'),('edxapp','wiki_urlpath','wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id','2020-07-23 17:22:37','n_diff_pfx02',0,1,'article_id,id'),('edxapp','wiki_urlpath','wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_article_id_9ef0c0fb_fk_wiki_article_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_parent_id_a6e675ac','2020-07-23 17:22:37','n_diff_pfx01',0,1,'parent_id'),('edxapp','wiki_urlpath','wiki_urlpath_parent_id_a6e675ac','2020-07-23 17:22:37','n_diff_pfx02',0,1,'parent_id,id'),('edxapp','wiki_urlpath','wiki_urlpath_parent_id_a6e675ac','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_parent_id_a6e675ac','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq','2020-07-23 17:22:37','n_diff_pfx01',0,1,'site_id'),('edxapp','wiki_urlpath','wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq','2020-07-23 17:22:37','n_diff_pfx02',0,1,'site_id,parent_id'),('edxapp','wiki_urlpath','wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq','2020-07-23 17:22:37','n_diff_pfx03',0,1,'site_id,parent_id,slug'),('edxapp','wiki_urlpath','wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_site_id_parent_id_slug_e4942e5d_uniq','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_slug_39d212eb','2020-07-23 17:22:37','n_diff_pfx01',0,1,'slug'),('edxapp','wiki_urlpath','wiki_urlpath_slug_39d212eb','2020-07-23 17:22:37','n_diff_pfx02',0,1,'slug,id'),('edxapp','wiki_urlpath','wiki_urlpath_slug_39d212eb','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_slug_39d212eb','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_tree_id_090b475d','2020-07-23 17:22:37','n_diff_pfx01',0,1,'tree_id'),('edxapp','wiki_urlpath','wiki_urlpath_tree_id_090b475d','2020-07-23 17:22:37','n_diff_pfx02',0,1,'tree_id,id'),('edxapp','wiki_urlpath','wiki_urlpath_tree_id_090b475d','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','wiki_urlpath','wiki_urlpath_tree_id_090b475d','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflow','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','workflow_assessmentworkflow','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflow','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflow','submission_uuid','2020-07-23 17:22:37','n_diff_pfx01',0,1,'submission_uuid'),('edxapp','workflow_assessmentworkflow','submission_uuid','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflow','submission_uuid','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflow','uuid','2020-07-23 17:22:37','n_diff_pfx01',0,1,'uuid'),('edxapp','workflow_assessmentworkflow','uuid','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflow','uuid','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_course_id_8c2d171b','2020-07-23 17:22:37','n_diff_pfx01',0,1,'course_id'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_course_id_8c2d171b','2020-07-23 17:22:37','n_diff_pfx02',0,1,'course_id,id'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_course_id_8c2d171b','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_course_id_8c2d171b','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_item_id_3ad0d291','2020-07-23 17:22:37','n_diff_pfx01',0,1,'item_id'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_item_id_3ad0d291','2020-07-23 17:22:37','n_diff_pfx02',0,1,'item_id,id'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_item_id_3ad0d291','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflow','workflow_assessmentworkflow_item_id_3ad0d291','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','workflow_assessmentworkflowcancellation','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentw_workflow_id_5e534711_fk_workflow_','2020-07-23 17:22:37','n_diff_pfx01',0,1,'workflow_id'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentw_workflow_id_5e534711_fk_workflow_','2020-07-23 17:22:37','n_diff_pfx02',0,1,'workflow_id,id'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentw_workflow_id_5e534711_fk_workflow_','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentw_workflow_id_5e534711_fk_workflow_','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_cancelled_by_id_8467736a','2020-07-23 17:22:37','n_diff_pfx01',0,1,'cancelled_by_id'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_cancelled_by_id_8467736a','2020-07-23 17:22:37','n_diff_pfx02',0,1,'cancelled_by_id,id'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_cancelled_by_id_8467736a','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_cancelled_by_id_8467736a','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_created_at_9da54d83','2020-07-23 17:22:37','n_diff_pfx01',0,1,'created_at'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_created_at_9da54d83','2020-07-23 17:22:37','n_diff_pfx02',0,1,'created_at,id'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_created_at_9da54d83','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflowcancellation','workflow_assessmentworkflowcancellation_created_at_9da54d83','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflowstep','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','workflow_assessmentworkflowstep','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflowstep','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_assessmentworkflowstep','workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_','2020-07-23 17:22:37','n_diff_pfx01',0,1,'workflow_id'),('edxapp','workflow_assessmentworkflowstep','workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_','2020-07-23 17:22:37','n_diff_pfx02',0,1,'workflow_id,id'),('edxapp','workflow_assessmentworkflowstep','workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_assessmentworkflowstep','workflow_assessmentw_workflow_id_fe52b4aa_fk_workflow_','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_teamassessmentworkflow','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'assessmentworkflow_ptr_id'),('edxapp','workflow_teamassessmentworkflow','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_teamassessmentworkflow','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','workflow_teamassessmentworkflow','team_submission_uuid','2020-07-23 17:22:37','n_diff_pfx01',0,1,'team_submission_uuid'),('edxapp','workflow_teamassessmentworkflow','team_submission_uuid','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','workflow_teamassessmentworkflow','team_submission_uuid','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatran_user_id_course_id_557488b4_uniq','2020-07-23 17:22:37','n_diff_pfx01',0,1,'user_id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatran_user_id_course_id_557488b4_uniq','2020-07-23 17:22:37','n_diff_pfx02',0,1,'user_id,course_id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatran_user_id_course_id_557488b4_uniq','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatran_user_id_course_id_557488b4_uniq','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmi_enterprise_course_enrollmen_0a180d75','2020-07-23 17:22:37','n_diff_pfx01',0,1,'enterprise_course_enrollment_id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmi_enterprise_course_enrollmen_0a180d75','2020-07-23 17:22:37','n_diff_pfx02',0,1,'enterprise_course_enrollment_id,id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmi_enterprise_course_enrollmen_0a180d75','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmi_enterprise_course_enrollmen_0a180d75','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmissionaudit_course_id_c18248d2','2020-07-23 17:22:37','n_diff_pfx01',0,1,'course_id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmissionaudit_course_id_c18248d2','2020-07-23 17:22:37','n_diff_pfx02',0,1,'course_id,id'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmissionaudit_course_id_c18248d2','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xapi_xapilearnerdatatransmissionaudit','xapi_xapilearnerdatatransmissionaudit_course_id_c18248d2','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xapi_xapilrsconfiguration','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xapi_xapilrsconfiguration','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xapi_xapilrsconfiguration','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xapi_xapilrsconfiguration','enterprise_customer_id','2020-07-23 17:22:37','n_diff_pfx01',0,1,'enterprise_customer_id'),('edxapp','xapi_xapilrsconfiguration','enterprise_customer_id','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xapi_xapilrsconfiguration','enterprise_customer_id','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_config_courseeditltifieldsenabledflag','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xblock_config_courseeditltifieldsenabledflag','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_config_courseeditltifieldsenabledflag','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_course_changed_by_id_09761e15_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_course_changed_by_id_09761e15_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_course_changed_by_id_09761e15_fk_auth_user','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_course_changed_by_id_09761e15_fk_auth_user','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_courseeditltifieldsenabledflag_course_id_4f2393b4','2020-07-23 17:22:37','n_diff_pfx01',0,1,'course_id'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_courseeditltifieldsenabledflag_course_id_4f2393b4','2020-07-23 17:22:37','n_diff_pfx02',0,1,'course_id,id'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_courseeditltifieldsenabledflag_course_id_4f2393b4','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_config_courseeditltifieldsenabledflag','xblock_config_courseeditltifieldsenabledflag_course_id_4f2393b4','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_config_studioconfig','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xblock_config_studioconfig','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_config_studioconfig','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_config_studioconfig','xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','xblock_config_studioconfig','xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','xblock_config_studioconfig','xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_config_studioconfig','xblock_config_studio_changed_by_id_8e87ad07_fk_auth_user','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockconfiguration','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xblock_django_xblockconfiguration','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockconfiguration','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblock_changed_by_id_221b9d0e_fk_auth_user','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblockconfiguration_name_9596c362','2020-07-23 17:22:37','n_diff_pfx01',0,1,'name'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblockconfiguration_name_9596c362','2020-07-23 17:22:37','n_diff_pfx02',0,1,'name,id'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblockconfiguration_name_9596c362','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockconfiguration','xblock_django_xblockconfiguration_name_9596c362','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockstudioconfiguration','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xblock_django_xblockstudioconfiguration','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockstudioconfiguration','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblock_changed_by_id_641b0905_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblock_changed_by_id_641b0905_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblock_changed_by_id_641b0905_fk_auth_user','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblock_changed_by_id_641b0905_fk_auth_user','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblockstudioconfiguration_name_1450bfa3','2020-07-23 17:22:37','n_diff_pfx01',0,1,'name'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblockstudioconfiguration_name_1450bfa3','2020-07-23 17:22:37','n_diff_pfx02',0,1,'name,id'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblockstudioconfiguration_name_1450bfa3','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockstudioconfiguration','xblock_django_xblockstudioconfiguration_name_1450bfa3','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockstudioconfigurationflag','PRIMARY','2020-07-23 17:22:37','n_diff_pfx01',0,1,'id'),('edxapp','xblock_django_xblockstudioconfigurationflag','PRIMARY','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockstudioconfigurationflag','PRIMARY','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp','xblock_django_xblockstudioconfigurationflag','xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx01',0,1,'changed_by_id'),('edxapp','xblock_django_xblockstudioconfigurationflag','xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user','2020-07-23 17:22:37','n_diff_pfx02',0,1,'changed_by_id,id'),('edxapp','xblock_django_xblockstudioconfigurationflag','xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user','2020-07-23 17:22:37','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp','xblock_django_xblockstudioconfigurationflag','xblock_django_xblock_changed_by_id_fdf047b8_fk_auth_user','2020-07-23 17:22:37','size',1,NULL,'Number of pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','PRIMARY','2020-07-23 17:22:38','n_diff_pfx01',0,1,'id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','PRIMARY','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','PRIMARY','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_created_2cf0c3be','2020-07-23 17:22:38','n_diff_pfx01',0,1,'created'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_created_2cf0c3be','2020-07-23 17:22:38','n_diff_pfx02',0,1,'created,id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_created_2cf0c3be','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_created_2cf0c3be','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_student_module_id_48320e41','2020-07-23 17:22:38','n_diff_pfx01',0,1,'student_module_id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_student_module_id_48320e41','2020-07-23 17:22:38','n_diff_pfx02',0,1,'student_module_id,id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_student_module_id_48320e41','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_student_module_id_48320e41','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_version_d66288c3','2020-07-23 17:22:38','n_diff_pfx01',0,1,'version'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_version_d66288c3','2020-07-23 17:22:38','n_diff_pfx02',0,1,'version,id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_version_d66288c3','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_s_version_d66288c3','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_student_module_id_48320e41_idx','2020-07-23 17:22:38','n_diff_pfx01',0,1,'student_module_id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_student_module_id_48320e41_idx','2020-07-23 17:22:38','n_diff_pfx02',0,1,'student_module_id,id'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_student_module_id_48320e41_idx','2020-07-23 17:22:38','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','coursewarehistoryextended_student_module_id_48320e41_idx','2020-07-23 17:22:38','size',1,NULL,'Number of pages in the index'),('edxapp_csmh','django_migrations','PRIMARY','2020-07-23 17:23:58','n_diff_pfx01',676,4,'id'),('edxapp_csmh','django_migrations','PRIMARY','2020-07-23 17:23:58','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('edxapp_csmh','django_migrations','PRIMARY','2020-07-23 17:23:58','size',5,NULL,'Number of pages in the index'); +/*!40000 ALTER TABLE `innodb_index_stats` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `innodb_table_stats` +-- + +DROP TABLE IF EXISTS `innodb_table_stats`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `innodb_table_stats` ( + `database_name` varchar(64) COLLATE utf8_bin NOT NULL, + `table_name` varchar(64) COLLATE utf8_bin NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `n_rows` bigint(20) unsigned NOT NULL, + `clustered_index_size` bigint(20) unsigned NOT NULL, + `sum_of_other_index_sizes` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`database_name`,`table_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin STATS_PERSISTENT=0; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `innodb_table_stats` +-- + +LOCK TABLES `innodb_table_stats` WRITE; +/*!40000 ALTER TABLE `innodb_table_stats` DISABLE KEYS */; +INSERT INTO `innodb_table_stats` VALUES ('edxapp','announcements_announcement','2020-07-23 17:22:27',0,1,0),('edxapp','api_admin_apiaccessconfig','2020-07-23 17:22:27',0,1,1),('edxapp','api_admin_apiaccessrequest','2020-07-23 17:22:27',0,1,3),('edxapp','assessment_assessment','2020-07-23 17:22:27',0,1,4),('edxapp','assessment_assessmentfeedback','2020-07-23 17:22:27',0,1,1),('edxapp','assessment_assessmentfeedback_assessments','2020-07-23 17:22:27',0,1,2),('edxapp','assessment_assessmentfeedback_options','2020-07-23 17:22:27',0,1,2),('edxapp','assessment_assessmentfeedbackoption','2020-07-23 17:22:27',0,1,1),('edxapp','assessment_assessmentpart','2020-07-23 17:22:27',0,1,3),('edxapp','assessment_criterion','2020-07-23 17:22:27',2,1,1),('edxapp','assessment_criterionoption','2020-07-23 17:23:48',12,1,1),('edxapp','assessment_historicalsharedfileupload','2020-07-23 17:22:27',0,1,7),('edxapp','assessment_peerworkflow','2020-07-23 17:22:27',0,1,8),('edxapp','assessment_peerworkflowitem','2020-07-23 17:22:27',0,1,5),('edxapp','assessment_rubric','2020-07-23 17:22:27',0,1,2),('edxapp','assessment_sharedfileupload','2020-07-23 17:22:27',0,1,5),('edxapp','assessment_staffworkflow','2020-07-23 17:22:27',0,1,9),('edxapp','assessment_studenttrainingworkflow','2020-07-23 17:22:27',0,1,4),('edxapp','assessment_studenttrainingworkflowitem','2020-07-23 17:22:27',0,1,2),('edxapp','assessment_teamstaffworkflow','2020-07-23 17:22:27',0,1,1),('edxapp','assessment_trainingexample','2020-07-23 17:22:27',0,1,2),('edxapp','assessment_trainingexample_options_selected','2020-07-23 17:22:27',0,1,2),('edxapp','auth_accountrecovery','2020-07-23 17:22:27',0,1,2),('edxapp','auth_group','2020-07-23 17:24:29',0,1,1),('edxapp','auth_group_permissions','2020-07-23 17:22:28',0,1,2),('edxapp','auth_permission','2020-07-23 17:24:54',1617,11,7),('edxapp','auth_registration','2020-07-23 17:22:28',0,1,2),('edxapp','auth_user','2020-07-23 17:24:29',9,1,2),('edxapp','auth_user_groups','2020-07-23 17:22:28',0,1,2),('edxapp','auth_user_user_permissions','2020-07-23 17:26:16',100,1,2),('edxapp','auth_userprofile','2020-07-23 17:24:42',7,1,7),('edxapp','badges_badgeassertion','2020-07-23 17:22:28',0,1,3),('edxapp','badges_badgeclass','2020-07-23 17:22:28',0,1,3),('edxapp','badges_coursecompleteimageconfiguration','2020-07-23 17:22:29',3,1,1),('edxapp','badges_courseeventbadgesconfiguration','2020-07-23 17:22:28',0,1,1),('edxapp','block_structure','2020-07-23 17:22:28',0,1,1),('edxapp','block_structure_config','2020-07-23 17:22:28',0,1,1),('edxapp','bookmarks_bookmark','2020-07-23 17:22:28',0,1,4),('edxapp','bookmarks_xblockcache','2020-07-23 17:22:30',159,7,2),('edxapp','branding_brandingapiconfig','2020-07-23 17:22:28',0,1,1),('edxapp','branding_brandinginfoconfig','2020-07-23 17:22:28',0,1,1),('edxapp','bulk_email_bulkemailflag','2020-07-23 17:22:28',0,1,1),('edxapp','bulk_email_cohorttarget','2020-07-23 17:22:28',0,1,1),('edxapp','bulk_email_courseauthorization','2020-07-23 17:22:28',0,1,1),('edxapp','bulk_email_courseemail','2020-07-23 17:22:29',0,1,3),('edxapp','bulk_email_courseemail_targets','2020-07-23 17:22:29',0,1,2),('edxapp','bulk_email_courseemailtemplate','2020-07-23 17:22:30',2,5,1),('edxapp','bulk_email_coursemodetarget','2020-07-23 17:22:29',0,1,1),('edxapp','bulk_email_optout','2020-07-23 17:22:29',0,1,2),('edxapp','bulk_email_target','2020-07-23 17:22:29',0,1,0),('edxapp','bulk_grades_scoreoverrider','2020-07-23 17:22:29',0,1,3),('edxapp','calendar_sync_historicalusercalendarsyncconfig','2020-07-23 17:24:30',0,1,4),('edxapp','calendar_sync_usercalendarsyncconfig','2020-07-23 17:24:30',0,1,2),('edxapp','catalog_catalogintegration','2020-07-23 17:22:29',0,1,1),('edxapp','celery_taskmeta','2020-07-23 17:22:29',0,1,2),('edxapp','celery_tasksetmeta','2020-07-23 17:22:29',0,1,2),('edxapp','celery_utils_failedtask','2020-07-23 17:22:29',0,1,3),('edxapp','certificates_certificategenerationconfiguration','2020-07-23 17:22:29',0,1,1),('edxapp','certificates_certificategenerationcoursesetting','2020-07-23 17:22:29',0,1,1),('edxapp','certificates_certificategenerationhistory','2020-07-23 17:22:29',0,1,2),('edxapp','certificates_certificatehtmlviewconfiguration','2020-07-23 17:22:29',0,1,1),('edxapp','certificates_certificateinvalidation','2020-07-23 17:22:29',0,1,2),('edxapp','certificates_certificatetemplate','2020-07-23 17:22:29',0,1,3),('edxapp','certificates_certificatetemplateasset','2020-07-23 17:22:29',0,1,1),('edxapp','certificates_certificatewhitelist','2020-07-23 17:22:31',3,1,1),('edxapp','certificates_examplecertificate','2020-07-23 17:22:29',0,1,3),('edxapp','certificates_examplecertificateset','2020-07-23 17:22:29',0,1,1),('edxapp','certificates_generatedcertificate','2020-07-23 17:22:29',0,1,2),('edxapp','certificates_historicalgeneratedcertificate','2020-07-23 17:22:29',0,1,4),('edxapp','commerce_commerceconfiguration','2020-07-23 17:22:29',0,1,1),('edxapp','completion_blockcompletion','2020-07-23 17:22:29',0,1,3),('edxapp','consent_datasharingconsent','2020-07-23 17:22:29',0,1,1),('edxapp','consent_datasharingconsenttextoverrides','2020-07-23 17:22:29',0,1,1),('edxapp','consent_historicaldatasharingconsent','2020-07-23 17:22:29',0,1,3),('edxapp','content_libraries_contentlibrary','2020-07-23 17:22:29',0,1,3),('edxapp','content_libraries_contentlibrarypermission','2020-07-23 17:22:29',0,1,4),('edxapp','content_type_gating_contenttypegatingconfig','2020-07-23 17:22:29',0,1,6),('edxapp','contentserver_cdnuseragentsconfig','2020-07-23 17:22:29',0,1,1),('edxapp','contentserver_courseassetcachettlconfig','2020-07-23 17:22:30',0,1,1),('edxapp','contentstore_videouploadconfig','2020-07-23 17:22:30',0,1,1),('edxapp','cornerstone_cornerstoneenterprisecustomerconfiguration','2020-07-23 17:22:30',0,1,1),('edxapp','cornerstone_cornerstoneglobalconfiguration','2020-07-23 17:22:30',0,1,1),('edxapp','cornerstone_cornerstonelearnerdatatransmissionaudit','2020-07-23 17:22:30',0,1,2),('edxapp','cornerstone_historicalcornerstoneenterprisecustomerconfiguration','2020-07-23 17:22:30',0,1,3),('edxapp','cors_csrf_xdomainproxyconfiguration','2020-07-23 17:22:30',0,1,1),('edxapp','course_action_state_coursererunstate','2020-07-23 17:22:30',0,1,6),('edxapp','course_creators_coursecreator','2020-07-23 17:22:30',0,1,1),('edxapp','course_date_signals_selfpacedrelativedatesconfig','2020-07-23 17:22:30',0,1,6),('edxapp','course_duration_limits_coursedurationlimitconfig','2020-07-23 17:22:30',0,1,6),('edxapp','course_goals_coursegoal','2020-07-23 17:22:30',0,1,2),('edxapp','course_groups_cohortmembership','2020-07-23 17:22:30',0,1,2),('edxapp','course_groups_coursecohort','2020-07-23 17:22:30',0,1,1),('edxapp','course_groups_coursecohortssettings','2020-07-23 17:22:30',0,1,1),('edxapp','course_groups_courseusergroup','2020-07-23 17:22:30',0,1,2),('edxapp','course_groups_courseusergroup_users','2020-07-23 17:22:30',0,1,2),('edxapp','course_groups_courseusergrouppartitiongroup','2020-07-23 17:22:30',0,1,1),('edxapp','course_groups_unregisteredlearnercohortassignments','2020-07-23 17:22:30',0,1,3),('edxapp','course_modes_coursemode','2020-07-23 17:22:30',0,1,2),('edxapp','course_modes_coursemodeexpirationconfig','2020-07-23 17:22:30',0,1,1),('edxapp','course_modes_coursemodesarchive','2020-07-23 17:22:30',0,1,1),('edxapp','course_modes_historicalcoursemode','2020-07-23 17:22:30',0,1,3),('edxapp','course_overviews_courseoverview','2020-07-23 17:22:30',0,1,0),('edxapp','course_overviews_courseoverviewimageconfig','2020-07-23 17:22:30',0,1,1),('edxapp','course_overviews_courseoverviewimageset','2020-07-23 17:22:30',0,1,1),('edxapp','course_overviews_courseoverviewtab','2020-07-23 17:28:09',6,1,1),('edxapp','course_overviews_historicalcourseoverview','2020-07-23 17:27:48',5,1,2),('edxapp','course_overviews_simulatecoursepublishconfig','2020-07-23 17:22:30',0,1,1),('edxapp','courseware_coursedynamicupgradedeadlineconfiguration','2020-07-23 17:22:30',0,1,2),('edxapp','courseware_dynamicupgradedeadlineconfiguration','2020-07-23 17:22:30',0,1,1),('edxapp','courseware_offlinecomputedgrade','2020-07-23 17:22:30',0,1,4),('edxapp','courseware_offlinecomputedgradelog','2020-07-23 17:22:30',0,1,2),('edxapp','courseware_orgdynamicupgradedeadlineconfiguration','2020-07-23 17:22:30',0,1,2),('edxapp','courseware_studentfieldoverride','2020-07-23 17:22:30',0,1,4),('edxapp','courseware_studentmodule','2020-07-23 17:22:30',0,1,6),('edxapp','courseware_studentmodulehistory','2020-07-23 17:22:30',0,1,3),('edxapp','courseware_xmodulestudentinfofield','2020-07-23 17:22:30',0,1,4),('edxapp','courseware_xmodulestudentprefsfield','2020-07-23 17:22:30',0,1,5),('edxapp','courseware_xmoduleuserstatesummaryfield','2020-07-23 17:22:30',0,1,5),('edxapp','crawlers_crawlersconfig','2020-07-23 17:22:30',0,1,1),('edxapp','credentials_credentialsapiconfig','2020-07-23 17:22:31',0,1,1),('edxapp','credentials_notifycredentialsconfig','2020-07-23 17:22:31',0,1,1),('edxapp','credit_creditconfig','2020-07-23 17:22:31',0,1,1),('edxapp','credit_creditcourse','2020-07-23 17:22:31',0,1,1),('edxapp','credit_crediteligibility','2020-07-23 17:22:31',0,1,3),('edxapp','credit_creditprovider','2020-07-23 17:22:31',0,1,1),('edxapp','credit_creditrequest','2020-07-23 17:22:31',0,1,5),('edxapp','credit_creditrequirement','2020-07-23 17:22:31',0,1,2),('edxapp','credit_creditrequirementstatus','2020-07-23 17:22:31',0,1,3),('edxapp','dark_lang_darklangconfig','2020-07-23 17:22:31',0,1,1),('edxapp','degreed_degreedenterprisecustomerconfiguration','2020-07-23 17:22:31',0,1,1),('edxapp','degreed_degreedglobalconfiguration','2020-07-23 17:22:31',0,1,1),('edxapp','degreed_degreedlearnerdatatransmissionaudit','2020-07-23 17:22:31',0,1,1),('edxapp','degreed_historicaldegreedenterprisecustomerconfiguration','2020-07-23 17:22:31',0,1,3),('edxapp','discounts_discountpercentageconfig','2020-07-23 17:22:31',0,1,6),('edxapp','discounts_discountrestrictionconfig','2020-07-23 17:22:31',0,1,6),('edxapp','django_admin_log','2020-07-23 17:22:31',0,1,2),('edxapp','django_comment_client_permission','2020-07-23 17:22:31',23,1,0),('edxapp','django_comment_client_permission_roles','2020-07-23 17:22:31',79,1,2),('edxapp','django_comment_client_role','2020-07-23 17:22:31',5,1,1),('edxapp','django_comment_client_role_users','2020-07-23 17:22:31',4,1,2),('edxapp','django_comment_common_coursediscussionsettings','2020-07-23 17:22:31',0,1,1),('edxapp','django_comment_common_discussionsidmapping','2020-07-23 17:22:31',0,1,0),('edxapp','django_comment_common_forumsconfig','2020-07-23 17:22:31',0,1,1),('edxapp','django_content_type','2020-07-23 17:22:31',399,3,3),('edxapp','django_migrations','2020-07-23 17:22:32',676,5,0),('edxapp','django_redirect','2020-07-23 17:22:31',0,1,2),('edxapp','django_session','2020-07-23 17:22:31',0,1,1),('edxapp','django_site','2020-07-23 17:22:31',0,1,1),('edxapp','djcelery_crontabschedule','2020-07-23 17:22:31',0,1,0),('edxapp','djcelery_intervalschedule','2020-07-23 17:22:31',0,1,0),('edxapp','djcelery_periodictask','2020-07-23 17:22:31',0,1,3),('edxapp','djcelery_periodictasks','2020-07-23 17:22:31',0,1,0),('edxapp','djcelery_taskstate','2020-07-23 17:22:31',0,1,6),('edxapp','djcelery_workerstate','2020-07-23 17:22:31',0,1,2),('edxapp','edx_when_contentdate','2020-07-23 17:22:32',17,1,4),('edxapp','edx_when_datepolicy','2020-07-23 17:22:32',5,1,2),('edxapp','edx_when_userdate','2020-07-23 17:22:31',0,1,4),('edxapp','edx_zoom_launchlog','2020-07-23 17:22:31',0,1,5),('edxapp','edx_zoom_lticredential','2020-07-23 17:22:31',0,1,1),('edxapp','edxval_coursevideo','2020-07-23 17:22:31',0,1,2),('edxapp','edxval_encodedvideo','2020-07-23 17:22:31',0,1,2),('edxapp','edxval_profile','2020-07-23 17:22:32',7,1,1),('edxapp','edxval_thirdpartytranscriptcredentialsstate','2020-07-23 17:22:31',0,1,1),('edxapp','edxval_transcriptpreference','2020-07-23 17:22:31',0,1,1),('edxapp','edxval_video','2020-07-23 17:27:49',18,1,3),('edxapp','edxval_videoimage','2020-07-23 17:22:31',0,1,1),('edxapp','edxval_videotranscript','2020-07-23 17:27:59',16,1,3),('edxapp','email_marketing_emailmarketingconfiguration','2020-07-23 17:22:32',0,1,1),('edxapp','embargo_country','2020-07-23 17:22:35',250,1,1),('edxapp','embargo_countryaccessrule','2020-07-23 17:22:32',0,1,2),('edxapp','embargo_courseaccessrulehistory','2020-07-23 17:22:32',0,1,2),('edxapp','embargo_embargoedcourse','2020-07-23 17:22:32',0,1,1),('edxapp','embargo_embargoedstate','2020-07-23 17:22:32',0,1,1),('edxapp','embargo_ipfilter','2020-07-23 17:22:32',0,1,1),('edxapp','embargo_restrictedcourse','2020-07-23 17:22:32',0,1,1),('edxapp','enterprise_enrollmentnotificationemailtemplate','2020-07-23 17:22:32',0,1,1),('edxapp','enterprise_enterprisecatalogquery','2020-07-23 17:22:32',0,1,0),('edxapp','enterprise_enterprisecourseenrollment','2020-07-23 17:24:37',0,1,2),('edxapp','enterprise_enterprisecustomer','2020-07-23 17:24:37',0,1,3),('edxapp','enterprise_enterprisecustomerbrandingconfiguration','2020-07-23 17:22:32',0,1,1),('edxapp','enterprise_enterprisecustomercatalog','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_enterprisecustomeridentityprovider','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_enterprisecustomerreportingconfiguration','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_enterprisecustomerreportingconfiguration_enterpricf00','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_enterprisecustomertype','2020-07-23 17:22:32',0,1,0),('edxapp','enterprise_enterprisecustomeruser','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_enterpriseenrollmentsource','2020-07-23 17:22:38',6,1,1),('edxapp','enterprise_enterprisefeaturerole','2020-07-23 17:22:48',4,1,1),('edxapp','enterprise_enterprisefeatureuserroleassignment','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_historicalenrollmentnotificationemailtemplate','2020-07-23 17:22:32',0,1,3),('edxapp','enterprise_historicalenterprisecourseenrollment','2020-07-23 17:24:38',0,1,4),('edxapp','enterprise_historicalenterprisecustomer','2020-07-23 17:24:37',0,1,5),('edxapp','enterprise_historicalenterprisecustomercatalog','2020-07-23 17:22:32',0,1,4),('edxapp','enterprise_historicallicensedenterprisecourseenrollment','2020-07-23 17:24:37',0,1,3),('edxapp','enterprise_historicalpendingenrollment','2020-07-23 17:22:32',0,1,4),('edxapp','enterprise_historicalpendingenterprisecustomeruser','2020-07-23 17:22:32',0,1,4),('edxapp','enterprise_licensedenterprisecourseenrollment','2020-07-23 17:24:37',0,1,1),('edxapp','enterprise_pendingenrollment','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_pendingenterprisecustomeruser','2020-07-23 17:22:32',0,1,2),('edxapp','enterprise_systemwideenterpriserole','2020-07-23 17:22:58',3,1,1),('edxapp','enterprise_systemwideenterpriseuserroleassignment','2020-07-23 17:22:32',0,1,2),('edxapp','entitlements_courseentitlement','2020-07-23 17:22:32',0,1,5),('edxapp','entitlements_courseentitlementpolicy','2020-07-23 17:22:32',0,1,1),('edxapp','entitlements_courseentitlementsupportdetail','2020-07-23 17:22:32',0,1,3),('edxapp','entitlements_historicalcourseentitlement','2020-07-23 17:22:32',0,1,6),('edxapp','entitlements_historicalcourseentitlementsupportdetail','2020-07-23 17:22:32',0,1,5),('edxapp','experiments_experimentdata','2020-07-23 17:22:32',0,1,3),('edxapp','experiments_experimentkeyvalue','2020-07-23 17:22:32',0,1,2),('edxapp','experiments_historicalexperimentkeyvalue','2020-07-23 17:22:32',0,1,3),('edxapp','external_user_ids_externalid','2020-07-23 17:22:32',0,1,3),('edxapp','external_user_ids_externalidtype','2020-07-23 17:22:32',0,1,1),('edxapp','external_user_ids_historicalexternalid','2020-07-23 17:22:32',0,1,5),('edxapp','external_user_ids_historicalexternalidtype','2020-07-23 17:22:32',0,1,3),('edxapp','grades_computegradessetting','2020-07-23 17:22:32',0,1,1),('edxapp','grades_coursepersistentgradesflag','2020-07-23 17:22:32',0,1,2),('edxapp','grades_historicalpersistentsubsectiongradeoverride','2020-07-23 17:22:32',0,1,5),('edxapp','grades_persistentcoursegrade','2020-07-23 17:22:33',0,1,4),('edxapp','grades_persistentgradesenabledflag','2020-07-23 17:22:33',0,1,1),('edxapp','grades_persistentsubsectiongrade','2020-07-23 17:22:33',0,1,4),('edxapp','grades_persistentsubsectiongradeoverride','2020-07-23 17:22:33',0,1,3),('edxapp','grades_visibleblocks','2020-07-23 17:22:33',0,1,2),('edxapp','instructor_task_gradereportsetting','2020-07-23 17:22:33',0,1,1),('edxapp','instructor_task_instructortask','2020-07-23 17:22:33',0,1,6),('edxapp','integrated_channel_contentmetadataitemtransmission','2020-07-23 17:22:33',0,1,1),('edxapp','integrated_channel_learnerdatatransmissionaudit','2020-07-23 17:22:33',0,1,1),('edxapp','learning_sequences_coursesection','2020-07-23 17:24:40',0,1,2),('edxapp','learning_sequences_coursesectionsequence','2020-07-23 17:24:40',0,1,3),('edxapp','learning_sequences_learningcontext','2020-07-23 17:24:40',0,1,2),('edxapp','learning_sequences_learningsequence','2020-07-23 17:24:40',0,1,1),('edxapp','lms_xblock_xblockasidesconfig','2020-07-23 17:22:33',0,1,1),('edxapp','lx_pathway_plugin_pathway','2020-07-23 17:22:33',0,1,3),('edxapp','milestones_coursecontentmilestone','2020-07-23 17:22:33',0,1,6),('edxapp','milestones_coursemilestone','2020-07-23 17:22:33',0,1,5),('edxapp','milestones_milestone','2020-07-23 17:22:33',0,1,4),('edxapp','milestones_milestonerelationshiptype','2020-07-23 17:23:08',2,1,1),('edxapp','milestones_usermilestone','2020-07-23 17:22:33',0,1,4),('edxapp','mobile_api_appversionconfig','2020-07-23 17:22:33',0,1,1),('edxapp','mobile_api_ignoremobileavailableflagconfig','2020-07-23 17:22:33',0,1,1),('edxapp','mobile_api_mobileapiconfig','2020-07-23 17:22:33',0,1,1),('edxapp','notify_notification','2020-07-23 17:22:33',0,1,1),('edxapp','notify_notificationtype','2020-07-23 17:22:33',0,1,1),('edxapp','notify_settings','2020-07-23 17:22:33',0,1,1),('edxapp','notify_subscription','2020-07-23 17:22:33',0,1,2),('edxapp','oauth2_provider_accesstoken','2020-07-23 17:22:33',0,1,4),('edxapp','oauth2_provider_application','2020-07-23 17:23:18',2,1,3),('edxapp','oauth2_provider_grant','2020-07-23 17:24:40',0,1,3),('edxapp','oauth2_provider_refreshtoken','2020-07-23 17:22:33',0,1,4),('edxapp','oauth_dispatch_applicationaccess','2020-07-23 17:22:33',0,1,1),('edxapp','oauth_dispatch_applicationorganization','2020-07-23 17:22:33',0,1,2),('edxapp','oauth_dispatch_restrictedapplication','2020-07-23 17:22:33',0,1,1),('edxapp','organizations_historicalorganization','2020-07-23 17:22:33',0,1,4),('edxapp','organizations_organization','2020-07-23 17:22:33',0,1,2),('edxapp','organizations_organizationcourse','2020-07-23 17:22:33',0,1,3),('edxapp','problem_builder_answer','2020-07-23 17:22:33',0,1,4),('edxapp','problem_builder_share','2020-07-23 17:22:33',0,1,4),('edxapp','proctoring_proctoredexam','2020-07-23 17:22:33',0,1,4),('edxapp','proctoring_proctoredexamreviewpolicy','2020-07-23 17:22:33',0,1,2),('edxapp','proctoring_proctoredexamreviewpolicyhistory','2020-07-23 17:22:33',0,1,3),('edxapp','proctoring_proctoredexamsoftwaresecurereview','2020-07-23 17:22:33',0,1,4),('edxapp','proctoring_proctoredexamsoftwaresecurereviewhistory','2020-07-23 17:22:33',0,1,4),('edxapp','proctoring_proctoredexamstudentallowance','2020-07-23 17:22:33',0,1,2),('edxapp','proctoring_proctoredexamstudentallowancehistory','2020-07-23 17:22:33',0,1,2),('edxapp','proctoring_proctoredexamstudentattempt','2020-07-23 17:22:33',0,1,4),('edxapp','proctoring_proctoredexamstudentattemptcomment','2020-07-23 17:22:33',0,1,1),('edxapp','proctoring_proctoredexamstudentattempthistory','2020-07-23 17:22:33',0,1,4),('edxapp','program_enrollments_courseaccessroleassignment','2020-07-23 17:22:33',0,1,2),('edxapp','program_enrollments_historicalprogramcourseenrollment','2020-07-23 17:22:33',0,1,4),('edxapp','program_enrollments_historicalprogramenrollment','2020-07-23 17:22:33',0,1,6),('edxapp','program_enrollments_programcourseenrollment','2020-07-23 17:22:34',0,1,2),('edxapp','program_enrollments_programenrollment','2020-07-23 17:22:34',0,1,6),('edxapp','programs_customprogramsconfig','2020-07-23 17:22:34',0,1,1),('edxapp','programs_programsapiconfig','2020-07-23 17:22:34',0,1,1),('edxapp','rss_proxy_whitelistedrssurl','2020-07-23 17:22:34',0,1,1),('edxapp','sap_success_factors_sapsuccessfactorsenterprisecustomerconfidb8a','2020-07-23 17:22:34',0,1,1),('edxapp','sap_success_factors_sapsuccessfactorsglobalconfiguration','2020-07-23 17:22:34',0,1,1),('edxapp','sap_success_factors_sapsuccessfactorslearnerdatatransmission3ce5','2020-07-23 17:22:34',0,1,1),('edxapp','schedules_historicalschedule','2020-07-23 17:22:34',0,1,5),('edxapp','schedules_schedule','2020-07-23 17:22:34',0,1,3),('edxapp','schedules_scheduleconfig','2020-07-23 17:22:34',0,1,2),('edxapp','schedules_scheduleexperience','2020-07-23 17:22:34',0,1,1),('edxapp','self_paced_selfpacedconfiguration','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_certificateitem','2020-07-23 17:22:34',0,1,3),('edxapp','shoppingcart_coupon','2020-07-23 17:22:34',0,1,2),('edxapp','shoppingcart_couponredemption','2020-07-23 17:22:34',0,1,3),('edxapp','shoppingcart_courseregcodeitem','2020-07-23 17:22:34',0,1,2),('edxapp','shoppingcart_courseregcodeitemannotation','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_courseregistrationcode','2020-07-23 17:22:34',0,1,6),('edxapp','shoppingcart_courseregistrationcodeinvoiceitem','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_donation','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_donationconfiguration','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_invoice','2020-07-23 17:22:34',0,1,2),('edxapp','shoppingcart_invoicehistory','2020-07-23 17:22:34',0,1,2),('edxapp','shoppingcart_invoiceitem','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_invoicetransaction','2020-07-23 17:22:34',0,1,3),('edxapp','shoppingcart_order','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_orderitem','2020-07-23 17:22:34',0,1,5),('edxapp','shoppingcart_paidcourseregistration','2020-07-23 17:22:34',0,1,3),('edxapp','shoppingcart_paidcourseregistrationannotation','2020-07-23 17:22:34',0,1,1),('edxapp','shoppingcart_registrationcoderedemption','2020-07-23 17:22:34',0,1,4),('edxapp','site_configuration_siteconfiguration','2020-07-23 17:22:34',0,1,1),('edxapp','site_configuration_siteconfigurationhistory','2020-07-23 17:22:34',0,1,1),('edxapp','social_auth_association','2020-07-23 17:22:34',0,1,1),('edxapp','social_auth_code','2020-07-23 17:22:34',0,1,3),('edxapp','social_auth_nonce','2020-07-23 17:22:34',0,1,1),('edxapp','social_auth_partial','2020-07-23 17:22:34',0,1,2),('edxapp','social_auth_usersocialauth','2020-07-23 17:24:41',0,1,3),('edxapp','splash_splashconfig','2020-07-23 17:22:34',0,1,1),('edxapp','static_replace_assetbaseurlconfig','2020-07-23 17:22:34',0,1,1),('edxapp','static_replace_assetexcludedextensionsconfig','2020-07-23 17:22:34',0,1,1),('edxapp','status_coursemessage','2020-07-23 17:22:34',0,1,2),('edxapp','status_globalstatusmessage','2020-07-23 17:22:34',0,1,1),('edxapp','student_accountrecoveryconfiguration','2020-07-23 17:22:34',0,1,1),('edxapp','student_allowedauthuser','2020-07-23 17:22:34',0,1,2),('edxapp','student_anonymoususerid','2020-07-23 17:22:34',0,1,3),('edxapp','student_bulkunenrollconfiguration','2020-07-23 17:22:35',0,1,1),('edxapp','student_courseaccessrole','2020-07-23 17:22:35',0,1,4),('edxapp','student_courseenrollment','2020-07-23 17:23:28',4,1,4),('edxapp','student_courseenrollment_history','2020-07-23 17:23:38',12,1,5),('edxapp','student_courseenrollmentallowed','2020-07-23 17:22:35',0,1,5),('edxapp','student_courseenrollmentattribute','2020-07-23 17:22:35',0,1,1),('edxapp','student_courseenrollmentcelebration','2020-07-23 17:24:42',0,1,1),('edxapp','student_dashboardconfiguration','2020-07-23 17:22:35',0,1,1),('edxapp','student_enrollmentrefundconfiguration','2020-07-23 17:22:35',0,1,1),('edxapp','student_entranceexamconfiguration','2020-07-23 17:22:35',0,1,4),('edxapp','student_fbeenrollmentexclusion','2020-07-23 17:22:35',0,1,1),('edxapp','student_historicalmanualenrollmentaudit','2020-07-23 17:22:35',0,1,5),('edxapp','student_languageproficiency','2020-07-23 17:22:35',0,1,2),('edxapp','student_linkedinaddtoprofileconfiguration','2020-07-23 17:22:35',0,1,1),('edxapp','student_loginfailures','2020-07-23 17:22:35',0,1,1),('edxapp','student_manualenrollmentaudit','2020-07-23 17:22:35',0,1,3),('edxapp','student_pendingemailchange','2020-07-23 17:22:35',0,1,3),('edxapp','student_pendingnamechange','2020-07-23 17:22:35',0,1,1),('edxapp','student_pendingsecondaryemailchange','2020-07-23 17:22:35',0,1,3),('edxapp','student_registrationcookieconfiguration','2020-07-23 17:22:35',0,1,1),('edxapp','student_sociallink','2020-07-23 17:22:35',0,1,1),('edxapp','student_userattribute','2020-07-23 17:22:35',0,1,2),('edxapp','student_usersignupsource','2020-07-23 17:22:35',0,1,2),('edxapp','student_userstanding','2020-07-23 17:22:35',0,1,2),('edxapp','student_usertestgroup','2020-07-23 17:22:35',0,1,1),('edxapp','student_usertestgroup_users','2020-07-23 17:22:35',0,1,2),('edxapp','submissions_score','2020-07-23 17:22:35',0,1,3),('edxapp','submissions_scoreannotation','2020-07-23 17:22:35',0,1,3),('edxapp','submissions_scoresummary','2020-07-23 17:22:35',0,1,3),('edxapp','submissions_studentitem','2020-07-23 17:22:35',0,1,4),('edxapp','submissions_submission','2020-07-23 17:22:35',0,1,5),('edxapp','submissions_teamsubmission','2020-07-23 17:22:35',0,1,6),('edxapp','super_csv_csvoperation','2020-07-23 17:22:35',0,1,3),('edxapp','survey_surveyanswer','2020-07-23 17:22:35',0,1,4),('edxapp','survey_surveyform','2020-07-23 17:22:35',0,1,1),('edxapp','system_wide_roles_systemwiderole','2020-07-23 17:22:35',0,1,1),('edxapp','system_wide_roles_systemwideroleassignment','2020-07-23 17:22:35',0,1,2),('edxapp','tagging_tagavailablevalues','2020-07-23 17:22:35',0,1,1),('edxapp','tagging_tagcategories','2020-07-23 17:22:35',0,1,1),('edxapp','teams_courseteam','2020-07-23 17:22:35',0,1,7),('edxapp','teams_courseteammembership','2020-07-23 17:22:35',0,1,2),('edxapp','theming_sitetheme','2020-07-23 17:22:35',0,1,1),('edxapp','third_party_auth_ltiproviderconfig','2020-07-23 17:22:35',0,1,5),('edxapp','third_party_auth_oauth2providerconfig','2020-07-23 17:22:36',0,1,5),('edxapp','third_party_auth_samlconfiguration','2020-07-23 17:22:36',0,1,3),('edxapp','third_party_auth_samlproviderconfig','2020-07-23 17:22:36',0,1,5),('edxapp','third_party_auth_samlproviderdata','2020-07-23 17:22:36',0,1,3),('edxapp','thumbnail_kvstore','2020-07-23 17:22:36',0,1,0),('edxapp','user_api_retirementstate','2020-07-23 17:22:36',0,1,3),('edxapp','user_api_usercoursetag','2020-07-23 17:22:36',0,1,3),('edxapp','user_api_userorgtag','2020-07-23 17:22:36',0,1,3),('edxapp','user_api_userpreference','2020-07-23 17:22:36',0,1,2),('edxapp','user_api_userretirementpartnerreportingstatus','2020-07-23 17:22:36',0,1,4),('edxapp','user_api_userretirementrequest','2020-07-23 17:22:36',0,1,1),('edxapp','user_api_userretirementstatus','2020-07-23 17:22:36',0,1,8),('edxapp','user_tasks_usertaskartifact','2020-07-23 17:22:36',0,1,2),('edxapp','user_tasks_usertaskstatus','2020-07-23 17:22:36',0,1,4),('edxapp','util_ratelimitconfiguration','2020-07-23 17:22:36',0,1,1),('edxapp','verified_track_content_migrateverifiedtrackcohortssetting','2020-07-23 17:22:36',0,1,1),('edxapp','verified_track_content_verifiedtrackcohortedcourse','2020-07-23 17:22:36',0,1,1),('edxapp','verify_student_manualverification','2020-07-23 17:22:36',0,1,3),('edxapp','verify_student_softwaresecurephotoverification','2020-07-23 17:22:36',0,1,10),('edxapp','verify_student_ssoverification','2020-07-23 17:22:36',0,1,4),('edxapp','verify_student_sspverificationretryconfig','2020-07-23 17:22:36',0,1,1),('edxapp','verify_student_verificationdeadline','2020-07-23 17:22:36',0,1,1),('edxapp','video_config_coursehlsplaybackenabledflag','2020-07-23 17:22:36',0,1,2),('edxapp','video_config_coursevideotranscriptenabledflag','2020-07-23 17:22:36',0,1,2),('edxapp','video_config_courseyoutubeblockedflag','2020-07-23 17:22:36',0,1,2),('edxapp','video_config_hlsplaybackenabledflag','2020-07-23 17:22:36',0,1,1),('edxapp','video_config_migrationenqueuedcourse','2020-07-23 17:22:36',0,1,0),('edxapp','video_config_transcriptmigrationsetting','2020-07-23 17:22:36',0,1,1),('edxapp','video_config_updatedcoursevideos','2020-07-23 17:22:36',0,1,2),('edxapp','video_config_videothumbnailsetting','2020-07-23 17:22:36',0,1,1),('edxapp','video_config_videotranscriptenabledflag','2020-07-23 17:22:36',0,1,1),('edxapp','video_pipeline_coursevideouploadsenabledbydefault','2020-07-23 17:22:36',0,1,2),('edxapp','video_pipeline_vempipelineintegration','2020-07-23 17:24:43',0,1,1),('edxapp','video_pipeline_videopipelineintegration','2020-07-23 17:22:36',0,1,1),('edxapp','video_pipeline_videouploadsenabledbydefault','2020-07-23 17:22:36',0,1,1),('edxapp','waffle_flag','2020-07-23 17:24:44',3,1,2),('edxapp','waffle_flag_groups','2020-07-23 17:22:36',0,1,2),('edxapp','waffle_flag_users','2020-07-23 17:22:36',0,1,2),('edxapp','waffle_sample','2020-07-23 17:22:36',0,1,2),('edxapp','waffle_switch','2020-07-23 17:22:36',0,1,2),('edxapp','waffle_utils_waffleflagcourseoverridemodel','2020-07-23 17:22:36',0,1,3),('edxapp','wiki_article','2020-07-23 17:22:36',0,1,3),('edxapp','wiki_articleforobject','2020-07-23 17:22:37',0,1,2),('edxapp','wiki_articleplugin','2020-07-23 17:22:37',0,1,1),('edxapp','wiki_articlerevision','2020-07-23 17:22:37',0,1,3),('edxapp','wiki_reusableplugin','2020-07-23 17:22:37',0,1,0),('edxapp','wiki_reusableplugin_articles','2020-07-23 17:22:37',0,1,2),('edxapp','wiki_revisionplugin','2020-07-23 17:22:37',0,1,1),('edxapp','wiki_revisionpluginrevision','2020-07-23 17:22:37',0,1,3),('edxapp','wiki_simpleplugin','2020-07-23 17:22:37',0,1,1),('edxapp','wiki_urlpath','2020-07-23 17:22:37',0,1,5),('edxapp','workflow_assessmentworkflow','2020-07-23 17:22:37',0,1,4),('edxapp','workflow_assessmentworkflowcancellation','2020-07-23 17:22:37',0,1,3),('edxapp','workflow_assessmentworkflowstep','2020-07-23 17:22:37',0,1,1),('edxapp','workflow_teamassessmentworkflow','2020-07-23 17:22:37',0,1,1),('edxapp','xapi_xapilearnerdatatransmissionaudit','2020-07-23 17:22:37',0,1,3),('edxapp','xapi_xapilrsconfiguration','2020-07-23 17:22:37',0,1,1),('edxapp','xblock_config_courseeditltifieldsenabledflag','2020-07-23 17:22:37',0,1,2),('edxapp','xblock_config_studioconfig','2020-07-23 17:22:37',0,1,1),('edxapp','xblock_django_xblockconfiguration','2020-07-23 17:22:37',0,1,2),('edxapp','xblock_django_xblockstudioconfiguration','2020-07-23 17:22:37',0,1,2),('edxapp','xblock_django_xblockstudioconfigurationflag','2020-07-23 17:22:37',0,1,1),('edxapp_csmh','coursewarehistoryextended_studentmodulehistoryextended','2020-07-23 17:22:38',0,1,4),('edxapp_csmh','django_migrations','2020-07-23 17:23:58',676,5,0); +/*!40000 ALTER TABLE `innodb_table_stats` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ndb_binlog_index` +-- + +DROP TABLE IF EXISTS `ndb_binlog_index`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ndb_binlog_index` ( + `Position` bigint(20) unsigned NOT NULL, + `File` varchar(255) NOT NULL, + `epoch` bigint(20) unsigned NOT NULL, + `inserts` int(10) unsigned NOT NULL, + `updates` int(10) unsigned NOT NULL, + `deletes` int(10) unsigned NOT NULL, + `schemaops` int(10) unsigned NOT NULL, + `orig_server_id` int(10) unsigned NOT NULL, + `orig_epoch` bigint(20) unsigned NOT NULL, + `gci` int(10) unsigned NOT NULL, + PRIMARY KEY (`epoch`,`orig_server_id`,`orig_epoch`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ndb_binlog_index` +-- + +LOCK TABLES `ndb_binlog_index` WRITE; +/*!40000 ALTER TABLE `ndb_binlog_index` DISABLE KEYS */; +/*!40000 ALTER TABLE `ndb_binlog_index` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `plugin` +-- + +DROP TABLE IF EXISTS `plugin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `plugin` ( + `name` varchar(64) NOT NULL DEFAULT '', + `dl` varchar(128) NOT NULL DEFAULT '', + PRIMARY KEY (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL plugins'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `plugin` +-- + +LOCK TABLES `plugin` WRITE; +/*!40000 ALTER TABLE `plugin` DISABLE KEYS */; +/*!40000 ALTER TABLE `plugin` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proc` +-- + +DROP TABLE IF EXISTS `proc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proc` ( + `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `name` char(64) NOT NULL DEFAULT '', + `type` enum('FUNCTION','PROCEDURE') NOT NULL, + `specific_name` char(64) NOT NULL DEFAULT '', + `language` enum('SQL') NOT NULL DEFAULT 'SQL', + `sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL', + `is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO', + `security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER', + `param_list` blob NOT NULL, + `returns` longblob NOT NULL, + `body` longblob NOT NULL, + `definer` char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', + `comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `body_utf8` longblob, + PRIMARY KEY (`db`,`name`,`type`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proc` +-- + +LOCK TABLES `proc` WRITE; +/*!40000 ALTER TABLE `proc` DISABLE KEYS */; +/*!40000 ALTER TABLE `proc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `procs_priv` +-- + +DROP TABLE IF EXISTS `procs_priv`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `procs_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '', + `Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL, + `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`), + KEY `Grantor` (`Grantor`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `procs_priv` +-- + +LOCK TABLES `procs_priv` WRITE; +/*!40000 ALTER TABLE `procs_priv` DISABLE KEYS */; +/*!40000 ALTER TABLE `procs_priv` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `proxies_priv` +-- + +DROP TABLE IF EXISTS `proxies_priv`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `proxies_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proxied_user` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `With_grant` tinyint(1) NOT NULL DEFAULT '0', + `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`Host`,`User`,`Proxied_host`,`Proxied_user`), + KEY `Grantor` (`Grantor`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User proxy privileges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `proxies_priv` +-- + +LOCK TABLES `proxies_priv` WRITE; +/*!40000 ALTER TABLE `proxies_priv` DISABLE KEYS */; +INSERT INTO `proxies_priv` VALUES ('localhost','root','','',1,'','2020-07-21 19:56:34'),('mysql.devstack.edx','root','','',1,'','2020-07-21 19:56:34'); +/*!40000 ALTER TABLE `proxies_priv` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `servers` +-- + +DROP TABLE IF EXISTS `servers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `servers` ( + `Server_name` char(64) NOT NULL DEFAULT '', + `Host` char(64) NOT NULL DEFAULT '', + `Db` char(64) NOT NULL DEFAULT '', + `Username` char(64) NOT NULL DEFAULT '', + `Password` char(64) NOT NULL DEFAULT '', + `Port` int(4) NOT NULL DEFAULT '0', + `Socket` char(64) NOT NULL DEFAULT '', + `Wrapper` char(64) NOT NULL DEFAULT '', + `Owner` char(64) NOT NULL DEFAULT '', + PRIMARY KEY (`Server_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL Foreign Servers table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `servers` +-- + +LOCK TABLES `servers` WRITE; +/*!40000 ALTER TABLE `servers` DISABLE KEYS */; +/*!40000 ALTER TABLE `servers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `slave_master_info` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `slave_master_info` ( + `Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file.', + `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log currently being read from the master.', + `Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last read event.', + `Host` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'The host name of the master.', + `User_name` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The user name used to connect to the master.', + `User_password` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The password used to connect to the master.', + `Port` int(10) unsigned NOT NULL COMMENT 'The network port used to connect to the master.', + `Connect_retry` int(10) unsigned NOT NULL COMMENT 'The period (in seconds) that the slave will wait before trying to reconnect to the master.', + `Enabled_ssl` tinyint(1) NOT NULL COMMENT 'Indicates whether the server supports SSL connections.', + `Ssl_ca` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Authority (CA) certificate.', + `Ssl_capath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path to the Certificate Authority (CA) certificates.', + `Ssl_cert` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL certificate file.', + `Ssl_cipher` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the cipher in use for the SSL connection.', + `Ssl_key` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The name of the SSL key file.', + `Ssl_verify_server_cert` tinyint(1) NOT NULL COMMENT 'Whether to verify the server certificate.', + `Heartbeat` float NOT NULL, + `Bind` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Displays which interface is employed when connecting to the MySQL server', + `Ignored_server_ids` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The number of server IDs to be ignored, followed by the actual server IDs', + `Uuid` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The master server uuid.', + `Retry_count` bigint(20) unsigned NOT NULL COMMENT 'Number of reconnect attempts, to the master, before giving up.', + `Ssl_crl` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The file used for the Certificate Revocation List (CRL)', + `Ssl_crlpath` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'The path used for Certificate Revocation List (CRL) files', + `Enabled_auto_position` tinyint(1) NOT NULL COMMENT 'Indicates whether GTIDs will be used to retrieve events from the master.', + PRIMARY KEY (`Host`,`Port`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Master Information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `slave_relay_log_info` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `slave_relay_log_info` ( + `Number_of_lines` int(10) unsigned NOT NULL COMMENT 'Number of lines in the file or rows in the table. Used to version table definitions.', + `Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the current relay log file.', + `Relay_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The relay log position of the last executed event.', + `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The name of the master binary log file from which the events in the relay log file were read.', + `Master_log_pos` bigint(20) unsigned NOT NULL COMMENT 'The master log position of the last executed event.', + `Sql_delay` int(11) NOT NULL COMMENT 'The number of seconds that the slave must lag behind the master.', + `Number_of_workers` int(10) unsigned NOT NULL, + `Id` int(10) unsigned NOT NULL COMMENT 'Internal Id that uniquely identifies this record.', + PRIMARY KEY (`Id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Relay Log Information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `slave_worker_info` +-- + +DROP TABLE IF EXISTS `slave_worker_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `slave_worker_info` ( + `Id` int(10) unsigned NOT NULL, + `Relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Relay_log_pos` bigint(20) unsigned NOT NULL, + `Master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Master_log_pos` bigint(20) unsigned NOT NULL, + `Checkpoint_relay_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Checkpoint_relay_log_pos` bigint(20) unsigned NOT NULL, + `Checkpoint_master_log_name` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `Checkpoint_master_log_pos` bigint(20) unsigned NOT NULL, + `Checkpoint_seqno` int(10) unsigned NOT NULL, + `Checkpoint_group_size` int(10) unsigned NOT NULL, + `Checkpoint_group_bitmap` blob NOT NULL, + PRIMARY KEY (`Id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Worker Information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `slave_worker_info` +-- + +LOCK TABLES `slave_worker_info` WRITE; +/*!40000 ALTER TABLE `slave_worker_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `slave_worker_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tables_priv` +-- + +DROP TABLE IF EXISTS `tables_priv`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tables_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Grantor` char(77) COLLATE utf8_bin NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '', + `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', + PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), + KEY `Grantor` (`Grantor`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tables_priv` +-- + +LOCK TABLES `tables_priv` WRITE; +/*!40000 ALTER TABLE `tables_priv` DISABLE KEYS */; +/*!40000 ALTER TABLE `tables_priv` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `time_zone` +-- + +DROP TABLE IF EXISTS `time_zone`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `time_zone` ( + `Time_zone_id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `Use_leap_seconds` enum('Y','N') NOT NULL DEFAULT 'N', + PRIMARY KEY (`Time_zone_id`) +) ENGINE=MyISAM AUTO_INCREMENT=1824 DEFAULT CHARSET=utf8 COMMENT='Time zones'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `time_zone` +-- + +LOCK TABLES `time_zone` WRITE; +/*!40000 ALTER TABLE `time_zone` DISABLE KEYS */; +INSERT INTO `time_zone` VALUES (1,'N'),(2,'N'),(3,'N'),(4,'N'),(5,'N'),(6,'N'),(7,'N'),(8,'N'),(9,'N'),(10,'N'),(11,'N'),(12,'N'),(13,'N'),(14,'N'),(15,'N'),(16,'N'),(17,'N'),(18,'N'),(19,'N'),(20,'N'),(21,'N'),(22,'N'),(23,'N'),(24,'N'),(25,'N'),(26,'N'),(27,'N'),(28,'N'),(29,'N'),(30,'N'),(31,'N'),(32,'N'),(33,'N'),(34,'N'),(35,'N'),(36,'N'),(37,'N'),(38,'N'),(39,'N'),(40,'N'),(41,'N'),(42,'N'),(43,'N'),(44,'N'),(45,'N'),(46,'N'),(47,'N'),(48,'N'),(49,'N'),(50,'N'),(51,'N'),(52,'N'),(53,'N'),(54,'N'),(55,'N'),(56,'N'),(57,'N'),(58,'N'),(59,'N'),(60,'N'),(61,'N'),(62,'N'),(63,'N'),(64,'N'),(65,'N'),(66,'N'),(67,'N'),(68,'N'),(69,'N'),(70,'N'),(71,'N'),(72,'N'),(73,'N'),(74,'N'),(75,'N'),(76,'N'),(77,'N'),(78,'N'),(79,'N'),(80,'N'),(81,'N'),(82,'N'),(83,'N'),(84,'N'),(85,'N'),(86,'N'),(87,'N'),(88,'N'),(89,'N'),(90,'N'),(91,'N'),(92,'N'),(93,'N'),(94,'N'),(95,'N'),(96,'N'),(97,'N'),(98,'N'),(99,'N'),(100,'N'),(101,'N'),(102,'N'),(103,'N'),(104,'N'),(105,'N'),(106,'N'),(107,'N'),(108,'N'),(109,'N'),(110,'N'),(111,'N'),(112,'N'),(113,'N'),(114,'N'),(115,'N'),(116,'N'),(117,'N'),(118,'N'),(119,'N'),(120,'N'),(121,'N'),(122,'N'),(123,'N'),(124,'N'),(125,'N'),(126,'N'),(127,'N'),(128,'N'),(129,'N'),(130,'N'),(131,'N'),(132,'N'),(133,'N'),(134,'N'),(135,'N'),(136,'N'),(137,'N'),(138,'N'),(139,'N'),(140,'N'),(141,'N'),(142,'N'),(143,'N'),(144,'N'),(145,'N'),(146,'N'),(147,'N'),(148,'N'),(149,'N'),(150,'N'),(151,'N'),(152,'N'),(153,'N'),(154,'N'),(155,'N'),(156,'N'),(157,'N'),(158,'N'),(159,'N'),(160,'N'),(161,'N'),(162,'N'),(163,'N'),(164,'N'),(165,'N'),(166,'N'),(167,'N'),(168,'N'),(169,'N'),(170,'N'),(171,'N'),(172,'N'),(173,'N'),(174,'N'),(175,'N'),(176,'N'),(177,'N'),(178,'N'),(179,'N'),(180,'N'),(181,'N'),(182,'N'),(183,'N'),(184,'N'),(185,'N'),(186,'N'),(187,'N'),(188,'N'),(189,'N'),(190,'N'),(191,'N'),(192,'N'),(193,'N'),(194,'N'),(195,'N'),(196,'N'),(197,'N'),(198,'N'),(199,'N'),(200,'N'),(201,'N'),(202,'N'),(203,'N'),(204,'N'),(205,'N'),(206,'N'),(207,'N'),(208,'N'),(209,'N'),(210,'N'),(211,'N'),(212,'N'),(213,'N'),(214,'N'),(215,'N'),(216,'N'),(217,'N'),(218,'N'),(219,'N'),(220,'N'),(221,'N'),(222,'N'),(223,'N'),(224,'N'),(225,'N'),(226,'N'),(227,'N'),(228,'N'),(229,'N'),(230,'N'),(231,'N'),(232,'N'),(233,'N'),(234,'N'),(235,'N'),(236,'N'),(237,'N'),(238,'N'),(239,'N'),(240,'N'),(241,'N'),(242,'N'),(243,'N'),(244,'N'),(245,'N'),(246,'N'),(247,'N'),(248,'N'),(249,'N'),(250,'N'),(251,'N'),(252,'N'),(253,'N'),(254,'N'),(255,'N'),(256,'N'),(257,'N'),(258,'N'),(259,'N'),(260,'N'),(261,'N'),(262,'N'),(263,'N'),(264,'N'),(265,'N'),(266,'N'),(267,'N'),(268,'N'),(269,'N'),(270,'N'),(271,'N'),(272,'N'),(273,'N'),(274,'N'),(275,'N'),(276,'N'),(277,'N'),(278,'N'),(279,'N'),(280,'N'),(281,'N'),(282,'N'),(283,'N'),(284,'N'),(285,'N'),(286,'N'),(287,'N'),(288,'N'),(289,'N'),(290,'N'),(291,'N'),(292,'N'),(293,'N'),(294,'N'),(295,'N'),(296,'N'),(297,'N'),(298,'N'),(299,'N'),(300,'N'),(301,'N'),(302,'N'),(303,'N'),(304,'N'),(305,'N'),(306,'N'),(307,'N'),(308,'N'),(309,'N'),(310,'N'),(311,'N'),(312,'N'),(313,'N'),(314,'N'),(315,'N'),(316,'N'),(317,'N'),(318,'N'),(319,'N'),(320,'N'),(321,'N'),(322,'N'),(323,'N'),(324,'N'),(325,'N'),(326,'N'),(327,'N'),(328,'N'),(329,'N'),(330,'N'),(331,'N'),(332,'N'),(333,'N'),(334,'N'),(335,'N'),(336,'N'),(337,'N'),(338,'N'),(339,'N'),(340,'N'),(341,'N'),(342,'N'),(343,'N'),(344,'N'),(345,'N'),(346,'N'),(347,'N'),(348,'N'),(349,'N'),(350,'N'),(351,'N'),(352,'N'),(353,'N'),(354,'N'),(355,'N'),(356,'N'),(357,'N'),(358,'N'),(359,'N'),(360,'N'),(361,'N'),(362,'N'),(363,'N'),(364,'N'),(365,'N'),(366,'N'),(367,'N'),(368,'N'),(369,'N'),(370,'N'),(371,'N'),(372,'N'),(373,'N'),(374,'N'),(375,'N'),(376,'N'),(377,'N'),(378,'N'),(379,'N'),(380,'N'),(381,'N'),(382,'N'),(383,'N'),(384,'N'),(385,'N'),(386,'N'),(387,'N'),(388,'N'),(389,'N'),(390,'N'),(391,'N'),(392,'N'),(393,'N'),(394,'N'),(395,'N'),(396,'N'),(397,'N'),(398,'N'),(399,'N'),(400,'N'),(401,'N'),(402,'N'),(403,'N'),(404,'N'),(405,'N'),(406,'N'),(407,'N'),(408,'N'),(409,'N'),(410,'N'),(411,'N'),(412,'N'),(413,'N'),(414,'N'),(415,'N'),(416,'N'),(417,'N'),(418,'N'),(419,'N'),(420,'N'),(421,'N'),(422,'N'),(423,'N'),(424,'N'),(425,'N'),(426,'N'),(427,'N'),(428,'N'),(429,'N'),(430,'N'),(431,'N'),(432,'N'),(433,'N'),(434,'N'),(435,'N'),(436,'N'),(437,'N'),(438,'N'),(439,'N'),(440,'N'),(441,'N'),(442,'N'),(443,'N'),(444,'N'),(445,'N'),(446,'N'),(447,'N'),(448,'N'),(449,'N'),(450,'N'),(451,'N'),(452,'N'),(453,'N'),(454,'N'),(455,'N'),(456,'N'),(457,'N'),(458,'N'),(459,'N'),(460,'N'),(461,'N'),(462,'N'),(463,'N'),(464,'N'),(465,'N'),(466,'N'),(467,'N'),(468,'N'),(469,'N'),(470,'N'),(471,'N'),(472,'N'),(473,'N'),(474,'N'),(475,'N'),(476,'N'),(477,'N'),(478,'N'),(479,'N'),(480,'N'),(481,'N'),(482,'N'),(483,'N'),(484,'N'),(485,'N'),(486,'N'),(487,'N'),(488,'N'),(489,'N'),(490,'N'),(491,'N'),(492,'N'),(493,'N'),(494,'N'),(495,'N'),(496,'N'),(497,'N'),(498,'N'),(499,'N'),(500,'N'),(501,'N'),(502,'N'),(503,'N'),(504,'N'),(505,'N'),(506,'N'),(507,'N'),(508,'N'),(509,'N'),(510,'N'),(511,'N'),(512,'N'),(513,'N'),(514,'N'),(515,'N'),(516,'N'),(517,'N'),(518,'N'),(519,'N'),(520,'N'),(521,'N'),(522,'N'),(523,'N'),(524,'N'),(525,'N'),(526,'N'),(527,'N'),(528,'N'),(529,'N'),(530,'N'),(531,'N'),(532,'N'),(533,'N'),(534,'N'),(535,'N'),(536,'N'),(537,'N'),(538,'N'),(539,'N'),(540,'N'),(541,'N'),(542,'N'),(543,'N'),(544,'N'),(545,'N'),(546,'N'),(547,'N'),(548,'N'),(549,'N'),(550,'N'),(551,'N'),(552,'N'),(553,'N'),(554,'N'),(555,'N'),(556,'N'),(557,'N'),(558,'N'),(559,'N'),(560,'N'),(561,'N'),(562,'N'),(563,'N'),(564,'N'),(565,'N'),(566,'N'),(567,'N'),(568,'N'),(569,'N'),(570,'N'),(571,'N'),(572,'N'),(573,'N'),(574,'N'),(575,'N'),(576,'N'),(577,'N'),(578,'N'),(579,'N'),(580,'N'),(581,'N'),(582,'N'),(583,'N'),(584,'N'),(585,'N'),(586,'N'),(587,'N'),(588,'N'),(589,'N'),(590,'N'),(591,'N'),(592,'N'),(593,'N'),(594,'N'),(595,'N'),(596,'N'),(597,'N'),(598,'N'),(599,'N'),(600,'N'),(601,'N'),(602,'N'),(603,'N'),(604,'N'),(605,'N'),(606,'N'),(607,'N'),(608,'N'),(609,'N'),(610,'N'),(611,'N'),(612,'N'),(613,'N'),(614,'N'),(615,'N'),(616,'N'),(617,'N'),(618,'N'),(619,'N'),(620,'N'),(621,'N'),(622,'N'),(623,'N'),(624,'N'),(625,'N'),(626,'N'),(627,'N'),(628,'N'),(629,'N'),(630,'N'),(631,'N'),(632,'N'),(633,'N'),(634,'N'),(635,'N'),(636,'N'),(637,'N'),(638,'N'),(639,'N'),(640,'N'),(641,'N'),(642,'N'),(643,'N'),(644,'N'),(645,'N'),(646,'N'),(647,'N'),(648,'N'),(649,'N'),(650,'N'),(651,'N'),(652,'N'),(653,'N'),(654,'N'),(655,'N'),(656,'N'),(657,'N'),(658,'N'),(659,'N'),(660,'N'),(661,'N'),(662,'N'),(663,'N'),(664,'N'),(665,'N'),(666,'N'),(667,'N'),(668,'N'),(669,'N'),(670,'N'),(671,'N'),(672,'N'),(673,'N'),(674,'N'),(675,'N'),(676,'N'),(677,'N'),(678,'N'),(679,'N'),(680,'N'),(681,'N'),(682,'N'),(683,'N'),(684,'N'),(685,'N'),(686,'N'),(687,'N'),(688,'N'),(689,'N'),(690,'N'),(691,'N'),(692,'N'),(693,'N'),(694,'N'),(695,'N'),(696,'N'),(697,'N'),(698,'N'),(699,'N'),(700,'N'),(701,'N'),(702,'N'),(703,'N'),(704,'N'),(705,'N'),(706,'N'),(707,'N'),(708,'N'),(709,'N'),(710,'N'),(711,'N'),(712,'N'),(713,'N'),(714,'N'),(715,'N'),(716,'N'),(717,'N'),(718,'N'),(719,'N'),(720,'N'),(721,'N'),(722,'N'),(723,'N'),(724,'N'),(725,'N'),(726,'N'),(727,'N'),(728,'N'),(729,'N'),(730,'N'),(731,'N'),(732,'N'),(733,'N'),(734,'N'),(735,'N'),(736,'N'),(737,'N'),(738,'N'),(739,'N'),(740,'N'),(741,'N'),(742,'N'),(743,'N'),(744,'N'),(745,'N'),(746,'N'),(747,'N'),(748,'N'),(749,'N'),(750,'N'),(751,'N'),(752,'N'),(753,'N'),(754,'N'),(755,'N'),(756,'N'),(757,'N'),(758,'N'),(759,'N'),(760,'N'),(761,'N'),(762,'N'),(763,'N'),(764,'N'),(765,'N'),(766,'N'),(767,'N'),(768,'N'),(769,'N'),(770,'N'),(771,'N'),(772,'N'),(773,'N'),(774,'N'),(775,'N'),(776,'N'),(777,'N'),(778,'N'),(779,'N'),(780,'N'),(781,'N'),(782,'N'),(783,'N'),(784,'N'),(785,'N'),(786,'N'),(787,'N'),(788,'N'),(789,'N'),(790,'N'),(791,'N'),(792,'N'),(793,'N'),(794,'N'),(795,'N'),(796,'N'),(797,'N'),(798,'N'),(799,'N'),(800,'N'),(801,'N'),(802,'N'),(803,'N'),(804,'N'),(805,'N'),(806,'N'),(807,'N'),(808,'N'),(809,'N'),(810,'N'),(811,'N'),(812,'N'),(813,'N'),(814,'N'),(815,'N'),(816,'N'),(817,'N'),(818,'N'),(819,'N'),(820,'N'),(821,'N'),(822,'N'),(823,'N'),(824,'N'),(825,'N'),(826,'N'),(827,'N'),(828,'N'),(829,'N'),(830,'N'),(831,'N'),(832,'N'),(833,'N'),(834,'N'),(835,'N'),(836,'N'),(837,'N'),(838,'N'),(839,'N'),(840,'N'),(841,'N'),(842,'N'),(843,'N'),(844,'N'),(845,'N'),(846,'N'),(847,'N'),(848,'N'),(849,'N'),(850,'N'),(851,'N'),(852,'N'),(853,'N'),(854,'N'),(855,'N'),(856,'N'),(857,'N'),(858,'N'),(859,'N'),(860,'N'),(861,'N'),(862,'N'),(863,'N'),(864,'N'),(865,'N'),(866,'N'),(867,'N'),(868,'N'),(869,'N'),(870,'N'),(871,'N'),(872,'N'),(873,'N'),(874,'N'),(875,'N'),(876,'N'),(877,'N'),(878,'N'),(879,'N'),(880,'N'),(881,'N'),(882,'N'),(883,'N'),(884,'N'),(885,'N'),(886,'N'),(887,'N'),(888,'N'),(889,'N'),(890,'N'),(891,'N'),(892,'N'),(893,'N'),(894,'N'),(895,'N'),(896,'N'),(897,'N'),(898,'N'),(899,'N'),(900,'N'),(901,'N'),(902,'N'),(903,'N'),(904,'N'),(905,'N'),(906,'N'),(907,'N'),(908,'N'),(909,'N'),(910,'N'),(911,'N'),(912,'N'),(913,'N'),(914,'N'),(915,'N'),(916,'N'),(917,'N'),(918,'N'),(919,'N'),(920,'N'),(921,'N'),(922,'N'),(923,'N'),(924,'N'),(925,'N'),(926,'N'),(927,'N'),(928,'N'),(929,'N'),(930,'N'),(931,'N'),(932,'N'),(933,'N'),(934,'N'),(935,'N'),(936,'N'),(937,'N'),(938,'N'),(939,'N'),(940,'N'),(941,'N'),(942,'N'),(943,'N'),(944,'N'),(945,'N'),(946,'N'),(947,'N'),(948,'N'),(949,'N'),(950,'N'),(951,'N'),(952,'N'),(953,'N'),(954,'N'),(955,'N'),(956,'N'),(957,'N'),(958,'N'),(959,'N'),(960,'N'),(961,'N'),(962,'N'),(963,'N'),(964,'N'),(965,'N'),(966,'N'),(967,'N'),(968,'N'),(969,'N'),(970,'N'),(971,'N'),(972,'N'),(973,'N'),(974,'N'),(975,'N'),(976,'N'),(977,'N'),(978,'N'),(979,'N'),(980,'N'),(981,'N'),(982,'N'),(983,'N'),(984,'N'),(985,'N'),(986,'N'),(987,'N'),(988,'N'),(989,'N'),(990,'N'),(991,'N'),(992,'N'),(993,'N'),(994,'N'),(995,'N'),(996,'N'),(997,'N'),(998,'N'),(999,'N'),(1000,'N'),(1001,'N'),(1002,'N'),(1003,'N'),(1004,'N'),(1005,'N'),(1006,'N'),(1007,'N'),(1008,'N'),(1009,'N'),(1010,'N'),(1011,'N'),(1012,'N'),(1013,'N'),(1014,'N'),(1015,'N'),(1016,'N'),(1017,'N'),(1018,'N'),(1019,'N'),(1020,'N'),(1021,'N'),(1022,'N'),(1023,'N'),(1024,'N'),(1025,'N'),(1026,'N'),(1027,'N'),(1028,'N'),(1029,'N'),(1030,'N'),(1031,'N'),(1032,'N'),(1033,'N'),(1034,'N'),(1035,'N'),(1036,'N'),(1037,'N'),(1038,'N'),(1039,'N'),(1040,'N'),(1041,'N'),(1042,'N'),(1043,'N'),(1044,'N'),(1045,'N'),(1046,'N'),(1047,'N'),(1048,'N'),(1049,'N'),(1050,'N'),(1051,'N'),(1052,'N'),(1053,'N'),(1054,'N'),(1055,'N'),(1056,'N'),(1057,'N'),(1058,'N'),(1059,'N'),(1060,'N'),(1061,'N'),(1062,'N'),(1063,'N'),(1064,'N'),(1065,'N'),(1066,'N'),(1067,'N'),(1068,'N'),(1069,'N'),(1070,'N'),(1071,'N'),(1072,'N'),(1073,'N'),(1074,'N'),(1075,'N'),(1076,'N'),(1077,'N'),(1078,'N'),(1079,'N'),(1080,'N'),(1081,'N'),(1082,'N'),(1083,'N'),(1084,'N'),(1085,'N'),(1086,'N'),(1087,'N'),(1088,'N'),(1089,'N'),(1090,'N'),(1091,'N'),(1092,'N'),(1093,'N'),(1094,'N'),(1095,'N'),(1096,'N'),(1097,'N'),(1098,'N'),(1099,'N'),(1100,'N'),(1101,'N'),(1102,'N'),(1103,'N'),(1104,'N'),(1105,'N'),(1106,'N'),(1107,'N'),(1108,'N'),(1109,'N'),(1110,'N'),(1111,'N'),(1112,'N'),(1113,'N'),(1114,'N'),(1115,'N'),(1116,'N'),(1117,'N'),(1118,'N'),(1119,'N'),(1120,'N'),(1121,'N'),(1122,'N'),(1123,'N'),(1124,'N'),(1125,'N'),(1126,'N'),(1127,'N'),(1128,'N'),(1129,'N'),(1130,'N'),(1131,'N'),(1132,'N'),(1133,'N'),(1134,'N'),(1135,'N'),(1136,'N'),(1137,'N'),(1138,'N'),(1139,'N'),(1140,'N'),(1141,'N'),(1142,'N'),(1143,'N'),(1144,'N'),(1145,'N'),(1146,'N'),(1147,'N'),(1148,'N'),(1149,'N'),(1150,'N'),(1151,'N'),(1152,'N'),(1153,'N'),(1154,'N'),(1155,'N'),(1156,'N'),(1157,'N'),(1158,'N'),(1159,'N'),(1160,'N'),(1161,'N'),(1162,'N'),(1163,'N'),(1164,'N'),(1165,'N'),(1166,'N'),(1167,'N'),(1168,'N'),(1169,'N'),(1170,'N'),(1171,'N'),(1172,'N'),(1173,'N'),(1174,'N'),(1175,'N'),(1176,'N'),(1177,'N'),(1178,'N'),(1179,'N'),(1180,'N'),(1181,'N'),(1182,'N'),(1183,'N'),(1184,'N'),(1185,'N'),(1186,'N'),(1187,'N'),(1188,'N'),(1189,'N'),(1190,'N'),(1191,'N'),(1192,'N'),(1193,'N'),(1194,'N'),(1195,'N'),(1196,'N'),(1197,'N'),(1198,'N'),(1199,'N'),(1200,'N'),(1201,'N'),(1202,'N'),(1203,'N'),(1204,'N'),(1205,'N'),(1206,'N'),(1207,'N'),(1208,'N'),(1209,'N'),(1210,'N'),(1211,'N'),(1212,'N'),(1213,'N'),(1214,'N'),(1215,'N'),(1216,'N'),(1217,'Y'),(1218,'Y'),(1219,'Y'),(1220,'Y'),(1221,'Y'),(1222,'Y'),(1223,'Y'),(1224,'Y'),(1225,'Y'),(1226,'Y'),(1227,'Y'),(1228,'Y'),(1229,'Y'),(1230,'Y'),(1231,'Y'),(1232,'Y'),(1233,'Y'),(1234,'Y'),(1235,'Y'),(1236,'Y'),(1237,'Y'),(1238,'Y'),(1239,'Y'),(1240,'Y'),(1241,'Y'),(1242,'Y'),(1243,'Y'),(1244,'Y'),(1245,'Y'),(1246,'Y'),(1247,'Y'),(1248,'Y'),(1249,'Y'),(1250,'Y'),(1251,'Y'),(1252,'Y'),(1253,'Y'),(1254,'Y'),(1255,'Y'),(1256,'Y'),(1257,'Y'),(1258,'Y'),(1259,'Y'),(1260,'Y'),(1261,'Y'),(1262,'Y'),(1263,'Y'),(1264,'Y'),(1265,'Y'),(1266,'Y'),(1267,'Y'),(1268,'Y'),(1269,'Y'),(1270,'Y'),(1271,'Y'),(1272,'Y'),(1273,'Y'),(1274,'Y'),(1275,'Y'),(1276,'Y'),(1277,'Y'),(1278,'Y'),(1279,'Y'),(1280,'Y'),(1281,'Y'),(1282,'Y'),(1283,'Y'),(1284,'Y'),(1285,'Y'),(1286,'Y'),(1287,'Y'),(1288,'Y'),(1289,'Y'),(1290,'Y'),(1291,'Y'),(1292,'Y'),(1293,'Y'),(1294,'Y'),(1295,'Y'),(1296,'Y'),(1297,'Y'),(1298,'Y'),(1299,'Y'),(1300,'Y'),(1301,'Y'),(1302,'Y'),(1303,'Y'),(1304,'Y'),(1305,'Y'),(1306,'Y'),(1307,'Y'),(1308,'Y'),(1309,'Y'),(1310,'Y'),(1311,'Y'),(1312,'Y'),(1313,'Y'),(1314,'Y'),(1315,'Y'),(1316,'Y'),(1317,'Y'),(1318,'Y'),(1319,'Y'),(1320,'Y'),(1321,'Y'),(1322,'Y'),(1323,'Y'),(1324,'Y'),(1325,'Y'),(1326,'Y'),(1327,'Y'),(1328,'Y'),(1329,'Y'),(1330,'Y'),(1331,'Y'),(1332,'Y'),(1333,'Y'),(1334,'Y'),(1335,'Y'),(1336,'Y'),(1337,'Y'),(1338,'Y'),(1339,'Y'),(1340,'Y'),(1341,'Y'),(1342,'Y'),(1343,'Y'),(1344,'Y'),(1345,'Y'),(1346,'Y'),(1347,'Y'),(1348,'Y'),(1349,'Y'),(1350,'Y'),(1351,'Y'),(1352,'Y'),(1353,'Y'),(1354,'Y'),(1355,'Y'),(1356,'Y'),(1357,'Y'),(1358,'Y'),(1359,'Y'),(1360,'Y'),(1361,'Y'),(1362,'Y'),(1363,'Y'),(1364,'Y'),(1365,'Y'),(1366,'Y'),(1367,'Y'),(1368,'Y'),(1369,'Y'),(1370,'Y'),(1371,'Y'),(1372,'Y'),(1373,'Y'),(1374,'Y'),(1375,'Y'),(1376,'Y'),(1377,'Y'),(1378,'Y'),(1379,'Y'),(1380,'Y'),(1381,'Y'),(1382,'Y'),(1383,'Y'),(1384,'Y'),(1385,'Y'),(1386,'Y'),(1387,'Y'),(1388,'Y'),(1389,'Y'),(1390,'Y'),(1391,'Y'),(1392,'Y'),(1393,'Y'),(1394,'Y'),(1395,'Y'),(1396,'Y'),(1397,'Y'),(1398,'Y'),(1399,'Y'),(1400,'Y'),(1401,'Y'),(1402,'Y'),(1403,'Y'),(1404,'Y'),(1405,'Y'),(1406,'Y'),(1407,'Y'),(1408,'Y'),(1409,'Y'),(1410,'Y'),(1411,'Y'),(1412,'Y'),(1413,'Y'),(1414,'Y'),(1415,'Y'),(1416,'Y'),(1417,'Y'),(1418,'Y'),(1419,'Y'),(1420,'Y'),(1421,'Y'),(1422,'Y'),(1423,'Y'),(1424,'Y'),(1425,'Y'),(1426,'Y'),(1427,'Y'),(1428,'Y'),(1429,'Y'),(1430,'Y'),(1431,'Y'),(1432,'Y'),(1433,'Y'),(1434,'Y'),(1435,'Y'),(1436,'Y'),(1437,'Y'),(1438,'Y'),(1439,'Y'),(1440,'Y'),(1441,'Y'),(1442,'Y'),(1443,'Y'),(1444,'Y'),(1445,'Y'),(1446,'Y'),(1447,'Y'),(1448,'Y'),(1449,'Y'),(1450,'Y'),(1451,'Y'),(1452,'Y'),(1453,'Y'),(1454,'Y'),(1455,'Y'),(1456,'Y'),(1457,'Y'),(1458,'Y'),(1459,'Y'),(1460,'Y'),(1461,'Y'),(1462,'Y'),(1463,'Y'),(1464,'Y'),(1465,'Y'),(1466,'Y'),(1467,'Y'),(1468,'Y'),(1469,'Y'),(1470,'Y'),(1471,'Y'),(1472,'Y'),(1473,'Y'),(1474,'Y'),(1475,'Y'),(1476,'Y'),(1477,'Y'),(1478,'Y'),(1479,'Y'),(1480,'Y'),(1481,'Y'),(1482,'Y'),(1483,'Y'),(1484,'Y'),(1485,'Y'),(1486,'Y'),(1487,'Y'),(1488,'Y'),(1489,'Y'),(1490,'Y'),(1491,'Y'),(1492,'Y'),(1493,'Y'),(1494,'Y'),(1495,'Y'),(1496,'Y'),(1497,'Y'),(1498,'Y'),(1499,'Y'),(1500,'Y'),(1501,'Y'),(1502,'Y'),(1503,'Y'),(1504,'Y'),(1505,'Y'),(1506,'Y'),(1507,'Y'),(1508,'Y'),(1509,'Y'),(1510,'Y'),(1511,'Y'),(1512,'Y'),(1513,'Y'),(1514,'Y'),(1515,'Y'),(1516,'Y'),(1517,'Y'),(1518,'Y'),(1519,'Y'),(1520,'Y'),(1521,'Y'),(1522,'Y'),(1523,'Y'),(1524,'Y'),(1525,'Y'),(1526,'Y'),(1527,'Y'),(1528,'Y'),(1529,'Y'),(1530,'Y'),(1531,'Y'),(1532,'Y'),(1533,'Y'),(1534,'Y'),(1535,'Y'),(1536,'Y'),(1537,'Y'),(1538,'Y'),(1539,'Y'),(1540,'Y'),(1541,'Y'),(1542,'Y'),(1543,'Y'),(1544,'Y'),(1545,'Y'),(1546,'Y'),(1547,'Y'),(1548,'Y'),(1549,'Y'),(1550,'Y'),(1551,'Y'),(1552,'Y'),(1553,'Y'),(1554,'Y'),(1555,'Y'),(1556,'Y'),(1557,'Y'),(1558,'Y'),(1559,'Y'),(1560,'Y'),(1561,'Y'),(1562,'Y'),(1563,'Y'),(1564,'Y'),(1565,'Y'),(1566,'Y'),(1567,'Y'),(1568,'Y'),(1569,'Y'),(1570,'Y'),(1571,'Y'),(1572,'Y'),(1573,'Y'),(1574,'Y'),(1575,'Y'),(1576,'Y'),(1577,'Y'),(1578,'Y'),(1579,'Y'),(1580,'Y'),(1581,'Y'),(1582,'Y'),(1583,'Y'),(1584,'Y'),(1585,'Y'),(1586,'Y'),(1587,'Y'),(1588,'Y'),(1589,'Y'),(1590,'Y'),(1591,'Y'),(1592,'Y'),(1593,'Y'),(1594,'Y'),(1595,'Y'),(1596,'Y'),(1597,'Y'),(1598,'Y'),(1599,'Y'),(1600,'Y'),(1601,'Y'),(1602,'Y'),(1603,'Y'),(1604,'Y'),(1605,'Y'),(1606,'Y'),(1607,'Y'),(1608,'Y'),(1609,'Y'),(1610,'Y'),(1611,'Y'),(1612,'Y'),(1613,'Y'),(1614,'Y'),(1615,'Y'),(1616,'Y'),(1617,'Y'),(1618,'Y'),(1619,'Y'),(1620,'Y'),(1621,'Y'),(1622,'Y'),(1623,'Y'),(1624,'Y'),(1625,'Y'),(1626,'Y'),(1627,'Y'),(1628,'Y'),(1629,'Y'),(1630,'Y'),(1631,'Y'),(1632,'Y'),(1633,'Y'),(1634,'Y'),(1635,'Y'),(1636,'Y'),(1637,'Y'),(1638,'Y'),(1639,'Y'),(1640,'Y'),(1641,'Y'),(1642,'Y'),(1643,'Y'),(1644,'Y'),(1645,'Y'),(1646,'Y'),(1647,'Y'),(1648,'Y'),(1649,'Y'),(1650,'Y'),(1651,'Y'),(1652,'Y'),(1653,'Y'),(1654,'Y'),(1655,'Y'),(1656,'Y'),(1657,'Y'),(1658,'Y'),(1659,'Y'),(1660,'Y'),(1661,'Y'),(1662,'Y'),(1663,'Y'),(1664,'Y'),(1665,'Y'),(1666,'Y'),(1667,'Y'),(1668,'Y'),(1669,'Y'),(1670,'Y'),(1671,'Y'),(1672,'Y'),(1673,'Y'),(1674,'Y'),(1675,'Y'),(1676,'Y'),(1677,'Y'),(1678,'Y'),(1679,'Y'),(1680,'Y'),(1681,'Y'),(1682,'Y'),(1683,'Y'),(1684,'Y'),(1685,'Y'),(1686,'Y'),(1687,'Y'),(1688,'Y'),(1689,'Y'),(1690,'Y'),(1691,'Y'),(1692,'Y'),(1693,'Y'),(1694,'Y'),(1695,'Y'),(1696,'Y'),(1697,'Y'),(1698,'Y'),(1699,'Y'),(1700,'Y'),(1701,'Y'),(1702,'Y'),(1703,'Y'),(1704,'Y'),(1705,'Y'),(1706,'Y'),(1707,'Y'),(1708,'Y'),(1709,'Y'),(1710,'Y'),(1711,'Y'),(1712,'Y'),(1713,'Y'),(1714,'Y'),(1715,'Y'),(1716,'Y'),(1717,'Y'),(1718,'Y'),(1719,'Y'),(1720,'Y'),(1721,'Y'),(1722,'Y'),(1723,'Y'),(1724,'Y'),(1725,'Y'),(1726,'Y'),(1727,'Y'),(1728,'Y'),(1729,'Y'),(1730,'Y'),(1731,'Y'),(1732,'Y'),(1733,'Y'),(1734,'Y'),(1735,'Y'),(1736,'Y'),(1737,'Y'),(1738,'Y'),(1739,'Y'),(1740,'Y'),(1741,'Y'),(1742,'Y'),(1743,'Y'),(1744,'Y'),(1745,'Y'),(1746,'Y'),(1747,'Y'),(1748,'Y'),(1749,'Y'),(1750,'Y'),(1751,'Y'),(1752,'Y'),(1753,'Y'),(1754,'Y'),(1755,'Y'),(1756,'Y'),(1757,'Y'),(1758,'Y'),(1759,'Y'),(1760,'Y'),(1761,'Y'),(1762,'Y'),(1763,'Y'),(1764,'Y'),(1765,'Y'),(1766,'Y'),(1767,'Y'),(1768,'Y'),(1769,'Y'),(1770,'Y'),(1771,'Y'),(1772,'Y'),(1773,'Y'),(1774,'Y'),(1775,'Y'),(1776,'Y'),(1777,'Y'),(1778,'Y'),(1779,'Y'),(1780,'Y'),(1781,'Y'),(1782,'Y'),(1783,'Y'),(1784,'Y'),(1785,'Y'),(1786,'Y'),(1787,'Y'),(1788,'Y'),(1789,'Y'),(1790,'Y'),(1791,'Y'),(1792,'Y'),(1793,'Y'),(1794,'Y'),(1795,'Y'),(1796,'Y'),(1797,'Y'),(1798,'Y'),(1799,'Y'),(1800,'Y'),(1801,'Y'),(1802,'Y'),(1803,'Y'),(1804,'Y'),(1805,'Y'),(1806,'Y'),(1807,'Y'),(1808,'Y'),(1809,'Y'),(1810,'Y'),(1811,'Y'),(1812,'Y'),(1813,'Y'),(1814,'Y'),(1815,'Y'),(1816,'Y'),(1817,'Y'),(1818,'Y'),(1819,'Y'),(1820,'Y'),(1821,'Y'),(1822,'Y'),(1823,'Y'); +/*!40000 ALTER TABLE `time_zone` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `time_zone_leap_second` +-- + +DROP TABLE IF EXISTS `time_zone_leap_second`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `time_zone_leap_second` ( + `Transition_time` bigint(20) NOT NULL, + `Correction` int(11) NOT NULL, + PRIMARY KEY (`Transition_time`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Leap seconds information for time zones'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `time_zone_leap_second` +-- + +LOCK TABLES `time_zone_leap_second` WRITE; +/*!40000 ALTER TABLE `time_zone_leap_second` DISABLE KEYS */; +/*!40000 ALTER TABLE `time_zone_leap_second` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `time_zone_name` +-- + +DROP TABLE IF EXISTS `time_zone_name`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `time_zone_name` ( + `Name` char(64) NOT NULL, + `Time_zone_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`Name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone names'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `time_zone_name` +-- + +LOCK TABLES `time_zone_name` WRITE; +/*!40000 ALTER TABLE `time_zone_name` DISABLE KEYS */; +INSERT INTO `time_zone_name` VALUES ('Africa/Abidjan',1),('Africa/Accra',2),('Africa/Addis_Ababa',3),('Africa/Algiers',4),('Africa/Asmara',5),('Africa/Asmera',6),('Africa/Bamako',7),('Africa/Bangui',8),('Africa/Banjul',9),('Africa/Bissau',10),('Africa/Blantyre',11),('Africa/Brazzaville',12),('Africa/Bujumbura',13),('Africa/Cairo',14),('Africa/Casablanca',15),('Africa/Ceuta',16),('Africa/Conakry',17),('Africa/Dakar',18),('Africa/Dar_es_Salaam',19),('Africa/Djibouti',20),('Africa/Douala',21),('Africa/El_Aaiun',22),('Africa/Freetown',23),('Africa/Gaborone',24),('Africa/Harare',25),('Africa/Johannesburg',26),('Africa/Juba',27),('Africa/Kampala',28),('Africa/Khartoum',29),('Africa/Kigali',30),('Africa/Kinshasa',31),('Africa/Lagos',32),('Africa/Libreville',33),('Africa/Lome',34),('Africa/Luanda',35),('Africa/Lubumbashi',36),('Africa/Lusaka',37),('Africa/Malabo',38),('Africa/Maputo',39),('Africa/Maseru',40),('Africa/Mbabane',41),('Africa/Mogadishu',42),('Africa/Monrovia',43),('Africa/Nairobi',44),('Africa/Ndjamena',45),('Africa/Niamey',46),('Africa/Nouakchott',47),('Africa/Ouagadougou',48),('Africa/Porto-Novo',49),('Africa/Sao_Tome',50),('Africa/Timbuktu',51),('Africa/Tripoli',52),('Africa/Tunis',53),('Africa/Windhoek',54),('America/Adak',55),('America/Anchorage',56),('America/Anguilla',57),('America/Antigua',58),('America/Araguaina',59),('America/Argentina/Buenos_Aires',60),('America/Argentina/Catamarca',61),('America/Argentina/ComodRivadavia',62),('America/Argentina/Cordoba',63),('America/Argentina/Jujuy',64),('America/Argentina/La_Rioja',65),('America/Argentina/Mendoza',66),('America/Argentina/Rio_Gallegos',67),('America/Argentina/Salta',68),('America/Argentina/San_Juan',69),('America/Argentina/San_Luis',70),('America/Argentina/Tucuman',71),('America/Argentina/Ushuaia',72),('America/Aruba',73),('America/Asuncion',74),('America/Atikokan',75),('America/Atka',76),('America/Bahia',77),('America/Bahia_Banderas',78),('America/Barbados',79),('America/Belem',80),('America/Belize',81),('America/Blanc-Sablon',82),('America/Boa_Vista',83),('America/Bogota',84),('America/Boise',85),('America/Buenos_Aires',86),('America/Cambridge_Bay',87),('America/Campo_Grande',88),('America/Cancun',89),('America/Caracas',90),('America/Catamarca',91),('America/Cayenne',92),('America/Cayman',93),('America/Chicago',94),('America/Chihuahua',95),('America/Coral_Harbour',96),('America/Cordoba',97),('America/Costa_Rica',98),('America/Creston',99),('America/Cuiaba',100),('America/Curacao',101),('America/Danmarkshavn',102),('America/Dawson',103),('America/Dawson_Creek',104),('America/Denver',105),('America/Detroit',106),('America/Dominica',107),('America/Edmonton',108),('America/Eirunepe',109),('America/El_Salvador',110),('America/Ensenada',111),('America/Fort_Nelson',112),('America/Fort_Wayne',113),('America/Fortaleza',114),('America/Glace_Bay',115),('America/Godthab',116),('America/Goose_Bay',117),('America/Grand_Turk',118),('America/Grenada',119),('America/Guadeloupe',120),('America/Guatemala',121),('America/Guayaquil',122),('America/Guyana',123),('America/Halifax',124),('America/Havana',125),('America/Hermosillo',126),('America/Indiana/Indianapolis',127),('America/Indiana/Knox',128),('America/Indiana/Marengo',129),('America/Indiana/Petersburg',130),('America/Indiana/Tell_City',131),('America/Indiana/Vevay',132),('America/Indiana/Vincennes',133),('America/Indiana/Winamac',134),('America/Indianapolis',135),('America/Inuvik',136),('America/Iqaluit',137),('America/Jamaica',138),('America/Jujuy',139),('America/Juneau',140),('America/Kentucky/Louisville',141),('America/Kentucky/Monticello',142),('America/Knox_IN',143),('America/Kralendijk',144),('America/La_Paz',145),('America/Lima',146),('America/Los_Angeles',147),('America/Louisville',148),('America/Lower_Princes',149),('America/Maceio',150),('America/Managua',151),('America/Manaus',152),('America/Marigot',153),('America/Martinique',154),('America/Matamoros',155),('America/Mazatlan',156),('America/Mendoza',157),('America/Menominee',158),('America/Merida',159),('America/Metlakatla',160),('America/Mexico_City',161),('America/Miquelon',162),('America/Moncton',163),('America/Monterrey',164),('America/Montevideo',165),('America/Montreal',166),('America/Montserrat',167),('America/Nassau',168),('America/New_York',169),('America/Nipigon',170),('America/Nome',171),('America/Noronha',172),('America/North_Dakota/Beulah',173),('America/North_Dakota/Center',174),('America/North_Dakota/New_Salem',175),('America/Ojinaga',176),('America/Panama',177),('America/Pangnirtung',178),('America/Paramaribo',179),('America/Phoenix',180),('America/Port-au-Prince',181),('America/Port_of_Spain',182),('America/Porto_Acre',183),('America/Porto_Velho',184),('America/Puerto_Rico',185),('America/Punta_Arenas',186),('America/Rainy_River',187),('America/Rankin_Inlet',188),('America/Recife',189),('America/Regina',190),('America/Resolute',191),('America/Rio_Branco',192),('America/Rosario',193),('America/Santa_Isabel',194),('America/Santarem',195),('America/Santiago',196),('America/Santo_Domingo',197),('America/Sao_Paulo',198),('America/Scoresbysund',199),('America/Shiprock',200),('America/Sitka',201),('America/St_Barthelemy',202),('America/St_Johns',203),('America/St_Kitts',204),('America/St_Lucia',205),('America/St_Thomas',206),('America/St_Vincent',207),('America/Swift_Current',208),('America/Tegucigalpa',209),('America/Thule',210),('America/Thunder_Bay',211),('America/Tijuana',212),('America/Toronto',213),('America/Tortola',214),('America/Vancouver',215),('America/Virgin',216),('America/Whitehorse',217),('America/Winnipeg',218),('America/Yakutat',219),('America/Yellowknife',220),('Antarctica/Casey',221),('Antarctica/Davis',222),('Antarctica/DumontDUrville',223),('Antarctica/Macquarie',224),('Antarctica/Mawson',225),('Antarctica/McMurdo',226),('Antarctica/Palmer',227),('Antarctica/Rothera',228),('Antarctica/South_Pole',229),('Antarctica/Syowa',230),('Antarctica/Troll',231),('Antarctica/Vostok',232),('Arctic/Longyearbyen',233),('Asia/Aden',234),('Asia/Almaty',235),('Asia/Amman',236),('Asia/Anadyr',237),('Asia/Aqtau',238),('Asia/Aqtobe',239),('Asia/Ashgabat',240),('Asia/Ashkhabad',241),('Asia/Atyrau',242),('Asia/Baghdad',243),('Asia/Bahrain',244),('Asia/Baku',245),('Asia/Bangkok',246),('Asia/Barnaul',247),('Asia/Beirut',248),('Asia/Bishkek',249),('Asia/Brunei',250),('Asia/Calcutta',251),('Asia/Chita',252),('Asia/Choibalsan',253),('Asia/Chongqing',254),('Asia/Chungking',255),('Asia/Colombo',256),('Asia/Dacca',257),('Asia/Damascus',258),('Asia/Dhaka',259),('Asia/Dili',260),('Asia/Dubai',261),('Asia/Dushanbe',262),('Asia/Famagusta',263),('Asia/Gaza',264),('Asia/Harbin',265),('Asia/Hebron',266),('Asia/Ho_Chi_Minh',267),('Asia/Hong_Kong',268),('Asia/Hovd',269),('Asia/Irkutsk',270),('Asia/Istanbul',271),('Asia/Jakarta',272),('Asia/Jayapura',273),('Asia/Jerusalem',274),('Asia/Kabul',275),('Asia/Kamchatka',276),('Asia/Karachi',277),('Asia/Kashgar',278),('Asia/Kathmandu',279),('Asia/Katmandu',280),('Asia/Khandyga',281),('Asia/Kolkata',282),('Asia/Krasnoyarsk',283),('Asia/Kuala_Lumpur',284),('Asia/Kuching',285),('Asia/Kuwait',286),('Asia/Macao',287),('Asia/Macau',288),('Asia/Magadan',289),('Asia/Makassar',290),('Asia/Manila',291),('Asia/Muscat',292),('Asia/Nicosia',293),('Asia/Novokuznetsk',294),('Asia/Novosibirsk',295),('Asia/Omsk',296),('Asia/Oral',297),('Asia/Phnom_Penh',298),('Asia/Pontianak',299),('Asia/Pyongyang',300),('Asia/Qatar',301),('Asia/Qostanay',302),('Asia/Qyzylorda',303),('Asia/Rangoon',304),('Asia/Riyadh',305),('Asia/Saigon',306),('Asia/Sakhalin',307),('Asia/Samarkand',308),('Asia/Seoul',309),('Asia/Shanghai',310),('Asia/Singapore',311),('Asia/Srednekolymsk',312),('Asia/Taipei',313),('Asia/Tashkent',314),('Asia/Tbilisi',315),('Asia/Tehran',316),('Asia/Tel_Aviv',317),('Asia/Thimbu',318),('Asia/Thimphu',319),('Asia/Tokyo',320),('Asia/Tomsk',321),('Asia/Ujung_Pandang',322),('Asia/Ulaanbaatar',323),('Asia/Ulan_Bator',324),('Asia/Urumqi',325),('Asia/Ust-Nera',326),('Asia/Vientiane',327),('Asia/Vladivostok',328),('Asia/Yakutsk',329),('Asia/Yangon',330),('Asia/Yekaterinburg',331),('Asia/Yerevan',332),('Atlantic/Azores',333),('Atlantic/Bermuda',334),('Atlantic/Canary',335),('Atlantic/Cape_Verde',336),('Atlantic/Faeroe',337),('Atlantic/Faroe',338),('Atlantic/Jan_Mayen',339),('Atlantic/Madeira',340),('Atlantic/Reykjavik',341),('Atlantic/South_Georgia',342),('Atlantic/St_Helena',343),('Atlantic/Stanley',344),('Australia/ACT',345),('Australia/Adelaide',346),('Australia/Brisbane',347),('Australia/Broken_Hill',348),('Australia/Canberra',349),('Australia/Currie',350),('Australia/Darwin',351),('Australia/Eucla',352),('Australia/Hobart',353),('Australia/LHI',354),('Australia/Lindeman',355),('Australia/Lord_Howe',356),('Australia/Melbourne',357),('Australia/NSW',358),('Australia/North',359),('Australia/Perth',360),('Australia/Queensland',361),('Australia/South',362),('Australia/Sydney',363),('Australia/Tasmania',364),('Australia/Victoria',365),('Australia/West',366),('Australia/Yancowinna',367),('Brazil/Acre',368),('Brazil/DeNoronha',369),('Brazil/East',370),('Brazil/West',371),('CET',372),('CST6CDT',373),('Canada/Atlantic',374),('Canada/Central',375),('Canada/Eastern',376),('Canada/Mountain',377),('Canada/Newfoundland',378),('Canada/Pacific',379),('Canada/Saskatchewan',380),('Canada/Yukon',381),('Chile/Continental',382),('Chile/EasterIsland',383),('Cuba',384),('EET',385),('EST',386),('EST5EDT',387),('Egypt',388),('Eire',389),('Etc/GMT',390),('Etc/GMT+0',391),('Etc/GMT+1',392),('Etc/GMT+10',393),('Etc/GMT+11',394),('Etc/GMT+12',395),('Etc/GMT+2',396),('Etc/GMT+3',397),('Etc/GMT+4',398),('Etc/GMT+5',399),('Etc/GMT+6',400),('Etc/GMT+7',401),('Etc/GMT+8',402),('Etc/GMT+9',403),('Etc/GMT-0',404),('Etc/GMT-1',405),('Etc/GMT-10',406),('Etc/GMT-11',407),('Etc/GMT-12',408),('Etc/GMT-13',409),('Etc/GMT-14',410),('Etc/GMT-2',411),('Etc/GMT-3',412),('Etc/GMT-4',413),('Etc/GMT-5',414),('Etc/GMT-6',415),('Etc/GMT-7',416),('Etc/GMT-8',417),('Etc/GMT-9',418),('Etc/GMT0',419),('Etc/Greenwich',420),('Etc/UCT',421),('Etc/UTC',422),('Etc/Universal',423),('Etc/Zulu',424),('Europe/Amsterdam',425),('Europe/Andorra',426),('Europe/Astrakhan',427),('Europe/Athens',428),('Europe/Belfast',429),('Europe/Belgrade',430),('Europe/Berlin',431),('Europe/Bratislava',432),('Europe/Brussels',433),('Europe/Bucharest',434),('Europe/Budapest',435),('Europe/Busingen',436),('Europe/Chisinau',437),('Europe/Copenhagen',438),('Europe/Dublin',439),('Europe/Gibraltar',440),('Europe/Guernsey',441),('Europe/Helsinki',442),('Europe/Isle_of_Man',443),('Europe/Istanbul',444),('Europe/Jersey',445),('Europe/Kaliningrad',446),('Europe/Kiev',447),('Europe/Kirov',448),('Europe/Lisbon',449),('Europe/Ljubljana',450),('Europe/London',451),('Europe/Luxembourg',452),('Europe/Madrid',453),('Europe/Malta',454),('Europe/Mariehamn',455),('Europe/Minsk',456),('Europe/Monaco',457),('Europe/Moscow',458),('Europe/Nicosia',459),('Europe/Oslo',460),('Europe/Paris',461),('Europe/Podgorica',462),('Europe/Prague',463),('Europe/Riga',464),('Europe/Rome',465),('Europe/Samara',466),('Europe/San_Marino',467),('Europe/Sarajevo',468),('Europe/Saratov',469),('Europe/Simferopol',470),('Europe/Skopje',471),('Europe/Sofia',472),('Europe/Stockholm',473),('Europe/Tallinn',474),('Europe/Tirane',475),('Europe/Tiraspol',476),('Europe/Ulyanovsk',477),('Europe/Uzhgorod',478),('Europe/Vaduz',479),('Europe/Vatican',480),('Europe/Vienna',481),('Europe/Vilnius',482),('Europe/Volgograd',483),('Europe/Warsaw',484),('Europe/Zagreb',485),('Europe/Zaporozhye',486),('Europe/Zurich',487),('Factory',488),('GB',489),('GB-Eire',490),('GMT',491),('GMT+0',492),('GMT-0',493),('GMT0',494),('Greenwich',495),('HST',496),('Hongkong',497),('Iceland',498),('Indian/Antananarivo',499),('Indian/Chagos',500),('Indian/Christmas',501),('Indian/Cocos',502),('Indian/Comoro',503),('Indian/Kerguelen',504),('Indian/Mahe',505),('Indian/Maldives',506),('Indian/Mauritius',507),('Indian/Mayotte',508),('Indian/Reunion',509),('Iran',510),('Israel',511),('Jamaica',512),('Japan',513),('Kwajalein',514),('Libya',515),('MET',516),('MST',517),('MST7MDT',518),('Mexico/BajaNorte',519),('Mexico/BajaSur',520),('Mexico/General',521),('NZ',522),('NZ-CHAT',523),('Navajo',524),('PRC',525),('PST8PDT',526),('Pacific/Apia',527),('Pacific/Auckland',528),('Pacific/Bougainville',529),('Pacific/Chatham',530),('Pacific/Chuuk',531),('Pacific/Easter',532),('Pacific/Efate',533),('Pacific/Enderbury',534),('Pacific/Fakaofo',535),('Pacific/Fiji',536),('Pacific/Funafuti',537),('Pacific/Galapagos',538),('Pacific/Gambier',539),('Pacific/Guadalcanal',540),('Pacific/Guam',541),('Pacific/Honolulu',542),('Pacific/Johnston',543),('Pacific/Kiritimati',544),('Pacific/Kosrae',545),('Pacific/Kwajalein',546),('Pacific/Majuro',547),('Pacific/Marquesas',548),('Pacific/Midway',549),('Pacific/Nauru',550),('Pacific/Niue',551),('Pacific/Norfolk',552),('Pacific/Noumea',553),('Pacific/Pago_Pago',554),('Pacific/Palau',555),('Pacific/Pitcairn',556),('Pacific/Pohnpei',557),('Pacific/Ponape',558),('Pacific/Port_Moresby',559),('Pacific/Rarotonga',560),('Pacific/Saipan',561),('Pacific/Samoa',562),('Pacific/Tahiti',563),('Pacific/Tarawa',564),('Pacific/Tongatapu',565),('Pacific/Truk',566),('Pacific/Wake',567),('Pacific/Wallis',568),('Pacific/Yap',569),('Poland',570),('Portugal',571),('ROC',572),('ROK',573),('Singapore',574),('SystemV/AST4',575),('SystemV/AST4ADT',576),('SystemV/CST6',577),('SystemV/CST6CDT',578),('SystemV/EST5',579),('SystemV/EST5EDT',580),('SystemV/HST10',581),('SystemV/MST7',582),('SystemV/MST7MDT',583),('SystemV/PST8',584),('SystemV/PST8PDT',585),('SystemV/YST9',586),('SystemV/YST9YDT',587),('Turkey',588),('UCT',589),('US/Alaska',590),('US/Aleutian',591),('US/Arizona',592),('US/Central',593),('US/East-Indiana',594),('US/Eastern',595),('US/Hawaii',596),('US/Indiana-Starke',597),('US/Michigan',598),('US/Mountain',599),('US/Pacific',600),('US/Pacific-New',601),('US/Samoa',602),('UTC',603),('Universal',604),('W-SU',605),('WET',606),('Zulu',607),('localtime',608),('posix/Africa/Abidjan',609),('posix/Africa/Accra',610),('posix/Africa/Addis_Ababa',611),('posix/Africa/Algiers',612),('posix/Africa/Asmara',613),('posix/Africa/Asmera',614),('posix/Africa/Bamako',615),('posix/Africa/Bangui',616),('posix/Africa/Banjul',617),('posix/Africa/Bissau',618),('posix/Africa/Blantyre',619),('posix/Africa/Brazzaville',620),('posix/Africa/Bujumbura',621),('posix/Africa/Cairo',622),('posix/Africa/Casablanca',623),('posix/Africa/Ceuta',624),('posix/Africa/Conakry',625),('posix/Africa/Dakar',626),('posix/Africa/Dar_es_Salaam',627),('posix/Africa/Djibouti',628),('posix/Africa/Douala',629),('posix/Africa/El_Aaiun',630),('posix/Africa/Freetown',631),('posix/Africa/Gaborone',632),('posix/Africa/Harare',633),('posix/Africa/Johannesburg',634),('posix/Africa/Juba',635),('posix/Africa/Kampala',636),('posix/Africa/Khartoum',637),('posix/Africa/Kigali',638),('posix/Africa/Kinshasa',639),('posix/Africa/Lagos',640),('posix/Africa/Libreville',641),('posix/Africa/Lome',642),('posix/Africa/Luanda',643),('posix/Africa/Lubumbashi',644),('posix/Africa/Lusaka',645),('posix/Africa/Malabo',646),('posix/Africa/Maputo',647),('posix/Africa/Maseru',648),('posix/Africa/Mbabane',649),('posix/Africa/Mogadishu',650),('posix/Africa/Monrovia',651),('posix/Africa/Nairobi',652),('posix/Africa/Ndjamena',653),('posix/Africa/Niamey',654),('posix/Africa/Nouakchott',655),('posix/Africa/Ouagadougou',656),('posix/Africa/Porto-Novo',657),('posix/Africa/Sao_Tome',658),('posix/Africa/Timbuktu',659),('posix/Africa/Tripoli',660),('posix/Africa/Tunis',661),('posix/Africa/Windhoek',662),('posix/America/Adak',663),('posix/America/Anchorage',664),('posix/America/Anguilla',665),('posix/America/Antigua',666),('posix/America/Araguaina',667),('posix/America/Argentina/Buenos_Aires',668),('posix/America/Argentina/Catamarca',669),('posix/America/Argentina/ComodRivadavia',670),('posix/America/Argentina/Cordoba',671),('posix/America/Argentina/Jujuy',672),('posix/America/Argentina/La_Rioja',673),('posix/America/Argentina/Mendoza',674),('posix/America/Argentina/Rio_Gallegos',675),('posix/America/Argentina/Salta',676),('posix/America/Argentina/San_Juan',677),('posix/America/Argentina/San_Luis',678),('posix/America/Argentina/Tucuman',679),('posix/America/Argentina/Ushuaia',680),('posix/America/Aruba',681),('posix/America/Asuncion',682),('posix/America/Atikokan',683),('posix/America/Atka',684),('posix/America/Bahia',685),('posix/America/Bahia_Banderas',686),('posix/America/Barbados',687),('posix/America/Belem',688),('posix/America/Belize',689),('posix/America/Blanc-Sablon',690),('posix/America/Boa_Vista',691),('posix/America/Bogota',692),('posix/America/Boise',693),('posix/America/Buenos_Aires',694),('posix/America/Cambridge_Bay',695),('posix/America/Campo_Grande',696),('posix/America/Cancun',697),('posix/America/Caracas',698),('posix/America/Catamarca',699),('posix/America/Cayenne',700),('posix/America/Cayman',701),('posix/America/Chicago',702),('posix/America/Chihuahua',703),('posix/America/Coral_Harbour',704),('posix/America/Cordoba',705),('posix/America/Costa_Rica',706),('posix/America/Creston',707),('posix/America/Cuiaba',708),('posix/America/Curacao',709),('posix/America/Danmarkshavn',710),('posix/America/Dawson',711),('posix/America/Dawson_Creek',712),('posix/America/Denver',713),('posix/America/Detroit',714),('posix/America/Dominica',715),('posix/America/Edmonton',716),('posix/America/Eirunepe',717),('posix/America/El_Salvador',718),('posix/America/Ensenada',719),('posix/America/Fort_Nelson',720),('posix/America/Fort_Wayne',721),('posix/America/Fortaleza',722),('posix/America/Glace_Bay',723),('posix/America/Godthab',724),('posix/America/Goose_Bay',725),('posix/America/Grand_Turk',726),('posix/America/Grenada',727),('posix/America/Guadeloupe',728),('posix/America/Guatemala',729),('posix/America/Guayaquil',730),('posix/America/Guyana',731),('posix/America/Halifax',732),('posix/America/Havana',733),('posix/America/Hermosillo',734),('posix/America/Indiana/Indianapolis',735),('posix/America/Indiana/Knox',736),('posix/America/Indiana/Marengo',737),('posix/America/Indiana/Petersburg',738),('posix/America/Indiana/Tell_City',739),('posix/America/Indiana/Vevay',740),('posix/America/Indiana/Vincennes',741),('posix/America/Indiana/Winamac',742),('posix/America/Indianapolis',743),('posix/America/Inuvik',744),('posix/America/Iqaluit',745),('posix/America/Jamaica',746),('posix/America/Jujuy',747),('posix/America/Juneau',748),('posix/America/Kentucky/Louisville',749),('posix/America/Kentucky/Monticello',750),('posix/America/Knox_IN',751),('posix/America/Kralendijk',752),('posix/America/La_Paz',753),('posix/America/Lima',754),('posix/America/Los_Angeles',755),('posix/America/Louisville',756),('posix/America/Lower_Princes',757),('posix/America/Maceio',758),('posix/America/Managua',759),('posix/America/Manaus',760),('posix/America/Marigot',761),('posix/America/Martinique',762),('posix/America/Matamoros',763),('posix/America/Mazatlan',764),('posix/America/Mendoza',765),('posix/America/Menominee',766),('posix/America/Merida',767),('posix/America/Metlakatla',768),('posix/America/Mexico_City',769),('posix/America/Miquelon',770),('posix/America/Moncton',771),('posix/America/Monterrey',772),('posix/America/Montevideo',773),('posix/America/Montreal',774),('posix/America/Montserrat',775),('posix/America/Nassau',776),('posix/America/New_York',777),('posix/America/Nipigon',778),('posix/America/Nome',779),('posix/America/Noronha',780),('posix/America/North_Dakota/Beulah',781),('posix/America/North_Dakota/Center',782),('posix/America/North_Dakota/New_Salem',783),('posix/America/Ojinaga',784),('posix/America/Panama',785),('posix/America/Pangnirtung',786),('posix/America/Paramaribo',787),('posix/America/Phoenix',788),('posix/America/Port-au-Prince',789),('posix/America/Port_of_Spain',790),('posix/America/Porto_Acre',791),('posix/America/Porto_Velho',792),('posix/America/Puerto_Rico',793),('posix/America/Punta_Arenas',794),('posix/America/Rainy_River',795),('posix/America/Rankin_Inlet',796),('posix/America/Recife',797),('posix/America/Regina',798),('posix/America/Resolute',799),('posix/America/Rio_Branco',800),('posix/America/Rosario',801),('posix/America/Santa_Isabel',802),('posix/America/Santarem',803),('posix/America/Santiago',804),('posix/America/Santo_Domingo',805),('posix/America/Sao_Paulo',806),('posix/America/Scoresbysund',807),('posix/America/Shiprock',808),('posix/America/Sitka',809),('posix/America/St_Barthelemy',810),('posix/America/St_Johns',811),('posix/America/St_Kitts',812),('posix/America/St_Lucia',813),('posix/America/St_Thomas',814),('posix/America/St_Vincent',815),('posix/America/Swift_Current',816),('posix/America/Tegucigalpa',817),('posix/America/Thule',818),('posix/America/Thunder_Bay',819),('posix/America/Tijuana',820),('posix/America/Toronto',821),('posix/America/Tortola',822),('posix/America/Vancouver',823),('posix/America/Virgin',824),('posix/America/Whitehorse',825),('posix/America/Winnipeg',826),('posix/America/Yakutat',827),('posix/America/Yellowknife',828),('posix/Antarctica/Casey',829),('posix/Antarctica/Davis',830),('posix/Antarctica/DumontDUrville',831),('posix/Antarctica/Macquarie',832),('posix/Antarctica/Mawson',833),('posix/Antarctica/McMurdo',834),('posix/Antarctica/Palmer',835),('posix/Antarctica/Rothera',836),('posix/Antarctica/South_Pole',837),('posix/Antarctica/Syowa',838),('posix/Antarctica/Troll',839),('posix/Antarctica/Vostok',840),('posix/Arctic/Longyearbyen',841),('posix/Asia/Aden',842),('posix/Asia/Almaty',843),('posix/Asia/Amman',844),('posix/Asia/Anadyr',845),('posix/Asia/Aqtau',846),('posix/Asia/Aqtobe',847),('posix/Asia/Ashgabat',848),('posix/Asia/Ashkhabad',849),('posix/Asia/Atyrau',850),('posix/Asia/Baghdad',851),('posix/Asia/Bahrain',852),('posix/Asia/Baku',853),('posix/Asia/Bangkok',854),('posix/Asia/Barnaul',855),('posix/Asia/Beirut',856),('posix/Asia/Bishkek',857),('posix/Asia/Brunei',858),('posix/Asia/Calcutta',859),('posix/Asia/Chita',860),('posix/Asia/Choibalsan',861),('posix/Asia/Chongqing',862),('posix/Asia/Chungking',863),('posix/Asia/Colombo',864),('posix/Asia/Dacca',865),('posix/Asia/Damascus',866),('posix/Asia/Dhaka',867),('posix/Asia/Dili',868),('posix/Asia/Dubai',869),('posix/Asia/Dushanbe',870),('posix/Asia/Famagusta',871),('posix/Asia/Gaza',872),('posix/Asia/Harbin',873),('posix/Asia/Hebron',874),('posix/Asia/Ho_Chi_Minh',875),('posix/Asia/Hong_Kong',876),('posix/Asia/Hovd',877),('posix/Asia/Irkutsk',878),('posix/Asia/Istanbul',879),('posix/Asia/Jakarta',880),('posix/Asia/Jayapura',881),('posix/Asia/Jerusalem',882),('posix/Asia/Kabul',883),('posix/Asia/Kamchatka',884),('posix/Asia/Karachi',885),('posix/Asia/Kashgar',886),('posix/Asia/Kathmandu',887),('posix/Asia/Katmandu',888),('posix/Asia/Khandyga',889),('posix/Asia/Kolkata',890),('posix/Asia/Krasnoyarsk',891),('posix/Asia/Kuala_Lumpur',892),('posix/Asia/Kuching',893),('posix/Asia/Kuwait',894),('posix/Asia/Macao',895),('posix/Asia/Macau',896),('posix/Asia/Magadan',897),('posix/Asia/Makassar',898),('posix/Asia/Manila',899),('posix/Asia/Muscat',900),('posix/Asia/Nicosia',901),('posix/Asia/Novokuznetsk',902),('posix/Asia/Novosibirsk',903),('posix/Asia/Omsk',904),('posix/Asia/Oral',905),('posix/Asia/Phnom_Penh',906),('posix/Asia/Pontianak',907),('posix/Asia/Pyongyang',908),('posix/Asia/Qatar',909),('posix/Asia/Qostanay',910),('posix/Asia/Qyzylorda',911),('posix/Asia/Rangoon',912),('posix/Asia/Riyadh',913),('posix/Asia/Saigon',914),('posix/Asia/Sakhalin',915),('posix/Asia/Samarkand',916),('posix/Asia/Seoul',917),('posix/Asia/Shanghai',918),('posix/Asia/Singapore',919),('posix/Asia/Srednekolymsk',920),('posix/Asia/Taipei',921),('posix/Asia/Tashkent',922),('posix/Asia/Tbilisi',923),('posix/Asia/Tehran',924),('posix/Asia/Tel_Aviv',925),('posix/Asia/Thimbu',926),('posix/Asia/Thimphu',927),('posix/Asia/Tokyo',928),('posix/Asia/Tomsk',929),('posix/Asia/Ujung_Pandang',930),('posix/Asia/Ulaanbaatar',931),('posix/Asia/Ulan_Bator',932),('posix/Asia/Urumqi',933),('posix/Asia/Ust-Nera',934),('posix/Asia/Vientiane',935),('posix/Asia/Vladivostok',936),('posix/Asia/Yakutsk',937),('posix/Asia/Yangon',938),('posix/Asia/Yekaterinburg',939),('posix/Asia/Yerevan',940),('posix/Atlantic/Azores',941),('posix/Atlantic/Bermuda',942),('posix/Atlantic/Canary',943),('posix/Atlantic/Cape_Verde',944),('posix/Atlantic/Faeroe',945),('posix/Atlantic/Faroe',946),('posix/Atlantic/Jan_Mayen',947),('posix/Atlantic/Madeira',948),('posix/Atlantic/Reykjavik',949),('posix/Atlantic/South_Georgia',950),('posix/Atlantic/St_Helena',951),('posix/Atlantic/Stanley',952),('posix/Australia/ACT',953),('posix/Australia/Adelaide',954),('posix/Australia/Brisbane',955),('posix/Australia/Broken_Hill',956),('posix/Australia/Canberra',957),('posix/Australia/Currie',958),('posix/Australia/Darwin',959),('posix/Australia/Eucla',960),('posix/Australia/Hobart',961),('posix/Australia/LHI',962),('posix/Australia/Lindeman',963),('posix/Australia/Lord_Howe',964),('posix/Australia/Melbourne',965),('posix/Australia/NSW',966),('posix/Australia/North',967),('posix/Australia/Perth',968),('posix/Australia/Queensland',969),('posix/Australia/South',970),('posix/Australia/Sydney',971),('posix/Australia/Tasmania',972),('posix/Australia/Victoria',973),('posix/Australia/West',974),('posix/Australia/Yancowinna',975),('posix/Brazil/Acre',976),('posix/Brazil/DeNoronha',977),('posix/Brazil/East',978),('posix/Brazil/West',979),('posix/CET',980),('posix/CST6CDT',981),('posix/Canada/Atlantic',982),('posix/Canada/Central',983),('posix/Canada/Eastern',984),('posix/Canada/Mountain',985),('posix/Canada/Newfoundland',986),('posix/Canada/Pacific',987),('posix/Canada/Saskatchewan',988),('posix/Canada/Yukon',989),('posix/Chile/Continental',990),('posix/Chile/EasterIsland',991),('posix/Cuba',992),('posix/EET',993),('posix/EST',994),('posix/EST5EDT',995),('posix/Egypt',996),('posix/Eire',997),('posix/Etc/GMT',998),('posix/Etc/GMT+0',999),('posix/Etc/GMT+1',1000),('posix/Etc/GMT+10',1001),('posix/Etc/GMT+11',1002),('posix/Etc/GMT+12',1003),('posix/Etc/GMT+2',1004),('posix/Etc/GMT+3',1005),('posix/Etc/GMT+4',1006),('posix/Etc/GMT+5',1007),('posix/Etc/GMT+6',1008),('posix/Etc/GMT+7',1009),('posix/Etc/GMT+8',1010),('posix/Etc/GMT+9',1011),('posix/Etc/GMT-0',1012),('posix/Etc/GMT-1',1013),('posix/Etc/GMT-10',1014),('posix/Etc/GMT-11',1015),('posix/Etc/GMT-12',1016),('posix/Etc/GMT-13',1017),('posix/Etc/GMT-14',1018),('posix/Etc/GMT-2',1019),('posix/Etc/GMT-3',1020),('posix/Etc/GMT-4',1021),('posix/Etc/GMT-5',1022),('posix/Etc/GMT-6',1023),('posix/Etc/GMT-7',1024),('posix/Etc/GMT-8',1025),('posix/Etc/GMT-9',1026),('posix/Etc/GMT0',1027),('posix/Etc/Greenwich',1028),('posix/Etc/UCT',1029),('posix/Etc/UTC',1030),('posix/Etc/Universal',1031),('posix/Etc/Zulu',1032),('posix/Europe/Amsterdam',1033),('posix/Europe/Andorra',1034),('posix/Europe/Astrakhan',1035),('posix/Europe/Athens',1036),('posix/Europe/Belfast',1037),('posix/Europe/Belgrade',1038),('posix/Europe/Berlin',1039),('posix/Europe/Bratislava',1040),('posix/Europe/Brussels',1041),('posix/Europe/Bucharest',1042),('posix/Europe/Budapest',1043),('posix/Europe/Busingen',1044),('posix/Europe/Chisinau',1045),('posix/Europe/Copenhagen',1046),('posix/Europe/Dublin',1047),('posix/Europe/Gibraltar',1048),('posix/Europe/Guernsey',1049),('posix/Europe/Helsinki',1050),('posix/Europe/Isle_of_Man',1051),('posix/Europe/Istanbul',1052),('posix/Europe/Jersey',1053),('posix/Europe/Kaliningrad',1054),('posix/Europe/Kiev',1055),('posix/Europe/Kirov',1056),('posix/Europe/Lisbon',1057),('posix/Europe/Ljubljana',1058),('posix/Europe/London',1059),('posix/Europe/Luxembourg',1060),('posix/Europe/Madrid',1061),('posix/Europe/Malta',1062),('posix/Europe/Mariehamn',1063),('posix/Europe/Minsk',1064),('posix/Europe/Monaco',1065),('posix/Europe/Moscow',1066),('posix/Europe/Nicosia',1067),('posix/Europe/Oslo',1068),('posix/Europe/Paris',1069),('posix/Europe/Podgorica',1070),('posix/Europe/Prague',1071),('posix/Europe/Riga',1072),('posix/Europe/Rome',1073),('posix/Europe/Samara',1074),('posix/Europe/San_Marino',1075),('posix/Europe/Sarajevo',1076),('posix/Europe/Saratov',1077),('posix/Europe/Simferopol',1078),('posix/Europe/Skopje',1079),('posix/Europe/Sofia',1080),('posix/Europe/Stockholm',1081),('posix/Europe/Tallinn',1082),('posix/Europe/Tirane',1083),('posix/Europe/Tiraspol',1084),('posix/Europe/Ulyanovsk',1085),('posix/Europe/Uzhgorod',1086),('posix/Europe/Vaduz',1087),('posix/Europe/Vatican',1088),('posix/Europe/Vienna',1089),('posix/Europe/Vilnius',1090),('posix/Europe/Volgograd',1091),('posix/Europe/Warsaw',1092),('posix/Europe/Zagreb',1093),('posix/Europe/Zaporozhye',1094),('posix/Europe/Zurich',1095),('posix/Factory',1096),('posix/GB',1097),('posix/GB-Eire',1098),('posix/GMT',1099),('posix/GMT+0',1100),('posix/GMT-0',1101),('posix/GMT0',1102),('posix/Greenwich',1103),('posix/HST',1104),('posix/Hongkong',1105),('posix/Iceland',1106),('posix/Indian/Antananarivo',1107),('posix/Indian/Chagos',1108),('posix/Indian/Christmas',1109),('posix/Indian/Cocos',1110),('posix/Indian/Comoro',1111),('posix/Indian/Kerguelen',1112),('posix/Indian/Mahe',1113),('posix/Indian/Maldives',1114),('posix/Indian/Mauritius',1115),('posix/Indian/Mayotte',1116),('posix/Indian/Reunion',1117),('posix/Iran',1118),('posix/Israel',1119),('posix/Jamaica',1120),('posix/Japan',1121),('posix/Kwajalein',1122),('posix/Libya',1123),('posix/MET',1124),('posix/MST',1125),('posix/MST7MDT',1126),('posix/Mexico/BajaNorte',1127),('posix/Mexico/BajaSur',1128),('posix/Mexico/General',1129),('posix/NZ',1130),('posix/NZ-CHAT',1131),('posix/Navajo',1132),('posix/PRC',1133),('posix/PST8PDT',1134),('posix/Pacific/Apia',1135),('posix/Pacific/Auckland',1136),('posix/Pacific/Bougainville',1137),('posix/Pacific/Chatham',1138),('posix/Pacific/Chuuk',1139),('posix/Pacific/Easter',1140),('posix/Pacific/Efate',1141),('posix/Pacific/Enderbury',1142),('posix/Pacific/Fakaofo',1143),('posix/Pacific/Fiji',1144),('posix/Pacific/Funafuti',1145),('posix/Pacific/Galapagos',1146),('posix/Pacific/Gambier',1147),('posix/Pacific/Guadalcanal',1148),('posix/Pacific/Guam',1149),('posix/Pacific/Honolulu',1150),('posix/Pacific/Johnston',1151),('posix/Pacific/Kiritimati',1152),('posix/Pacific/Kosrae',1153),('posix/Pacific/Kwajalein',1154),('posix/Pacific/Majuro',1155),('posix/Pacific/Marquesas',1156),('posix/Pacific/Midway',1157),('posix/Pacific/Nauru',1158),('posix/Pacific/Niue',1159),('posix/Pacific/Norfolk',1160),('posix/Pacific/Noumea',1161),('posix/Pacific/Pago_Pago',1162),('posix/Pacific/Palau',1163),('posix/Pacific/Pitcairn',1164),('posix/Pacific/Pohnpei',1165),('posix/Pacific/Ponape',1166),('posix/Pacific/Port_Moresby',1167),('posix/Pacific/Rarotonga',1168),('posix/Pacific/Saipan',1169),('posix/Pacific/Samoa',1170),('posix/Pacific/Tahiti',1171),('posix/Pacific/Tarawa',1172),('posix/Pacific/Tongatapu',1173),('posix/Pacific/Truk',1174),('posix/Pacific/Wake',1175),('posix/Pacific/Wallis',1176),('posix/Pacific/Yap',1177),('posix/Poland',1178),('posix/Portugal',1179),('posix/ROC',1180),('posix/ROK',1181),('posix/Singapore',1182),('posix/SystemV/AST4',1183),('posix/SystemV/AST4ADT',1184),('posix/SystemV/CST6',1185),('posix/SystemV/CST6CDT',1186),('posix/SystemV/EST5',1187),('posix/SystemV/EST5EDT',1188),('posix/SystemV/HST10',1189),('posix/SystemV/MST7',1190),('posix/SystemV/MST7MDT',1191),('posix/SystemV/PST8',1192),('posix/SystemV/PST8PDT',1193),('posix/SystemV/YST9',1194),('posix/SystemV/YST9YDT',1195),('posix/Turkey',1196),('posix/UCT',1197),('posix/US/Alaska',1198),('posix/US/Aleutian',1199),('posix/US/Arizona',1200),('posix/US/Central',1201),('posix/US/East-Indiana',1202),('posix/US/Eastern',1203),('posix/US/Hawaii',1204),('posix/US/Indiana-Starke',1205),('posix/US/Michigan',1206),('posix/US/Mountain',1207),('posix/US/Pacific',1208),('posix/US/Pacific-New',1209),('posix/US/Samoa',1210),('posix/UTC',1211),('posix/Universal',1212),('posix/W-SU',1213),('posix/WET',1214),('posix/Zulu',1215),('posixrules',1216),('right/Africa/Abidjan',1217),('right/Africa/Accra',1218),('right/Africa/Addis_Ababa',1219),('right/Africa/Algiers',1220),('right/Africa/Asmara',1221),('right/Africa/Asmera',1222),('right/Africa/Bamako',1223),('right/Africa/Bangui',1224),('right/Africa/Banjul',1225),('right/Africa/Bissau',1226),('right/Africa/Blantyre',1227),('right/Africa/Brazzaville',1228),('right/Africa/Bujumbura',1229),('right/Africa/Cairo',1230),('right/Africa/Casablanca',1231),('right/Africa/Ceuta',1232),('right/Africa/Conakry',1233),('right/Africa/Dakar',1234),('right/Africa/Dar_es_Salaam',1235),('right/Africa/Djibouti',1236),('right/Africa/Douala',1237),('right/Africa/El_Aaiun',1238),('right/Africa/Freetown',1239),('right/Africa/Gaborone',1240),('right/Africa/Harare',1241),('right/Africa/Johannesburg',1242),('right/Africa/Juba',1243),('right/Africa/Kampala',1244),('right/Africa/Khartoum',1245),('right/Africa/Kigali',1246),('right/Africa/Kinshasa',1247),('right/Africa/Lagos',1248),('right/Africa/Libreville',1249),('right/Africa/Lome',1250),('right/Africa/Luanda',1251),('right/Africa/Lubumbashi',1252),('right/Africa/Lusaka',1253),('right/Africa/Malabo',1254),('right/Africa/Maputo',1255),('right/Africa/Maseru',1256),('right/Africa/Mbabane',1257),('right/Africa/Mogadishu',1258),('right/Africa/Monrovia',1259),('right/Africa/Nairobi',1260),('right/Africa/Ndjamena',1261),('right/Africa/Niamey',1262),('right/Africa/Nouakchott',1263),('right/Africa/Ouagadougou',1264),('right/Africa/Porto-Novo',1265),('right/Africa/Sao_Tome',1266),('right/Africa/Timbuktu',1267),('right/Africa/Tripoli',1268),('right/Africa/Tunis',1269),('right/Africa/Windhoek',1270),('right/America/Adak',1271),('right/America/Anchorage',1272),('right/America/Anguilla',1273),('right/America/Antigua',1274),('right/America/Araguaina',1275),('right/America/Argentina/Buenos_Aires',1276),('right/America/Argentina/Catamarca',1277),('right/America/Argentina/ComodRivadavia',1278),('right/America/Argentina/Cordoba',1279),('right/America/Argentina/Jujuy',1280),('right/America/Argentina/La_Rioja',1281),('right/America/Argentina/Mendoza',1282),('right/America/Argentina/Rio_Gallegos',1283),('right/America/Argentina/Salta',1284),('right/America/Argentina/San_Juan',1285),('right/America/Argentina/San_Luis',1286),('right/America/Argentina/Tucuman',1287),('right/America/Argentina/Ushuaia',1288),('right/America/Aruba',1289),('right/America/Asuncion',1290),('right/America/Atikokan',1291),('right/America/Atka',1292),('right/America/Bahia',1293),('right/America/Bahia_Banderas',1294),('right/America/Barbados',1295),('right/America/Belem',1296),('right/America/Belize',1297),('right/America/Blanc-Sablon',1298),('right/America/Boa_Vista',1299),('right/America/Bogota',1300),('right/America/Boise',1301),('right/America/Buenos_Aires',1302),('right/America/Cambridge_Bay',1303),('right/America/Campo_Grande',1304),('right/America/Cancun',1305),('right/America/Caracas',1306),('right/America/Catamarca',1307),('right/America/Cayenne',1308),('right/America/Cayman',1309),('right/America/Chicago',1310),('right/America/Chihuahua',1311),('right/America/Coral_Harbour',1312),('right/America/Cordoba',1313),('right/America/Costa_Rica',1314),('right/America/Creston',1315),('right/America/Cuiaba',1316),('right/America/Curacao',1317),('right/America/Danmarkshavn',1318),('right/America/Dawson',1319),('right/America/Dawson_Creek',1320),('right/America/Denver',1321),('right/America/Detroit',1322),('right/America/Dominica',1323),('right/America/Edmonton',1324),('right/America/Eirunepe',1325),('right/America/El_Salvador',1326),('right/America/Ensenada',1327),('right/America/Fort_Nelson',1328),('right/America/Fort_Wayne',1329),('right/America/Fortaleza',1330),('right/America/Glace_Bay',1331),('right/America/Godthab',1332),('right/America/Goose_Bay',1333),('right/America/Grand_Turk',1334),('right/America/Grenada',1335),('right/America/Guadeloupe',1336),('right/America/Guatemala',1337),('right/America/Guayaquil',1338),('right/America/Guyana',1339),('right/America/Halifax',1340),('right/America/Havana',1341),('right/America/Hermosillo',1342),('right/America/Indiana/Indianapolis',1343),('right/America/Indiana/Knox',1344),('right/America/Indiana/Marengo',1345),('right/America/Indiana/Petersburg',1346),('right/America/Indiana/Tell_City',1347),('right/America/Indiana/Vevay',1348),('right/America/Indiana/Vincennes',1349),('right/America/Indiana/Winamac',1350),('right/America/Indianapolis',1351),('right/America/Inuvik',1352),('right/America/Iqaluit',1353),('right/America/Jamaica',1354),('right/America/Jujuy',1355),('right/America/Juneau',1356),('right/America/Kentucky/Louisville',1357),('right/America/Kentucky/Monticello',1358),('right/America/Knox_IN',1359),('right/America/Kralendijk',1360),('right/America/La_Paz',1361),('right/America/Lima',1362),('right/America/Los_Angeles',1363),('right/America/Louisville',1364),('right/America/Lower_Princes',1365),('right/America/Maceio',1366),('right/America/Managua',1367),('right/America/Manaus',1368),('right/America/Marigot',1369),('right/America/Martinique',1370),('right/America/Matamoros',1371),('right/America/Mazatlan',1372),('right/America/Mendoza',1373),('right/America/Menominee',1374),('right/America/Merida',1375),('right/America/Metlakatla',1376),('right/America/Mexico_City',1377),('right/America/Miquelon',1378),('right/America/Moncton',1379),('right/America/Monterrey',1380),('right/America/Montevideo',1381),('right/America/Montreal',1382),('right/America/Montserrat',1383),('right/America/Nassau',1384),('right/America/New_York',1385),('right/America/Nipigon',1386),('right/America/Nome',1387),('right/America/Noronha',1388),('right/America/North_Dakota/Beulah',1389),('right/America/North_Dakota/Center',1390),('right/America/North_Dakota/New_Salem',1391),('right/America/Ojinaga',1392),('right/America/Panama',1393),('right/America/Pangnirtung',1394),('right/America/Paramaribo',1395),('right/America/Phoenix',1396),('right/America/Port-au-Prince',1397),('right/America/Port_of_Spain',1398),('right/America/Porto_Acre',1399),('right/America/Porto_Velho',1400),('right/America/Puerto_Rico',1401),('right/America/Punta_Arenas',1402),('right/America/Rainy_River',1403),('right/America/Rankin_Inlet',1404),('right/America/Recife',1405),('right/America/Regina',1406),('right/America/Resolute',1407),('right/America/Rio_Branco',1408),('right/America/Rosario',1409),('right/America/Santa_Isabel',1410),('right/America/Santarem',1411),('right/America/Santiago',1412),('right/America/Santo_Domingo',1413),('right/America/Sao_Paulo',1414),('right/America/Scoresbysund',1415),('right/America/Shiprock',1416),('right/America/Sitka',1417),('right/America/St_Barthelemy',1418),('right/America/St_Johns',1419),('right/America/St_Kitts',1420),('right/America/St_Lucia',1421),('right/America/St_Thomas',1422),('right/America/St_Vincent',1423),('right/America/Swift_Current',1424),('right/America/Tegucigalpa',1425),('right/America/Thule',1426),('right/America/Thunder_Bay',1427),('right/America/Tijuana',1428),('right/America/Toronto',1429),('right/America/Tortola',1430),('right/America/Vancouver',1431),('right/America/Virgin',1432),('right/America/Whitehorse',1433),('right/America/Winnipeg',1434),('right/America/Yakutat',1435),('right/America/Yellowknife',1436),('right/Antarctica/Casey',1437),('right/Antarctica/Davis',1438),('right/Antarctica/DumontDUrville',1439),('right/Antarctica/Macquarie',1440),('right/Antarctica/Mawson',1441),('right/Antarctica/McMurdo',1442),('right/Antarctica/Palmer',1443),('right/Antarctica/Rothera',1444),('right/Antarctica/South_Pole',1445),('right/Antarctica/Syowa',1446),('right/Antarctica/Troll',1447),('right/Antarctica/Vostok',1448),('right/Arctic/Longyearbyen',1449),('right/Asia/Aden',1450),('right/Asia/Almaty',1451),('right/Asia/Amman',1452),('right/Asia/Anadyr',1453),('right/Asia/Aqtau',1454),('right/Asia/Aqtobe',1455),('right/Asia/Ashgabat',1456),('right/Asia/Ashkhabad',1457),('right/Asia/Atyrau',1458),('right/Asia/Baghdad',1459),('right/Asia/Bahrain',1460),('right/Asia/Baku',1461),('right/Asia/Bangkok',1462),('right/Asia/Barnaul',1463),('right/Asia/Beirut',1464),('right/Asia/Bishkek',1465),('right/Asia/Brunei',1466),('right/Asia/Calcutta',1467),('right/Asia/Chita',1468),('right/Asia/Choibalsan',1469),('right/Asia/Chongqing',1470),('right/Asia/Chungking',1471),('right/Asia/Colombo',1472),('right/Asia/Dacca',1473),('right/Asia/Damascus',1474),('right/Asia/Dhaka',1475),('right/Asia/Dili',1476),('right/Asia/Dubai',1477),('right/Asia/Dushanbe',1478),('right/Asia/Famagusta',1479),('right/Asia/Gaza',1480),('right/Asia/Harbin',1481),('right/Asia/Hebron',1482),('right/Asia/Ho_Chi_Minh',1483),('right/Asia/Hong_Kong',1484),('right/Asia/Hovd',1485),('right/Asia/Irkutsk',1486),('right/Asia/Istanbul',1487),('right/Asia/Jakarta',1488),('right/Asia/Jayapura',1489),('right/Asia/Jerusalem',1490),('right/Asia/Kabul',1491),('right/Asia/Kamchatka',1492),('right/Asia/Karachi',1493),('right/Asia/Kashgar',1494),('right/Asia/Kathmandu',1495),('right/Asia/Katmandu',1496),('right/Asia/Khandyga',1497),('right/Asia/Kolkata',1498),('right/Asia/Krasnoyarsk',1499),('right/Asia/Kuala_Lumpur',1500),('right/Asia/Kuching',1501),('right/Asia/Kuwait',1502),('right/Asia/Macao',1503),('right/Asia/Macau',1504),('right/Asia/Magadan',1505),('right/Asia/Makassar',1506),('right/Asia/Manila',1507),('right/Asia/Muscat',1508),('right/Asia/Nicosia',1509),('right/Asia/Novokuznetsk',1510),('right/Asia/Novosibirsk',1511),('right/Asia/Omsk',1512),('right/Asia/Oral',1513),('right/Asia/Phnom_Penh',1514),('right/Asia/Pontianak',1515),('right/Asia/Pyongyang',1516),('right/Asia/Qatar',1517),('right/Asia/Qostanay',1518),('right/Asia/Qyzylorda',1519),('right/Asia/Rangoon',1520),('right/Asia/Riyadh',1521),('right/Asia/Saigon',1522),('right/Asia/Sakhalin',1523),('right/Asia/Samarkand',1524),('right/Asia/Seoul',1525),('right/Asia/Shanghai',1526),('right/Asia/Singapore',1527),('right/Asia/Srednekolymsk',1528),('right/Asia/Taipei',1529),('right/Asia/Tashkent',1530),('right/Asia/Tbilisi',1531),('right/Asia/Tehran',1532),('right/Asia/Tel_Aviv',1533),('right/Asia/Thimbu',1534),('right/Asia/Thimphu',1535),('right/Asia/Tokyo',1536),('right/Asia/Tomsk',1537),('right/Asia/Ujung_Pandang',1538),('right/Asia/Ulaanbaatar',1539),('right/Asia/Ulan_Bator',1540),('right/Asia/Urumqi',1541),('right/Asia/Ust-Nera',1542),('right/Asia/Vientiane',1543),('right/Asia/Vladivostok',1544),('right/Asia/Yakutsk',1545),('right/Asia/Yangon',1546),('right/Asia/Yekaterinburg',1547),('right/Asia/Yerevan',1548),('right/Atlantic/Azores',1549),('right/Atlantic/Bermuda',1550),('right/Atlantic/Canary',1551),('right/Atlantic/Cape_Verde',1552),('right/Atlantic/Faeroe',1553),('right/Atlantic/Faroe',1554),('right/Atlantic/Jan_Mayen',1555),('right/Atlantic/Madeira',1556),('right/Atlantic/Reykjavik',1557),('right/Atlantic/South_Georgia',1558),('right/Atlantic/St_Helena',1559),('right/Atlantic/Stanley',1560),('right/Australia/ACT',1561),('right/Australia/Adelaide',1562),('right/Australia/Brisbane',1563),('right/Australia/Broken_Hill',1564),('right/Australia/Canberra',1565),('right/Australia/Currie',1566),('right/Australia/Darwin',1567),('right/Australia/Eucla',1568),('right/Australia/Hobart',1569),('right/Australia/LHI',1570),('right/Australia/Lindeman',1571),('right/Australia/Lord_Howe',1572),('right/Australia/Melbourne',1573),('right/Australia/NSW',1574),('right/Australia/North',1575),('right/Australia/Perth',1576),('right/Australia/Queensland',1577),('right/Australia/South',1578),('right/Australia/Sydney',1579),('right/Australia/Tasmania',1580),('right/Australia/Victoria',1581),('right/Australia/West',1582),('right/Australia/Yancowinna',1583),('right/Brazil/Acre',1584),('right/Brazil/DeNoronha',1585),('right/Brazil/East',1586),('right/Brazil/West',1587),('right/CET',1588),('right/CST6CDT',1589),('right/Canada/Atlantic',1590),('right/Canada/Central',1591),('right/Canada/Eastern',1592),('right/Canada/Mountain',1593),('right/Canada/Newfoundland',1594),('right/Canada/Pacific',1595),('right/Canada/Saskatchewan',1596),('right/Canada/Yukon',1597),('right/Chile/Continental',1598),('right/Chile/EasterIsland',1599),('right/Cuba',1600),('right/EET',1601),('right/EST',1602),('right/EST5EDT',1603),('right/Egypt',1604),('right/Eire',1605),('right/Etc/GMT',1606),('right/Etc/GMT+0',1607),('right/Etc/GMT+1',1608),('right/Etc/GMT+10',1609),('right/Etc/GMT+11',1610),('right/Etc/GMT+12',1611),('right/Etc/GMT+2',1612),('right/Etc/GMT+3',1613),('right/Etc/GMT+4',1614),('right/Etc/GMT+5',1615),('right/Etc/GMT+6',1616),('right/Etc/GMT+7',1617),('right/Etc/GMT+8',1618),('right/Etc/GMT+9',1619),('right/Etc/GMT-0',1620),('right/Etc/GMT-1',1621),('right/Etc/GMT-10',1622),('right/Etc/GMT-11',1623),('right/Etc/GMT-12',1624),('right/Etc/GMT-13',1625),('right/Etc/GMT-14',1626),('right/Etc/GMT-2',1627),('right/Etc/GMT-3',1628),('right/Etc/GMT-4',1629),('right/Etc/GMT-5',1630),('right/Etc/GMT-6',1631),('right/Etc/GMT-7',1632),('right/Etc/GMT-8',1633),('right/Etc/GMT-9',1634),('right/Etc/GMT0',1635),('right/Etc/Greenwich',1636),('right/Etc/UCT',1637),('right/Etc/UTC',1638),('right/Etc/Universal',1639),('right/Etc/Zulu',1640),('right/Europe/Amsterdam',1641),('right/Europe/Andorra',1642),('right/Europe/Astrakhan',1643),('right/Europe/Athens',1644),('right/Europe/Belfast',1645),('right/Europe/Belgrade',1646),('right/Europe/Berlin',1647),('right/Europe/Bratislava',1648),('right/Europe/Brussels',1649),('right/Europe/Bucharest',1650),('right/Europe/Budapest',1651),('right/Europe/Busingen',1652),('right/Europe/Chisinau',1653),('right/Europe/Copenhagen',1654),('right/Europe/Dublin',1655),('right/Europe/Gibraltar',1656),('right/Europe/Guernsey',1657),('right/Europe/Helsinki',1658),('right/Europe/Isle_of_Man',1659),('right/Europe/Istanbul',1660),('right/Europe/Jersey',1661),('right/Europe/Kaliningrad',1662),('right/Europe/Kiev',1663),('right/Europe/Kirov',1664),('right/Europe/Lisbon',1665),('right/Europe/Ljubljana',1666),('right/Europe/London',1667),('right/Europe/Luxembourg',1668),('right/Europe/Madrid',1669),('right/Europe/Malta',1670),('right/Europe/Mariehamn',1671),('right/Europe/Minsk',1672),('right/Europe/Monaco',1673),('right/Europe/Moscow',1674),('right/Europe/Nicosia',1675),('right/Europe/Oslo',1676),('right/Europe/Paris',1677),('right/Europe/Podgorica',1678),('right/Europe/Prague',1679),('right/Europe/Riga',1680),('right/Europe/Rome',1681),('right/Europe/Samara',1682),('right/Europe/San_Marino',1683),('right/Europe/Sarajevo',1684),('right/Europe/Saratov',1685),('right/Europe/Simferopol',1686),('right/Europe/Skopje',1687),('right/Europe/Sofia',1688),('right/Europe/Stockholm',1689),('right/Europe/Tallinn',1690),('right/Europe/Tirane',1691),('right/Europe/Tiraspol',1692),('right/Europe/Ulyanovsk',1693),('right/Europe/Uzhgorod',1694),('right/Europe/Vaduz',1695),('right/Europe/Vatican',1696),('right/Europe/Vienna',1697),('right/Europe/Vilnius',1698),('right/Europe/Volgograd',1699),('right/Europe/Warsaw',1700),('right/Europe/Zagreb',1701),('right/Europe/Zaporozhye',1702),('right/Europe/Zurich',1703),('right/Factory',1704),('right/GB',1705),('right/GB-Eire',1706),('right/GMT',1707),('right/GMT+0',1708),('right/GMT-0',1709),('right/GMT0',1710),('right/Greenwich',1711),('right/HST',1712),('right/Hongkong',1713),('right/Iceland',1714),('right/Indian/Antananarivo',1715),('right/Indian/Chagos',1716),('right/Indian/Christmas',1717),('right/Indian/Cocos',1718),('right/Indian/Comoro',1719),('right/Indian/Kerguelen',1720),('right/Indian/Mahe',1721),('right/Indian/Maldives',1722),('right/Indian/Mauritius',1723),('right/Indian/Mayotte',1724),('right/Indian/Reunion',1725),('right/Iran',1726),('right/Israel',1727),('right/Jamaica',1728),('right/Japan',1729),('right/Kwajalein',1730),('right/Libya',1731),('right/MET',1732),('right/MST',1733),('right/MST7MDT',1734),('right/Mexico/BajaNorte',1735),('right/Mexico/BajaSur',1736),('right/Mexico/General',1737),('right/NZ',1738),('right/NZ-CHAT',1739),('right/Navajo',1740),('right/PRC',1741),('right/PST8PDT',1742),('right/Pacific/Apia',1743),('right/Pacific/Auckland',1744),('right/Pacific/Bougainville',1745),('right/Pacific/Chatham',1746),('right/Pacific/Chuuk',1747),('right/Pacific/Easter',1748),('right/Pacific/Efate',1749),('right/Pacific/Enderbury',1750),('right/Pacific/Fakaofo',1751),('right/Pacific/Fiji',1752),('right/Pacific/Funafuti',1753),('right/Pacific/Galapagos',1754),('right/Pacific/Gambier',1755),('right/Pacific/Guadalcanal',1756),('right/Pacific/Guam',1757),('right/Pacific/Honolulu',1758),('right/Pacific/Johnston',1759),('right/Pacific/Kiritimati',1760),('right/Pacific/Kosrae',1761),('right/Pacific/Kwajalein',1762),('right/Pacific/Majuro',1763),('right/Pacific/Marquesas',1764),('right/Pacific/Midway',1765),('right/Pacific/Nauru',1766),('right/Pacific/Niue',1767),('right/Pacific/Norfolk',1768),('right/Pacific/Noumea',1769),('right/Pacific/Pago_Pago',1770),('right/Pacific/Palau',1771),('right/Pacific/Pitcairn',1772),('right/Pacific/Pohnpei',1773),('right/Pacific/Ponape',1774),('right/Pacific/Port_Moresby',1775),('right/Pacific/Rarotonga',1776),('right/Pacific/Saipan',1777),('right/Pacific/Samoa',1778),('right/Pacific/Tahiti',1779),('right/Pacific/Tarawa',1780),('right/Pacific/Tongatapu',1781),('right/Pacific/Truk',1782),('right/Pacific/Wake',1783),('right/Pacific/Wallis',1784),('right/Pacific/Yap',1785),('right/Poland',1786),('right/Portugal',1787),('right/ROC',1788),('right/ROK',1789),('right/Singapore',1790),('right/SystemV/AST4',1791),('right/SystemV/AST4ADT',1792),('right/SystemV/CST6',1793),('right/SystemV/CST6CDT',1794),('right/SystemV/EST5',1795),('right/SystemV/EST5EDT',1796),('right/SystemV/HST10',1797),('right/SystemV/MST7',1798),('right/SystemV/MST7MDT',1799),('right/SystemV/PST8',1800),('right/SystemV/PST8PDT',1801),('right/SystemV/YST9',1802),('right/SystemV/YST9YDT',1803),('right/Turkey',1804),('right/UCT',1805),('right/US/Alaska',1806),('right/US/Aleutian',1807),('right/US/Arizona',1808),('right/US/Central',1809),('right/US/East-Indiana',1810),('right/US/Eastern',1811),('right/US/Hawaii',1812),('right/US/Indiana-Starke',1813),('right/US/Michigan',1814),('right/US/Mountain',1815),('right/US/Pacific',1816),('right/US/Pacific-New',1817),('right/US/Samoa',1818),('right/UTC',1819),('right/Universal',1820),('right/W-SU',1821),('right/WET',1822),('right/Zulu',1823); +/*!40000 ALTER TABLE `time_zone_name` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `time_zone_transition` +-- + +DROP TABLE IF EXISTS `time_zone_transition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `time_zone_transition` ( + `Time_zone_id` int(10) unsigned NOT NULL, + `Transition_time` bigint(20) NOT NULL, + `Transition_type_id` int(10) unsigned NOT NULL, + PRIMARY KEY (`Time_zone_id`,`Transition_time`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transitions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `time_zone_transition` +-- + +LOCK TABLES `time_zone_transition` WRITE; +/*!40000 ALTER TABLE `time_zone_transition` DISABLE KEYS */; +INSERT INTO `time_zone_transition` VALUES (1,-2147483648,0),(1,-1830383032,1),(2,-2147483648,0),(2,-1640995148,2),(2,-1556841600,1),(2,-1546388400,2),(2,-1525305600,1),(2,-1514852400,2),(2,-1493769600,1),(2,-1483316400,2),(2,-1462233600,1),(2,-1451780400,2),(2,-1430611200,1),(2,-1420158000,2),(2,-1399075200,1),(2,-1388622000,2),(2,-1367539200,1),(2,-1357086000,2),(2,-1336003200,1),(2,-1325550000,2),(2,-1304380800,1),(2,-1293927600,2),(2,-1272844800,1),(2,-1262391600,2),(2,-1241308800,1),(2,-1230855600,2),(2,-1209772800,1),(2,-1199319600,2),(2,-1178150400,1),(2,-1167697200,2),(2,-1146614400,1),(2,-1136161200,2),(2,-1115078400,1),(2,-1104625200,2),(2,-1083542400,1),(2,-1073089200,2),(2,-1051920000,1),(2,-1041466800,2),(2,-1020384000,1),(2,-1009930800,2),(2,-988848000,1),(2,-978394800,2),(2,-957312000,1),(2,-946858800,2),(2,-925689600,1),(2,-915236400,2),(2,-894153600,1),(2,-883700400,2),(2,-862617600,1),(2,-852164400,2),(3,-2147483648,0),(3,-1309746436,1),(3,-1262314800,2),(3,-946780200,3),(3,-315629100,1),(4,-2147483648,1),(4,-1855958961,4),(4,-1689814800,2),(4,-1680397200,3),(4,-1665363600,2),(4,-1648342800,3),(4,-1635123600,2),(4,-1616893200,3),(4,-1604278800,2),(4,-1585443600,3),(4,-1574038800,2),(4,-1552266000,3),(4,-1539997200,2),(4,-1531443600,3),(4,-956365200,2),(4,-950486400,4),(4,-942012000,6),(4,-812502000,5),(4,-796262400,6),(4,-781052400,5),(4,-766630800,6),(4,-733280400,4),(4,-439430400,6),(4,-212029200,4),(4,41468400,2),(4,54774000,3),(4,231724800,7),(4,246236400,6),(4,259545600,5),(4,275274000,6),(4,309740400,4),(4,325468800,7),(4,341802000,4),(4,357523200,6),(5,-2147483648,0),(5,-1309746436,1),(5,-1262314800,2),(5,-946780200,3),(5,-315629100,1),(6,-2147483648,0),(6,-1309746436,1),(6,-1262314800,2),(6,-946780200,3),(6,-315629100,1),(7,-2147483648,0),(7,-1830383032,1),(8,-2147483648,0),(8,-1588464816,1),(9,-2147483648,0),(9,-1830383032,1),(10,-2147483648,0),(10,-1830380400,1),(10,157770000,2),(11,-2147483648,0),(11,-2109291020,1),(12,-2147483648,0),(12,-1588464816,1),(13,-2147483648,0),(13,-2109291020,1),(14,-2147483648,2),(14,-929844000,1),(14,-923108400,2),(14,-906170400,1),(14,-892868400,2),(14,-875844000,1),(14,-857790000,2),(14,-844308000,1),(14,-825822000,2),(14,-812685600,1),(14,-794199600,2),(14,-779853600,1),(14,-762663600,2),(14,-399088800,1),(14,-386650800,2),(14,-368330400,1),(14,-355114800,2),(14,-336790800,1),(14,-323654400,2),(14,-305168400,1),(14,-292032000,2),(14,-273632400,1),(14,-260496000,2),(14,-242096400,1),(14,-228960000,2),(14,-210560400,1),(14,-197424000,2),(14,-178938000,1),(14,-165801600,2),(14,-147402000,1),(14,-134265600,2),(14,-115866000,1),(14,-102643200,2),(14,-84330000,1),(14,-71107200,2),(14,-52707600,1),(14,-39484800,2),(14,-21171600,1),(14,-7948800,2),(14,10364400,1),(14,23587200,2),(14,41900400,1),(14,55123200,2),(14,73522800,1),(14,86745600,2),(14,105058800,1),(14,118281600,2),(14,136594800,1),(14,149817600,2),(14,168130800,1),(14,181353600,2),(14,199753200,1),(14,212976000,2),(14,231289200,1),(14,244512000,2),(14,262825200,1),(14,276048000,2),(14,294361200,1),(14,307584000,2),(14,325983600,1),(14,339206400,2),(14,357519600,1),(14,370742400,2),(14,396399600,1),(14,402278400,2),(14,426812400,1),(14,433814400,2),(14,452214000,1),(14,465436800,2),(14,483750000,1),(14,496972800,2),(14,515286000,1),(14,528508800,2),(14,546822000,1),(14,560044800,2),(14,578444400,1),(14,591667200,2),(14,610412400,1),(14,623203200,2),(14,641516400,1),(14,654739200,2),(14,673052400,1),(14,686275200,2),(14,704674800,1),(14,717897600,2),(14,736210800,1),(14,749433600,2),(14,767746800,1),(14,780969600,2),(14,799020000,3),(14,812322000,2),(14,830469600,3),(14,843771600,2),(14,861919200,3),(14,875221200,2),(14,893368800,3),(14,906670800,2),(14,925423200,3),(14,938725200,2),(14,956872800,3),(14,970174800,2),(14,988322400,3),(14,1001624400,2),(14,1019772000,3),(14,1033074000,2),(14,1051221600,3),(14,1064523600,2),(14,1083276000,3),(14,1096578000,2),(14,1114725600,3),(14,1128027600,2),(14,1146175200,3),(14,1158872400,2),(14,1177624800,3),(14,1189112400,2),(14,1209074400,3),(14,1219957200,2),(14,1240524000,3),(14,1250802000,2),(14,1272578400,3),(14,1281474000,2),(14,1284069600,1),(14,1285880400,2),(14,1400191200,1),(14,1403816400,2),(14,1406844000,1),(14,1411678800,2),(15,-2147483648,0),(15,-1773012580,2),(15,-956361600,1),(15,-950490000,2),(15,-942019200,1),(15,-761187600,2),(15,-617241600,1),(15,-605149200,2),(15,-81432000,1),(15,-71110800,2),(15,141264000,1),(15,147222000,2),(15,199756800,1),(15,207702000,2),(15,231292800,1),(15,244249200,2),(15,265507200,1),(15,271033200,2),(15,448243200,3),(15,504918000,2),(15,1212278400,1),(15,1220223600,2),(15,1243814400,1),(15,1250809200,2),(15,1272758400,1),(15,1281222000,2),(15,1301788800,1),(15,1312066800,2),(15,1335664800,1),(15,1342749600,2),(15,1345428000,1),(15,1348970400,2),(15,1367114400,1),(15,1373162400,2),(15,1376100000,1),(15,1382839200,2),(15,1396144800,1),(15,1403920800,2),(15,1406944800,1),(15,1414288800,2),(15,1427594400,1),(15,1434247200,2),(15,1437271200,1),(15,1445738400,2),(15,1459044000,1),(15,1465092000,2),(15,1468116000,1),(15,1477792800,2),(15,1490493600,1),(15,1495332000,2),(15,1498960800,1),(15,1509242400,2),(15,1521943200,1),(15,1526176800,2),(15,1529200800,1),(15,1540692000,3),(15,1557021600,4),(15,1560045600,3),(15,1587261600,4),(15,1590285600,3),(15,1618106400,4),(15,1621130400,3),(15,1648346400,4),(15,1651975200,3),(15,1679191200,4),(15,1682215200,3),(15,1710036000,4),(15,1713060000,3),(15,1740276000,4),(15,1743904800,3),(15,1771120800,4),(15,1774144800,3),(15,1801965600,4),(15,1804989600,3),(15,1832205600,4),(15,1835229600,3),(15,1863050400,4),(15,1866074400,3),(15,1893290400,4),(15,1896919200,3),(15,1924135200,4),(15,1927159200,3),(15,1954980000,4),(15,1958004000,3),(15,1985220000,4),(15,1988848800,3),(15,2016064800,4),(15,2019088800,3),(15,2046304800,4),(15,2049933600,3),(15,2077149600,4),(15,2080173600,3),(15,2107994400,4),(15,2111018400,3),(15,2138234400,4),(15,2141863200,3),(16,-2147483648,1),(16,-1630112400,2),(16,-1616810400,1),(16,-1442451600,2),(16,-1427673600,3),(16,-1379293200,2),(16,-1364774400,3),(16,-1348448400,2),(16,-1333324800,3),(16,-1316390400,2),(16,-1301270400,3),(16,-1293840000,1),(16,-81432000,2),(16,-71110800,1),(16,141264000,2),(16,147222000,1),(16,199756800,2),(16,207702000,1),(16,231292800,2),(16,244249200,1),(16,265507200,2),(16,271033200,1),(16,448243200,4),(16,512528400,5),(16,528253200,6),(16,543978000,5),(16,559702800,6),(16,575427600,5),(16,591152400,6),(16,606877200,5),(16,622602000,6),(16,638326800,5),(16,654656400,6),(16,670381200,5),(16,686106000,6),(16,701830800,5),(16,717555600,6),(16,733280400,5),(16,749005200,6),(16,764730000,5),(16,780454800,6),(16,796179600,5),(16,811904400,6),(16,828234000,5),(16,846378000,6),(16,859683600,5),(16,877827600,6),(16,891133200,5),(16,909277200,6),(16,922582800,5),(16,941331600,6),(16,954032400,5),(16,972781200,6),(16,985482000,5),(16,1004230800,6),(16,1017536400,5),(16,1035680400,6),(16,1048986000,5),(16,1067130000,6),(16,1080435600,5),(16,1099184400,6),(16,1111885200,5),(16,1130634000,6),(16,1143334800,5),(16,1162083600,6),(16,1174784400,5),(16,1193533200,6),(16,1206838800,5),(16,1224982800,6),(16,1238288400,5),(16,1256432400,6),(16,1269738000,5),(16,1288486800,6),(16,1301187600,5),(16,1319936400,6),(16,1332637200,5),(16,1351386000,6),(16,1364691600,5),(16,1382835600,6),(16,1396141200,5),(16,1414285200,6),(16,1427590800,5),(16,1445734800,6),(16,1459040400,5),(16,1477789200,6),(16,1490490000,5),(16,1509238800,6),(16,1521939600,5),(16,1540688400,6),(16,1553994000,5),(16,1572138000,6),(16,1585443600,5),(16,1603587600,6),(16,1616893200,5),(16,1635642000,6),(16,1648342800,5),(16,1667091600,6),(16,1679792400,5),(16,1698541200,6),(16,1711846800,5),(16,1729990800,6),(16,1743296400,5),(16,1761440400,6),(16,1774746000,5),(16,1792890000,6),(16,1806195600,5),(16,1824944400,6),(16,1837645200,5),(16,1856394000,6),(16,1869094800,5),(16,1887843600,6),(16,1901149200,5),(16,1919293200,6),(16,1932598800,5),(16,1950742800,6),(16,1964048400,5),(16,1982797200,6),(16,1995498000,5),(16,2014246800,6),(16,2026947600,5),(16,2045696400,6),(16,2058397200,5),(16,2077146000,6),(16,2090451600,5),(16,2108595600,6),(16,2121901200,5),(16,2140045200,6),(17,-2147483648,0),(17,-1830383032,1),(18,-2147483648,0),(18,-1830383032,1),(19,-2147483648,0),(19,-1309746436,1),(19,-1262314800,2),(19,-946780200,3),(19,-315629100,1),(20,-2147483648,0),(20,-1309746436,1),(20,-1262314800,2),(20,-946780200,3),(20,-315629100,1),(21,-2147483648,0),(21,-1588464816,1),(22,-2147483648,0),(22,-1136070432,1),(22,198291600,3),(22,199756800,2),(22,207702000,3),(22,231292800,2),(22,244249200,3),(22,265507200,2),(22,271033200,3),(22,1212278400,2),(22,1220223600,3),(22,1243814400,2),(22,1250809200,3),(22,1272758400,2),(22,1281222000,3),(22,1301788800,2),(22,1312066800,3),(22,1335664800,2),(22,1342749600,3),(22,1345428000,2),(22,1348970400,3),(22,1367114400,2),(22,1373162400,3),(22,1376100000,2),(22,1382839200,3),(22,1396144800,2),(22,1403920800,3),(22,1406944800,2),(22,1414288800,3),(22,1427594400,2),(22,1434247200,3),(22,1437271200,2),(22,1445738400,3),(22,1459044000,2),(22,1465092000,3),(22,1468116000,2),(22,1477792800,3),(22,1490493600,2),(22,1495332000,3),(22,1498960800,2),(22,1509242400,3),(22,1521943200,2),(22,1526176800,3),(22,1529200800,2),(22,1540692000,5),(22,1557021600,4),(22,1560045600,5),(22,1587261600,4),(22,1590285600,5),(22,1618106400,4),(22,1621130400,5),(22,1648346400,4),(22,1651975200,5),(22,1679191200,4),(22,1682215200,5),(22,1710036000,4),(22,1713060000,5),(22,1740276000,4),(22,1743904800,5),(22,1771120800,4),(22,1774144800,5),(22,1801965600,4),(22,1804989600,5),(22,1832205600,4),(22,1835229600,5),(22,1863050400,4),(22,1866074400,5),(22,1893290400,4),(22,1896919200,5),(22,1924135200,4),(22,1927159200,5),(22,1954980000,4),(22,1958004000,5),(22,1985220000,4),(22,1988848800,5),(22,2016064800,4),(22,2019088800,5),(22,2046304800,4),(22,2049933600,5),(22,2077149600,4),(22,2080173600,5),(22,2107994400,4),(22,2111018400,5),(22,2138234400,4),(22,2141863200,5),(23,-2147483648,0),(23,-1830383032,1),(24,-2147483648,0),(24,-2109291020,1),(25,-2147483648,0),(25,-2109291020,1),(26,-2147483648,1),(26,-2109288600,3),(26,-860976000,2),(26,-845254800,3),(26,-829526400,2),(26,-813805200,3),(27,-2147483648,0),(27,-1230775588,2),(27,10360800,1),(27,24786000,2),(27,41810400,1),(27,56322000,2),(27,73432800,1),(27,87944400,2),(27,104882400,1),(27,119480400,2),(27,136332000,1),(27,151016400,2),(27,167781600,1),(27,182552400,2),(27,199231200,1),(27,214174800,2),(27,230680800,1),(27,245710800,2),(27,262735200,1),(27,277246800,2),(27,294184800,1),(27,308782800,2),(27,325634400,1),(27,340405200,2),(27,357084000,1),(27,371941200,2),(27,388533600,1),(27,403477200,2),(27,419983200,1),(27,435013200,2),(27,452037600,1),(27,466635600,2),(27,483487200,1),(27,498171600,2),(27,947930400,3),(28,-2147483648,0),(28,-1309746436,1),(28,-1262314800,2),(28,-946780200,3),(28,-315629100,1),(29,-2147483648,0),(29,-1230775808,2),(29,10360800,1),(29,24786000,2),(29,41810400,1),(29,56322000,2),(29,73432800,1),(29,87944400,2),(29,104882400,1),(29,119480400,2),(29,136332000,1),(29,151016400,2),(29,167781600,1),(29,182552400,2),(29,199231200,1),(29,214174800,2),(29,230680800,1),(29,245710800,2),(29,262735200,1),(29,277246800,2),(29,294184800,1),(29,308782800,2),(29,325634400,1),(29,340405200,2),(29,357084000,1),(29,371941200,2),(29,388533600,1),(29,403477200,2),(29,419983200,1),(29,435013200,2),(29,452037600,1),(29,466635600,2),(29,483487200,1),(29,498171600,2),(29,947930400,3),(29,1509483600,2),(30,-2147483648,0),(30,-2109291020,1),(31,-2147483648,0),(31,-1588464816,1),(32,-2147483648,0),(32,-1588464816,1),(33,-2147483648,0),(33,-1588464816,1),(34,-2147483648,0),(34,-1830383032,1),(35,-2147483648,0),(35,-1588464816,1),(36,-2147483648,0),(36,-2109291020,1),(37,-2147483648,0),(37,-2109291020,1),(38,-2147483648,0),(38,-1588464816,1),(39,-2147483648,0),(39,-2109291020,1),(40,-2147483648,1),(40,-2109288600,3),(40,-860976000,2),(40,-845254800,3),(40,-829526400,2),(40,-813805200,3),(41,-2147483648,1),(41,-2109288600,3),(41,-860976000,2),(41,-845254800,3),(41,-829526400,2),(41,-813805200,3),(42,-2147483648,0),(42,-1309746436,1),(42,-1262314800,2),(42,-946780200,3),(42,-315629100,1),(43,-2147483648,1),(43,-1604359012,2),(43,63593070,3),(44,-2147483648,0),(44,-1309746436,1),(44,-1262314800,2),(44,-946780200,3),(44,-315629100,1),(45,-2147483648,0),(45,-1830387612,1),(45,308703600,2),(45,321314400,1),(46,-2147483648,0),(46,-1588464816,1),(47,-2147483648,0),(47,-1830383032,1),(48,-2147483648,0),(48,-1830383032,1),(49,-2147483648,0),(49,-1588464816,1),(50,-2147483648,1),(50,-1830384000,2),(50,1514768400,3),(50,1546304400,4),(51,-2147483648,0),(51,-1830383032,1),(52,-2147483648,0),(52,-1577926364,2),(52,-574902000,1),(52,-568087200,2),(52,-512175600,1),(52,-504928800,2),(52,-449888400,1),(52,-441856800,2),(52,-347158800,3),(52,378684000,2),(52,386463600,1),(52,402271200,2),(52,417999600,1),(52,433807200,2),(52,449622000,1),(52,465429600,2),(52,481590000,1),(52,496965600,2),(52,512953200,1),(52,528674400,2),(52,544230000,1),(52,560037600,2),(52,575852400,1),(52,591660000,2),(52,607388400,1),(52,623196000,2),(52,641775600,3),(52,844034400,2),(52,860108400,1),(52,875916000,3),(52,1352505600,2),(52,1364515200,1),(52,1382659200,3),(53,-2147483648,1),(53,-1855958961,4),(53,-969242400,2),(53,-950493600,3),(53,-941940000,2),(53,-891136800,4),(53,-877827600,5),(53,-857257200,4),(53,-844556400,5),(53,-842918400,4),(53,-842223600,5),(53,-828230400,4),(53,-812502000,5),(53,-796269600,4),(53,-781052400,5),(53,-766634400,4),(53,231202800,2),(53,243903600,3),(53,262825200,2),(53,276044400,3),(53,581122800,2),(53,591145200,3),(53,606870000,2),(53,622594800,3),(53,641516400,2),(53,654649200,3),(53,1114902000,2),(53,1128038400,3),(53,1143334800,2),(53,1162083600,3),(53,1174784400,2),(53,1193533200,3),(53,1206838800,2),(53,1224982800,3),(54,-2147483648,1),(54,-2109288600,2),(54,-860976000,3),(54,-845254800,2),(54,637970400,5),(54,764200800,4),(54,778640400,5),(54,796780800,4),(54,810090000,5),(54,828835200,4),(54,841539600,5),(54,860284800,4),(54,873594000,5),(54,891734400,4),(54,905043600,5),(54,923184000,4),(54,936493200,5),(54,954633600,4),(54,967942800,5),(54,986083200,4),(54,999392400,5),(54,1018137600,4),(54,1030842000,5),(54,1049587200,4),(54,1062896400,5),(54,1081036800,4),(54,1094346000,5),(54,1112486400,4),(54,1125795600,5),(54,1143936000,4),(54,1157245200,5),(54,1175385600,4),(54,1188694800,5),(54,1207440000,4),(54,1220749200,5),(54,1238889600,4),(54,1252198800,5),(54,1270339200,4),(54,1283648400,5),(54,1301788800,4),(54,1315098000,5),(54,1333238400,4),(54,1346547600,5),(54,1365292800,4),(54,1377997200,5),(54,1396742400,4),(54,1410051600,5),(54,1428192000,4),(54,1441501200,5),(54,1459641600,4),(54,1472950800,5),(54,1491091200,4),(54,1504400400,5),(55,-2147483648,1),(55,-880196400,2),(55,-769395600,3),(55,-765374400,1),(55,-86878800,4),(55,-21466800,5),(55,-5745600,4),(55,9982800,5),(55,25704000,4),(55,41432400,5),(55,57758400,4),(55,73486800,5),(55,89208000,4),(55,104936400,5),(55,120657600,4),(55,126709200,5),(55,152107200,4),(55,162392400,5),(55,183556800,4),(55,199285200,5),(55,215611200,4),(55,230734800,5),(55,247060800,4),(55,262789200,5),(55,278510400,4),(55,294238800,5),(55,309960000,4),(55,325688400,5),(55,341409600,4),(55,357138000,5),(55,372859200,4),(55,388587600,5),(55,404913600,4),(55,420037200,5),(55,436363200,6),(55,439034400,8),(55,452088000,7),(55,467809200,8),(55,483537600,7),(55,499258800,8),(55,514987200,7),(55,530708400,8),(55,544622400,7),(55,562158000,8),(55,576072000,7),(55,594212400,8),(55,607521600,7),(55,625662000,8),(55,638971200,7),(55,657111600,8),(55,671025600,7),(55,688561200,8),(55,702475200,7),(55,720010800,8),(55,733924800,7),(55,752065200,8),(55,765374400,7),(55,783514800,8),(55,796824000,7),(55,814964400,8),(55,828878400,7),(55,846414000,8),(55,860328000,7),(55,877863600,8),(55,891777600,7),(55,909313200,8),(55,923227200,7),(55,941367600,8),(55,954676800,7),(55,972817200,8),(55,986126400,7),(55,1004266800,8),(55,1018180800,7),(55,1035716400,8),(55,1049630400,7),(55,1067166000,8),(55,1081080000,7),(55,1099220400,8),(55,1112529600,7),(55,1130670000,8),(55,1143979200,7),(55,1162119600,8),(55,1173614400,7),(55,1194174000,8),(55,1205064000,7),(55,1225623600,8),(55,1236513600,7),(55,1257073200,8),(55,1268568000,7),(55,1289127600,8),(55,1300017600,7),(55,1320577200,8),(55,1331467200,7),(55,1352026800,8),(55,1362916800,7),(55,1383476400,8),(55,1394366400,7),(55,1414926000,8),(55,1425816000,7),(55,1446375600,8),(55,1457870400,7),(55,1478430000,8),(55,1489320000,7),(55,1509879600,8),(55,1520769600,7),(55,1541329200,8),(55,1552219200,7),(55,1572778800,8),(55,1583668800,7),(55,1604228400,8),(55,1615723200,7),(55,1636282800,8),(55,1647172800,7),(55,1667732400,8),(55,1678622400,7),(55,1699182000,8),(55,1710072000,7),(55,1730631600,8),(55,1741521600,7),(55,1762081200,8),(55,1772971200,7),(55,1793530800,8),(55,1805025600,7),(55,1825585200,8),(55,1836475200,7),(55,1857034800,8),(55,1867924800,7),(55,1888484400,8),(55,1899374400,7),(55,1919934000,8),(55,1930824000,7),(55,1951383600,8),(55,1962878400,7),(55,1983438000,8),(55,1994328000,7),(55,2014887600,8),(55,2025777600,7),(55,2046337200,8),(55,2057227200,7),(55,2077786800,8),(55,2088676800,7),(55,2109236400,8),(55,2120126400,7),(55,2140686000,8),(56,-2147483648,1),(56,-880200000,2),(56,-769395600,3),(56,-765378000,1),(56,-86882400,4),(56,-21470400,5),(56,-5749200,4),(56,9979200,5),(56,25700400,4),(56,41428800,5),(56,57754800,4),(56,73483200,5),(56,89204400,4),(56,104932800,5),(56,120654000,4),(56,126705600,5),(56,152103600,4),(56,162388800,5),(56,183553200,4),(56,199281600,5),(56,215607600,4),(56,230731200,5),(56,247057200,4),(56,262785600,5),(56,278506800,4),(56,294235200,5),(56,309956400,4),(56,325684800,5),(56,341406000,4),(56,357134400,5),(56,372855600,4),(56,388584000,5),(56,404910000,4),(56,420033600,5),(56,436359600,6),(56,439030800,8),(56,452084400,7),(56,467805600,8),(56,483534000,7),(56,499255200,8),(56,514983600,7),(56,530704800,8),(56,544618800,7),(56,562154400,8),(56,576068400,7),(56,594208800,8),(56,607518000,7),(56,625658400,8),(56,638967600,7),(56,657108000,8),(56,671022000,7),(56,688557600,8),(56,702471600,7),(56,720007200,8),(56,733921200,7),(56,752061600,8),(56,765370800,7),(56,783511200,8),(56,796820400,7),(56,814960800,8),(56,828874800,7),(56,846410400,8),(56,860324400,7),(56,877860000,8),(56,891774000,7),(56,909309600,8),(56,923223600,7),(56,941364000,8),(56,954673200,7),(56,972813600,8),(56,986122800,7),(56,1004263200,8),(56,1018177200,7),(56,1035712800,8),(56,1049626800,7),(56,1067162400,8),(56,1081076400,7),(56,1099216800,8),(56,1112526000,7),(56,1130666400,8),(56,1143975600,7),(56,1162116000,8),(56,1173610800,7),(56,1194170400,8),(56,1205060400,7),(56,1225620000,8),(56,1236510000,7),(56,1257069600,8),(56,1268564400,7),(56,1289124000,8),(56,1300014000,7),(56,1320573600,8),(56,1331463600,7),(56,1352023200,8),(56,1362913200,7),(56,1383472800,8),(56,1394362800,7),(56,1414922400,8),(56,1425812400,7),(56,1446372000,8),(56,1457866800,7),(56,1478426400,8),(56,1489316400,7),(56,1509876000,8),(56,1520766000,7),(56,1541325600,8),(56,1552215600,7),(56,1572775200,8),(56,1583665200,7),(56,1604224800,8),(56,1615719600,7),(56,1636279200,8),(56,1647169200,7),(56,1667728800,8),(56,1678618800,7),(56,1699178400,8),(56,1710068400,7),(56,1730628000,8),(56,1741518000,7),(56,1762077600,8),(56,1772967600,7),(56,1793527200,8),(56,1805022000,7),(56,1825581600,8),(56,1836471600,7),(56,1857031200,8),(56,1867921200,7),(56,1888480800,8),(56,1899370800,7),(56,1919930400,8),(56,1930820400,7),(56,1951380000,8),(56,1962874800,7),(56,1983434400,8),(56,1994324400,7),(56,2014884000,8),(56,2025774000,7),(56,2046333600,8),(56,2057223600,7),(56,2077783200,8),(56,2088673200,7),(56,2109232800,8),(56,2120122800,7),(56,2140682400,8),(57,-2147483648,0),(57,-1825098836,1),(58,-2147483648,0),(58,-1825098836,1),(59,-2147483648,0),(59,-1767214032,2),(59,-1206957600,1),(59,-1191362400,2),(59,-1175374800,1),(59,-1159826400,2),(59,-633819600,1),(59,-622069200,2),(59,-602283600,1),(59,-591832800,2),(59,-570747600,1),(59,-560210400,2),(59,-539125200,1),(59,-531352800,2),(59,-191365200,1),(59,-184197600,2),(59,-155163600,1),(59,-150069600,2),(59,-128898000,1),(59,-121125600,2),(59,-99954000,1),(59,-89589600,2),(59,-68418000,1),(59,-57967200,2),(59,499748400,1),(59,511236000,2),(59,530593200,1),(59,540266400,2),(59,562129200,1),(59,571197600,2),(59,592974000,1),(59,602042400,2),(59,624423600,1),(59,634701600,2),(59,813726000,1),(59,824004000,2),(59,844570800,1),(59,856058400,2),(59,876106800,1),(59,888717600,2),(59,908074800,1),(59,919562400,2),(59,938919600,1),(59,951616800,2),(59,970974000,1),(59,982461600,2),(59,1003028400,1),(59,1013911200,2),(59,1036292400,1),(59,1045360800,2),(59,1350788400,1),(59,1361066400,2),(60,-2147483648,1),(60,-1567453392,2),(60,-1233432000,3),(60,-1222981200,2),(60,-1205956800,3),(60,-1194037200,2),(60,-1172865600,3),(60,-1162501200,2),(60,-1141329600,3),(60,-1130965200,2),(60,-1109793600,3),(60,-1099429200,2),(60,-1078257600,3),(60,-1067806800,2),(60,-1046635200,3),(60,-1036270800,2),(60,-1015099200,3),(60,-1004734800,2),(60,-983563200,3),(60,-973198800,2),(60,-952027200,3),(60,-941576400,2),(60,-931032000,3),(60,-900882000,2),(60,-890337600,3),(60,-833749200,2),(60,-827265600,3),(60,-752274000,2),(60,-733780800,3),(60,-197326800,2),(60,-190843200,3),(60,-184194000,2),(60,-164491200,3),(60,-152658000,2),(60,-132955200,3),(60,-121122000,2),(60,-101419200,3),(60,-86821200,2),(60,-71092800,3),(60,-54766800,2),(60,-39038400,3),(60,-23317200,2),(60,-7588800,5),(60,128142000,4),(60,136605600,5),(60,596948400,4),(60,605066400,5),(60,624423600,4),(60,636516000,5),(60,656478000,4),(60,667965600,5),(60,687927600,4),(60,699415200,5),(60,719377200,4),(60,731469600,5),(60,938919600,3),(60,952052400,5),(60,1198983600,4),(60,1205632800,5),(60,1224385200,4),(60,1237082400,5),(61,-2147483648,1),(61,-1567453392,2),(61,-1233432000,3),(61,-1222981200,2),(61,-1205956800,3),(61,-1194037200,2),(61,-1172865600,3),(61,-1162501200,2),(61,-1141329600,3),(61,-1130965200,2),(61,-1109793600,3),(61,-1099429200,2),(61,-1078257600,3),(61,-1067806800,2),(61,-1046635200,3),(61,-1036270800,2),(61,-1015099200,3),(61,-1004734800,2),(61,-983563200,3),(61,-973198800,2),(61,-952027200,3),(61,-941576400,2),(61,-931032000,3),(61,-900882000,2),(61,-890337600,3),(61,-833749200,2),(61,-827265600,3),(61,-752274000,2),(61,-733780800,3),(61,-197326800,2),(61,-190843200,3),(61,-184194000,2),(61,-164491200,3),(61,-152658000,2),(61,-132955200,3),(61,-121122000,2),(61,-101419200,3),(61,-86821200,2),(61,-71092800,3),(61,-54766800,2),(61,-39038400,3),(61,-23317200,2),(61,-7588800,5),(61,128142000,4),(61,136605600,5),(61,596948400,4),(61,605066400,5),(61,624423600,4),(61,636516000,5),(61,656478000,4),(61,667965600,2),(61,687931200,4),(61,699415200,5),(61,719377200,4),(61,731469600,5),(61,938919600,3),(61,952052400,5),(61,1086058800,2),(61,1087704000,5),(61,1198983600,4),(61,1205632800,5),(62,-2147483648,1),(62,-1567453392,2),(62,-1233432000,3),(62,-1222981200,2),(62,-1205956800,3),(62,-1194037200,2),(62,-1172865600,3),(62,-1162501200,2),(62,-1141329600,3),(62,-1130965200,2),(62,-1109793600,3),(62,-1099429200,2),(62,-1078257600,3),(62,-1067806800,2),(62,-1046635200,3),(62,-1036270800,2),(62,-1015099200,3),(62,-1004734800,2),(62,-983563200,3),(62,-973198800,2),(62,-952027200,3),(62,-941576400,2),(62,-931032000,3),(62,-900882000,2),(62,-890337600,3),(62,-833749200,2),(62,-827265600,3),(62,-752274000,2),(62,-733780800,3),(62,-197326800,2),(62,-190843200,3),(62,-184194000,2),(62,-164491200,3),(62,-152658000,2),(62,-132955200,3),(62,-121122000,2),(62,-101419200,3),(62,-86821200,2),(62,-71092800,3),(62,-54766800,2),(62,-39038400,3),(62,-23317200,2),(62,-7588800,5),(62,128142000,4),(62,136605600,5),(62,596948400,4),(62,605066400,5),(62,624423600,4),(62,636516000,5),(62,656478000,4),(62,667965600,2),(62,687931200,4),(62,699415200,5),(62,719377200,4),(62,731469600,5),(62,938919600,3),(62,952052400,5),(62,1086058800,2),(62,1087704000,5),(62,1198983600,4),(62,1205632800,5),(63,-2147483648,1),(63,-1567453392,2),(63,-1233432000,3),(63,-1222981200,2),(63,-1205956800,3),(63,-1194037200,2),(63,-1172865600,3),(63,-1162501200,2),(63,-1141329600,3),(63,-1130965200,2),(63,-1109793600,3),(63,-1099429200,2),(63,-1078257600,3),(63,-1067806800,2),(63,-1046635200,3),(63,-1036270800,2),(63,-1015099200,3),(63,-1004734800,2),(63,-983563200,3),(63,-973198800,2),(63,-952027200,3),(63,-941576400,2),(63,-931032000,3),(63,-900882000,2),(63,-890337600,3),(63,-833749200,2),(63,-827265600,3),(63,-752274000,2),(63,-733780800,3),(63,-197326800,2),(63,-190843200,3),(63,-184194000,2),(63,-164491200,3),(63,-152658000,2),(63,-132955200,3),(63,-121122000,2),(63,-101419200,3),(63,-86821200,2),(63,-71092800,3),(63,-54766800,2),(63,-39038400,3),(63,-23317200,2),(63,-7588800,5),(63,128142000,4),(63,136605600,5),(63,596948400,4),(63,605066400,5),(63,624423600,4),(63,636516000,5),(63,656478000,4),(63,667965600,2),(63,687931200,4),(63,699415200,5),(63,719377200,4),(63,731469600,5),(63,938919600,3),(63,952052400,5),(63,1198983600,4),(63,1205632800,5),(63,1224385200,4),(63,1237082400,5),(64,-2147483648,1),(64,-1567453392,2),(64,-1233432000,3),(64,-1222981200,2),(64,-1205956800,3),(64,-1194037200,2),(64,-1172865600,3),(64,-1162501200,2),(64,-1141329600,3),(64,-1130965200,2),(64,-1109793600,3),(64,-1099429200,2),(64,-1078257600,3),(64,-1067806800,2),(64,-1046635200,3),(64,-1036270800,2),(64,-1015099200,3),(64,-1004734800,2),(64,-983563200,3),(64,-973198800,2),(64,-952027200,3),(64,-941576400,2),(64,-931032000,3),(64,-900882000,2),(64,-890337600,3),(64,-833749200,2),(64,-827265600,3),(64,-752274000,2),(64,-733780800,3),(64,-197326800,2),(64,-190843200,3),(64,-184194000,2),(64,-164491200,3),(64,-152658000,2),(64,-132955200,3),(64,-121122000,2),(64,-101419200,3),(64,-86821200,2),(64,-71092800,3),(64,-54766800,2),(64,-39038400,3),(64,-23317200,2),(64,-7588800,5),(64,128142000,4),(64,136605600,5),(64,596948400,4),(64,605066400,5),(64,624423600,4),(64,636516000,2),(64,657086400,3),(64,669178800,2),(64,686721600,4),(64,699415200,5),(64,719377200,4),(64,731469600,5),(64,938919600,3),(64,952052400,5),(64,1198983600,4),(64,1205632800,5),(65,-2147483648,1),(65,-1567453392,2),(65,-1233432000,3),(65,-1222981200,2),(65,-1205956800,3),(65,-1194037200,2),(65,-1172865600,3),(65,-1162501200,2),(65,-1141329600,3),(65,-1130965200,2),(65,-1109793600,3),(65,-1099429200,2),(65,-1078257600,3),(65,-1067806800,2),(65,-1046635200,3),(65,-1036270800,2),(65,-1015099200,3),(65,-1004734800,2),(65,-983563200,3),(65,-973198800,2),(65,-952027200,3),(65,-941576400,2),(65,-931032000,3),(65,-900882000,2),(65,-890337600,3),(65,-833749200,2),(65,-827265600,3),(65,-752274000,2),(65,-733780800,3),(65,-197326800,2),(65,-190843200,3),(65,-184194000,2),(65,-164491200,3),(65,-152658000,2),(65,-132955200,3),(65,-121122000,2),(65,-101419200,3),(65,-86821200,2),(65,-71092800,3),(65,-54766800,2),(65,-39038400,3),(65,-23317200,2),(65,-7588800,5),(65,128142000,4),(65,136605600,5),(65,596948400,4),(65,605066400,5),(65,624423600,4),(65,636516000,5),(65,656478000,4),(65,667792800,2),(65,673588800,5),(65,687927600,4),(65,699415200,5),(65,719377200,4),(65,731469600,5),(65,938919600,3),(65,952052400,5),(65,1086058800,2),(65,1087704000,5),(65,1198983600,4),(65,1205632800,5),(66,-2147483648,1),(66,-1567453392,2),(66,-1233432000,3),(66,-1222981200,2),(66,-1205956800,3),(66,-1194037200,2),(66,-1172865600,3),(66,-1162501200,2),(66,-1141329600,3),(66,-1130965200,2),(66,-1109793600,3),(66,-1099429200,2),(66,-1078257600,3),(66,-1067806800,2),(66,-1046635200,3),(66,-1036270800,2),(66,-1015099200,3),(66,-1004734800,2),(66,-983563200,3),(66,-973198800,2),(66,-952027200,3),(66,-941576400,2),(66,-931032000,3),(66,-900882000,2),(66,-890337600,3),(66,-833749200,2),(66,-827265600,3),(66,-752274000,2),(66,-733780800,3),(66,-197326800,2),(66,-190843200,3),(66,-184194000,2),(66,-164491200,3),(66,-152658000,2),(66,-132955200,3),(66,-121122000,2),(66,-101419200,3),(66,-86821200,2),(66,-71092800,3),(66,-54766800,2),(66,-39038400,3),(66,-23317200,2),(66,-7588800,5),(66,128142000,4),(66,136605600,5),(66,596948400,4),(66,605066400,5),(66,624423600,4),(66,636516000,2),(66,655963200,3),(66,667796400,2),(66,687499200,3),(66,699418800,2),(66,719380800,4),(66,731469600,5),(66,938919600,3),(66,952052400,5),(66,1085281200,2),(66,1096171200,5),(66,1198983600,4),(66,1205632800,5),(67,-2147483648,1),(67,-1567453392,2),(67,-1233432000,3),(67,-1222981200,2),(67,-1205956800,3),(67,-1194037200,2),(67,-1172865600,3),(67,-1162501200,2),(67,-1141329600,3),(67,-1130965200,2),(67,-1109793600,3),(67,-1099429200,2),(67,-1078257600,3),(67,-1067806800,2),(67,-1046635200,3),(67,-1036270800,2),(67,-1015099200,3),(67,-1004734800,2),(67,-983563200,3),(67,-973198800,2),(67,-952027200,3),(67,-941576400,2),(67,-931032000,3),(67,-900882000,2),(67,-890337600,3),(67,-833749200,2),(67,-827265600,3),(67,-752274000,2),(67,-733780800,3),(67,-197326800,2),(67,-190843200,3),(67,-184194000,2),(67,-164491200,3),(67,-152658000,2),(67,-132955200,3),(67,-121122000,2),(67,-101419200,3),(67,-86821200,2),(67,-71092800,3),(67,-54766800,2),(67,-39038400,3),(67,-23317200,2),(67,-7588800,5),(67,128142000,4),(67,136605600,5),(67,596948400,4),(67,605066400,5),(67,624423600,4),(67,636516000,5),(67,656478000,4),(67,667965600,5),(67,687927600,4),(67,699415200,5),(67,719377200,4),(67,731469600,5),(67,938919600,3),(67,952052400,5),(67,1086058800,2),(67,1087704000,5),(67,1198983600,4),(67,1205632800,5),(68,-2147483648,1),(68,-1567453392,2),(68,-1233432000,3),(68,-1222981200,2),(68,-1205956800,3),(68,-1194037200,2),(68,-1172865600,3),(68,-1162501200,2),(68,-1141329600,3),(68,-1130965200,2),(68,-1109793600,3),(68,-1099429200,2),(68,-1078257600,3),(68,-1067806800,2),(68,-1046635200,3),(68,-1036270800,2),(68,-1015099200,3),(68,-1004734800,2),(68,-983563200,3),(68,-973198800,2),(68,-952027200,3),(68,-941576400,2),(68,-931032000,3),(68,-900882000,2),(68,-890337600,3),(68,-833749200,2),(68,-827265600,3),(68,-752274000,2),(68,-733780800,3),(68,-197326800,2),(68,-190843200,3),(68,-184194000,2),(68,-164491200,3),(68,-152658000,2),(68,-132955200,3),(68,-121122000,2),(68,-101419200,3),(68,-86821200,2),(68,-71092800,3),(68,-54766800,2),(68,-39038400,3),(68,-23317200,2),(68,-7588800,5),(68,128142000,4),(68,136605600,5),(68,596948400,4),(68,605066400,5),(68,624423600,4),(68,636516000,5),(68,656478000,4),(68,667965600,2),(68,687931200,4),(68,699415200,5),(68,719377200,4),(68,731469600,5),(68,938919600,3),(68,952052400,5),(68,1198983600,4),(68,1205632800,5),(69,-2147483648,1),(69,-1567453392,2),(69,-1233432000,3),(69,-1222981200,2),(69,-1205956800,3),(69,-1194037200,2),(69,-1172865600,3),(69,-1162501200,2),(69,-1141329600,3),(69,-1130965200,2),(69,-1109793600,3),(69,-1099429200,2),(69,-1078257600,3),(69,-1067806800,2),(69,-1046635200,3),(69,-1036270800,2),(69,-1015099200,3),(69,-1004734800,2),(69,-983563200,3),(69,-973198800,2),(69,-952027200,3),(69,-941576400,2),(69,-931032000,3),(69,-900882000,2),(69,-890337600,3),(69,-833749200,2),(69,-827265600,3),(69,-752274000,2),(69,-733780800,3),(69,-197326800,2),(69,-190843200,3),(69,-184194000,2),(69,-164491200,3),(69,-152658000,2),(69,-132955200,3),(69,-121122000,2),(69,-101419200,3),(69,-86821200,2),(69,-71092800,3),(69,-54766800,2),(69,-39038400,3),(69,-23317200,2),(69,-7588800,5),(69,128142000,4),(69,136605600,5),(69,596948400,4),(69,605066400,5),(69,624423600,4),(69,636516000,5),(69,656478000,4),(69,667792800,2),(69,673588800,5),(69,687927600,4),(69,699415200,5),(69,719377200,4),(69,731469600,5),(69,938919600,3),(69,952052400,5),(69,1085972400,2),(69,1090728000,5),(69,1198983600,4),(69,1205632800,5),(70,-2147483648,1),(70,-1567453392,2),(70,-1233432000,3),(70,-1222981200,2),(70,-1205956800,3),(70,-1194037200,2),(70,-1172865600,3),(70,-1162501200,2),(70,-1141329600,3),(70,-1130965200,2),(70,-1109793600,3),(70,-1099429200,2),(70,-1078257600,3),(70,-1067806800,2),(70,-1046635200,3),(70,-1036270800,2),(70,-1015099200,3),(70,-1004734800,2),(70,-983563200,3),(70,-973198800,2),(70,-952027200,3),(70,-941576400,2),(70,-931032000,3),(70,-900882000,2),(70,-890337600,3),(70,-833749200,2),(70,-827265600,3),(70,-752274000,2),(70,-733780800,3),(70,-197326800,2),(70,-190843200,3),(70,-184194000,2),(70,-164491200,3),(70,-152658000,2),(70,-132955200,3),(70,-121122000,2),(70,-101419200,3),(70,-86821200,2),(70,-71092800,3),(70,-54766800,2),(70,-39038400,3),(70,-23317200,2),(70,-7588800,5),(70,128142000,4),(70,136605600,5),(70,596948400,4),(70,605066400,5),(70,624423600,4),(70,637380000,2),(70,655963200,3),(70,667796400,2),(70,675748800,5),(70,938919600,3),(70,952052400,5),(70,1085972400,2),(70,1090728000,5),(70,1198983600,4),(70,1200880800,3),(70,1205031600,2),(70,1223784000,3),(70,1236481200,2),(70,1255233600,5),(71,-2147483648,1),(71,-1567453392,2),(71,-1233432000,3),(71,-1222981200,2),(71,-1205956800,3),(71,-1194037200,2),(71,-1172865600,3),(71,-1162501200,2),(71,-1141329600,3),(71,-1130965200,2),(71,-1109793600,3),(71,-1099429200,2),(71,-1078257600,3),(71,-1067806800,2),(71,-1046635200,3),(71,-1036270800,2),(71,-1015099200,3),(71,-1004734800,2),(71,-983563200,3),(71,-973198800,2),(71,-952027200,3),(71,-941576400,2),(71,-931032000,3),(71,-900882000,2),(71,-890337600,3),(71,-833749200,2),(71,-827265600,3),(71,-752274000,2),(71,-733780800,3),(71,-197326800,2),(71,-190843200,3),(71,-184194000,2),(71,-164491200,3),(71,-152658000,2),(71,-132955200,3),(71,-121122000,2),(71,-101419200,3),(71,-86821200,2),(71,-71092800,3),(71,-54766800,2),(71,-39038400,3),(71,-23317200,2),(71,-7588800,5),(71,128142000,4),(71,136605600,5),(71,596948400,4),(71,605066400,5),(71,624423600,4),(71,636516000,5),(71,656478000,4),(71,667965600,2),(71,687931200,4),(71,699415200,5),(71,719377200,4),(71,731469600,5),(71,938919600,3),(71,952052400,5),(71,1086058800,2),(71,1087099200,5),(71,1198983600,4),(71,1205632800,5),(71,1224385200,4),(71,1237082400,5),(72,-2147483648,1),(72,-1567453392,2),(72,-1233432000,3),(72,-1222981200,2),(72,-1205956800,3),(72,-1194037200,2),(72,-1172865600,3),(72,-1162501200,2),(72,-1141329600,3),(72,-1130965200,2),(72,-1109793600,3),(72,-1099429200,2),(72,-1078257600,3),(72,-1067806800,2),(72,-1046635200,3),(72,-1036270800,2),(72,-1015099200,3),(72,-1004734800,2),(72,-983563200,3),(72,-973198800,2),(72,-952027200,3),(72,-941576400,2),(72,-931032000,3),(72,-900882000,2),(72,-890337600,3),(72,-833749200,2),(72,-827265600,3),(72,-752274000,2),(72,-733780800,3),(72,-197326800,2),(72,-190843200,3),(72,-184194000,2),(72,-164491200,3),(72,-152658000,2),(72,-132955200,3),(72,-121122000,2),(72,-101419200,3),(72,-86821200,2),(72,-71092800,3),(72,-54766800,2),(72,-39038400,3),(72,-23317200,2),(72,-7588800,5),(72,128142000,4),(72,136605600,5),(72,596948400,4),(72,605066400,5),(72,624423600,4),(72,636516000,5),(72,656478000,4),(72,667965600,5),(72,687927600,4),(72,699415200,5),(72,719377200,4),(72,731469600,5),(72,938919600,3),(72,952052400,5),(72,1085886000,2),(72,1087704000,5),(72,1198983600,4),(72,1205632800,5),(73,-2147483648,0),(73,-1826738653,1),(73,-157750200,2),(74,-2147483648,1),(74,-1206389360,2),(74,86760000,3),(74,134017200,2),(74,181368000,4),(74,194497200,2),(74,212990400,4),(74,226033200,2),(74,244526400,4),(74,257569200,2),(74,276062400,4),(74,291783600,2),(74,307598400,4),(74,323406000,2),(74,339220800,4),(74,354942000,2),(74,370756800,4),(74,386478000,2),(74,402292800,4),(74,418014000,2),(74,433828800,4),(74,449636400,2),(74,465451200,4),(74,481172400,2),(74,496987200,4),(74,512708400,2),(74,528523200,4),(74,544244400,2),(74,560059200,4),(74,575866800,2),(74,591681600,4),(74,607402800,2),(74,625032000,4),(74,638938800,2),(74,654753600,4),(74,670474800,2),(74,686721600,4),(74,699418800,2),(74,718257600,4),(74,733546800,2),(74,749448000,4),(74,762318000,2),(74,780984000,4),(74,793767600,2),(74,812520000,4),(74,825649200,2),(74,844574400,4),(74,856666800,2),(74,876024000,4),(74,888721200,2),(74,907473600,4),(74,920775600,2),(74,938923200,4),(74,952225200,2),(74,970372800,4),(74,983674800,2),(74,1002427200,4),(74,1018148400,2),(74,1030852800,4),(74,1049598000,2),(74,1062907200,4),(74,1081047600,2),(74,1097985600,4),(74,1110682800,2),(74,1129435200,4),(74,1142132400,2),(74,1160884800,4),(74,1173582000,2),(74,1192939200,4),(74,1205031600,2),(74,1224388800,4),(74,1236481200,2),(74,1255838400,4),(74,1270954800,2),(74,1286078400,4),(74,1302404400,2),(74,1317528000,4),(74,1333854000,2),(74,1349582400,4),(74,1364094000,2),(74,1381032000,4),(74,1395543600,2),(74,1412481600,4),(74,1426993200,2),(74,1443931200,4),(74,1459047600,2),(74,1475380800,4),(74,1490497200,2),(74,1506830400,4),(74,1521946800,2),(74,1538884800,4),(74,1553396400,2),(74,1570334400,4),(74,1584846000,2),(74,1601784000,4),(74,1616900400,2),(74,1633233600,4),(74,1648350000,2),(74,1664683200,4),(74,1679799600,2),(74,1696132800,4),(74,1711249200,2),(74,1728187200,4),(74,1742698800,2),(74,1759636800,4),(74,1774148400,2),(74,1791086400,4),(74,1806202800,2),(74,1822536000,4),(74,1837652400,2),(74,1853985600,4),(74,1869102000,2),(74,1886040000,4),(74,1900551600,2),(74,1917489600,4),(74,1932001200,2),(74,1948939200,4),(74,1964055600,2),(74,1980388800,4),(74,1995505200,2),(74,2011838400,4),(74,2026954800,2),(74,2043288000,4),(74,2058404400,2),(74,2075342400,4),(74,2089854000,2),(74,2106792000,4),(74,2121303600,2),(74,2138241600,4),(75,-2147483648,2),(75,-1632067200,1),(75,-1615136400,2),(75,-923248800,1),(75,-880214400,3),(75,-769395600,4),(75,-765392400,5),(76,-2147483648,1),(76,-880196400,2),(76,-769395600,3),(76,-765374400,1),(76,-86878800,4),(76,-21466800,5),(76,-5745600,4),(76,9982800,5),(76,25704000,4),(76,41432400,5),(76,57758400,4),(76,73486800,5),(76,89208000,4),(76,104936400,5),(76,120657600,4),(76,126709200,5),(76,152107200,4),(76,162392400,5),(76,183556800,4),(76,199285200,5),(76,215611200,4),(76,230734800,5),(76,247060800,4),(76,262789200,5),(76,278510400,4),(76,294238800,5),(76,309960000,4),(76,325688400,5),(76,341409600,4),(76,357138000,5),(76,372859200,4),(76,388587600,5),(76,404913600,4),(76,420037200,5),(76,436363200,6),(76,439034400,8),(76,452088000,7),(76,467809200,8),(76,483537600,7),(76,499258800,8),(76,514987200,7),(76,530708400,8),(76,544622400,7),(76,562158000,8),(76,576072000,7),(76,594212400,8),(76,607521600,7),(76,625662000,8),(76,638971200,7),(76,657111600,8),(76,671025600,7),(76,688561200,8),(76,702475200,7),(76,720010800,8),(76,733924800,7),(76,752065200,8),(76,765374400,7),(76,783514800,8),(76,796824000,7),(76,814964400,8),(76,828878400,7),(76,846414000,8),(76,860328000,7),(76,877863600,8),(76,891777600,7),(76,909313200,8),(76,923227200,7),(76,941367600,8),(76,954676800,7),(76,972817200,8),(76,986126400,7),(76,1004266800,8),(76,1018180800,7),(76,1035716400,8),(76,1049630400,7),(76,1067166000,8),(76,1081080000,7),(76,1099220400,8),(76,1112529600,7),(76,1130670000,8),(76,1143979200,7),(76,1162119600,8),(76,1173614400,7),(76,1194174000,8),(76,1205064000,7),(76,1225623600,8),(76,1236513600,7),(76,1257073200,8),(76,1268568000,7),(76,1289127600,8),(76,1300017600,7),(76,1320577200,8),(76,1331467200,7),(76,1352026800,8),(76,1362916800,7),(76,1383476400,8),(76,1394366400,7),(76,1414926000,8),(76,1425816000,7),(76,1446375600,8),(76,1457870400,7),(76,1478430000,8),(76,1489320000,7),(76,1509879600,8),(76,1520769600,7),(76,1541329200,8),(76,1552219200,7),(76,1572778800,8),(76,1583668800,7),(76,1604228400,8),(76,1615723200,7),(76,1636282800,8),(76,1647172800,7),(76,1667732400,8),(76,1678622400,7),(76,1699182000,8),(76,1710072000,7),(76,1730631600,8),(76,1741521600,7),(76,1762081200,8),(76,1772971200,7),(76,1793530800,8),(76,1805025600,7),(76,1825585200,8),(76,1836475200,7),(76,1857034800,8),(76,1867924800,7),(76,1888484400,8),(76,1899374400,7),(76,1919934000,8),(76,1930824000,7),(76,1951383600,8),(76,1962878400,7),(76,1983438000,8),(76,1994328000,7),(76,2014887600,8),(76,2025777600,7),(76,2046337200,8),(76,2057227200,7),(76,2077786800,8),(76,2088676800,7),(76,2109236400,8),(76,2120126400,7),(76,2140686000,8),(77,-2147483648,0),(77,-1767216356,2),(77,-1206957600,1),(77,-1191362400,2),(77,-1175374800,1),(77,-1159826400,2),(77,-633819600,1),(77,-622069200,2),(77,-602283600,1),(77,-591832800,2),(77,-570747600,1),(77,-560210400,2),(77,-539125200,1),(77,-531352800,2),(77,-191365200,1),(77,-184197600,2),(77,-155163600,1),(77,-150069600,2),(77,-128898000,1),(77,-121125600,2),(77,-99954000,1),(77,-89589600,2),(77,-68418000,1),(77,-57967200,2),(77,499748400,1),(77,511236000,2),(77,530593200,1),(77,540266400,2),(77,562129200,1),(77,571197600,2),(77,592974000,1),(77,602042400,2),(77,624423600,1),(77,634701600,2),(77,656478000,1),(77,666756000,2),(77,687927600,1),(77,697600800,2),(77,719982000,1),(77,728445600,2),(77,750826800,1),(77,761709600,2),(77,782276400,1),(77,793159200,2),(77,813726000,1),(77,824004000,2),(77,844570800,1),(77,856058400,2),(77,876106800,1),(77,888717600,2),(77,908074800,1),(77,919562400,2),(77,938919600,1),(77,951616800,2),(77,970974000,1),(77,982461600,2),(77,1003028400,1),(77,1013911200,2),(77,1036292400,1),(77,1045360800,2),(77,1318734000,1),(77,1330221600,2),(78,-2147483648,0),(78,-1514739600,1),(78,-1343066400,2),(78,-1234807200,1),(78,-1220292000,2),(78,-1207159200,1),(78,-1191344400,2),(78,-873828000,1),(78,-661539600,3),(78,28800,1),(78,828867600,4),(78,846403200,1),(78,860317200,4),(78,877852800,1),(78,891766800,4),(78,909302400,1),(78,923216400,4),(78,941356800,1),(78,954666000,4),(78,972806400,1),(78,989139600,4),(78,1001836800,1),(78,1018170000,4),(78,1035705600,1),(78,1049619600,4),(78,1067155200,1),(78,1081069200,4),(78,1099209600,1),(78,1112518800,4),(78,1130659200,1),(78,1143968400,4),(78,1162108800,1),(78,1175418000,4),(78,1193558400,1),(78,1207472400,4),(78,1225008000,1),(78,1238922000,4),(78,1256457600,1),(78,1270371600,5),(78,1288508400,2),(78,1301817600,5),(78,1319958000,2),(78,1333267200,5),(78,1351407600,2),(78,1365321600,5),(78,1382857200,2),(78,1396771200,5),(78,1414306800,2),(78,1428220800,5),(78,1445756400,2),(78,1459670400,5),(78,1477810800,2),(78,1491120000,5),(78,1509260400,2),(78,1522569600,5),(78,1540710000,2),(78,1554624000,5),(78,1572159600,2),(78,1586073600,5),(78,1603609200,2),(78,1617523200,5),(78,1635663600,2),(78,1648972800,5),(78,1667113200,2),(78,1680422400,5),(78,1698562800,2),(78,1712476800,5),(78,1730012400,2),(78,1743926400,5),(78,1761462000,2),(78,1775376000,5),(78,1792911600,2),(78,1806825600,5),(78,1824966000,2),(78,1838275200,5),(78,1856415600,2),(78,1869724800,5),(78,1887865200,2),(78,1901779200,5),(78,1919314800,2),(78,1933228800,5),(78,1950764400,2),(78,1964678400,5),(78,1982818800,2),(78,1996128000,5),(78,2014268400,2),(78,2027577600,5),(78,2045718000,2),(78,2059027200,5),(78,2077167600,2),(78,2091081600,5),(78,2108617200,2),(78,2122531200,5),(78,2140066800,2),(79,-2147483648,0),(79,-1451678491,1),(79,-1199217691,3),(79,234943200,2),(79,244616400,3),(79,261554400,2),(79,276066000,3),(79,293004000,2),(79,307515600,3),(79,325058400,2),(79,338706000,3),(80,-2147483648,0),(80,-1767213964,2),(80,-1206957600,1),(80,-1191362400,2),(80,-1175374800,1),(80,-1159826400,2),(80,-633819600,1),(80,-622069200,2),(80,-602283600,1),(80,-591832800,2),(80,-570747600,1),(80,-560210400,2),(80,-539125200,1),(80,-531352800,2),(80,-191365200,1),(80,-184197600,2),(80,-155163600,1),(80,-150069600,2),(80,-128898000,1),(80,-121125600,2),(80,-99954000,1),(80,-89589600,2),(80,-68418000,1),(80,-57967200,2),(80,499748400,1),(80,511236000,2),(80,530593200,1),(80,540266400,2),(80,562129200,1),(80,571197600,2),(81,-2147483648,0),(81,-1822500432,2),(81,-1616954400,1),(81,-1606069800,2),(81,-1585504800,1),(81,-1574015400,2),(81,-1554055200,1),(81,-1542565800,2),(81,-1522605600,1),(81,-1511116200,2),(81,-1490551200,1),(81,-1479666600,2),(81,-1459101600,1),(81,-1448217000,2),(81,-1427652000,1),(81,-1416162600,2),(81,-1396202400,1),(81,-1384713000,2),(81,-1364752800,1),(81,-1353263400,2),(81,-1333303200,1),(81,-1321813800,2),(81,-1301248800,1),(81,-1290364200,2),(81,-1269799200,1),(81,-1258914600,2),(81,-1238349600,1),(81,-1226860200,2),(81,-1206900000,1),(81,-1195410600,2),(81,-1175450400,1),(81,-1163961000,2),(81,-1143396000,1),(81,-1132511400,2),(81,-1111946400,1),(81,-1101061800,2),(81,-1080496800,1),(81,-1069612200,2),(81,-1049047200,1),(81,-1037557800,2),(81,-1017597600,1),(81,-1006108200,2),(81,-986148000,1),(81,-974658600,2),(81,-954093600,1),(81,-943209000,2),(81,-922644000,1),(81,-911759400,2),(81,-891194400,1),(81,-879705000,2),(81,-859744800,1),(81,-848255400,2),(81,123919200,3),(81,129618000,2),(81,409039200,3),(81,413874000,2),(82,-2147483648,2),(82,-1632074400,1),(82,-1615143600,2),(82,-880221600,3),(82,-769395600,4),(82,-765399600,2),(83,-2147483648,0),(83,-1767211040,2),(83,-1206954000,1),(83,-1191358800,2),(83,-1175371200,1),(83,-1159822800,2),(83,-633816000,1),(83,-622065600,2),(83,-602280000,1),(83,-591829200,2),(83,-570744000,1),(83,-560206800,2),(83,-539121600,1),(83,-531349200,2),(83,-191361600,1),(83,-184194000,2),(83,-155160000,1),(83,-150066000,2),(83,-128894400,1),(83,-121122000,2),(83,-99950400,1),(83,-89586000,2),(83,-68414400,1),(83,-57963600,2),(83,499752000,1),(83,511239600,2),(83,530596800,1),(83,540270000,2),(83,562132800,1),(83,571201200,2),(83,938923200,1),(83,951620400,2),(83,970977600,1),(83,971578800,2),(84,-2147483648,1),(84,-1739041424,3),(84,704869200,2),(84,733896000,3),(85,-2147483648,2),(85,-1633269600,1),(85,-1615129200,2),(85,-1601820000,1),(85,-1583679600,2),(85,-1471788000,5),(85,-880210800,3),(85,-769395600,4),(85,-765388800,5),(85,-84380400,6),(85,-68659200,5),(85,-52930800,6),(85,-37209600,5),(85,-21481200,6),(85,-5760000,5),(85,9968400,6),(85,25689600,5),(85,41418000,6),(85,57744000,5),(85,73472400,6),(85,89193600,5),(85,104922000,6),(85,120643200,5),(85,129114000,6),(85,152092800,5),(85,162378000,6),(85,183542400,5),(85,199270800,6),(85,215596800,5),(85,230720400,6),(85,247046400,5),(85,262774800,6),(85,278496000,5),(85,294224400,6),(85,309945600,5),(85,325674000,6),(85,341395200,5),(85,357123600,6),(85,372844800,5),(85,388573200,6),(85,404899200,5),(85,420022800,6),(85,436348800,5),(85,452077200,6),(85,467798400,5),(85,483526800,6),(85,499248000,5),(85,514976400,6),(85,530697600,5),(85,544611600,6),(85,562147200,5),(85,576061200,6),(85,594201600,5),(85,607510800,6),(85,625651200,5),(85,638960400,6),(85,657100800,5),(85,671014800,6),(85,688550400,5),(85,702464400,6),(85,720000000,5),(85,733914000,6),(85,752054400,5),(85,765363600,6),(85,783504000,5),(85,796813200,6),(85,814953600,5),(85,828867600,6),(85,846403200,5),(85,860317200,6),(85,877852800,5),(85,891766800,6),(85,909302400,5),(85,923216400,6),(85,941356800,5),(85,954666000,6),(85,972806400,5),(85,986115600,6),(85,1004256000,5),(85,1018170000,6),(85,1035705600,5),(85,1049619600,6),(85,1067155200,5),(85,1081069200,6),(85,1099209600,5),(85,1112518800,6),(85,1130659200,5),(85,1143968400,6),(85,1162108800,5),(85,1173603600,6),(85,1194163200,5),(85,1205053200,6),(85,1225612800,5),(85,1236502800,6),(85,1257062400,5),(85,1268557200,6),(85,1289116800,5),(85,1300006800,6),(85,1320566400,5),(85,1331456400,6),(85,1352016000,5),(85,1362906000,6),(85,1383465600,5),(85,1394355600,6),(85,1414915200,5),(85,1425805200,6),(85,1446364800,5),(85,1457859600,6),(85,1478419200,5),(85,1489309200,6),(85,1509868800,5),(85,1520758800,6),(85,1541318400,5),(85,1552208400,6),(85,1572768000,5),(85,1583658000,6),(85,1604217600,5),(85,1615712400,6),(85,1636272000,5),(85,1647162000,6),(85,1667721600,5),(85,1678611600,6),(85,1699171200,5),(85,1710061200,6),(85,1730620800,5),(85,1741510800,6),(85,1762070400,5),(85,1772960400,6),(85,1793520000,5),(85,1805014800,6),(85,1825574400,5),(85,1836464400,6),(85,1857024000,5),(85,1867914000,6),(85,1888473600,5),(85,1899363600,6),(85,1919923200,5),(85,1930813200,6),(85,1951372800,5),(85,1962867600,6),(85,1983427200,5),(85,1994317200,6),(85,2014876800,5),(85,2025766800,6),(85,2046326400,5),(85,2057216400,6),(85,2077776000,5),(85,2088666000,6),(85,2109225600,5),(85,2120115600,6),(85,2140675200,5),(86,-2147483648,1),(86,-1567453392,2),(86,-1233432000,3),(86,-1222981200,2),(86,-1205956800,3),(86,-1194037200,2),(86,-1172865600,3),(86,-1162501200,2),(86,-1141329600,3),(86,-1130965200,2),(86,-1109793600,3),(86,-1099429200,2),(86,-1078257600,3),(86,-1067806800,2),(86,-1046635200,3),(86,-1036270800,2),(86,-1015099200,3),(86,-1004734800,2),(86,-983563200,3),(86,-973198800,2),(86,-952027200,3),(86,-941576400,2),(86,-931032000,3),(86,-900882000,2),(86,-890337600,3),(86,-833749200,2),(86,-827265600,3),(86,-752274000,2),(86,-733780800,3),(86,-197326800,2),(86,-190843200,3),(86,-184194000,2),(86,-164491200,3),(86,-152658000,2),(86,-132955200,3),(86,-121122000,2),(86,-101419200,3),(86,-86821200,2),(86,-71092800,3),(86,-54766800,2),(86,-39038400,3),(86,-23317200,2),(86,-7588800,5),(86,128142000,4),(86,136605600,5),(86,596948400,4),(86,605066400,5),(86,624423600,4),(86,636516000,5),(86,656478000,4),(86,667965600,5),(86,687927600,4),(86,699415200,5),(86,719377200,4),(86,731469600,5),(86,938919600,3),(86,952052400,5),(86,1198983600,4),(86,1205632800,5),(86,1224385200,4),(86,1237082400,5),(87,-2147483648,0),(87,-1577923200,3),(87,-880210800,1),(87,-769395600,2),(87,-765388800,3),(87,-147891600,4),(87,-131562000,3),(87,325674000,5),(87,341395200,3),(87,357123600,5),(87,372844800,3),(87,388573200,5),(87,404899200,3),(87,420022800,5),(87,436348800,3),(87,452077200,5),(87,467798400,3),(87,483526800,5),(87,499248000,3),(87,514976400,5),(87,530697600,3),(87,544611600,5),(87,562147200,3),(87,576061200,5),(87,594201600,3),(87,607510800,5),(87,625651200,3),(87,638960400,5),(87,657100800,3),(87,671014800,5),(87,688550400,3),(87,702464400,5),(87,720000000,3),(87,733914000,5),(87,752054400,3),(87,765363600,5),(87,783504000,3),(87,796813200,5),(87,814953600,3),(87,828867600,5),(87,846403200,3),(87,860317200,5),(87,877852800,3),(87,891766800,5),(87,909302400,3),(87,923216400,5),(87,941356800,7),(87,954662400,6),(87,972802800,8),(87,973400400,7),(87,986115600,5),(87,1004256000,3),(87,1018170000,5),(87,1035705600,3),(87,1049619600,5),(87,1067155200,3),(87,1081069200,5),(87,1099209600,3),(87,1112518800,5),(87,1130659200,3),(87,1143968400,5),(87,1162108800,3),(87,1173603600,5),(87,1194163200,3),(87,1205053200,5),(87,1225612800,3),(87,1236502800,5),(87,1257062400,3),(87,1268557200,5),(87,1289116800,3),(87,1300006800,5),(87,1320566400,3),(87,1331456400,5),(87,1352016000,3),(87,1362906000,5),(87,1383465600,3),(87,1394355600,5),(87,1414915200,3),(87,1425805200,5),(87,1446364800,3),(87,1457859600,5),(87,1478419200,3),(87,1489309200,5),(87,1509868800,3),(87,1520758800,5),(87,1541318400,3),(87,1552208400,5),(87,1572768000,3),(87,1583658000,5),(87,1604217600,3),(87,1615712400,5),(87,1636272000,3),(87,1647162000,5),(87,1667721600,3),(87,1678611600,5),(87,1699171200,3),(87,1710061200,5),(87,1730620800,3),(87,1741510800,5),(87,1762070400,3),(87,1772960400,5),(87,1793520000,3),(87,1805014800,5),(87,1825574400,3),(87,1836464400,5),(87,1857024000,3),(87,1867914000,5),(87,1888473600,3),(87,1899363600,5),(87,1919923200,3),(87,1930813200,5),(87,1951372800,3),(87,1962867600,5),(87,1983427200,3),(87,1994317200,5),(87,2014876800,3),(87,2025766800,5),(87,2046326400,3),(87,2057216400,5),(87,2077776000,3),(87,2088666000,5),(87,2109225600,3),(87,2120115600,5),(87,2140675200,3),(88,-2147483648,0),(88,-1767212492,2),(88,-1206954000,1),(88,-1191358800,2),(88,-1175371200,1),(88,-1159822800,2),(88,-633816000,1),(88,-622065600,2),(88,-602280000,1),(88,-591829200,2),(88,-570744000,1),(88,-560206800,2),(88,-539121600,1),(88,-531349200,2),(88,-191361600,1),(88,-184194000,2),(88,-155160000,1),(88,-150066000,2),(88,-128894400,1),(88,-121122000,2),(88,-99950400,1),(88,-89586000,2),(88,-68414400,1),(88,-57963600,2),(88,499752000,1),(88,511239600,2),(88,530596800,1),(88,540270000,2),(88,562132800,1),(88,571201200,2),(88,592977600,1),(88,602046000,2),(88,624427200,1),(88,634705200,2),(88,656481600,1),(88,666759600,2),(88,687931200,1),(88,697604400,2),(88,719985600,1),(88,728449200,2),(88,750830400,1),(88,761713200,2),(88,782280000,1),(88,793162800,2),(88,813729600,1),(88,824007600,2),(88,844574400,1),(88,856062000,2),(88,876110400,1),(88,888721200,2),(88,908078400,1),(88,919566000,2),(88,938923200,1),(88,951620400,2),(88,970977600,1),(88,982465200,2),(88,1003032000,1),(88,1013914800,2),(88,1036296000,1),(88,1045364400,2),(88,1066536000,1),(88,1076814000,2),(88,1099368000,1),(88,1108868400,2),(88,1129435200,1),(88,1140318000,2),(88,1162699200,1),(88,1172372400,2),(88,1192334400,1),(88,1203217200,2),(88,1224388800,1),(88,1234666800,2),(88,1255838400,1),(88,1266721200,2),(88,1287288000,1),(88,1298170800,2),(88,1318737600,1),(88,1330225200,2),(88,1350792000,1),(88,1361070000,2),(88,1382241600,1),(88,1392519600,2),(88,1413691200,1),(88,1424574000,2),(88,1445140800,1),(88,1456023600,2),(88,1476590400,1),(88,1487473200,2),(88,1508040000,1),(88,1518922800,2),(88,1541304000,1),(88,1550372400,2),(89,-2147483648,0),(89,-1514743200,1),(89,377935200,3),(89,828860400,2),(89,846396000,3),(89,860310000,2),(89,877845600,3),(89,891759600,2),(89,902037600,4),(89,909298800,1),(89,923212800,4),(89,941353200,1),(89,954662400,4),(89,972802800,1),(89,989136000,4),(89,1001833200,1),(89,1018166400,4),(89,1035702000,1),(89,1049616000,4),(89,1067151600,1),(89,1081065600,4),(89,1099206000,1),(89,1112515200,4),(89,1130655600,1),(89,1143964800,4),(89,1162105200,1),(89,1175414400,4),(89,1193554800,1),(89,1207468800,4),(89,1225004400,1),(89,1238918400,4),(89,1256454000,1),(89,1270368000,4),(89,1288508400,1),(89,1301817600,4),(89,1319958000,1),(89,1333267200,4),(89,1351407600,1),(89,1365321600,4),(89,1382857200,1),(89,1396771200,4),(89,1414306800,1),(89,1422777600,3),(90,-2147483648,1),(90,-1826739140,2),(90,-157750200,3),(90,1197183600,2),(90,1462086000,3),(91,-2147483648,1),(91,-1567453392,2),(91,-1233432000,3),(91,-1222981200,2),(91,-1205956800,3),(91,-1194037200,2),(91,-1172865600,3),(91,-1162501200,2),(91,-1141329600,3),(91,-1130965200,2),(91,-1109793600,3),(91,-1099429200,2),(91,-1078257600,3),(91,-1067806800,2),(91,-1046635200,3),(91,-1036270800,2),(91,-1015099200,3),(91,-1004734800,2),(91,-983563200,3),(91,-973198800,2),(91,-952027200,3),(91,-941576400,2),(91,-931032000,3),(91,-900882000,2),(91,-890337600,3),(91,-833749200,2),(91,-827265600,3),(91,-752274000,2),(91,-733780800,3),(91,-197326800,2),(91,-190843200,3),(91,-184194000,2),(91,-164491200,3),(91,-152658000,2),(91,-132955200,3),(91,-121122000,2),(91,-101419200,3),(91,-86821200,2),(91,-71092800,3),(91,-54766800,2),(91,-39038400,3),(91,-23317200,2),(91,-7588800,5),(91,128142000,4),(91,136605600,5),(91,596948400,4),(91,605066400,5),(91,624423600,4),(91,636516000,5),(91,656478000,4),(91,667965600,2),(91,687931200,4),(91,699415200,5),(91,719377200,4),(91,731469600,5),(91,938919600,3),(91,952052400,5),(91,1086058800,2),(91,1087704000,5),(91,1198983600,4),(91,1205632800,5),(92,-2147483648,0),(92,-1846269040,1),(92,-71092800,2),(93,-2147483648,1),(93,-1946918424,2),(94,-2147483648,2),(94,-1633276800,1),(94,-1615136400,2),(94,-1601827200,1),(94,-1583686800,2),(94,-1563724800,1),(94,-1551632400,2),(94,-1538928000,1),(94,-1520182800,2),(94,-1504454400,1),(94,-1491757200,2),(94,-1473004800,1),(94,-1459702800,2),(94,-1441555200,1),(94,-1428253200,2),(94,-1410105600,1),(94,-1396803600,2),(94,-1378656000,1),(94,-1365354000,2),(94,-1347206400,1),(94,-1333904400,2),(94,-1315152000,1),(94,-1301850000,2),(94,-1283702400,1),(94,-1270400400,2),(94,-1252252800,1),(94,-1238950800,2),(94,-1220803200,1),(94,-1207501200,2),(94,-1189353600,1),(94,-1176051600,2),(94,-1157299200,1),(94,-1144602000,2),(94,-1125849600,1),(94,-1112547600,2),(94,-1094400000,1),(94,-1081098000,2),(94,-1067788800,3),(94,-1045414800,2),(94,-1031500800,1),(94,-1018198800,2),(94,-1000051200,1),(94,-986749200,2),(94,-967996800,1),(94,-955299600,2),(94,-936547200,1),(94,-923245200,2),(94,-905097600,1),(94,-891795600,2),(94,-880214400,4),(94,-769395600,5),(94,-765392400,2),(94,-747244800,1),(94,-733942800,2),(94,-715795200,1),(94,-702493200,2),(94,-684345600,1),(94,-671043600,2),(94,-652896000,1),(94,-639594000,2),(94,-620841600,1),(94,-608144400,2),(94,-589392000,1),(94,-576090000,2),(94,-557942400,1),(94,-544640400,2),(94,-526492800,1),(94,-513190800,2),(94,-495043200,1),(94,-481741200,2),(94,-463593600,1),(94,-447267600,2),(94,-431539200,1),(94,-415818000,2),(94,-400089600,1),(94,-384368400,2),(94,-368640000,1),(94,-352918800,2),(94,-337190400,1),(94,-321469200,2),(94,-305740800,1),(94,-289414800,2),(94,-273686400,1),(94,-257965200,2),(94,-242236800,1),(94,-226515600,2),(94,-210787200,1),(94,-195066000,2),(94,-179337600,1),(94,-163616400,2),(94,-147888000,1),(94,-131562000,2),(94,-116438400,1),(94,-100112400,2),(94,-84384000,1),(94,-68662800,2),(94,-52934400,1),(94,-37213200,2),(94,-21484800,1),(94,-5763600,2),(94,9964800,1),(94,25686000,2),(94,41414400,1),(94,57740400,2),(94,73468800,1),(94,89190000,2),(94,104918400,1),(94,120639600,2),(94,126691200,1),(94,152089200,2),(94,162374400,1),(94,183538800,2),(94,199267200,1),(94,215593200,2),(94,230716800,1),(94,247042800,2),(94,262771200,1),(94,278492400,2),(94,294220800,1),(94,309942000,2),(94,325670400,1),(94,341391600,2),(94,357120000,1),(94,372841200,2),(94,388569600,1),(94,404895600,2),(94,420019200,1),(94,436345200,2),(94,452073600,1),(94,467794800,2),(94,483523200,1),(94,499244400,2),(94,514972800,1),(94,530694000,2),(94,544608000,1),(94,562143600,2),(94,576057600,1),(94,594198000,2),(94,607507200,1),(94,625647600,2),(94,638956800,1),(94,657097200,2),(94,671011200,1),(94,688546800,2),(94,702460800,1),(94,719996400,2),(94,733910400,1),(94,752050800,2),(94,765360000,1),(94,783500400,2),(94,796809600,1),(94,814950000,2),(94,828864000,1),(94,846399600,2),(94,860313600,1),(94,877849200,2),(94,891763200,1),(94,909298800,2),(94,923212800,1),(94,941353200,2),(94,954662400,1),(94,972802800,2),(94,986112000,1),(94,1004252400,2),(94,1018166400,1),(94,1035702000,2),(94,1049616000,1),(94,1067151600,2),(94,1081065600,1),(94,1099206000,2),(94,1112515200,1),(94,1130655600,2),(94,1143964800,1),(94,1162105200,2),(94,1173600000,1),(94,1194159600,2),(94,1205049600,1),(94,1225609200,2),(94,1236499200,1),(94,1257058800,2),(94,1268553600,1),(94,1289113200,2),(94,1300003200,1),(94,1320562800,2),(94,1331452800,1),(94,1352012400,2),(94,1362902400,1),(94,1383462000,2),(94,1394352000,1),(94,1414911600,2),(94,1425801600,1),(94,1446361200,2),(94,1457856000,1),(94,1478415600,2),(94,1489305600,1),(94,1509865200,2),(94,1520755200,1),(94,1541314800,2),(94,1552204800,1),(94,1572764400,2),(94,1583654400,1),(94,1604214000,2),(94,1615708800,1),(94,1636268400,2),(94,1647158400,1),(94,1667718000,2),(94,1678608000,1),(94,1699167600,2),(94,1710057600,1),(94,1730617200,2),(94,1741507200,1),(94,1762066800,2),(94,1772956800,1),(94,1793516400,2),(94,1805011200,1),(94,1825570800,2),(94,1836460800,1),(94,1857020400,2),(94,1867910400,1),(94,1888470000,2),(94,1899360000,1),(94,1919919600,2),(94,1930809600,1),(94,1951369200,2),(94,1962864000,1),(94,1983423600,2),(94,1994313600,1),(94,2014873200,2),(94,2025763200,1),(94,2046322800,2),(94,2057212800,1),(94,2077772400,2),(94,2088662400,1),(94,2109222000,2),(94,2120112000,1),(94,2140671600,2),(95,-2147483648,0),(95,-1514739600,1),(95,-1343066400,2),(95,-1234807200,1),(95,-1220292000,2),(95,-1207159200,1),(95,-1191344400,2),(95,828864000,3),(95,846399600,2),(95,860313600,3),(95,877849200,2),(95,891766800,4),(95,909302400,1),(95,923216400,4),(95,941356800,1),(95,954666000,4),(95,972806400,1),(95,989139600,4),(95,1001836800,1),(95,1018170000,4),(95,1035705600,1),(95,1049619600,4),(95,1067155200,1),(95,1081069200,4),(95,1099209600,1),(95,1112518800,4),(95,1130659200,1),(95,1143968400,4),(95,1162108800,1),(95,1175418000,4),(95,1193558400,1),(95,1207472400,4),(95,1225008000,1),(95,1238922000,4),(95,1256457600,1),(95,1270371600,4),(95,1288512000,1),(95,1301821200,4),(95,1319961600,1),(95,1333270800,4),(95,1351411200,1),(95,1365325200,4),(95,1382860800,1),(95,1396774800,4),(95,1414310400,1),(95,1428224400,4),(95,1445760000,1),(95,1459674000,4),(95,1477814400,1),(95,1491123600,4),(95,1509264000,1),(95,1522573200,4),(95,1540713600,1),(95,1554627600,4),(95,1572163200,1),(95,1586077200,4),(95,1603612800,1),(95,1617526800,4),(95,1635667200,1),(95,1648976400,4),(95,1667116800,1),(95,1680426000,4),(95,1698566400,1),(95,1712480400,4),(95,1730016000,1),(95,1743930000,4),(95,1761465600,1),(95,1775379600,4),(95,1792915200,1),(95,1806829200,4),(95,1824969600,1),(95,1838278800,4),(95,1856419200,1),(95,1869728400,4),(95,1887868800,1),(95,1901782800,4),(95,1919318400,1),(95,1933232400,4),(95,1950768000,1),(95,1964682000,4),(95,1982822400,1),(95,1996131600,4),(95,2014272000,1),(95,2027581200,4),(95,2045721600,1),(95,2059030800,4),(95,2077171200,1),(95,2091085200,4),(95,2108620800,1),(95,2122534800,4),(95,2140070400,1),(96,-2147483648,2),(96,-1632067200,1),(96,-1615136400,2),(96,-923248800,1),(96,-880214400,3),(96,-769395600,4),(96,-765392400,5),(97,-2147483648,1),(97,-1567453392,2),(97,-1233432000,3),(97,-1222981200,2),(97,-1205956800,3),(97,-1194037200,2),(97,-1172865600,3),(97,-1162501200,2),(97,-1141329600,3),(97,-1130965200,2),(97,-1109793600,3),(97,-1099429200,2),(97,-1078257600,3),(97,-1067806800,2),(97,-1046635200,3),(97,-1036270800,2),(97,-1015099200,3),(97,-1004734800,2),(97,-983563200,3),(97,-973198800,2),(97,-952027200,3),(97,-941576400,2),(97,-931032000,3),(97,-900882000,2),(97,-890337600,3),(97,-833749200,2),(97,-827265600,3),(97,-752274000,2),(97,-733780800,3),(97,-197326800,2),(97,-190843200,3),(97,-184194000,2),(97,-164491200,3),(97,-152658000,2),(97,-132955200,3),(97,-121122000,2),(97,-101419200,3),(97,-86821200,2),(97,-71092800,3),(97,-54766800,2),(97,-39038400,3),(97,-23317200,2),(97,-7588800,5),(97,128142000,4),(97,136605600,5),(97,596948400,4),(97,605066400,5),(97,624423600,4),(97,636516000,5),(97,656478000,4),(97,667965600,2),(97,687931200,4),(97,699415200,5),(97,719377200,4),(97,731469600,5),(97,938919600,3),(97,952052400,5),(97,1198983600,4),(97,1205632800,5),(97,1224385200,4),(97,1237082400,5),(98,-2147483648,1),(98,-1545071027,3),(98,288770400,2),(98,297234000,3),(98,320220000,2),(98,328683600,3),(98,664264800,2),(98,678344400,3),(98,695714400,2),(98,700635600,3),(99,-2147483648,1),(99,-1680454800,2),(99,-1627833600,1),(100,-2147483648,0),(100,-1767212140,2),(100,-1206954000,1),(100,-1191358800,2),(100,-1175371200,1),(100,-1159822800,2),(100,-633816000,1),(100,-622065600,2),(100,-602280000,1),(100,-591829200,2),(100,-570744000,1),(100,-560206800,2),(100,-539121600,1),(100,-531349200,2),(100,-191361600,1),(100,-184194000,2),(100,-155160000,1),(100,-150066000,2),(100,-128894400,1),(100,-121122000,2),(100,-99950400,1),(100,-89586000,2),(100,-68414400,1),(100,-57963600,2),(100,499752000,1),(100,511239600,2),(100,530596800,1),(100,540270000,2),(100,562132800,1),(100,571201200,2),(100,592977600,1),(100,602046000,2),(100,624427200,1),(100,634705200,2),(100,656481600,1),(100,666759600,2),(100,687931200,1),(100,697604400,2),(100,719985600,1),(100,728449200,2),(100,750830400,1),(100,761713200,2),(100,782280000,1),(100,793162800,2),(100,813729600,1),(100,824007600,2),(100,844574400,1),(100,856062000,2),(100,876110400,1),(100,888721200,2),(100,908078400,1),(100,919566000,2),(100,938923200,1),(100,951620400,2),(100,970977600,1),(100,982465200,2),(100,1003032000,1),(100,1013914800,2),(100,1036296000,1),(100,1045364400,2),(100,1099368000,1),(100,1108868400,2),(100,1129435200,1),(100,1140318000,2),(100,1162699200,1),(100,1172372400,2),(100,1192334400,1),(100,1203217200,2),(100,1224388800,1),(100,1234666800,2),(100,1255838400,1),(100,1266721200,2),(100,1287288000,1),(100,1298170800,2),(100,1318737600,1),(100,1330225200,2),(100,1350792000,1),(100,1361070000,2),(100,1382241600,1),(100,1392519600,2),(100,1413691200,1),(100,1424574000,2),(100,1445140800,1),(100,1456023600,2),(100,1476590400,1),(100,1487473200,2),(100,1508040000,1),(100,1518922800,2),(100,1541304000,1),(100,1550372400,2),(101,-2147483648,0),(101,-1826738653,1),(101,-157750200,2),(102,-2147483648,0),(102,-1686091520,1),(102,323845200,4),(102,338950800,2),(102,354675600,3),(102,370400400,2),(102,386125200,3),(102,401850000,2),(102,417574800,3),(102,433299600,2),(102,449024400,3),(102,465354000,2),(102,481078800,3),(102,496803600,2),(102,512528400,3),(102,528253200,2),(102,543978000,3),(102,559702800,2),(102,575427600,3),(102,591152400,2),(102,606877200,3),(102,622602000,2),(102,638326800,3),(102,654656400,2),(102,670381200,3),(102,686106000,2),(102,701830800,3),(102,717555600,2),(102,733280400,3),(102,749005200,2),(102,764730000,3),(102,780454800,2),(102,796179600,3),(102,811904400,2),(102,820465200,5),(103,-2147483648,2),(103,-1632056400,1),(103,-1615125600,2),(103,-1596978000,1),(103,-1583164800,2),(103,-880203600,3),(103,-769395600,4),(103,-765381600,2),(103,-147884400,5),(103,-131554800,2),(103,120646800,6),(103,325677600,7),(103,341398800,6),(103,357127200,7),(103,372848400,6),(103,388576800,7),(103,404902800,6),(103,420026400,7),(103,436352400,6),(103,452080800,7),(103,467802000,6),(103,483530400,7),(103,499251600,6),(103,514980000,7),(103,530701200,6),(103,544615200,7),(103,562150800,6),(103,576064800,7),(103,594205200,6),(103,607514400,7),(103,625654800,6),(103,638964000,7),(103,657104400,6),(103,671018400,7),(103,688554000,6),(103,702468000,7),(103,720003600,6),(103,733917600,7),(103,752058000,6),(103,765367200,7),(103,783507600,6),(103,796816800,7),(103,814957200,6),(103,828871200,7),(103,846406800,6),(103,860320800,7),(103,877856400,6),(103,891770400,7),(103,909306000,6),(103,923220000,7),(103,941360400,6),(103,954669600,7),(103,972810000,6),(103,986119200,7),(103,1004259600,6),(103,1018173600,7),(103,1035709200,6),(103,1049623200,7),(103,1067158800,6),(103,1081072800,7),(103,1099213200,6),(103,1112522400,7),(103,1130662800,6),(103,1143972000,7),(103,1162112400,6),(103,1173607200,7),(103,1194166800,6),(103,1205056800,7),(103,1225616400,6),(103,1236506400,7),(103,1257066000,6),(103,1268560800,7),(103,1289120400,6),(103,1300010400,7),(103,1320570000,6),(103,1331460000,7),(103,1352019600,6),(103,1362909600,7),(103,1383469200,6),(103,1394359200,7),(103,1414918800,6),(103,1425808800,7),(103,1446368400,6),(103,1457863200,7),(103,1478422800,6),(103,1489312800,7),(103,1509872400,6),(103,1520762400,7),(103,1541322000,6),(103,1552212000,7),(103,1572771600,6),(103,1583661600,7),(103,1604221200,6),(103,1615716000,7),(103,1636275600,6),(103,1647165600,7),(103,1667725200,6),(103,1678615200,7),(103,1699174800,6),(103,1710064800,7),(103,1730624400,6),(103,1741514400,7),(103,1762074000,6),(103,1772964000,7),(103,1793523600,6),(103,1805018400,7),(103,1825578000,6),(103,1836468000,7),(103,1857027600,6),(103,1867917600,7),(103,1888477200,6),(103,1899367200,7),(103,1919926800,6),(103,1930816800,7),(103,1951376400,6),(103,1962871200,7),(103,1983430800,6),(103,1994320800,7),(103,2014880400,6),(103,2025770400,7),(103,2046330000,6),(103,2057220000,7),(103,2077779600,6),(103,2088669600,7),(103,2109229200,6),(103,2120119200,7),(103,2140678800,6),(104,-2147483648,2),(104,-1632060000,1),(104,-1615129200,2),(104,-880207200,3),(104,-769395600,4),(104,-765385200,2),(104,-715788000,1),(104,-702486000,2),(104,-684338400,1),(104,-671036400,2),(104,-652888800,1),(104,-639586800,2),(104,-620834400,1),(104,-608137200,2),(104,-589384800,1),(104,-576082800,2),(104,-557935200,1),(104,-544633200,2),(104,-526485600,1),(104,-513183600,2),(104,-495036000,1),(104,-481734000,2),(104,-463586400,1),(104,-450284400,2),(104,-431532000,1),(104,-418230000,2),(104,-400082400,1),(104,-386780400,2),(104,-368632800,1),(104,-355330800,2),(104,-337183200,1),(104,-323881200,2),(104,-305733600,1),(104,-292431600,2),(104,-273679200,1),(104,-260982000,2),(104,-242229600,1),(104,-226508400,2),(104,-210780000,1),(104,-195058800,2),(104,-179330400,1),(104,-163609200,2),(104,-147880800,1),(104,-131554800,2),(104,-116431200,1),(104,-100105200,2),(104,-84376800,1),(104,-68655600,2),(104,-52927200,1),(104,-37206000,2),(104,-21477600,1),(104,-5756400,2),(104,9972000,1),(104,25693200,2),(104,41421600,1),(104,57747600,2),(104,73476000,1),(104,84013200,5),(105,-2147483648,2),(105,-1633273200,1),(105,-1615132800,2),(105,-1601823600,1),(105,-1583683200,2),(105,-1570374000,1),(105,-1551628800,2),(105,-1538924400,1),(105,-1534089600,2),(105,-880210800,3),(105,-769395600,4),(105,-765388800,2),(105,-147884400,1),(105,-131558400,2),(105,-116434800,1),(105,-100108800,2),(105,-84380400,1),(105,-68659200,2),(105,-52930800,1),(105,-37209600,2),(105,-21481200,1),(105,-5760000,2),(105,9968400,1),(105,25689600,2),(105,41418000,1),(105,57744000,2),(105,73472400,1),(105,89193600,2),(105,104922000,1),(105,120643200,2),(105,126694800,1),(105,152092800,2),(105,162378000,1),(105,183542400,2),(105,199270800,1),(105,215596800,2),(105,230720400,1),(105,247046400,2),(105,262774800,1),(105,278496000,2),(105,294224400,1),(105,309945600,2),(105,325674000,1),(105,341395200,2),(105,357123600,1),(105,372844800,2),(105,388573200,1),(105,404899200,2),(105,420022800,1),(105,436348800,2),(105,452077200,1),(105,467798400,2),(105,483526800,1),(105,499248000,2),(105,514976400,1),(105,530697600,2),(105,544611600,1),(105,562147200,2),(105,576061200,1),(105,594201600,2),(105,607510800,1),(105,625651200,2),(105,638960400,1),(105,657100800,2),(105,671014800,1),(105,688550400,2),(105,702464400,1),(105,720000000,2),(105,733914000,1),(105,752054400,2),(105,765363600,1),(105,783504000,2),(105,796813200,1),(105,814953600,2),(105,828867600,1),(105,846403200,2),(105,860317200,1),(105,877852800,2),(105,891766800,1),(105,909302400,2),(105,923216400,1),(105,941356800,2),(105,954666000,1),(105,972806400,2),(105,986115600,1),(105,1004256000,2),(105,1018170000,1),(105,1035705600,2),(105,1049619600,1),(105,1067155200,2),(105,1081069200,1),(105,1099209600,2),(105,1112518800,1),(105,1130659200,2),(105,1143968400,1),(105,1162108800,2),(105,1173603600,1),(105,1194163200,2),(105,1205053200,1),(105,1225612800,2),(105,1236502800,1),(105,1257062400,2),(105,1268557200,1),(105,1289116800,2),(105,1300006800,1),(105,1320566400,2),(105,1331456400,1),(105,1352016000,2),(105,1362906000,1),(105,1383465600,2),(105,1394355600,1),(105,1414915200,2),(105,1425805200,1),(105,1446364800,2),(105,1457859600,1),(105,1478419200,2),(105,1489309200,1),(105,1509868800,2),(105,1520758800,1),(105,1541318400,2),(105,1552208400,1),(105,1572768000,2),(105,1583658000,1),(105,1604217600,2),(105,1615712400,1),(105,1636272000,2),(105,1647162000,1),(105,1667721600,2),(105,1678611600,1),(105,1699171200,2),(105,1710061200,1),(105,1730620800,2),(105,1741510800,1),(105,1762070400,2),(105,1772960400,1),(105,1793520000,2),(105,1805014800,1),(105,1825574400,2),(105,1836464400,1),(105,1857024000,2),(105,1867914000,1),(105,1888473600,2),(105,1899363600,1),(105,1919923200,2),(105,1930813200,1),(105,1951372800,2),(105,1962867600,1),(105,1983427200,2),(105,1994317200,1),(105,2014876800,2),(105,2025766800,1),(105,2046326400,2),(105,2057216400,1),(105,2077776000,2),(105,2088666000,1),(105,2109225600,2),(105,2120115600,1),(105,2140675200,2),(106,-2147483648,0),(106,-2051202469,1),(106,-1724083200,2),(106,-880218000,3),(106,-769395600,4),(106,-765396000,2),(106,-684349200,5),(106,-671047200,2),(106,-80506740,5),(106,-68666400,2),(106,-52938000,5),(106,-37216800,2),(106,104914800,5),(106,120636000,2),(106,126687600,5),(106,152085600,2),(106,167814000,5),(106,183535200,2),(106,199263600,5),(106,215589600,2),(106,230713200,5),(106,247039200,2),(106,262767600,5),(106,278488800,2),(106,294217200,5),(106,309938400,2),(106,325666800,5),(106,341388000,2),(106,357116400,5),(106,372837600,2),(106,388566000,5),(106,404892000,2),(106,420015600,5),(106,436341600,2),(106,452070000,5),(106,467791200,2),(106,483519600,5),(106,499240800,2),(106,514969200,5),(106,530690400,2),(106,544604400,5),(106,562140000,2),(106,576054000,5),(106,594194400,2),(106,607503600,5),(106,625644000,2),(106,638953200,5),(106,657093600,2),(106,671007600,5),(106,688543200,2),(106,702457200,5),(106,719992800,2),(106,733906800,5),(106,752047200,2),(106,765356400,5),(106,783496800,2),(106,796806000,5),(106,814946400,2),(106,828860400,5),(106,846396000,2),(106,860310000,5),(106,877845600,2),(106,891759600,5),(106,909295200,2),(106,923209200,5),(106,941349600,2),(106,954658800,5),(106,972799200,2),(106,986108400,5),(106,1004248800,2),(106,1018162800,5),(106,1035698400,2),(106,1049612400,5),(106,1067148000,2),(106,1081062000,5),(106,1099202400,2),(106,1112511600,5),(106,1130652000,2),(106,1143961200,5),(106,1162101600,2),(106,1173596400,5),(106,1194156000,2),(106,1205046000,5),(106,1225605600,2),(106,1236495600,5),(106,1257055200,2),(106,1268550000,5),(106,1289109600,2),(106,1299999600,5),(106,1320559200,2),(106,1331449200,5),(106,1352008800,2),(106,1362898800,5),(106,1383458400,2),(106,1394348400,5),(106,1414908000,2),(106,1425798000,5),(106,1446357600,2),(106,1457852400,5),(106,1478412000,2),(106,1489302000,5),(106,1509861600,2),(106,1520751600,5),(106,1541311200,2),(106,1552201200,5),(106,1572760800,2),(106,1583650800,5),(106,1604210400,2),(106,1615705200,5),(106,1636264800,2),(106,1647154800,5),(106,1667714400,2),(106,1678604400,5),(106,1699164000,2),(106,1710054000,5),(106,1730613600,2),(106,1741503600,5),(106,1762063200,2),(106,1772953200,5),(106,1793512800,2),(106,1805007600,5),(106,1825567200,2),(106,1836457200,5),(106,1857016800,2),(106,1867906800,5),(106,1888466400,2),(106,1899356400,5),(106,1919916000,2),(106,1930806000,5),(106,1951365600,2),(106,1962860400,5),(106,1983420000,2),(106,1994310000,5),(106,2014869600,2),(106,2025759600,5),(106,2046319200,2),(106,2057209200,5),(106,2077768800,2),(106,2088658800,5),(106,2109218400,2),(106,2120108400,5),(106,2140668000,2),(107,-2147483648,0),(107,-1825098836,1),(108,-2147483648,0),(108,-1998663968,2),(108,-1632063600,1),(108,-1615132800,2),(108,-1600614000,1),(108,-1596816000,2),(108,-1567954800,1),(108,-1551628800,2),(108,-1536505200,1),(108,-1523203200,2),(108,-1504450800,1),(108,-1491753600,2),(108,-1473001200,1),(108,-1459699200,2),(108,-880210800,3),(108,-769395600,4),(108,-765388800,2),(108,-715791600,1),(108,-702489600,2),(108,73472400,1),(108,89193600,2),(108,104922000,1),(108,120643200,2),(108,136371600,1),(108,152092800,2),(108,167821200,1),(108,183542400,2),(108,199270800,1),(108,215596800,2),(108,230720400,1),(108,247046400,2),(108,262774800,1),(108,278496000,2),(108,294224400,1),(108,309945600,2),(108,325674000,1),(108,341395200,2),(108,357123600,1),(108,372844800,2),(108,388573200,1),(108,404899200,2),(108,420022800,1),(108,436348800,2),(108,452077200,1),(108,467798400,2),(108,483526800,1),(108,499248000,2),(108,514976400,1),(108,530697600,2),(108,544611600,1),(108,562147200,2),(108,576061200,1),(108,594201600,2),(108,607510800,1),(108,625651200,2),(108,638960400,1),(108,657100800,2),(108,671014800,1),(108,688550400,2),(108,702464400,1),(108,720000000,2),(108,733914000,1),(108,752054400,2),(108,765363600,1),(108,783504000,2),(108,796813200,1),(108,814953600,2),(108,828867600,1),(108,846403200,2),(108,860317200,1),(108,877852800,2),(108,891766800,1),(108,909302400,2),(108,923216400,1),(108,941356800,2),(108,954666000,1),(108,972806400,2),(108,986115600,1),(108,1004256000,2),(108,1018170000,1),(108,1035705600,2),(108,1049619600,1),(108,1067155200,2),(108,1081069200,1),(108,1099209600,2),(108,1112518800,1),(108,1130659200,2),(108,1143968400,1),(108,1162108800,2),(108,1173603600,1),(108,1194163200,2),(108,1205053200,1),(108,1225612800,2),(108,1236502800,1),(108,1257062400,2),(108,1268557200,1),(108,1289116800,2),(108,1300006800,1),(108,1320566400,2),(108,1331456400,1),(108,1352016000,2),(108,1362906000,1),(108,1383465600,2),(108,1394355600,1),(108,1414915200,2),(108,1425805200,1),(108,1446364800,2),(108,1457859600,1),(108,1478419200,2),(108,1489309200,1),(108,1509868800,2),(108,1520758800,1),(108,1541318400,2),(108,1552208400,1),(108,1572768000,2),(108,1583658000,1),(108,1604217600,2),(108,1615712400,1),(108,1636272000,2),(108,1647162000,1),(108,1667721600,2),(108,1678611600,1),(108,1699171200,2),(108,1710061200,1),(108,1730620800,2),(108,1741510800,1),(108,1762070400,2),(108,1772960400,1),(108,1793520000,2),(108,1805014800,1),(108,1825574400,2),(108,1836464400,1),(108,1857024000,2),(108,1867914000,1),(108,1888473600,2),(108,1899363600,1),(108,1919923200,2),(108,1930813200,1),(108,1951372800,2),(108,1962867600,1),(108,1983427200,2),(108,1994317200,1),(108,2014876800,2),(108,2025766800,1),(108,2046326400,2),(108,2057216400,1),(108,2077776000,2),(108,2088666000,1),(108,2109225600,2),(108,2120115600,1),(108,2140675200,2),(109,-2147483648,0),(109,-1767208832,2),(109,-1206950400,1),(109,-1191355200,2),(109,-1175367600,1),(109,-1159819200,2),(109,-633812400,1),(109,-622062000,2),(109,-602276400,1),(109,-591825600,2),(109,-570740400,1),(109,-560203200,2),(109,-539118000,1),(109,-531345600,2),(109,-191358000,1),(109,-184190400,2),(109,-155156400,1),(109,-150062400,2),(109,-128890800,1),(109,-121118400,2),(109,-99946800,1),(109,-89582400,2),(109,-68410800,1),(109,-57960000,2),(109,499755600,1),(109,511243200,2),(109,530600400,1),(109,540273600,2),(109,562136400,1),(109,571204800,2),(109,750834000,1),(109,761716800,2),(109,1214283600,3),(109,1384056000,2),(110,-2147483648,0),(110,-1546279392,2),(110,547020000,1),(110,559717200,2),(110,578469600,1),(110,591166800,2),(111,-2147483648,0),(111,-1514736000,1),(111,-1451667600,2),(111,-1343062800,1),(111,-1234803600,2),(111,-1222963200,3),(111,-1207242000,2),(111,-873820800,4),(111,-769395600,5),(111,-761677200,2),(111,-686073600,3),(111,-661539600,2),(111,-495039600,3),(111,-481734000,2),(111,-463590000,3),(111,-450284400,2),(111,-431535600,3),(111,-418230000,2),(111,-400086000,3),(111,-386780400,2),(111,-368636400,3),(111,-355330800,2),(111,-337186800,3),(111,-323881200,2),(111,-305737200,3),(111,-292431600,2),(111,199274400,3),(111,215600400,2),(111,230724000,3),(111,247050000,2),(111,262778400,3),(111,278499600,2),(111,294228000,3),(111,309949200,2),(111,325677600,3),(111,341398800,2),(111,357127200,3),(111,372848400,2),(111,388576800,3),(111,404902800,2),(111,420026400,3),(111,436352400,2),(111,452080800,3),(111,467802000,2),(111,483530400,3),(111,499251600,2),(111,514980000,3),(111,530701200,2),(111,544615200,3),(111,562150800,2),(111,576064800,3),(111,594205200,2),(111,607514400,3),(111,625654800,2),(111,638964000,3),(111,657104400,2),(111,671018400,3),(111,688554000,2),(111,702468000,3),(111,720003600,2),(111,733917600,3),(111,752058000,2),(111,765367200,3),(111,783507600,2),(111,796816800,3),(111,814957200,2),(111,828871200,3),(111,846406800,2),(111,860320800,3),(111,877856400,2),(111,891770400,3),(111,909306000,2),(111,923220000,3),(111,941360400,2),(111,954669600,3),(111,972810000,2),(111,986119200,3),(111,1004259600,2),(111,1018173600,3),(111,1035709200,2),(111,1049623200,3),(111,1067158800,2),(111,1081072800,3),(111,1099213200,2),(111,1112522400,3),(111,1130662800,2),(111,1143972000,3),(111,1162112400,2),(111,1175421600,3),(111,1193562000,2),(111,1207476000,3),(111,1225011600,2),(111,1238925600,3),(111,1256461200,2),(111,1268560800,3),(111,1289120400,2),(111,1300010400,3),(111,1320570000,2),(111,1331460000,3),(111,1352019600,2),(111,1362909600,3),(111,1383469200,2),(111,1394359200,3),(111,1414918800,2),(111,1425808800,3),(111,1446368400,2),(111,1457863200,3),(111,1478422800,2),(111,1489312800,3),(111,1509872400,2),(111,1520762400,3),(111,1541322000,2),(111,1552212000,3),(111,1572771600,2),(111,1583661600,3),(111,1604221200,2),(111,1615716000,3),(111,1636275600,2),(111,1647165600,3),(111,1667725200,2),(111,1678615200,3),(111,1699174800,2),(111,1710064800,3),(111,1730624400,2),(111,1741514400,3),(111,1762074000,2),(111,1772964000,3),(111,1793523600,2),(111,1805018400,3),(111,1825578000,2),(111,1836468000,3),(111,1857027600,2),(111,1867917600,3),(111,1888477200,2),(111,1899367200,3),(111,1919926800,2),(111,1930816800,3),(111,1951376400,2),(111,1962871200,3),(111,1983430800,2),(111,1994320800,3),(111,2014880400,2),(111,2025770400,3),(111,2046330000,2),(111,2057220000,3),(111,2077779600,2),(111,2088669600,3),(111,2109229200,2),(111,2120119200,3),(111,2140678800,2),(112,-2147483648,2),(112,-1632060000,1),(112,-1615129200,2),(112,-880207200,3),(112,-769395600,4),(112,-765385200,2),(112,-715788000,1),(112,-702486000,2),(112,-684338400,1),(112,-671036400,2),(112,-652888800,1),(112,-639586800,2),(112,-620834400,1),(112,-608137200,2),(112,-589384800,1),(112,-576082800,2),(112,-557935200,1),(112,-544633200,2),(112,-526485600,1),(112,-513183600,2),(112,-495036000,1),(112,-481734000,2),(112,-463586400,1),(112,-450284400,2),(112,-431532000,1),(112,-418230000,2),(112,-400082400,1),(112,-386780400,2),(112,-368632800,1),(112,-355330800,2),(112,-337183200,1),(112,-323881200,2),(112,-305733600,1),(112,-292431600,2),(112,-273679200,1),(112,-260982000,2),(112,-242229600,1),(112,-226508400,2),(112,-210780000,1),(112,-195058800,2),(112,-179330400,1),(112,-163609200,2),(112,-147880800,1),(112,-131554800,2),(112,-116431200,1),(112,-100105200,2),(112,-84376800,1),(112,-68655600,2),(112,-52927200,1),(112,-37206000,2),(112,-21477600,1),(112,-5756400,2),(112,9972000,1),(112,25693200,2),(112,41421600,1),(112,57747600,2),(112,73476000,1),(112,89197200,2),(112,104925600,1),(112,120646800,2),(112,136375200,1),(112,152096400,2),(112,167824800,1),(112,183546000,2),(112,199274400,1),(112,215600400,2),(112,230724000,1),(112,247050000,2),(112,262778400,1),(112,278499600,2),(112,294228000,1),(112,309949200,2),(112,325677600,1),(112,341398800,2),(112,357127200,1),(112,372848400,2),(112,388576800,1),(112,404902800,2),(112,420026400,1),(112,436352400,2),(112,452080800,1),(112,467802000,2),(112,483530400,1),(112,499251600,2),(112,514980000,1),(112,530701200,2),(112,544615200,1),(112,562150800,2),(112,576064800,1),(112,594205200,2),(112,607514400,1),(112,625654800,2),(112,638964000,1),(112,657104400,2),(112,671018400,1),(112,688554000,2),(112,702468000,1),(112,720003600,2),(112,733917600,1),(112,752058000,2),(112,765367200,1),(112,783507600,2),(112,796816800,1),(112,814957200,2),(112,828871200,1),(112,846406800,2),(112,860320800,1),(112,877856400,2),(112,891770400,1),(112,909306000,2),(112,923220000,1),(112,941360400,2),(112,954669600,1),(112,972810000,2),(112,986119200,1),(112,1004259600,2),(112,1018173600,1),(112,1035709200,2),(112,1049623200,1),(112,1067158800,2),(112,1081072800,1),(112,1099213200,2),(112,1112522400,1),(112,1130662800,2),(112,1143972000,1),(112,1162112400,2),(112,1173607200,1),(112,1194166800,2),(112,1205056800,1),(112,1225616400,2),(112,1236506400,1),(112,1257066000,2),(112,1268560800,1),(112,1289120400,2),(112,1300010400,1),(112,1320570000,2),(112,1331460000,1),(112,1352019600,2),(112,1362909600,1),(112,1383469200,2),(112,1394359200,1),(112,1414918800,2),(112,1425808800,5),(113,-2147483648,2),(113,-1633276800,1),(113,-1615136400,2),(113,-1601827200,1),(113,-1583686800,2),(113,-900259200,1),(113,-891795600,2),(113,-880214400,3),(113,-769395600,4),(113,-765392400,2),(113,-747244800,1),(113,-733942800,2),(113,-715795200,1),(113,-702493200,2),(113,-684345600,1),(113,-671043600,2),(113,-652896000,1),(113,-639594000,2),(113,-620841600,1),(113,-608144400,2),(113,-589392000,1),(113,-576090000,2),(113,-557942400,1),(113,-544640400,2),(113,-526492800,1),(113,-513190800,2),(113,-495043200,1),(113,-481741200,2),(113,-463593600,5),(113,-386787600,2),(113,-368640000,5),(113,-21488400,6),(113,-5767200,5),(113,9961200,6),(113,25682400,5),(113,1143961200,6),(113,1162101600,5),(113,1173596400,6),(113,1194156000,5),(113,1205046000,6),(113,1225605600,5),(113,1236495600,6),(113,1257055200,5),(113,1268550000,6),(113,1289109600,5),(113,1299999600,6),(113,1320559200,5),(113,1331449200,6),(113,1352008800,5),(113,1362898800,6),(113,1383458400,5),(113,1394348400,6),(113,1414908000,5),(113,1425798000,6),(113,1446357600,5),(113,1457852400,6),(113,1478412000,5),(113,1489302000,6),(113,1509861600,5),(113,1520751600,6),(113,1541311200,5),(113,1552201200,6),(113,1572760800,5),(113,1583650800,6),(113,1604210400,5),(113,1615705200,6),(113,1636264800,5),(113,1647154800,6),(113,1667714400,5),(113,1678604400,6),(113,1699164000,5),(113,1710054000,6),(113,1730613600,5),(113,1741503600,6),(113,1762063200,5),(113,1772953200,6),(113,1793512800,5),(113,1805007600,6),(113,1825567200,5),(113,1836457200,6),(113,1857016800,5),(113,1867906800,6),(113,1888466400,5),(113,1899356400,6),(113,1919916000,5),(113,1930806000,6),(113,1951365600,5),(113,1962860400,6),(113,1983420000,5),(113,1994310000,6),(113,2014869600,5),(113,2025759600,6),(113,2046319200,5),(113,2057209200,6),(113,2077768800,5),(113,2088658800,6),(113,2109218400,5),(113,2120108400,6),(113,2140668000,5),(114,-2147483648,0),(114,-1767216360,2),(114,-1206957600,1),(114,-1191362400,2),(114,-1175374800,1),(114,-1159826400,2),(114,-633819600,1),(114,-622069200,2),(114,-602283600,1),(114,-591832800,2),(114,-570747600,1),(114,-560210400,2),(114,-539125200,1),(114,-531352800,2),(114,-191365200,1),(114,-184197600,2),(114,-155163600,1),(114,-150069600,2),(114,-128898000,1),(114,-121125600,2),(114,-99954000,1),(114,-89589600,2),(114,-68418000,1),(114,-57967200,2),(114,499748400,1),(114,511236000,2),(114,530593200,1),(114,540266400,2),(114,562129200,1),(114,571197600,2),(114,592974000,1),(114,602042400,2),(114,624423600,1),(114,634701600,2),(114,938919600,1),(114,951616800,2),(114,970974000,1),(114,972180000,2),(114,1003028400,1),(114,1013911200,2),(115,-2147483648,0),(115,-2131646412,2),(115,-1632074400,1),(115,-1615143600,2),(115,-880221600,3),(115,-769395600,4),(115,-765399600,2),(115,-526500000,1),(115,-513198000,2),(115,73461600,1),(115,89182800,2),(115,104911200,1),(115,120632400,2),(115,136360800,1),(115,152082000,2),(115,167810400,1),(115,183531600,2),(115,199260000,1),(115,215586000,2),(115,230709600,1),(115,247035600,2),(115,262764000,1),(115,278485200,2),(115,294213600,1),(115,309934800,2),(115,325663200,1),(115,341384400,2),(115,357112800,1),(115,372834000,2),(115,388562400,1),(115,404888400,2),(115,420012000,1),(115,436338000,2),(115,452066400,1),(115,467787600,2),(115,483516000,1),(115,499237200,2),(115,514965600,1),(115,530686800,2),(115,544600800,1),(115,562136400,2),(115,576050400,1),(115,594190800,2),(115,607500000,1),(115,625640400,2),(115,638949600,1),(115,657090000,2),(115,671004000,1),(115,688539600,2),(115,702453600,1),(115,719989200,2),(115,733903200,1),(115,752043600,2),(115,765352800,1),(115,783493200,2),(115,796802400,1),(115,814942800,2),(115,828856800,1),(115,846392400,2),(115,860306400,1),(115,877842000,2),(115,891756000,1),(115,909291600,2),(115,923205600,1),(115,941346000,2),(115,954655200,1),(115,972795600,2),(115,986104800,1),(115,1004245200,2),(115,1018159200,1),(115,1035694800,2),(115,1049608800,1),(115,1067144400,2),(115,1081058400,1),(115,1099198800,2),(115,1112508000,1),(115,1130648400,2),(115,1143957600,1),(115,1162098000,2),(115,1173592800,1),(115,1194152400,2),(115,1205042400,1),(115,1225602000,2),(115,1236492000,1),(115,1257051600,2),(115,1268546400,1),(115,1289106000,2),(115,1299996000,1),(115,1320555600,2),(115,1331445600,1),(115,1352005200,2),(115,1362895200,1),(115,1383454800,2),(115,1394344800,1),(115,1414904400,2),(115,1425794400,1),(115,1446354000,2),(115,1457848800,1),(115,1478408400,2),(115,1489298400,1),(115,1509858000,2),(115,1520748000,1),(115,1541307600,2),(115,1552197600,1),(115,1572757200,2),(115,1583647200,1),(115,1604206800,2),(115,1615701600,1),(115,1636261200,2),(115,1647151200,1),(115,1667710800,2),(115,1678600800,1),(115,1699160400,2),(115,1710050400,1),(115,1730610000,2),(115,1741500000,1),(115,1762059600,2),(115,1772949600,1),(115,1793509200,2),(115,1805004000,1),(115,1825563600,2),(115,1836453600,1),(115,1857013200,2),(115,1867903200,1),(115,1888462800,2),(115,1899352800,1),(115,1919912400,2),(115,1930802400,1),(115,1951362000,2),(115,1962856800,1),(115,1983416400,2),(115,1994306400,1),(115,2014866000,2),(115,2025756000,1),(115,2046315600,2),(115,2057205600,1),(115,2077765200,2),(115,2088655200,1),(115,2109214800,2),(115,2120104800,1),(115,2140664400,2),(116,-2147483648,0),(116,-1686083584,1),(116,323845200,4),(116,338950800,2),(116,354675600,3),(116,370400400,2),(116,386125200,3),(116,401850000,2),(116,417574800,3),(116,433299600,2),(116,449024400,3),(116,465354000,2),(116,481078800,3),(116,496803600,2),(116,512528400,3),(116,528253200,2),(116,543978000,3),(116,559702800,2),(116,575427600,3),(116,591152400,2),(116,606877200,3),(116,622602000,2),(116,638326800,3),(116,654656400,2),(116,670381200,3),(116,686106000,2),(116,701830800,3),(116,717555600,2),(116,733280400,3),(116,749005200,2),(116,764730000,3),(116,780454800,2),(116,796179600,3),(116,811904400,2),(116,828234000,3),(116,846378000,2),(116,859683600,3),(116,877827600,2),(116,891133200,3),(116,909277200,2),(116,922582800,3),(116,941331600,2),(116,954032400,3),(116,972781200,2),(116,985482000,3),(116,1004230800,2),(116,1017536400,3),(116,1035680400,2),(116,1048986000,3),(116,1067130000,2),(116,1080435600,3),(116,1099184400,2),(116,1111885200,3),(116,1130634000,2),(116,1143334800,3),(116,1162083600,2),(116,1174784400,3),(116,1193533200,2),(116,1206838800,3),(116,1224982800,2),(116,1238288400,3),(116,1256432400,2),(116,1269738000,3),(116,1288486800,2),(116,1301187600,3),(116,1319936400,2),(116,1332637200,3),(116,1351386000,2),(116,1364691600,3),(116,1382835600,2),(116,1396141200,3),(116,1414285200,2),(116,1427590800,3),(116,1445734800,2),(116,1459040400,3),(116,1477789200,2),(116,1490490000,3),(116,1509238800,2),(116,1521939600,3),(116,1540688400,2),(116,1553994000,3),(116,1572138000,2),(116,1585443600,3),(116,1603587600,2),(116,1616893200,3),(116,1635642000,2),(116,1648342800,3),(116,1667091600,2),(116,1679792400,3),(116,1698541200,2),(116,1711846800,3),(116,1729990800,2),(116,1743296400,3),(116,1761440400,2),(116,1774746000,3),(116,1792890000,2),(116,1806195600,3),(116,1824944400,2),(116,1837645200,3),(116,1856394000,2),(116,1869094800,3),(116,1887843600,2),(116,1901149200,3),(116,1919293200,2),(116,1932598800,3),(116,1950742800,2),(116,1964048400,3),(116,1982797200,2),(116,1995498000,3),(116,2014246800,2),(116,2026947600,3),(116,2045696400,2),(116,2058397200,3),(116,2077146000,2),(116,2090451600,3),(116,2108595600,2),(116,2121901200,3),(116,2140045200,2),(117,-2147483648,1),(117,-1632076148,2),(117,-1615145348,1),(117,-1096921748,3),(117,-1061670600,4),(117,-1048973400,3),(117,-1030221000,4),(117,-1017523800,3),(117,-998771400,4),(117,-986074200,3),(117,-966717000,4),(117,-954624600,3),(117,-935267400,4),(117,-922570200,3),(117,-903817800,4),(117,-891120600,3),(117,-872368200,6),(117,-769395600,5),(117,-765401400,3),(117,-746044200,4),(117,-733347000,3),(117,-714594600,4),(117,-701897400,3),(117,-683145000,4),(117,-670447800,3),(117,-651695400,4),(117,-638998200,3),(117,-619641000,4),(117,-606943800,3),(117,-589401000,4),(117,-576099000,3),(117,-557951400,4),(117,-544649400,3),(117,-526501800,4),(117,-513199800,3),(117,-495052200,4),(117,-481750200,3),(117,-463602600,4),(117,-450300600,3),(117,-431548200,4),(117,-418246200,3),(117,-400098600,4),(117,-386796600,3),(117,-368649000,4),(117,-355347000,3),(117,-337199400,4),(117,-323897400,3),(117,-305749800,4),(117,-289423800,3),(117,-273695400,4),(117,-257974200,3),(117,-242245800,4),(117,-226524600,3),(117,-210796200,4),(117,-195075000,3),(117,-179346600,4),(117,-163625400,3),(117,-147897000,4),(117,-131571000,3),(117,-119903400,8),(117,-116445600,7),(117,-100119600,8),(117,-84391200,7),(117,-68670000,8),(117,-52941600,7),(117,-37220400,8),(117,-21492000,7),(117,-5770800,8),(117,9957600,7),(117,25678800,8),(117,41407200,7),(117,57733200,8),(117,73461600,7),(117,89182800,8),(117,104911200,7),(117,120632400,8),(117,136360800,7),(117,152082000,8),(117,167810400,7),(117,183531600,8),(117,199260000,7),(117,215586000,8),(117,230709600,7),(117,247035600,8),(117,262764000,7),(117,278485200,8),(117,294213600,7),(117,309934800,8),(117,325663200,7),(117,341384400,8),(117,357112800,7),(117,372834000,8),(117,388562400,7),(117,404888400,8),(117,420012000,7),(117,436338000,8),(117,452066400,7),(117,467787600,8),(117,483516000,7),(117,499237200,8),(117,514965600,7),(117,530686800,8),(117,544593660,7),(117,562129260,8),(117,576043260,9),(117,594180060,8),(117,607492860,7),(117,625633260,8),(117,638942460,7),(117,657082860,8),(117,670996860,7),(117,688532460,8),(117,702446460,7),(117,719982060,8),(117,733896060,7),(117,752036460,8),(117,765345660,7),(117,783486060,8),(117,796795260,7),(117,814935660,8),(117,828849660,7),(117,846385260,8),(117,860299260,7),(117,877834860,8),(117,891748860,7),(117,909284460,8),(117,923198460,7),(117,941338860,8),(117,954648060,7),(117,972788460,8),(117,986097660,7),(117,1004238060,8),(117,1018152060,7),(117,1035687660,8),(117,1049601660,7),(117,1067137260,8),(117,1081051260,7),(117,1099191660,8),(117,1112500860,7),(117,1130641260,8),(117,1143950460,7),(117,1162090860,8),(117,1173585660,7),(117,1194145260,8),(117,1205035260,7),(117,1225594860,8),(117,1236484860,7),(117,1257044460,8),(117,1268539260,7),(117,1289098860,8),(117,1299988860,7),(117,1320555600,8),(117,1331445600,7),(117,1352005200,8),(117,1362895200,7),(117,1383454800,8),(117,1394344800,7),(117,1414904400,8),(117,1425794400,7),(117,1446354000,8),(117,1457848800,7),(117,1478408400,8),(117,1489298400,7),(117,1509858000,8),(117,1520748000,7),(117,1541307600,8),(117,1552197600,7),(117,1572757200,8),(117,1583647200,7),(117,1604206800,8),(117,1615701600,7),(117,1636261200,8),(117,1647151200,7),(117,1667710800,8),(117,1678600800,7),(117,1699160400,8),(117,1710050400,7),(117,1730610000,8),(117,1741500000,7),(117,1762059600,8),(117,1772949600,7),(117,1793509200,8),(117,1805004000,7),(117,1825563600,8),(117,1836453600,7),(117,1857013200,8),(117,1867903200,7),(117,1888462800,8),(117,1899352800,7),(117,1919912400,8),(117,1930802400,7),(117,1951362000,8),(117,1962856800,7),(117,1983416400,8),(117,1994306400,7),(117,2014866000,8),(117,2025756000,7),(117,2046315600,8),(117,2057205600,7),(117,2077765200,8),(117,2088655200,7),(117,2109214800,8),(117,2120104800,7),(117,2140664400,8),(118,-2147483648,1),(118,-1827687170,2),(118,294217200,3),(118,309938400,2),(118,325666800,3),(118,341388000,2),(118,357116400,3),(118,372837600,2),(118,388566000,3),(118,404892000,2),(118,420015600,3),(118,436341600,2),(118,452070000,3),(118,467791200,2),(118,483519600,3),(118,499240800,2),(118,514969200,3),(118,530690400,2),(118,544604400,3),(118,562140000,2),(118,576054000,3),(118,594194400,2),(118,607503600,3),(118,625644000,2),(118,638953200,3),(118,657093600,2),(118,671007600,3),(118,688543200,2),(118,702457200,3),(118,719992800,2),(118,733906800,3),(118,752047200,2),(118,765356400,3),(118,783496800,2),(118,796806000,3),(118,814946400,2),(118,828860400,3),(118,846396000,2),(118,860310000,3),(118,877845600,2),(118,891759600,3),(118,909295200,2),(118,923209200,3),(118,941349600,2),(118,954658800,3),(118,972799200,2),(118,986108400,3),(118,1004248800,2),(118,1018162800,3),(118,1035698400,2),(118,1049612400,3),(118,1067148000,2),(118,1081062000,3),(118,1099202400,2),(118,1112511600,3),(118,1130652000,2),(118,1143961200,3),(118,1162101600,2),(118,1173596400,3),(118,1194156000,2),(118,1205046000,3),(118,1225605600,2),(118,1236495600,3),(118,1257055200,2),(118,1268550000,3),(118,1289109600,2),(118,1299999600,3),(118,1320559200,2),(118,1331449200,3),(118,1352008800,2),(118,1362898800,3),(118,1383458400,2),(118,1394348400,3),(118,1414908000,2),(118,1425798000,3),(118,1446357600,4),(118,1520751600,3),(118,1541311200,2),(118,1552201200,3),(118,1572760800,2),(118,1583650800,3),(118,1604210400,2),(118,1615705200,3),(118,1636264800,2),(118,1647154800,3),(118,1667714400,2),(118,1678604400,3),(118,1699164000,2),(118,1710054000,3),(118,1730613600,2),(118,1741503600,3),(118,1762063200,2),(118,1772953200,3),(118,1793512800,2),(118,1805007600,3),(118,1825567200,2),(118,1836457200,3),(118,1857016800,2),(118,1867906800,3),(118,1888466400,2),(118,1899356400,3),(118,1919916000,2),(118,1930806000,3),(118,1951365600,2),(118,1962860400,3),(118,1983420000,2),(118,1994310000,3),(118,2014869600,2),(118,2025759600,3),(118,2046319200,2),(118,2057209200,3),(118,2077768800,2),(118,2088658800,3),(118,2109218400,2),(118,2120108400,3),(118,2140668000,2),(119,-2147483648,0),(119,-1825098836,1),(120,-2147483648,0),(120,-1825098836,1),(121,-2147483648,0),(121,-1617040676,2),(121,123055200,1),(121,130914000,2),(121,422344800,1),(121,433054800,2),(121,669708000,1),(121,684219600,2),(121,1146376800,1),(121,1159678800,2),(122,-2147483648,1),(122,-1230749160,3),(122,722926800,2),(122,728884800,3),(123,-2147483648,0),(123,-1730578040,1),(123,176010300,2),(123,662698800,3),(124,-2147483648,0),(124,-2131645536,2),(124,-1696276800,1),(124,-1680469200,2),(124,-1632074400,1),(124,-1615143600,2),(124,-1566763200,1),(124,-1557090000,2),(124,-1535486400,1),(124,-1524949200,2),(124,-1504468800,1),(124,-1493413200,2),(124,-1472414400,1),(124,-1461963600,2),(124,-1440964800,1),(124,-1429390800,2),(124,-1409515200,1),(124,-1396731600,2),(124,-1376856000,1),(124,-1366491600,2),(124,-1346616000,1),(124,-1333832400,2),(124,-1313956800,1),(124,-1303678800,2),(124,-1282507200,1),(124,-1272661200,2),(124,-1251057600,1),(124,-1240088400,2),(124,-1219608000,1),(124,-1207429200,2),(124,-1188763200,1),(124,-1175979600,2),(124,-1157313600,1),(124,-1143925200,2),(124,-1124049600,1),(124,-1113771600,2),(124,-1091390400,1),(124,-1081026000,2),(124,-1059854400,1),(124,-1050786000,2),(124,-1030910400,1),(124,-1018126800,2),(124,-999460800,1),(124,-986677200,2),(124,-965592000,1),(124,-955227600,2),(124,-935956800,1),(124,-923173200,2),(124,-904507200,1),(124,-891723600,2),(124,-880221600,3),(124,-769395600,4),(124,-765399600,2),(124,-747252000,1),(124,-733950000,2),(124,-715802400,1),(124,-702500400,2),(124,-684352800,1),(124,-671050800,2),(124,-652903200,1),(124,-639601200,2),(124,-589399200,1),(124,-576097200,2),(124,-557949600,1),(124,-544647600,2),(124,-526500000,1),(124,-513198000,2),(124,-495050400,1),(124,-481748400,2),(124,-431546400,1),(124,-418244400,2),(124,-400096800,1),(124,-386794800,2),(124,-368647200,1),(124,-355345200,2),(124,-337197600,1),(124,-323895600,2),(124,-242244000,1),(124,-226522800,2),(124,-210794400,1),(124,-195073200,2),(124,-179344800,1),(124,-163623600,2),(124,-147895200,1),(124,-131569200,2),(124,-116445600,1),(124,-100119600,2),(124,-84391200,1),(124,-68670000,2),(124,-52941600,1),(124,-37220400,2),(124,-21492000,1),(124,-5770800,2),(124,9957600,1),(124,25678800,2),(124,41407200,1),(124,57733200,2),(124,73461600,1),(124,89182800,2),(124,104911200,1),(124,120632400,2),(124,136360800,1),(124,152082000,2),(124,167810400,1),(124,183531600,2),(124,199260000,1),(124,215586000,2),(124,230709600,1),(124,247035600,2),(124,262764000,1),(124,278485200,2),(124,294213600,1),(124,309934800,2),(124,325663200,1),(124,341384400,2),(124,357112800,1),(124,372834000,2),(124,388562400,1),(124,404888400,2),(124,420012000,1),(124,436338000,2),(124,452066400,1),(124,467787600,2),(124,483516000,1),(124,499237200,2),(124,514965600,1),(124,530686800,2),(124,544600800,1),(124,562136400,2),(124,576050400,1),(124,594190800,2),(124,607500000,1),(124,625640400,2),(124,638949600,1),(124,657090000,2),(124,671004000,1),(124,688539600,2),(124,702453600,1),(124,719989200,2),(124,733903200,1),(124,752043600,2),(124,765352800,1),(124,783493200,2),(124,796802400,1),(124,814942800,2),(124,828856800,1),(124,846392400,2),(124,860306400,1),(124,877842000,2),(124,891756000,1),(124,909291600,2),(124,923205600,1),(124,941346000,2),(124,954655200,1),(124,972795600,2),(124,986104800,1),(124,1004245200,2),(124,1018159200,1),(124,1035694800,2),(124,1049608800,1),(124,1067144400,2),(124,1081058400,1),(124,1099198800,2),(124,1112508000,1),(124,1130648400,2),(124,1143957600,1),(124,1162098000,2),(124,1173592800,1),(124,1194152400,2),(124,1205042400,1),(124,1225602000,2),(124,1236492000,1),(124,1257051600,2),(124,1268546400,1),(124,1289106000,2),(124,1299996000,1),(124,1320555600,2),(124,1331445600,1),(124,1352005200,2),(124,1362895200,1),(124,1383454800,2),(124,1394344800,1),(124,1414904400,2),(124,1425794400,1),(124,1446354000,2),(124,1457848800,1),(124,1478408400,2),(124,1489298400,1),(124,1509858000,2),(124,1520748000,1),(124,1541307600,2),(124,1552197600,1),(124,1572757200,2),(124,1583647200,1),(124,1604206800,2),(124,1615701600,1),(124,1636261200,2),(124,1647151200,1),(124,1667710800,2),(124,1678600800,1),(124,1699160400,2),(124,1710050400,1),(124,1730610000,2),(124,1741500000,1),(124,1762059600,2),(124,1772949600,1),(124,1793509200,2),(124,1805004000,1),(124,1825563600,2),(124,1836453600,1),(124,1857013200,2),(124,1867903200,1),(124,1888462800,2),(124,1899352800,1),(124,1919912400,2),(124,1930802400,1),(124,1951362000,2),(124,1962856800,1),(124,1983416400,2),(124,1994306400,1),(124,2014866000,2),(124,2025756000,1),(124,2046315600,2),(124,2057205600,1),(124,2077765200,2),(124,2088655200,1),(124,2109214800,2),(124,2120104800,1),(124,2140664400,2),(125,-2147483648,1),(125,-1402813824,3),(125,-1311534000,2),(125,-1300996800,3),(125,-933534000,2),(125,-925675200,3),(125,-902084400,2),(125,-893620800,3),(125,-870030000,2),(125,-862171200,3),(125,-775681200,2),(125,-767822400,3),(125,-744231600,2),(125,-736372800,3),(125,-144702000,2),(125,-134251200,3),(125,-113425200,2),(125,-102542400,3),(125,-86295600,2),(125,-72907200,3),(125,-54154800,2),(125,-41457600,3),(125,-21495600,2),(125,-5774400,3),(125,9954000,2),(125,25675200,3),(125,41403600,2),(125,57729600,3),(125,73458000,2),(125,87364800,3),(125,104907600,2),(125,118900800,3),(125,136357200,2),(125,150436800,3),(125,167806800,2),(125,183528000,3),(125,199256400,2),(125,215582400,3),(125,230706000,2),(125,247032000,3),(125,263365200,2),(125,276667200,3),(125,290581200,2),(125,308721600,3),(125,322030800,2),(125,340171200,3),(125,358318800,2),(125,371620800,3),(125,389768400,2),(125,403070400,3),(125,421218000,2),(125,434520000,3),(125,452667600,2),(125,466574400,3),(125,484117200,2),(125,498024000,3),(125,511333200,2),(125,529473600,3),(125,542782800,2),(125,560923200,3),(125,574837200,2),(125,592372800,3),(125,606286800,2),(125,623822400,3),(125,638946000,2),(125,655876800,3),(125,671000400,2),(125,687330000,4),(125,702450000,2),(125,718779600,4),(125,733899600,2),(125,750229200,4),(125,765349200,2),(125,781678800,4),(125,796798800,2),(125,813128400,4),(125,828853200,2),(125,844578000,4),(125,860302800,2),(125,876632400,4),(125,891147600,5),(125,909291600,4),(125,922597200,5),(125,941346000,4),(125,954651600,5),(125,972795600,4),(125,986101200,5),(125,1004245200,4),(125,1018155600,5),(125,1035694800,4),(125,1049605200,5),(125,1067144400,4),(125,1080450000,5),(125,1162098000,4),(125,1173589200,5),(125,1193547600,4),(125,1205643600,5),(125,1224997200,4),(125,1236488400,5),(125,1256446800,4),(125,1268542800,5),(125,1288501200,4),(125,1300597200,5),(125,1321160400,4),(125,1333256400,5),(125,1352005200,4),(125,1362891600,5),(125,1383454800,4),(125,1394341200,5),(125,1414904400,4),(125,1425790800,5),(125,1446354000,4),(125,1457845200,5),(125,1478408400,4),(125,1489294800,5),(125,1509858000,4),(125,1520744400,5),(125,1541307600,4),(125,1552194000,5),(125,1572757200,4),(125,1583643600,5),(125,1604206800,4),(125,1615698000,5),(125,1636261200,4),(125,1647147600,5),(125,1667710800,4),(125,1678597200,5),(125,1699160400,4),(125,1710046800,5),(125,1730610000,4),(125,1741496400,5),(125,1762059600,4),(125,1772946000,5),(125,1793509200,4),(125,1805000400,5),(125,1825563600,4),(125,1836450000,5),(125,1857013200,4),(125,1867899600,5),(125,1888462800,4),(125,1899349200,5),(125,1919912400,4),(125,1930798800,5),(125,1951362000,4),(125,1962853200,5),(125,1983416400,4),(125,1994302800,5),(125,2014866000,4),(125,2025752400,5),(125,2046315600,4),(125,2057202000,5),(125,2077765200,4),(125,2088651600,5),(125,2109214800,4),(125,2120101200,5),(125,2140664400,4),(126,-2147483648,0),(126,-1514739600,1),(126,-1343066400,2),(126,-1234807200,1),(126,-1220292000,2),(126,-1207159200,1),(126,-1191344400,2),(126,-873828000,1),(126,-661539600,3),(126,28800,1),(126,828867600,4),(126,846403200,1),(126,860317200,4),(126,877852800,1),(126,891766800,4),(126,909302400,1),(127,-2147483648,2),(127,-1633276800,1),(127,-1615136400,2),(127,-1601827200,1),(127,-1583686800,2),(127,-900259200,1),(127,-891795600,2),(127,-880214400,3),(127,-769395600,4),(127,-765392400,2),(127,-747244800,1),(127,-733942800,2),(127,-715795200,1),(127,-702493200,2),(127,-684345600,1),(127,-671043600,2),(127,-652896000,1),(127,-639594000,2),(127,-620841600,1),(127,-608144400,2),(127,-589392000,1),(127,-576090000,2),(127,-557942400,1),(127,-544640400,2),(127,-526492800,1),(127,-513190800,2),(127,-495043200,1),(127,-481741200,2),(127,-463593600,5),(127,-386787600,2),(127,-368640000,5),(127,-21488400,6),(127,-5767200,5),(127,9961200,6),(127,25682400,5),(127,1143961200,6),(127,1162101600,5),(127,1173596400,6),(127,1194156000,5),(127,1205046000,6),(127,1225605600,5),(127,1236495600,6),(127,1257055200,5),(127,1268550000,6),(127,1289109600,5),(127,1299999600,6),(127,1320559200,5),(127,1331449200,6),(127,1352008800,5),(127,1362898800,6),(127,1383458400,5),(127,1394348400,6),(127,1414908000,5),(127,1425798000,6),(127,1446357600,5),(127,1457852400,6),(127,1478412000,5),(127,1489302000,6),(127,1509861600,5),(127,1520751600,6),(127,1541311200,5),(127,1552201200,6),(127,1572760800,5),(127,1583650800,6),(127,1604210400,5),(127,1615705200,6),(127,1636264800,5),(127,1647154800,6),(127,1667714400,5),(127,1678604400,6),(127,1699164000,5),(127,1710054000,6),(127,1730613600,5),(127,1741503600,6),(127,1762063200,5),(127,1772953200,6),(127,1793512800,5),(127,1805007600,6),(127,1825567200,5),(127,1836457200,6),(127,1857016800,5),(127,1867906800,6),(127,1888466400,5),(127,1899356400,6),(127,1919916000,5),(127,1930806000,6),(127,1951365600,5),(127,1962860400,6),(127,1983420000,5),(127,1994310000,6),(127,2014869600,5),(127,2025759600,6),(127,2046319200,5),(127,2057209200,6),(127,2077768800,5),(127,2088658800,6),(127,2109218400,5),(127,2120108400,6),(127,2140668000,5),(128,-2147483648,2),(128,-1633276800,1),(128,-1615136400,2),(128,-1601827200,1),(128,-1583686800,2),(128,-880214400,3),(128,-769395600,4),(128,-765392400,2),(128,-715795200,1),(128,-702493200,2),(128,-684345600,1),(128,-671043600,2),(128,-652896000,1),(128,-639594000,2),(128,-620841600,1),(128,-608144400,2),(128,-589392000,1),(128,-576090000,2),(128,-557942400,1),(128,-544640400,2),(128,-526492800,1),(128,-513190800,2),(128,-495043200,1),(128,-481741200,2),(128,-463593600,1),(128,-447267600,2),(128,-431539200,1),(128,-415818000,2),(128,-400089600,1),(128,-386787600,2),(128,-368640000,1),(128,-355338000,2),(128,-337190400,1),(128,-321469200,2),(128,-305740800,1),(128,-289414800,2),(128,-273686400,1),(128,-257965200,2),(128,-242236800,5),(128,-195066000,2),(128,-84384000,1),(128,-68662800,2),(128,-52934400,1),(128,-37213200,2),(128,-21484800,1),(128,-5763600,2),(128,9964800,1),(128,25686000,2),(128,41414400,1),(128,57740400,2),(128,73468800,1),(128,89190000,2),(128,104918400,1),(128,120639600,2),(128,126691200,1),(128,152089200,2),(128,162374400,1),(128,183538800,2),(128,199267200,1),(128,215593200,2),(128,230716800,1),(128,247042800,2),(128,262771200,1),(128,278492400,2),(128,294220800,1),(128,309942000,2),(128,325670400,1),(128,341391600,2),(128,357120000,1),(128,372841200,2),(128,388569600,1),(128,404895600,2),(128,420019200,1),(128,436345200,2),(128,452073600,1),(128,467794800,2),(128,483523200,1),(128,499244400,2),(128,514972800,1),(128,530694000,2),(128,544608000,1),(128,562143600,2),(128,576057600,1),(128,594198000,2),(128,607507200,1),(128,625647600,2),(128,638956800,1),(128,657097200,2),(128,671011200,1),(128,688546800,5),(128,1143961200,1),(128,1162105200,2),(128,1173600000,1),(128,1194159600,2),(128,1205049600,1),(128,1225609200,2),(128,1236499200,1),(128,1257058800,2),(128,1268553600,1),(128,1289113200,2),(128,1300003200,1),(128,1320562800,2),(128,1331452800,1),(128,1352012400,2),(128,1362902400,1),(128,1383462000,2),(128,1394352000,1),(128,1414911600,2),(128,1425801600,1),(128,1446361200,2),(128,1457856000,1),(128,1478415600,2),(128,1489305600,1),(128,1509865200,2),(128,1520755200,1),(128,1541314800,2),(128,1552204800,1),(128,1572764400,2),(128,1583654400,1),(128,1604214000,2),(128,1615708800,1),(128,1636268400,2),(128,1647158400,1),(128,1667718000,2),(128,1678608000,1),(128,1699167600,2),(128,1710057600,1),(128,1730617200,2),(128,1741507200,1),(128,1762066800,2),(128,1772956800,1),(128,1793516400,2),(128,1805011200,1),(128,1825570800,2),(128,1836460800,1),(128,1857020400,2),(128,1867910400,1),(128,1888470000,2),(128,1899360000,1),(128,1919919600,2),(128,1930809600,1),(128,1951369200,2),(128,1962864000,1),(128,1983423600,2),(128,1994313600,1),(128,2014873200,2),(128,2025763200,1),(128,2046322800,2),(128,2057212800,1),(128,2077772400,2),(128,2088662400,1),(128,2109222000,2),(128,2120112000,1),(128,2140671600,2),(129,-2147483648,2),(129,-1633276800,1),(129,-1615136400,2),(129,-1601827200,1),(129,-1583686800,2),(129,-880214400,3),(129,-769395600,4),(129,-765392400,2),(129,-589392000,1),(129,-576090000,2),(129,-495043200,1),(129,-481741200,2),(129,-463593600,1),(129,-450291600,2),(129,-431539200,1),(129,-418237200,2),(129,-400089600,1),(129,-386787600,2),(129,-368640000,1),(129,-355338000,2),(129,-337190400,1),(129,-323888400,2),(129,-305740800,1),(129,-292438800,2),(129,-273686400,5),(129,-21488400,6),(129,-5767200,5),(129,9961200,6),(129,25682400,5),(129,41410800,6),(129,57736800,5),(129,73465200,6),(129,89186400,5),(129,104914800,6),(129,120636000,5),(129,126687600,1),(129,152089200,5),(129,162370800,6),(129,183535200,5),(129,1143961200,6),(129,1162101600,5),(129,1173596400,6),(129,1194156000,5),(129,1205046000,6),(129,1225605600,5),(129,1236495600,6),(129,1257055200,5),(129,1268550000,6),(129,1289109600,5),(129,1299999600,6),(129,1320559200,5),(129,1331449200,6),(129,1352008800,5),(129,1362898800,6),(129,1383458400,5),(129,1394348400,6),(129,1414908000,5),(129,1425798000,6),(129,1446357600,5),(129,1457852400,6),(129,1478412000,5),(129,1489302000,6),(129,1509861600,5),(129,1520751600,6),(129,1541311200,5),(129,1552201200,6),(129,1572760800,5),(129,1583650800,6),(129,1604210400,5),(129,1615705200,6),(129,1636264800,5),(129,1647154800,6),(129,1667714400,5),(129,1678604400,6),(129,1699164000,5),(129,1710054000,6),(129,1730613600,5),(129,1741503600,6),(129,1762063200,5),(129,1772953200,6),(129,1793512800,5),(129,1805007600,6),(129,1825567200,5),(129,1836457200,6),(129,1857016800,5),(129,1867906800,6),(129,1888466400,5),(129,1899356400,6),(129,1919916000,5),(129,1930806000,6),(129,1951365600,5),(129,1962860400,6),(129,1983420000,5),(129,1994310000,6),(129,2014869600,5),(129,2025759600,6),(129,2046319200,5),(129,2057209200,6),(129,2077768800,5),(129,2088658800,6),(129,2109218400,5),(129,2120108400,6),(129,2140668000,5),(130,-2147483648,2),(130,-1633276800,1),(130,-1615136400,2),(130,-1601827200,1),(130,-1583686800,2),(130,-880214400,3),(130,-769395600,4),(130,-765392400,2),(130,-462996000,1),(130,-450291600,2),(130,-431539200,1),(130,-418237200,2),(130,-400089600,1),(130,-386787600,2),(130,-368640000,1),(130,-355338000,2),(130,-337190400,1),(130,-323888400,2),(130,-305740800,1),(130,-292438800,2),(130,-273686400,1),(130,-257965200,2),(130,-242236800,1),(130,-226515600,2),(130,-210787200,1),(130,-195066000,2),(130,-179337600,1),(130,-163616400,2),(130,-147888000,5),(130,-100112400,2),(130,-84384000,1),(130,-68662800,2),(130,-52934400,1),(130,-37213200,2),(130,-21484800,1),(130,-5763600,2),(130,9964800,1),(130,25686000,2),(130,41414400,1),(130,57740400,2),(130,73468800,1),(130,89190000,2),(130,104918400,1),(130,120639600,2),(130,126691200,1),(130,152089200,2),(130,162374400,1),(130,183538800,2),(130,199267200,1),(130,215593200,2),(130,230716800,1),(130,247042800,5),(130,1143961200,1),(130,1162105200,2),(130,1173600000,1),(130,1194159600,5),(130,1205046000,6),(130,1225605600,5),(130,1236495600,6),(130,1257055200,5),(130,1268550000,6),(130,1289109600,5),(130,1299999600,6),(130,1320559200,5),(130,1331449200,6),(130,1352008800,5),(130,1362898800,6),(130,1383458400,5),(130,1394348400,6),(130,1414908000,5),(130,1425798000,6),(130,1446357600,5),(130,1457852400,6),(130,1478412000,5),(130,1489302000,6),(130,1509861600,5),(130,1520751600,6),(130,1541311200,5),(130,1552201200,6),(130,1572760800,5),(130,1583650800,6),(130,1604210400,5),(130,1615705200,6),(130,1636264800,5),(130,1647154800,6),(130,1667714400,5),(130,1678604400,6),(130,1699164000,5),(130,1710054000,6),(130,1730613600,5),(130,1741503600,6),(130,1762063200,5),(130,1772953200,6),(130,1793512800,5),(130,1805007600,6),(130,1825567200,5),(130,1836457200,6),(130,1857016800,5),(130,1867906800,6),(130,1888466400,5),(130,1899356400,6),(130,1919916000,5),(130,1930806000,6),(130,1951365600,5),(130,1962860400,6),(130,1983420000,5),(130,1994310000,6),(130,2014869600,5),(130,2025759600,6),(130,2046319200,5),(130,2057209200,6),(130,2077768800,5),(130,2088658800,6),(130,2109218400,5),(130,2120108400,6),(130,2140668000,5),(131,-2147483648,2),(131,-1633276800,1),(131,-1615136400,2),(131,-1601827200,1),(131,-1583686800,2),(131,-880214400,3),(131,-769395600,4),(131,-765392400,2),(131,-462996000,1),(131,-450291600,2),(131,-431539200,1),(131,-418237200,2),(131,-400089600,1),(131,-386787600,2),(131,-368640000,1),(131,-355338000,2),(131,-337190400,1),(131,-323888400,2),(131,-305740800,1),(131,-292438800,2),(131,-273686400,1),(131,-257965200,2),(131,-242236800,1),(131,-226515600,2),(131,-210787200,1),(131,-195066000,2),(131,-179337600,5),(131,-68662800,2),(131,-52934400,1),(131,-37213200,2),(131,-21484800,6),(131,-5767200,5),(131,9961200,6),(131,25682400,5),(131,1143961200,1),(131,1162105200,2),(131,1173600000,1),(131,1194159600,2),(131,1205049600,1),(131,1225609200,2),(131,1236499200,1),(131,1257058800,2),(131,1268553600,1),(131,1289113200,2),(131,1300003200,1),(131,1320562800,2),(131,1331452800,1),(131,1352012400,2),(131,1362902400,1),(131,1383462000,2),(131,1394352000,1),(131,1414911600,2),(131,1425801600,1),(131,1446361200,2),(131,1457856000,1),(131,1478415600,2),(131,1489305600,1),(131,1509865200,2),(131,1520755200,1),(131,1541314800,2),(131,1552204800,1),(131,1572764400,2),(131,1583654400,1),(131,1604214000,2),(131,1615708800,1),(131,1636268400,2),(131,1647158400,1),(131,1667718000,2),(131,1678608000,1),(131,1699167600,2),(131,1710057600,1),(131,1730617200,2),(131,1741507200,1),(131,1762066800,2),(131,1772956800,1),(131,1793516400,2),(131,1805011200,1),(131,1825570800,2),(131,1836460800,1),(131,1857020400,2),(131,1867910400,1),(131,1888470000,2),(131,1899360000,1),(131,1919919600,2),(131,1930809600,1),(131,1951369200,2),(131,1962864000,1),(131,1983423600,2),(131,1994313600,1),(131,2014873200,2),(131,2025763200,1),(131,2046322800,2),(131,2057212800,1),(131,2077772400,2),(131,2088662400,1),(131,2109222000,2),(131,2120112000,1),(131,2140671600,2),(132,-2147483648,2),(132,-1633276800,1),(132,-1615136400,2),(132,-1601827200,1),(132,-1583686800,2),(132,-880214400,3),(132,-769395600,4),(132,-765392400,2),(132,-495043200,5),(132,-21488400,6),(132,-5767200,5),(132,9961200,6),(132,25682400,5),(132,41410800,6),(132,57736800,5),(132,73465200,6),(132,89186400,5),(132,1143961200,6),(132,1162101600,5),(132,1173596400,6),(132,1194156000,5),(132,1205046000,6),(132,1225605600,5),(132,1236495600,6),(132,1257055200,5),(132,1268550000,6),(132,1289109600,5),(132,1299999600,6),(132,1320559200,5),(132,1331449200,6),(132,1352008800,5),(132,1362898800,6),(132,1383458400,5),(132,1394348400,6),(132,1414908000,5),(132,1425798000,6),(132,1446357600,5),(132,1457852400,6),(132,1478412000,5),(132,1489302000,6),(132,1509861600,5),(132,1520751600,6),(132,1541311200,5),(132,1552201200,6),(132,1572760800,5),(132,1583650800,6),(132,1604210400,5),(132,1615705200,6),(132,1636264800,5),(132,1647154800,6),(132,1667714400,5),(132,1678604400,6),(132,1699164000,5),(132,1710054000,6),(132,1730613600,5),(132,1741503600,6),(132,1762063200,5),(132,1772953200,6),(132,1793512800,5),(132,1805007600,6),(132,1825567200,5),(132,1836457200,6),(132,1857016800,5),(132,1867906800,6),(132,1888466400,5),(132,1899356400,6),(132,1919916000,5),(132,1930806000,6),(132,1951365600,5),(132,1962860400,6),(132,1983420000,5),(132,1994310000,6),(132,2014869600,5),(132,2025759600,6),(132,2046319200,5),(132,2057209200,6),(132,2077768800,5),(132,2088658800,6),(132,2109218400,5),(132,2120108400,6),(132,2140668000,5),(133,-2147483648,2),(133,-1633276800,1),(133,-1615136400,2),(133,-1601827200,1),(133,-1583686800,2),(133,-880214400,3),(133,-769395600,4),(133,-765392400,2),(133,-747244800,1),(133,-733942800,2),(133,-526492800,1),(133,-513190800,2),(133,-495043200,1),(133,-481741200,2),(133,-462996000,1),(133,-450291600,2),(133,-431539200,1),(133,-418237200,2),(133,-400089600,1),(133,-386787600,2),(133,-368640000,1),(133,-355338000,2),(133,-337190400,1),(133,-323888400,2),(133,-305740800,1),(133,-289414800,2),(133,-273686400,1),(133,-260989200,2),(133,-242236800,1),(133,-226515600,2),(133,-210787200,1),(133,-195066000,2),(133,-179337600,5),(133,-21488400,6),(133,-5767200,5),(133,9961200,6),(133,25682400,5),(133,1143961200,1),(133,1162105200,2),(133,1173600000,1),(133,1194159600,5),(133,1205046000,6),(133,1225605600,5),(133,1236495600,6),(133,1257055200,5),(133,1268550000,6),(133,1289109600,5),(133,1299999600,6),(133,1320559200,5),(133,1331449200,6),(133,1352008800,5),(133,1362898800,6),(133,1383458400,5),(133,1394348400,6),(133,1414908000,5),(133,1425798000,6),(133,1446357600,5),(133,1457852400,6),(133,1478412000,5),(133,1489302000,6),(133,1509861600,5),(133,1520751600,6),(133,1541311200,5),(133,1552201200,6),(133,1572760800,5),(133,1583650800,6),(133,1604210400,5),(133,1615705200,6),(133,1636264800,5),(133,1647154800,6),(133,1667714400,5),(133,1678604400,6),(133,1699164000,5),(133,1710054000,6),(133,1730613600,5),(133,1741503600,6),(133,1762063200,5),(133,1772953200,6),(133,1793512800,5),(133,1805007600,6),(133,1825567200,5),(133,1836457200,6),(133,1857016800,5),(133,1867906800,6),(133,1888466400,5),(133,1899356400,6),(133,1919916000,5),(133,1930806000,6),(133,1951365600,5),(133,1962860400,6),(133,1983420000,5),(133,1994310000,6),(133,2014869600,5),(133,2025759600,6),(133,2046319200,5),(133,2057209200,6),(133,2077768800,5),(133,2088658800,6),(133,2109218400,5),(133,2120108400,6),(133,2140668000,5),(134,-2147483648,2),(134,-1633276800,1),(134,-1615136400,2),(134,-1601827200,1),(134,-1583686800,2),(134,-880214400,3),(134,-769395600,4),(134,-765392400,2),(134,-747244800,1),(134,-733942800,2),(134,-715795200,1),(134,-702493200,2),(134,-684345600,1),(134,-671043600,2),(134,-652896000,1),(134,-639594000,2),(134,-620841600,1),(134,-608144400,2),(134,-589392000,1),(134,-576090000,2),(134,-557942400,1),(134,-544640400,2),(134,-526492800,1),(134,-513190800,2),(134,-495043200,1),(134,-481741200,2),(134,-463593600,1),(134,-447267600,2),(134,-431539200,1),(134,-415818000,2),(134,-400089600,1),(134,-386787600,2),(134,-368640000,1),(134,-355338000,2),(134,-337190400,1),(134,-323888400,2),(134,-305740800,1),(134,-292438800,2),(134,-273686400,5),(134,-21488400,6),(134,-5767200,5),(134,9961200,6),(134,25682400,5),(134,1143961200,1),(134,1162105200,2),(134,1173600000,6),(134,1194156000,5),(134,1205046000,6),(134,1225605600,5),(134,1236495600,6),(134,1257055200,5),(134,1268550000,6),(134,1289109600,5),(134,1299999600,6),(134,1320559200,5),(134,1331449200,6),(134,1352008800,5),(134,1362898800,6),(134,1383458400,5),(134,1394348400,6),(134,1414908000,5),(134,1425798000,6),(134,1446357600,5),(134,1457852400,6),(134,1478412000,5),(134,1489302000,6),(134,1509861600,5),(134,1520751600,6),(134,1541311200,5),(134,1552201200,6),(134,1572760800,5),(134,1583650800,6),(134,1604210400,5),(134,1615705200,6),(134,1636264800,5),(134,1647154800,6),(134,1667714400,5),(134,1678604400,6),(134,1699164000,5),(134,1710054000,6),(134,1730613600,5),(134,1741503600,6),(134,1762063200,5),(134,1772953200,6),(134,1793512800,5),(134,1805007600,6),(134,1825567200,5),(134,1836457200,6),(134,1857016800,5),(134,1867906800,6),(134,1888466400,5),(134,1899356400,6),(134,1919916000,5),(134,1930806000,6),(134,1951365600,5),(134,1962860400,6),(134,1983420000,5),(134,1994310000,6),(134,2014869600,5),(134,2025759600,6),(134,2046319200,5),(134,2057209200,6),(134,2077768800,5),(134,2088658800,6),(134,2109218400,5),(134,2120108400,6),(134,2140668000,5),(135,-2147483648,2),(135,-1633276800,1),(135,-1615136400,2),(135,-1601827200,1),(135,-1583686800,2),(135,-900259200,1),(135,-891795600,2),(135,-880214400,3),(135,-769395600,4),(135,-765392400,2),(135,-747244800,1),(135,-733942800,2),(135,-715795200,1),(135,-702493200,2),(135,-684345600,1),(135,-671043600,2),(135,-652896000,1),(135,-639594000,2),(135,-620841600,1),(135,-608144400,2),(135,-589392000,1),(135,-576090000,2),(135,-557942400,1),(135,-544640400,2),(135,-526492800,1),(135,-513190800,2),(135,-495043200,1),(135,-481741200,2),(135,-463593600,5),(135,-386787600,2),(135,-368640000,5),(135,-21488400,6),(135,-5767200,5),(135,9961200,6),(135,25682400,5),(135,1143961200,6),(135,1162101600,5),(135,1173596400,6),(135,1194156000,5),(135,1205046000,6),(135,1225605600,5),(135,1236495600,6),(135,1257055200,5),(135,1268550000,6),(135,1289109600,5),(135,1299999600,6),(135,1320559200,5),(135,1331449200,6),(135,1352008800,5),(135,1362898800,6),(135,1383458400,5),(135,1394348400,6),(135,1414908000,5),(135,1425798000,6),(135,1446357600,5),(135,1457852400,6),(135,1478412000,5),(135,1489302000,6),(135,1509861600,5),(135,1520751600,6),(135,1541311200,5),(135,1552201200,6),(135,1572760800,5),(135,1583650800,6),(135,1604210400,5),(135,1615705200,6),(135,1636264800,5),(135,1647154800,6),(135,1667714400,5),(135,1678604400,6),(135,1699164000,5),(135,1710054000,6),(135,1730613600,5),(135,1741503600,6),(135,1762063200,5),(135,1772953200,6),(135,1793512800,5),(135,1805007600,6),(135,1825567200,5),(135,1836457200,6),(135,1857016800,5),(135,1867906800,6),(135,1888466400,5),(135,1899356400,6),(135,1919916000,5),(135,1930806000,6),(135,1951365600,5),(135,1962860400,6),(135,1983420000,5),(135,1994310000,6),(135,2014869600,5),(135,2025759600,6),(135,2046319200,5),(135,2057209200,6),(135,2077768800,5),(135,2088658800,6),(135,2109218400,5),(135,2120108400,6),(135,2140668000,5),(136,-2147483648,0),(136,-536457600,2),(136,-147888000,1),(136,-131558400,2),(136,294228000,3),(136,325674000,4),(136,341395200,3),(136,357123600,4),(136,372844800,3),(136,388573200,4),(136,404899200,3),(136,420022800,4),(136,436348800,3),(136,452077200,4),(136,467798400,3),(136,483526800,4),(136,499248000,3),(136,514976400,4),(136,530697600,3),(136,544611600,4),(136,562147200,3),(136,576061200,4),(136,594201600,3),(136,607510800,4),(136,625651200,3),(136,638960400,4),(136,657100800,3),(136,671014800,4),(136,688550400,3),(136,702464400,4),(136,720000000,3),(136,733914000,4),(136,752054400,3),(136,765363600,4),(136,783504000,3),(136,796813200,4),(136,814953600,3),(136,828867600,4),(136,846403200,3),(136,860317200,4),(136,877852800,3),(136,891766800,4),(136,909302400,3),(136,923216400,4),(136,941356800,3),(136,954666000,4),(136,972806400,3),(136,986115600,4),(136,1004256000,3),(136,1018170000,4),(136,1035705600,3),(136,1049619600,4),(136,1067155200,3),(136,1081069200,4),(136,1099209600,3),(136,1112518800,4),(136,1130659200,3),(136,1143968400,4),(136,1162108800,3),(136,1173603600,4),(136,1194163200,3),(136,1205053200,4),(136,1225612800,3),(136,1236502800,4),(136,1257062400,3),(136,1268557200,4),(136,1289116800,3),(136,1300006800,4),(136,1320566400,3),(136,1331456400,4),(136,1352016000,3),(136,1362906000,4),(136,1383465600,3),(136,1394355600,4),(136,1414915200,3),(136,1425805200,4),(136,1446364800,3),(136,1457859600,4),(136,1478419200,3),(136,1489309200,4),(136,1509868800,3),(136,1520758800,4),(136,1541318400,3),(136,1552208400,4),(136,1572768000,3),(136,1583658000,4),(136,1604217600,3),(136,1615712400,4),(136,1636272000,3),(136,1647162000,4),(136,1667721600,3),(136,1678611600,4),(136,1699171200,3),(136,1710061200,4),(136,1730620800,3),(136,1741510800,4),(136,1762070400,3),(136,1772960400,4),(136,1793520000,3),(136,1805014800,4),(136,1825574400,3),(136,1836464400,4),(136,1857024000,3),(136,1867914000,4),(136,1888473600,3),(136,1899363600,4),(136,1919923200,3),(136,1930813200,4),(136,1951372800,3),(136,1962867600,4),(136,1983427200,3),(136,1994317200,4),(136,2014876800,3),(136,2025766800,4),(136,2046326400,3),(136,2057216400,4),(136,2077776000,3),(136,2088666000,4),(136,2109225600,3),(136,2120115600,4),(136,2140675200,3),(137,-2147483648,0),(137,-865296000,5),(137,-769395600,1),(137,-765396000,2),(137,-147898800,3),(137,-131569200,2),(137,325666800,4),(137,341388000,2),(137,357116400,4),(137,372837600,2),(137,388566000,4),(137,404892000,2),(137,420015600,4),(137,436341600,2),(137,452070000,4),(137,467791200,2),(137,483519600,4),(137,499240800,2),(137,514969200,4),(137,530690400,2),(137,544604400,4),(137,562140000,2),(137,576054000,4),(137,594194400,2),(137,607503600,4),(137,625644000,2),(137,638953200,4),(137,657093600,2),(137,671007600,4),(137,688543200,2),(137,702457200,4),(137,719992800,2),(137,733906800,4),(137,752047200,2),(137,765356400,4),(137,783496800,2),(137,796806000,4),(137,814946400,2),(137,828860400,4),(137,846396000,2),(137,860310000,4),(137,877845600,2),(137,891759600,4),(137,909295200,2),(137,923209200,4),(137,941349600,6),(137,954662400,7),(137,972802800,2),(137,986108400,4),(137,1004248800,2),(137,1018162800,4),(137,1035698400,2),(137,1049612400,4),(137,1067148000,2),(137,1081062000,4),(137,1099202400,2),(137,1112511600,4),(137,1130652000,2),(137,1143961200,4),(137,1162101600,2),(137,1173596400,4),(137,1194156000,2),(137,1205046000,4),(137,1225605600,2),(137,1236495600,4),(137,1257055200,2),(137,1268550000,4),(137,1289109600,2),(137,1299999600,4),(137,1320559200,2),(137,1331449200,4),(137,1352008800,2),(137,1362898800,4),(137,1383458400,2),(137,1394348400,4),(137,1414908000,2),(137,1425798000,4),(137,1446357600,2),(137,1457852400,4),(137,1478412000,2),(137,1489302000,4),(137,1509861600,2),(137,1520751600,4),(137,1541311200,2),(137,1552201200,4),(137,1572760800,2),(137,1583650800,4),(137,1604210400,2),(137,1615705200,4),(137,1636264800,2),(137,1647154800,4),(137,1667714400,2),(137,1678604400,4),(137,1699164000,2),(137,1710054000,4),(137,1730613600,2),(137,1741503600,4),(137,1762063200,2),(137,1772953200,4),(137,1793512800,2),(137,1805007600,4),(137,1825567200,2),(137,1836457200,4),(137,1857016800,2),(137,1867906800,4),(137,1888466400,2),(137,1899356400,4),(137,1919916000,2),(137,1930806000,4),(137,1951365600,2),(137,1962860400,4),(137,1983420000,2),(137,1994310000,4),(137,2014869600,2),(137,2025759600,4),(137,2046319200,2),(137,2057209200,4),(137,2077768800,2),(137,2088658800,4),(137,2109218400,2),(137,2120108400,4),(137,2140668000,2),(138,-2147483648,1),(138,-1827687170,2),(138,126687600,3),(138,152085600,2),(138,162370800,3),(138,183535200,2),(138,199263600,3),(138,215589600,2),(138,230713200,3),(138,247039200,2),(138,262767600,3),(138,278488800,2),(138,294217200,3),(138,309938400,2),(138,325666800,3),(138,341388000,2),(138,357116400,3),(138,372837600,2),(138,388566000,3),(138,404892000,2),(138,420015600,3),(138,436341600,2),(139,-2147483648,1),(139,-1567453392,2),(139,-1233432000,3),(139,-1222981200,2),(139,-1205956800,3),(139,-1194037200,2),(139,-1172865600,3),(139,-1162501200,2),(139,-1141329600,3),(139,-1130965200,2),(139,-1109793600,3),(139,-1099429200,2),(139,-1078257600,3),(139,-1067806800,2),(139,-1046635200,3),(139,-1036270800,2),(139,-1015099200,3),(139,-1004734800,2),(139,-983563200,3),(139,-973198800,2),(139,-952027200,3),(139,-941576400,2),(139,-931032000,3),(139,-900882000,2),(139,-890337600,3),(139,-833749200,2),(139,-827265600,3),(139,-752274000,2),(139,-733780800,3),(139,-197326800,2),(139,-190843200,3),(139,-184194000,2),(139,-164491200,3),(139,-152658000,2),(139,-132955200,3),(139,-121122000,2),(139,-101419200,3),(139,-86821200,2),(139,-71092800,3),(139,-54766800,2),(139,-39038400,3),(139,-23317200,2),(139,-7588800,5),(139,128142000,4),(139,136605600,5),(139,596948400,4),(139,605066400,5),(139,624423600,4),(139,636516000,2),(139,657086400,3),(139,669178800,2),(139,686721600,4),(139,699415200,5),(139,719377200,4),(139,731469600,5),(139,938919600,3),(139,952052400,5),(139,1198983600,4),(139,1205632800,5),(140,-2147483648,1),(140,-880207200,2),(140,-769395600,3),(140,-765385200,1),(140,-21477600,4),(140,-5756400,1),(140,9972000,4),(140,25693200,1),(140,41421600,4),(140,57747600,1),(140,73476000,4),(140,89197200,1),(140,104925600,4),(140,120646800,1),(140,126698400,4),(140,152096400,1),(140,162381600,4),(140,183546000,1),(140,199274400,4),(140,215600400,1),(140,230724000,4),(140,247050000,1),(140,262778400,4),(140,278499600,1),(140,294228000,4),(140,309949200,1),(140,325677600,5),(140,341402400,1),(140,357127200,4),(140,372848400,1),(140,388576800,4),(140,404902800,1),(140,420026400,4),(140,436352400,6),(140,439030800,8),(140,452084400,7),(140,467805600,8),(140,483534000,7),(140,499255200,8),(140,514983600,7),(140,530704800,8),(140,544618800,7),(140,562154400,8),(140,576068400,7),(140,594208800,8),(140,607518000,7),(140,625658400,8),(140,638967600,7),(140,657108000,8),(140,671022000,7),(140,688557600,8),(140,702471600,7),(140,720007200,8),(140,733921200,7),(140,752061600,8),(140,765370800,7),(140,783511200,8),(140,796820400,7),(140,814960800,8),(140,828874800,7),(140,846410400,8),(140,860324400,7),(140,877860000,8),(140,891774000,7),(140,909309600,8),(140,923223600,7),(140,941364000,8),(140,954673200,7),(140,972813600,8),(140,986122800,7),(140,1004263200,8),(140,1018177200,7),(140,1035712800,8),(140,1049626800,7),(140,1067162400,8),(140,1081076400,7),(140,1099216800,8),(140,1112526000,7),(140,1130666400,8),(140,1143975600,7),(140,1162116000,8),(140,1173610800,7),(140,1194170400,8),(140,1205060400,7),(140,1225620000,8),(140,1236510000,7),(140,1257069600,8),(140,1268564400,7),(140,1289124000,8),(140,1300014000,7),(140,1320573600,8),(140,1331463600,7),(140,1352023200,8),(140,1362913200,7),(140,1383472800,8),(140,1394362800,7),(140,1414922400,8),(140,1425812400,7),(140,1446372000,8),(140,1457866800,7),(140,1478426400,8),(140,1489316400,7),(140,1509876000,8),(140,1520766000,7),(140,1541325600,8),(140,1552215600,7),(140,1572775200,8),(140,1583665200,7),(140,1604224800,8),(140,1615719600,7),(140,1636279200,8),(140,1647169200,7),(140,1667728800,8),(140,1678618800,7),(140,1699178400,8),(140,1710068400,7),(140,1730628000,8),(140,1741518000,7),(140,1762077600,8),(140,1772967600,7),(140,1793527200,8),(140,1805022000,7),(140,1825581600,8),(140,1836471600,7),(140,1857031200,8),(140,1867921200,7),(140,1888480800,8),(140,1899370800,7),(140,1919930400,8),(140,1930820400,7),(140,1951380000,8),(140,1962874800,7),(140,1983434400,8),(140,1994324400,7),(140,2014884000,8),(140,2025774000,7),(140,2046333600,8),(140,2057223600,7),(140,2077783200,8),(140,2088673200,7),(140,2109232800,8),(140,2120122800,7),(140,2140682400,8),(141,-2147483648,2),(141,-1633276800,1),(141,-1615136400,2),(141,-1601827200,1),(141,-1583686800,2),(141,-1535904000,1),(141,-1525280400,2),(141,-905097600,1),(141,-891795600,2),(141,-880214400,3),(141,-769395600,4),(141,-765392400,2),(141,-747251940,1),(141,-744224400,2),(141,-620841600,1),(141,-608144400,2),(141,-589392000,1),(141,-576090000,2),(141,-557942400,1),(141,-544640400,2),(141,-526492800,1),(141,-513190800,2),(141,-495043200,1),(141,-481741200,2),(141,-463593600,1),(141,-450291600,2),(141,-431539200,1),(141,-415818000,2),(141,-400089600,1),(141,-384368400,2),(141,-368640000,1),(141,-352918800,2),(141,-337190400,1),(141,-321469200,2),(141,-305740800,1),(141,-289414800,2),(141,-273686400,1),(141,-266432400,5),(141,-52938000,6),(141,-37216800,5),(141,-21488400,6),(141,-5767200,5),(141,9961200,6),(141,25682400,5),(141,41410800,6),(141,57736800,5),(141,73465200,6),(141,89186400,5),(141,104914800,6),(141,120636000,5),(141,126687600,1),(141,152089200,5),(141,162370800,6),(141,183535200,5),(141,199263600,6),(141,215589600,5),(141,230713200,6),(141,247039200,5),(141,262767600,6),(141,278488800,5),(141,294217200,6),(141,309938400,5),(141,325666800,6),(141,341388000,5),(141,357116400,6),(141,372837600,5),(141,388566000,6),(141,404892000,5),(141,420015600,6),(141,436341600,5),(141,452070000,6),(141,467791200,5),(141,483519600,6),(141,499240800,5),(141,514969200,6),(141,530690400,5),(141,544604400,6),(141,562140000,5),(141,576054000,6),(141,594194400,5),(141,607503600,6),(141,625644000,5),(141,638953200,6),(141,657093600,5),(141,671007600,6),(141,688543200,5),(141,702457200,6),(141,719992800,5),(141,733906800,6),(141,752047200,5),(141,765356400,6),(141,783496800,5),(141,796806000,6),(141,814946400,5),(141,828860400,6),(141,846396000,5),(141,860310000,6),(141,877845600,5),(141,891759600,6),(141,909295200,5),(141,923209200,6),(141,941349600,5),(141,954658800,6),(141,972799200,5),(141,986108400,6),(141,1004248800,5),(141,1018162800,6),(141,1035698400,5),(141,1049612400,6),(141,1067148000,5),(141,1081062000,6),(141,1099202400,5),(141,1112511600,6),(141,1130652000,5),(141,1143961200,6),(141,1162101600,5),(141,1173596400,6),(141,1194156000,5),(141,1205046000,6),(141,1225605600,5),(141,1236495600,6),(141,1257055200,5),(141,1268550000,6),(141,1289109600,5),(141,1299999600,6),(141,1320559200,5),(141,1331449200,6),(141,1352008800,5),(141,1362898800,6),(141,1383458400,5),(141,1394348400,6),(141,1414908000,5),(141,1425798000,6),(141,1446357600,5),(141,1457852400,6),(141,1478412000,5),(141,1489302000,6),(141,1509861600,5),(141,1520751600,6),(141,1541311200,5),(141,1552201200,6),(141,1572760800,5),(141,1583650800,6),(141,1604210400,5),(141,1615705200,6),(141,1636264800,5),(141,1647154800,6),(141,1667714400,5),(141,1678604400,6),(141,1699164000,5),(141,1710054000,6),(141,1730613600,5),(141,1741503600,6),(141,1762063200,5),(141,1772953200,6),(141,1793512800,5),(141,1805007600,6),(141,1825567200,5),(141,1836457200,6),(141,1857016800,5),(141,1867906800,6),(141,1888466400,5),(141,1899356400,6),(141,1919916000,5),(141,1930806000,6),(141,1951365600,5),(141,1962860400,6),(141,1983420000,5),(141,1994310000,6),(141,2014869600,5),(141,2025759600,6),(141,2046319200,5),(141,2057209200,6),(141,2077768800,5),(141,2088658800,6),(141,2109218400,5),(141,2120108400,6),(141,2140668000,5),(142,-2147483648,2),(142,-1633276800,1),(142,-1615136400,2),(142,-1601827200,1),(142,-1583686800,2),(142,-880214400,3),(142,-769395600,4),(142,-765392400,2),(142,-52934400,1),(142,-37213200,2),(142,-21484800,1),(142,-5763600,2),(142,9964800,1),(142,25686000,2),(142,41414400,1),(142,57740400,2),(142,73468800,1),(142,89190000,2),(142,104918400,1),(142,120639600,2),(142,126691200,1),(142,152089200,2),(142,162374400,1),(142,183538800,2),(142,199267200,1),(142,215593200,2),(142,230716800,1),(142,247042800,2),(142,262771200,1),(142,278492400,2),(142,294220800,1),(142,309942000,2),(142,325670400,1),(142,341391600,2),(142,357120000,1),(142,372841200,2),(142,388569600,1),(142,404895600,2),(142,420019200,1),(142,436345200,2),(142,452073600,1),(142,467794800,2),(142,483523200,1),(142,499244400,2),(142,514972800,1),(142,530694000,2),(142,544608000,1),(142,562143600,2),(142,576057600,1),(142,594198000,2),(142,607507200,1),(142,625647600,2),(142,638956800,1),(142,657097200,2),(142,671011200,1),(142,688546800,2),(142,702460800,1),(142,719996400,2),(142,733910400,1),(142,752050800,2),(142,765360000,1),(142,783500400,2),(142,796809600,1),(142,814950000,2),(142,828864000,1),(142,846399600,2),(142,860313600,1),(142,877849200,2),(142,891763200,1),(142,909298800,2),(142,923212800,1),(142,941353200,2),(142,954662400,1),(142,972802800,6),(142,986108400,5),(142,1004248800,6),(142,1018162800,5),(142,1035698400,6),(142,1049612400,5),(142,1067148000,6),(142,1081062000,5),(142,1099202400,6),(142,1112511600,5),(142,1130652000,6),(142,1143961200,5),(142,1162101600,6),(142,1173596400,5),(142,1194156000,6),(142,1205046000,5),(142,1225605600,6),(142,1236495600,5),(142,1257055200,6),(142,1268550000,5),(142,1289109600,6),(142,1299999600,5),(142,1320559200,6),(142,1331449200,5),(142,1352008800,6),(142,1362898800,5),(142,1383458400,6),(142,1394348400,5),(142,1414908000,6),(142,1425798000,5),(142,1446357600,6),(142,1457852400,5),(142,1478412000,6),(142,1489302000,5),(142,1509861600,6),(142,1520751600,5),(142,1541311200,6),(142,1552201200,5),(142,1572760800,6),(142,1583650800,5),(142,1604210400,6),(142,1615705200,5),(142,1636264800,6),(142,1647154800,5),(142,1667714400,6),(142,1678604400,5),(142,1699164000,6),(142,1710054000,5),(142,1730613600,6),(142,1741503600,5),(142,1762063200,6),(142,1772953200,5),(142,1793512800,6),(142,1805007600,5),(142,1825567200,6),(142,1836457200,5),(142,1857016800,6),(142,1867906800,5),(142,1888466400,6),(142,1899356400,5),(142,1919916000,6),(142,1930806000,5),(142,1951365600,6),(142,1962860400,5),(142,1983420000,6),(142,1994310000,5),(142,2014869600,6),(142,2025759600,5),(142,2046319200,6),(142,2057209200,5),(142,2077768800,6),(142,2088658800,5),(142,2109218400,6),(142,2120108400,5),(142,2140668000,6),(143,-2147483648,2),(143,-1633276800,1),(143,-1615136400,2),(143,-1601827200,1),(143,-1583686800,2),(143,-880214400,3),(143,-769395600,4),(143,-765392400,2),(143,-715795200,1),(143,-702493200,2),(143,-684345600,1),(143,-671043600,2),(143,-652896000,1),(143,-639594000,2),(143,-620841600,1),(143,-608144400,2),(143,-589392000,1),(143,-576090000,2),(143,-557942400,1),(143,-544640400,2),(143,-526492800,1),(143,-513190800,2),(143,-495043200,1),(143,-481741200,2),(143,-463593600,1),(143,-447267600,2),(143,-431539200,1),(143,-415818000,2),(143,-400089600,1),(143,-386787600,2),(143,-368640000,1),(143,-355338000,2),(143,-337190400,1),(143,-321469200,2),(143,-305740800,1),(143,-289414800,2),(143,-273686400,1),(143,-257965200,2),(143,-242236800,5),(143,-195066000,2),(143,-84384000,1),(143,-68662800,2),(143,-52934400,1),(143,-37213200,2),(143,-21484800,1),(143,-5763600,2),(143,9964800,1),(143,25686000,2),(143,41414400,1),(143,57740400,2),(143,73468800,1),(143,89190000,2),(143,104918400,1),(143,120639600,2),(143,126691200,1),(143,152089200,2),(143,162374400,1),(143,183538800,2),(143,199267200,1),(143,215593200,2),(143,230716800,1),(143,247042800,2),(143,262771200,1),(143,278492400,2),(143,294220800,1),(143,309942000,2),(143,325670400,1),(143,341391600,2),(143,357120000,1),(143,372841200,2),(143,388569600,1),(143,404895600,2),(143,420019200,1),(143,436345200,2),(143,452073600,1),(143,467794800,2),(143,483523200,1),(143,499244400,2),(143,514972800,1),(143,530694000,2),(143,544608000,1),(143,562143600,2),(143,576057600,1),(143,594198000,2),(143,607507200,1),(143,625647600,2),(143,638956800,1),(143,657097200,2),(143,671011200,1),(143,688546800,5),(143,1143961200,1),(143,1162105200,2),(143,1173600000,1),(143,1194159600,2),(143,1205049600,1),(143,1225609200,2),(143,1236499200,1),(143,1257058800,2),(143,1268553600,1),(143,1289113200,2),(143,1300003200,1),(143,1320562800,2),(143,1331452800,1),(143,1352012400,2),(143,1362902400,1),(143,1383462000,2),(143,1394352000,1),(143,1414911600,2),(143,1425801600,1),(143,1446361200,2),(143,1457856000,1),(143,1478415600,2),(143,1489305600,1),(143,1509865200,2),(143,1520755200,1),(143,1541314800,2),(143,1552204800,1),(143,1572764400,2),(143,1583654400,1),(143,1604214000,2),(143,1615708800,1),(143,1636268400,2),(143,1647158400,1),(143,1667718000,2),(143,1678608000,1),(143,1699167600,2),(143,1710057600,1),(143,1730617200,2),(143,1741507200,1),(143,1762066800,2),(143,1772956800,1),(143,1793516400,2),(143,1805011200,1),(143,1825570800,2),(143,1836460800,1),(143,1857020400,2),(143,1867910400,1),(143,1888470000,2),(143,1899360000,1),(143,1919919600,2),(143,1930809600,1),(143,1951369200,2),(143,1962864000,1),(143,1983423600,2),(143,1994313600,1),(143,2014873200,2),(143,2025763200,1),(143,2046322800,2),(143,2057212800,1),(143,2077772400,2),(143,2088662400,1),(143,2109222000,2),(143,2120112000,1),(143,2140671600,2),(144,-2147483648,0),(144,-1826738653,1),(144,-157750200,2),(145,-2147483648,1),(145,-1205954844,2),(145,-1192307244,3),(146,-2147483648,1),(146,-1938538284,3),(146,-1009825200,2),(146,-1002052800,3),(146,-986756400,2),(146,-971035200,3),(146,-955306800,2),(146,-939585600,3),(146,504939600,2),(146,512712000,3),(146,536475600,2),(146,544248000,3),(146,631170000,2),(146,638942400,3),(146,757400400,2),(146,765172800,3),(147,-2147483648,2),(147,-1633269600,1),(147,-1615129200,2),(147,-1601820000,1),(147,-1583679600,2),(147,-880207200,3),(147,-769395600,4),(147,-765385200,2),(147,-687967140,1),(147,-662655600,2),(147,-620838000,1),(147,-608137200,2),(147,-589388400,1),(147,-576082800,2),(147,-557938800,1),(147,-544633200,2),(147,-526489200,1),(147,-513183600,2),(147,-495039600,1),(147,-481734000,2),(147,-463590000,1),(147,-450284400,2),(147,-431535600,1),(147,-418230000,2),(147,-400086000,1),(147,-386780400,2),(147,-368636400,1),(147,-355330800,2),(147,-337186800,1),(147,-323881200,2),(147,-305737200,1),(147,-292431600,2),(147,-273682800,1),(147,-260982000,2),(147,-242233200,1),(147,-226508400,2),(147,-210783600,1),(147,-195058800,2),(147,-179334000,1),(147,-163609200,2),(147,-147884400,1),(147,-131554800,2),(147,-116434800,1),(147,-100105200,2),(147,-84376800,1),(147,-68655600,2),(147,-52927200,1),(147,-37206000,2),(147,-21477600,1),(147,-5756400,2),(147,9972000,1),(147,25693200,2),(147,41421600,1),(147,57747600,2),(147,73476000,1),(147,89197200,2),(147,104925600,1),(147,120646800,2),(147,126698400,1),(147,152096400,2),(147,162381600,1),(147,183546000,2),(147,199274400,1),(147,215600400,2),(147,230724000,1),(147,247050000,2),(147,262778400,1),(147,278499600,2),(147,294228000,1),(147,309949200,2),(147,325677600,1),(147,341398800,2),(147,357127200,1),(147,372848400,2),(147,388576800,1),(147,404902800,2),(147,420026400,1),(147,436352400,2),(147,452080800,1),(147,467802000,2),(147,483530400,1),(147,499251600,2),(147,514980000,1),(147,530701200,2),(147,544615200,1),(147,562150800,2),(147,576064800,1),(147,594205200,2),(147,607514400,1),(147,625654800,2),(147,638964000,1),(147,657104400,2),(147,671018400,1),(147,688554000,2),(147,702468000,1),(147,720003600,2),(147,733917600,1),(147,752058000,2),(147,765367200,1),(147,783507600,2),(147,796816800,1),(147,814957200,2),(147,828871200,1),(147,846406800,2),(147,860320800,1),(147,877856400,2),(147,891770400,1),(147,909306000,2),(147,923220000,1),(147,941360400,2),(147,954669600,1),(147,972810000,2),(147,986119200,1),(147,1004259600,2),(147,1018173600,1),(147,1035709200,2),(147,1049623200,1),(147,1067158800,2),(147,1081072800,1),(147,1099213200,2),(147,1112522400,1),(147,1130662800,2),(147,1143972000,1),(147,1162112400,2),(147,1173607200,1),(147,1194166800,2),(147,1205056800,1),(147,1225616400,2),(147,1236506400,1),(147,1257066000,2),(147,1268560800,1),(147,1289120400,2),(147,1300010400,1),(147,1320570000,2),(147,1331460000,1),(147,1352019600,2),(147,1362909600,1),(147,1383469200,2),(147,1394359200,1),(147,1414918800,2),(147,1425808800,1),(147,1446368400,2),(147,1457863200,1),(147,1478422800,2),(147,1489312800,1),(147,1509872400,2),(147,1520762400,1),(147,1541322000,2),(147,1552212000,1),(147,1572771600,2),(147,1583661600,1),(147,1604221200,2),(147,1615716000,1),(147,1636275600,2),(147,1647165600,1),(147,1667725200,2),(147,1678615200,1),(147,1699174800,2),(147,1710064800,1),(147,1730624400,2),(147,1741514400,1),(147,1762074000,2),(147,1772964000,1),(147,1793523600,2),(147,1805018400,1),(147,1825578000,2),(147,1836468000,1),(147,1857027600,2),(147,1867917600,1),(147,1888477200,2),(147,1899367200,1),(147,1919926800,2),(147,1930816800,1),(147,1951376400,2),(147,1962871200,1),(147,1983430800,2),(147,1994320800,1),(147,2014880400,2),(147,2025770400,1),(147,2046330000,2),(147,2057220000,1),(147,2077779600,2),(147,2088669600,1),(147,2109229200,2),(147,2120119200,1),(147,2140678800,2),(148,-2147483648,2),(148,-1633276800,1),(148,-1615136400,2),(148,-1601827200,1),(148,-1583686800,2),(148,-1535904000,1),(148,-1525280400,2),(148,-905097600,1),(148,-891795600,2),(148,-880214400,3),(148,-769395600,4),(148,-765392400,2),(148,-747251940,1),(148,-744224400,2),(148,-620841600,1),(148,-608144400,2),(148,-589392000,1),(148,-576090000,2),(148,-557942400,1),(148,-544640400,2),(148,-526492800,1),(148,-513190800,2),(148,-495043200,1),(148,-481741200,2),(148,-463593600,1),(148,-450291600,2),(148,-431539200,1),(148,-415818000,2),(148,-400089600,1),(148,-384368400,2),(148,-368640000,1),(148,-352918800,2),(148,-337190400,1),(148,-321469200,2),(148,-305740800,1),(148,-289414800,2),(148,-273686400,1),(148,-266432400,5),(148,-52938000,6),(148,-37216800,5),(148,-21488400,6),(148,-5767200,5),(148,9961200,6),(148,25682400,5),(148,41410800,6),(148,57736800,5),(148,73465200,6),(148,89186400,5),(148,104914800,6),(148,120636000,5),(148,126687600,1),(148,152089200,5),(148,162370800,6),(148,183535200,5),(148,199263600,6),(148,215589600,5),(148,230713200,6),(148,247039200,5),(148,262767600,6),(148,278488800,5),(148,294217200,6),(148,309938400,5),(148,325666800,6),(148,341388000,5),(148,357116400,6),(148,372837600,5),(148,388566000,6),(148,404892000,5),(148,420015600,6),(148,436341600,5),(148,452070000,6),(148,467791200,5),(148,483519600,6),(148,499240800,5),(148,514969200,6),(148,530690400,5),(148,544604400,6),(148,562140000,5),(148,576054000,6),(148,594194400,5),(148,607503600,6),(148,625644000,5),(148,638953200,6),(148,657093600,5),(148,671007600,6),(148,688543200,5),(148,702457200,6),(148,719992800,5),(148,733906800,6),(148,752047200,5),(148,765356400,6),(148,783496800,5),(148,796806000,6),(148,814946400,5),(148,828860400,6),(148,846396000,5),(148,860310000,6),(148,877845600,5),(148,891759600,6),(148,909295200,5),(148,923209200,6),(148,941349600,5),(148,954658800,6),(148,972799200,5),(148,986108400,6),(148,1004248800,5),(148,1018162800,6),(148,1035698400,5),(148,1049612400,6),(148,1067148000,5),(148,1081062000,6),(148,1099202400,5),(148,1112511600,6),(148,1130652000,5),(148,1143961200,6),(148,1162101600,5),(148,1173596400,6),(148,1194156000,5),(148,1205046000,6),(148,1225605600,5),(148,1236495600,6),(148,1257055200,5),(148,1268550000,6),(148,1289109600,5),(148,1299999600,6),(148,1320559200,5),(148,1331449200,6),(148,1352008800,5),(148,1362898800,6),(148,1383458400,5),(148,1394348400,6),(148,1414908000,5),(148,1425798000,6),(148,1446357600,5),(148,1457852400,6),(148,1478412000,5),(148,1489302000,6),(148,1509861600,5),(148,1520751600,6),(148,1541311200,5),(148,1552201200,6),(148,1572760800,5),(148,1583650800,6),(148,1604210400,5),(148,1615705200,6),(148,1636264800,5),(148,1647154800,6),(148,1667714400,5),(148,1678604400,6),(148,1699164000,5),(148,1710054000,6),(148,1730613600,5),(148,1741503600,6),(148,1762063200,5),(148,1772953200,6),(148,1793512800,5),(148,1805007600,6),(148,1825567200,5),(148,1836457200,6),(148,1857016800,5),(148,1867906800,6),(148,1888466400,5),(148,1899356400,6),(148,1919916000,5),(148,1930806000,6),(148,1951365600,5),(148,1962860400,6),(148,1983420000,5),(148,1994310000,6),(148,2014869600,5),(148,2025759600,6),(148,2046319200,5),(148,2057209200,6),(148,2077768800,5),(148,2088658800,6),(148,2109218400,5),(148,2120108400,6),(148,2140668000,5),(149,-2147483648,0),(149,-1826738653,1),(149,-157750200,2),(150,-2147483648,0),(150,-1767217028,2),(150,-1206957600,1),(150,-1191362400,2),(150,-1175374800,1),(150,-1159826400,2),(150,-633819600,1),(150,-622069200,2),(150,-602283600,1),(150,-591832800,2),(150,-570747600,1),(150,-560210400,2),(150,-539125200,1),(150,-531352800,2),(150,-191365200,1),(150,-184197600,2),(150,-155163600,1),(150,-150069600,2),(150,-128898000,1),(150,-121125600,2),(150,-99954000,1),(150,-89589600,2),(150,-68418000,1),(150,-57967200,2),(150,499748400,1),(150,511236000,2),(150,530593200,1),(150,540266400,2),(150,562129200,1),(150,571197600,2),(150,592974000,1),(150,602042400,2),(150,624423600,1),(150,634701600,2),(150,813726000,1),(150,824004000,2),(150,938919600,1),(150,951616800,2),(150,970974000,1),(150,972180000,2),(150,1003028400,1),(150,1013911200,2),(151,-2147483648,1),(151,-1121105688,2),(151,105084000,3),(151,161758800,2),(151,290584800,4),(151,299134800,2),(151,322034400,4),(151,330584400,2),(151,694260000,3),(151,717310800,2),(151,725868000,3),(151,852094800,2),(151,1113112800,4),(151,1128229200,2),(151,1146384000,4),(151,1159682400,2),(152,-2147483648,0),(152,-1767211196,2),(152,-1206954000,1),(152,-1191358800,2),(152,-1175371200,1),(152,-1159822800,2),(152,-633816000,1),(152,-622065600,2),(152,-602280000,1),(152,-591829200,2),(152,-570744000,1),(152,-560206800,2),(152,-539121600,1),(152,-531349200,2),(152,-191361600,1),(152,-184194000,2),(152,-155160000,1),(152,-150066000,2),(152,-128894400,1),(152,-121122000,2),(152,-99950400,1),(152,-89586000,2),(152,-68414400,1),(152,-57963600,2),(152,499752000,1),(152,511239600,2),(152,530596800,1),(152,540270000,2),(152,562132800,1),(152,571201200,2),(152,750830400,1),(152,761713200,2),(153,-2147483648,0),(153,-1825098836,1),(154,-2147483648,1),(154,-1851537340,2),(154,323841600,3),(154,338958000,2),(155,-2147483648,0),(155,-1514743200,1),(155,576057600,2),(155,594198000,1),(155,828864000,2),(155,846399600,1),(155,860313600,2),(155,877849200,1),(155,891763200,2),(155,909298800,1),(155,923212800,2),(155,941353200,1),(155,954662400,2),(155,972802800,1),(155,989136000,2),(155,1001833200,1),(155,1018166400,2),(155,1035702000,1),(155,1049616000,2),(155,1067151600,1),(155,1081065600,2),(155,1099206000,1),(155,1112515200,2),(155,1130655600,1),(155,1143964800,2),(155,1162105200,1),(155,1175414400,2),(155,1193554800,1),(155,1207468800,2),(155,1225004400,1),(155,1238918400,2),(155,1256454000,1),(155,1268553600,2),(155,1289113200,1),(155,1300003200,2),(155,1320562800,1),(155,1331452800,2),(155,1352012400,1),(155,1362902400,2),(155,1383462000,1),(155,1394352000,2),(155,1414911600,1),(155,1425801600,2),(155,1446361200,1),(155,1457856000,2),(155,1478415600,1),(155,1489305600,2),(155,1509865200,1),(155,1520755200,2),(155,1541314800,1),(155,1552204800,2),(155,1572764400,1),(155,1583654400,2),(155,1604214000,1),(155,1615708800,2),(155,1636268400,1),(155,1647158400,2),(155,1667718000,1),(155,1678608000,2),(155,1699167600,1),(155,1710057600,2),(155,1730617200,1),(155,1741507200,2),(155,1762066800,1),(155,1772956800,2),(155,1793516400,1),(155,1805011200,2),(155,1825570800,1),(155,1836460800,2),(155,1857020400,1),(155,1867910400,2),(155,1888470000,1),(155,1899360000,2),(155,1919919600,1),(155,1930809600,2),(155,1951369200,1),(155,1962864000,2),(155,1983423600,1),(155,1994313600,2),(155,2014873200,1),(155,2025763200,2),(155,2046322800,1),(155,2057212800,2),(155,2077772400,1),(155,2088662400,2),(155,2109222000,1),(155,2120112000,2),(155,2140671600,1),(156,-2147483648,0),(156,-1514739600,1),(156,-1343066400,2),(156,-1234807200,1),(156,-1220292000,2),(156,-1207159200,1),(156,-1191344400,2),(156,-873828000,1),(156,-661539600,3),(156,28800,1),(156,828867600,4),(156,846403200,1),(156,860317200,4),(156,877852800,1),(156,891766800,4),(156,909302400,1),(156,923216400,4),(156,941356800,1),(156,954666000,4),(156,972806400,1),(156,989139600,4),(156,1001836800,1),(156,1018170000,4),(156,1035705600,1),(156,1049619600,4),(156,1067155200,1),(156,1081069200,4),(156,1099209600,1),(156,1112518800,4),(156,1130659200,1),(156,1143968400,4),(156,1162108800,1),(156,1175418000,4),(156,1193558400,1),(156,1207472400,4),(156,1225008000,1),(156,1238922000,4),(156,1256457600,1),(156,1270371600,4),(156,1288512000,1),(156,1301821200,4),(156,1319961600,1),(156,1333270800,4),(156,1351411200,1),(156,1365325200,4),(156,1382860800,1),(156,1396774800,4),(156,1414310400,1),(156,1428224400,4),(156,1445760000,1),(156,1459674000,4),(156,1477814400,1),(156,1491123600,4),(156,1509264000,1),(156,1522573200,4),(156,1540713600,1),(156,1554627600,4),(156,1572163200,1),(156,1586077200,4),(156,1603612800,1),(156,1617526800,4),(156,1635667200,1),(156,1648976400,4),(156,1667116800,1),(156,1680426000,4),(156,1698566400,1),(156,1712480400,4),(156,1730016000,1),(156,1743930000,4),(156,1761465600,1),(156,1775379600,4),(156,1792915200,1),(156,1806829200,4),(156,1824969600,1),(156,1838278800,4),(156,1856419200,1),(156,1869728400,4),(156,1887868800,1),(156,1901782800,4),(156,1919318400,1),(156,1933232400,4),(156,1950768000,1),(156,1964682000,4),(156,1982822400,1),(156,1996131600,4),(156,2014272000,1),(156,2027581200,4),(156,2045721600,1),(156,2059030800,4),(156,2077171200,1),(156,2091085200,4),(156,2108620800,1),(156,2122534800,4),(156,2140070400,1),(157,-2147483648,1),(157,-1567453392,2),(157,-1233432000,3),(157,-1222981200,2),(157,-1205956800,3),(157,-1194037200,2),(157,-1172865600,3),(157,-1162501200,2),(157,-1141329600,3),(157,-1130965200,2),(157,-1109793600,3),(157,-1099429200,2),(157,-1078257600,3),(157,-1067806800,2),(157,-1046635200,3),(157,-1036270800,2),(157,-1015099200,3),(157,-1004734800,2),(157,-983563200,3),(157,-973198800,2),(157,-952027200,3),(157,-941576400,2),(157,-931032000,3),(157,-900882000,2),(157,-890337600,3),(157,-833749200,2),(157,-827265600,3),(157,-752274000,2),(157,-733780800,3),(157,-197326800,2),(157,-190843200,3),(157,-184194000,2),(157,-164491200,3),(157,-152658000,2),(157,-132955200,3),(157,-121122000,2),(157,-101419200,3),(157,-86821200,2),(157,-71092800,3),(157,-54766800,2),(157,-39038400,3),(157,-23317200,2),(157,-7588800,5),(157,128142000,4),(157,136605600,5),(157,596948400,4),(157,605066400,5),(157,624423600,4),(157,636516000,2),(157,655963200,3),(157,667796400,2),(157,687499200,3),(157,699418800,2),(157,719380800,4),(157,731469600,5),(157,938919600,3),(157,952052400,5),(157,1085281200,2),(157,1096171200,5),(157,1198983600,4),(157,1205632800,5),(158,-2147483648,2),(158,-1633276800,1),(158,-1615136400,2),(158,-1601827200,1),(158,-1583686800,2),(158,-880214400,3),(158,-769395600,4),(158,-765392400,2),(158,-747244800,1),(158,-733942800,2),(158,-116438400,1),(158,-100112400,2),(158,-21484800,5),(158,104914800,1),(158,120639600,2),(158,126691200,1),(158,152089200,2),(158,162374400,1),(158,183538800,2),(158,199267200,1),(158,215593200,2),(158,230716800,1),(158,247042800,2),(158,262771200,1),(158,278492400,2),(158,294220800,1),(158,309942000,2),(158,325670400,1),(158,341391600,2),(158,357120000,1),(158,372841200,2),(158,388569600,1),(158,404895600,2),(158,420019200,1),(158,436345200,2),(158,452073600,1),(158,467794800,2),(158,483523200,1),(158,499244400,2),(158,514972800,1),(158,530694000,2),(158,544608000,1),(158,562143600,2),(158,576057600,1),(158,594198000,2),(158,607507200,1),(158,625647600,2),(158,638956800,1),(158,657097200,2),(158,671011200,1),(158,688546800,2),(158,702460800,1),(158,719996400,2),(158,733910400,1),(158,752050800,2),(158,765360000,1),(158,783500400,2),(158,796809600,1),(158,814950000,2),(158,828864000,1),(158,846399600,2),(158,860313600,1),(158,877849200,2),(158,891763200,1),(158,909298800,2),(158,923212800,1),(158,941353200,2),(158,954662400,1),(158,972802800,2),(158,986112000,1),(158,1004252400,2),(158,1018166400,1),(158,1035702000,2),(158,1049616000,1),(158,1067151600,2),(158,1081065600,1),(158,1099206000,2),(158,1112515200,1),(158,1130655600,2),(158,1143964800,1),(158,1162105200,2),(158,1173600000,1),(158,1194159600,2),(158,1205049600,1),(158,1225609200,2),(158,1236499200,1),(158,1257058800,2),(158,1268553600,1),(158,1289113200,2),(158,1300003200,1),(158,1320562800,2),(158,1331452800,1),(158,1352012400,2),(158,1362902400,1),(158,1383462000,2),(158,1394352000,1),(158,1414911600,2),(158,1425801600,1),(158,1446361200,2),(158,1457856000,1),(158,1478415600,2),(158,1489305600,1),(158,1509865200,2),(158,1520755200,1),(158,1541314800,2),(158,1552204800,1),(158,1572764400,2),(158,1583654400,1),(158,1604214000,2),(158,1615708800,1),(158,1636268400,2),(158,1647158400,1),(158,1667718000,2),(158,1678608000,1),(158,1699167600,2),(158,1710057600,1),(158,1730617200,2),(158,1741507200,1),(158,1762066800,2),(158,1772956800,1),(158,1793516400,2),(158,1805011200,1),(158,1825570800,2),(158,1836460800,1),(158,1857020400,2),(158,1867910400,1),(158,1888470000,2),(158,1899360000,1),(158,1919919600,2),(158,1930809600,1),(158,1951369200,2),(158,1962864000,1),(158,1983423600,2),(158,1994313600,1),(158,2014873200,2),(158,2025763200,1),(158,2046322800,2),(158,2057212800,1),(158,2077772400,2),(158,2088662400,1),(158,2109222000,2),(158,2120112000,1),(158,2140671600,2),(159,-2147483648,0),(159,-1514743200,1),(159,377935200,2),(159,407653200,1),(159,828864000,3),(159,846399600,1),(159,860313600,3),(159,877849200,1),(159,891763200,3),(159,909298800,1),(159,923212800,3),(159,941353200,1),(159,954662400,3),(159,972802800,1),(159,989136000,3),(159,1001833200,1),(159,1018166400,3),(159,1035702000,1),(159,1049616000,3),(159,1067151600,1),(159,1081065600,3),(159,1099206000,1),(159,1112515200,3),(159,1130655600,1),(159,1143964800,3),(159,1162105200,1),(159,1175414400,3),(159,1193554800,1),(159,1207468800,3),(159,1225004400,1),(159,1238918400,3),(159,1256454000,1),(159,1270368000,3),(159,1288508400,1),(159,1301817600,3),(159,1319958000,1),(159,1333267200,3),(159,1351407600,1),(159,1365321600,3),(159,1382857200,1),(159,1396771200,3),(159,1414306800,1),(159,1428220800,3),(159,1445756400,1),(159,1459670400,3),(159,1477810800,1),(159,1491120000,3),(159,1509260400,1),(159,1522569600,3),(159,1540710000,1),(159,1554624000,3),(159,1572159600,1),(159,1586073600,3),(159,1603609200,1),(159,1617523200,3),(159,1635663600,1),(159,1648972800,3),(159,1667113200,1),(159,1680422400,3),(159,1698562800,1),(159,1712476800,3),(159,1730012400,1),(159,1743926400,3),(159,1761462000,1),(159,1775376000,3),(159,1792911600,1),(159,1806825600,3),(159,1824966000,1),(159,1838275200,3),(159,1856415600,1),(159,1869724800,3),(159,1887865200,1),(159,1901779200,3),(159,1919314800,1),(159,1933228800,3),(159,1950764400,1),(159,1964678400,3),(159,1982818800,1),(159,1996128000,3),(159,2014268400,1),(159,2027577600,3),(159,2045718000,1),(159,2059027200,3),(159,2077167600,1),(159,2091081600,3),(159,2108617200,1),(159,2122531200,3),(159,2140066800,1),(160,-2147483648,1),(160,-880207200,2),(160,-769395600,3),(160,-765385200,1),(160,-21477600,4),(160,-5756400,1),(160,9972000,4),(160,25693200,1),(160,41421600,4),(160,57747600,1),(160,73476000,4),(160,89197200,1),(160,104925600,4),(160,120646800,1),(160,126698400,4),(160,152096400,1),(160,162381600,4),(160,183546000,1),(160,199274400,4),(160,215600400,1),(160,230724000,4),(160,247050000,1),(160,262778400,4),(160,278499600,1),(160,294228000,4),(160,309949200,1),(160,325677600,4),(160,341398800,1),(160,357127200,4),(160,372848400,1),(160,388576800,4),(160,404902800,1),(160,420026400,4),(160,436352400,1),(160,1446372000,5),(160,1457866800,6),(160,1478426400,5),(160,1489316400,6),(160,1509876000,5),(160,1520766000,6),(160,1541325600,1),(160,1547978400,5),(160,1552215600,6),(160,1572775200,5),(160,1583665200,6),(160,1604224800,5),(160,1615719600,6),(160,1636279200,5),(160,1647169200,6),(160,1667728800,5),(160,1678618800,6),(160,1699178400,5),(160,1710068400,6),(160,1730628000,5),(160,1741518000,6),(160,1762077600,5),(160,1772967600,6),(160,1793527200,5),(160,1805022000,6),(160,1825581600,5),(160,1836471600,6),(160,1857031200,5),(160,1867921200,6),(160,1888480800,5),(160,1899370800,6),(160,1919930400,5),(160,1930820400,6),(160,1951380000,5),(160,1962874800,6),(160,1983434400,5),(160,1994324400,6),(160,2014884000,5),(160,2025774000,6),(160,2046333600,5),(160,2057223600,6),(160,2077783200,5),(160,2088673200,6),(160,2109232800,5),(160,2120122800,6),(160,2140682400,5),(161,-2147483648,0),(161,-1514739600,1),(161,-1343066400,2),(161,-1234807200,1),(161,-1220292000,2),(161,-1207159200,1),(161,-1191344400,2),(161,-975261600,3),(161,-963169200,2),(161,-917114400,3),(161,-907354800,2),(161,-821901600,4),(161,-810068400,2),(161,-627501600,3),(161,-612990000,2),(161,828864000,3),(161,846399600,2),(161,860313600,3),(161,877849200,2),(161,891763200,3),(161,909298800,2),(161,923212800,3),(161,941353200,2),(161,954662400,3),(161,972802800,2),(161,989136000,3),(161,1001833200,2),(161,1018166400,3),(161,1035702000,2),(161,1049616000,3),(161,1067151600,2),(161,1081065600,3),(161,1099206000,2),(161,1112515200,3),(161,1130655600,2),(161,1143964800,3),(161,1162105200,2),(161,1175414400,3),(161,1193554800,2),(161,1207468800,3),(161,1225004400,2),(161,1238918400,3),(161,1256454000,2),(161,1270368000,3),(161,1288508400,2),(161,1301817600,3),(161,1319958000,2),(161,1333267200,3),(161,1351407600,2),(161,1365321600,3),(161,1382857200,2),(161,1396771200,3),(161,1414306800,2),(161,1428220800,3),(161,1445756400,2),(161,1459670400,3),(161,1477810800,2),(161,1491120000,3),(161,1509260400,2),(161,1522569600,3),(161,1540710000,2),(161,1554624000,3),(161,1572159600,2),(161,1586073600,3),(161,1603609200,2),(161,1617523200,3),(161,1635663600,2),(161,1648972800,3),(161,1667113200,2),(161,1680422400,3),(161,1698562800,2),(161,1712476800,3),(161,1730012400,2),(161,1743926400,3),(161,1761462000,2),(161,1775376000,3),(161,1792911600,2),(161,1806825600,3),(161,1824966000,2),(161,1838275200,3),(161,1856415600,2),(161,1869724800,3),(161,1887865200,2),(161,1901779200,3),(161,1919314800,2),(161,1933228800,3),(161,1950764400,2),(161,1964678400,3),(161,1982818800,2),(161,1996128000,3),(161,2014268400,2),(161,2027577600,3),(161,2045718000,2),(161,2059027200,3),(161,2077167600,2),(161,2091081600,3),(161,2108617200,2),(161,2122531200,3),(161,2140066800,2),(162,-2147483648,0),(162,-1850328920,1),(162,326001600,2),(162,544597200,3),(162,562132800,2),(162,576046800,3),(162,594187200,2),(162,607496400,3),(162,625636800,2),(162,638946000,3),(162,657086400,2),(162,671000400,3),(162,688536000,2),(162,702450000,3),(162,719985600,2),(162,733899600,3),(162,752040000,2),(162,765349200,3),(162,783489600,2),(162,796798800,3),(162,814939200,2),(162,828853200,3),(162,846388800,2),(162,860302800,3),(162,877838400,2),(162,891752400,3),(162,909288000,2),(162,923202000,3),(162,941342400,2),(162,954651600,3),(162,972792000,2),(162,986101200,3),(162,1004241600,2),(162,1018155600,3),(162,1035691200,2),(162,1049605200,3),(162,1067140800,2),(162,1081054800,3),(162,1099195200,2),(162,1112504400,3),(162,1130644800,2),(162,1143954000,3),(162,1162094400,2),(162,1173589200,3),(162,1194148800,2),(162,1205038800,3),(162,1225598400,2),(162,1236488400,3),(162,1257048000,2),(162,1268542800,3),(162,1289102400,2),(162,1299992400,3),(162,1320552000,2),(162,1331442000,3),(162,1352001600,2),(162,1362891600,3),(162,1383451200,2),(162,1394341200,3),(162,1414900800,2),(162,1425790800,3),(162,1446350400,2),(162,1457845200,3),(162,1478404800,2),(162,1489294800,3),(162,1509854400,2),(162,1520744400,3),(162,1541304000,2),(162,1552194000,3),(162,1572753600,2),(162,1583643600,3),(162,1604203200,2),(162,1615698000,3),(162,1636257600,2),(162,1647147600,3),(162,1667707200,2),(162,1678597200,3),(162,1699156800,2),(162,1710046800,3),(162,1730606400,2),(162,1741496400,3),(162,1762056000,2),(162,1772946000,3),(162,1793505600,2),(162,1805000400,3),(162,1825560000,2),(162,1836450000,3),(162,1857009600,2),(162,1867899600,3),(162,1888459200,2),(162,1899349200,3),(162,1919908800,2),(162,1930798800,3),(162,1951358400,2),(162,1962853200,3),(162,1983412800,2),(162,1994302800,3),(162,2014862400,2),(162,2025752400,3),(162,2046312000,2),(162,2057202000,3),(162,2077761600,2),(162,2088651600,3),(162,2109211200,2),(162,2120101200,3),(162,2140660800,2),(163,-2147483648,1),(163,-2131642800,3),(163,-1632074400,2),(163,-1615143600,3),(163,-1153681200,2),(163,-1145822400,3),(163,-1122231600,2),(163,-1114372800,3),(163,-1090782000,2),(163,-1082923200,3),(163,-1059332400,2),(163,-1051473600,3),(163,-1027882800,2),(163,-1020024000,3),(163,-996433200,2),(163,-988574400,3),(163,-965674800,2),(163,-955396800,3),(163,-934743600,2),(163,-923947200,3),(163,-904503600,2),(163,-891892800,3),(163,-880221600,4),(163,-769395600,5),(163,-765399600,3),(163,-747252000,2),(163,-733950000,3),(163,-715802400,2),(163,-702500400,3),(163,-684352800,2),(163,-671050800,3),(163,-652903200,2),(163,-639601200,3),(163,-620848800,2),(163,-608151600,3),(163,-589399200,2),(163,-576097200,3),(163,-557949600,2),(163,-544647600,3),(163,-526500000,2),(163,-513198000,3),(163,-495050400,2),(163,-481748400,3),(163,-463600800,2),(163,-450298800,3),(163,-431546400,2),(163,-418244400,3),(163,-400096800,2),(163,-384375600,3),(163,-368647200,2),(163,-352926000,3),(163,-337197600,2),(163,-321476400,3),(163,-305748000,2),(163,-289422000,3),(163,-273693600,2),(163,-257972400,3),(163,-242244000,2),(163,-226522800,3),(163,-210794400,2),(163,-195073200,3),(163,-179344800,2),(163,-163623600,3),(163,-147895200,2),(163,-131569200,3),(163,-116445600,2),(163,-100119600,3),(163,-84391200,2),(163,-68670000,3),(163,-52941600,2),(163,-37220400,3),(163,-21492000,2),(163,-5770800,3),(163,9957600,2),(163,25678800,3),(163,41407200,2),(163,57733200,3),(163,73461600,2),(163,89182800,3),(163,136360800,2),(163,152082000,3),(163,167810400,2),(163,183531600,3),(163,199260000,2),(163,215586000,3),(163,230709600,2),(163,247035600,3),(163,262764000,2),(163,278485200,3),(163,294213600,2),(163,309934800,3),(163,325663200,2),(163,341384400,3),(163,357112800,2),(163,372834000,3),(163,388562400,2),(163,404888400,3),(163,420012000,2),(163,436338000,3),(163,452066400,2),(163,467787600,3),(163,483516000,2),(163,499237200,3),(163,514965600,2),(163,530686800,3),(163,544600800,2),(163,562136400,3),(163,576050400,2),(163,594190800,3),(163,607500000,2),(163,625640400,3),(163,638949600,2),(163,657090000,3),(163,671004000,2),(163,688539600,3),(163,702453600,2),(163,719989200,3),(163,733896060,2),(163,752036460,3),(163,765345660,2),(163,783486060,3),(163,796795260,2),(163,814935660,3),(163,828849660,2),(163,846385260,3),(163,860299260,2),(163,877834860,3),(163,891748860,2),(163,909284460,3),(163,923198460,2),(163,941338860,3),(163,954648060,2),(163,972788460,3),(163,986097660,2),(163,1004238060,3),(163,1018152060,2),(163,1035687660,3),(163,1049601660,2),(163,1067137260,3),(163,1081051260,2),(163,1099191660,3),(163,1112500860,2),(163,1130641260,3),(163,1143950460,2),(163,1162090860,3),(163,1173592800,2),(163,1194152400,3),(163,1205042400,2),(163,1225602000,3),(163,1236492000,2),(163,1257051600,3),(163,1268546400,2),(163,1289106000,3),(163,1299996000,2),(163,1320555600,3),(163,1331445600,2),(163,1352005200,3),(163,1362895200,2),(163,1383454800,3),(163,1394344800,2),(163,1414904400,3),(163,1425794400,2),(163,1446354000,3),(163,1457848800,2),(163,1478408400,3),(163,1489298400,2),(163,1509858000,3),(163,1520748000,2),(163,1541307600,3),(163,1552197600,2),(163,1572757200,3),(163,1583647200,2),(163,1604206800,3),(163,1615701600,2),(163,1636261200,3),(163,1647151200,2),(163,1667710800,3),(163,1678600800,2),(163,1699160400,3),(163,1710050400,2),(163,1730610000,3),(163,1741500000,2),(163,1762059600,3),(163,1772949600,2),(163,1793509200,3),(163,1805004000,2),(163,1825563600,3),(163,1836453600,2),(163,1857013200,3),(163,1867903200,2),(163,1888462800,3),(163,1899352800,2),(163,1919912400,3),(163,1930802400,2),(163,1951362000,3),(163,1962856800,2),(163,1983416400,3),(163,1994306400,2),(163,2014866000,3),(163,2025756000,2),(163,2046315600,3),(163,2057205600,2),(163,2077765200,3),(163,2088655200,2),(163,2109214800,3),(163,2120104800,2),(163,2140664400,3),(164,-2147483648,0),(164,-1514743200,1),(164,576057600,2),(164,594198000,1),(164,828864000,2),(164,846399600,1),(164,860313600,2),(164,877849200,1),(164,891763200,2),(164,909298800,1),(164,923212800,2),(164,941353200,1),(164,954662400,2),(164,972802800,1),(164,989136000,2),(164,1001833200,1),(164,1018166400,2),(164,1035702000,1),(164,1049616000,2),(164,1067151600,1),(164,1081065600,2),(164,1099206000,1),(164,1112515200,2),(164,1130655600,1),(164,1143964800,2),(164,1162105200,1),(164,1175414400,2),(164,1193554800,1),(164,1207468800,2),(164,1225004400,1),(164,1238918400,2),(164,1256454000,1),(164,1270368000,2),(164,1288508400,1),(164,1301817600,2),(164,1319958000,1),(164,1333267200,2),(164,1351407600,1),(164,1365321600,2),(164,1382857200,1),(164,1396771200,2),(164,1414306800,1),(164,1428220800,2),(164,1445756400,1),(164,1459670400,2),(164,1477810800,1),(164,1491120000,2),(164,1509260400,1),(164,1522569600,2),(164,1540710000,1),(164,1554624000,2),(164,1572159600,1),(164,1586073600,2),(164,1603609200,1),(164,1617523200,2),(164,1635663600,1),(164,1648972800,2),(164,1667113200,1),(164,1680422400,2),(164,1698562800,1),(164,1712476800,2),(164,1730012400,1),(164,1743926400,2),(164,1761462000,1),(164,1775376000,2),(164,1792911600,1),(164,1806825600,2),(164,1824966000,1),(164,1838275200,2),(164,1856415600,1),(164,1869724800,2),(164,1887865200,1),(164,1901779200,2),(164,1919314800,1),(164,1933228800,2),(164,1950764400,1),(164,1964678400,2),(164,1982818800,1),(164,1996128000,2),(164,2014268400,1),(164,2027577600,2),(164,2045718000,1),(164,2059027200,2),(164,2077167600,1),(164,2091081600,2),(164,2108617200,1),(164,2122531200,2),(164,2140066800,1),(165,-2147483648,0),(165,-1942690509,1),(165,-1567455309,2),(165,-1459627200,4),(165,-1443819600,3),(165,-1428006600,4),(165,-1412283600,3),(165,-1396470600,4),(165,-1380747600,3),(165,-1141590600,4),(165,-1128286800,3),(165,-1110141000,4),(165,-1096837200,3),(165,-1078691400,4),(165,-1065387600,3),(165,-1047241800,4),(165,-1033938000,3),(165,-1015187400,4),(165,-1002488400,3),(165,-983737800,4),(165,-971038800,3),(165,-954707400,4),(165,-938984400,3),(165,-920838600,4),(165,-907534800,3),(165,-896819400,4),(165,-853621200,6),(165,-845847000,5),(165,-334789200,6),(165,-319671000,5),(165,-314226000,7),(165,-309996000,5),(165,-149720400,7),(165,-134604000,5),(165,-50446800,6),(165,-34205400,5),(165,9860400,7),(165,14176800,5),(165,72846000,7),(165,80100000,5),(165,127278000,8),(165,132111000,6),(165,147234600,5),(165,156913200,7),(165,165376800,5),(165,219812400,7),(165,226461600,5),(165,250052400,7),(165,257911200,5),(165,282711600,7),(165,289360800,5),(165,294202800,7),(165,322020000,5),(165,566449200,7),(165,573012000,5),(165,597812400,7),(165,605066400,5),(165,625633200,7),(165,635911200,5),(165,656478000,7),(165,667965600,5),(165,688532400,7),(165,699415200,5),(165,719377200,7),(165,730864800,5),(165,1095562800,7),(165,1111896000,5),(165,1128834000,7),(165,1142136000,5),(165,1159678800,7),(165,1173585600,5),(165,1191733200,7),(165,1205035200,5),(165,1223182800,7),(165,1236484800,5),(165,1254632400,7),(165,1268539200,5),(165,1286082000,7),(165,1299988800,5),(165,1317531600,7),(165,1331438400,5),(165,1349586000,7),(165,1362888000,5),(165,1381035600,7),(165,1394337600,5),(165,1412485200,7),(165,1425787200,5),(166,-2147483648,2),(166,-1632070800,1),(166,-1615140000,2),(166,-1601753400,1),(166,-1583697600,2),(166,-1567357200,1),(166,-1554667200,2),(166,-1534698000,1),(166,-1524074400,2),(166,-1503248400,1),(166,-1492365600,2),(166,-1471798800,1),(166,-1460916000,2),(166,-1440954000,1),(166,-1428861600,2),(166,-1409504400,1),(166,-1397412000,2),(166,-1378054800,1),(166,-1365962400,2),(166,-1346605200,1),(166,-1333908000,2),(166,-1315155600,1),(166,-1301853600,2),(166,-1283706000,1),(166,-1270404000,2),(166,-1252256400,1),(166,-1238954400,2),(166,-1220806800,1),(166,-1207504800,2),(166,-1188752400,1),(166,-1176055200,2),(166,-1157302800,1),(166,-1144000800,2),(166,-1125853200,1),(166,-1112551200,2),(166,-1094403600,1),(166,-1081101600,2),(166,-1062954000,1),(166,-1049652000,2),(166,-1031504400,1),(166,-1018202400,2),(166,-1000054800,1),(166,-986752800,2),(166,-968000400,1),(166,-955303200,2),(166,-936550800,1),(166,-880218000,3),(166,-769395600,4),(166,-765396000,2),(166,-747248400,1),(166,-733946400,2),(166,-715806000,1),(166,-702504000,2),(166,-684356400,1),(166,-671054400,2),(166,-652906800,1),(166,-634161600,2),(166,-620845200,1),(166,-602704800,2),(166,-589395600,1),(166,-576093600,2),(166,-557946000,1),(166,-544644000,2),(166,-526496400,1),(166,-513194400,2),(166,-495046800,1),(166,-481744800,2),(166,-463597200,1),(166,-450295200,2),(166,-431542800,1),(166,-418240800,2),(166,-400093200,1),(166,-384372000,2),(166,-368643600,1),(166,-352922400,2),(166,-337194000,1),(166,-321472800,2),(166,-305744400,1),(166,-289418400,2),(166,-273690000,1),(166,-257968800,2),(166,-242240400,1),(166,-226519200,2),(166,-210790800,1),(166,-195069600,2),(166,-179341200,1),(166,-163620000,2),(166,-147891600,1),(166,-131565600,2),(166,-116442000,1),(166,-100116000,2),(166,-84387600,1),(166,-68666400,2),(166,-52938000,1),(166,-37216800,2),(166,-21488400,1),(166,-5767200,2),(166,9961200,1),(166,25682400,2),(166,41410800,1),(166,57736800,2),(166,73465200,1),(166,89186400,2),(166,104914800,1),(166,120636000,2),(166,136364400,1),(166,152085600,2),(166,167814000,1),(166,183535200,2),(166,199263600,1),(166,215589600,2),(166,230713200,1),(166,247039200,2),(166,262767600,1),(166,278488800,2),(166,294217200,1),(166,309938400,2),(166,325666800,1),(166,341388000,2),(166,357116400,1),(166,372837600,2),(166,388566000,1),(166,404892000,2),(166,420015600,1),(166,436341600,2),(166,452070000,1),(166,467791200,2),(166,483519600,1),(166,499240800,2),(166,514969200,1),(166,530690400,2),(166,544604400,1),(166,562140000,2),(166,576054000,1),(166,594194400,2),(166,607503600,1),(166,625644000,2),(166,638953200,1),(166,657093600,2),(166,671007600,1),(166,688543200,2),(166,702457200,1),(166,719992800,2),(166,733906800,1),(166,752047200,2),(166,765356400,1),(166,783496800,2),(166,796806000,1),(166,814946400,2),(166,828860400,1),(166,846396000,2),(166,860310000,1),(166,877845600,2),(166,891759600,1),(166,909295200,2),(166,923209200,1),(166,941349600,2),(166,954658800,1),(166,972799200,2),(166,986108400,1),(166,1004248800,2),(166,1018162800,1),(166,1035698400,2),(166,1049612400,1),(166,1067148000,2),(166,1081062000,1),(166,1099202400,2),(166,1112511600,1),(166,1130652000,2),(166,1143961200,1),(166,1162101600,2),(166,1173596400,1),(166,1194156000,2),(166,1205046000,1),(166,1225605600,2),(166,1236495600,1),(166,1257055200,2),(166,1268550000,1),(166,1289109600,2),(166,1299999600,1),(166,1320559200,2),(166,1331449200,1),(166,1352008800,2),(166,1362898800,1),(166,1383458400,2),(166,1394348400,1),(166,1414908000,2),(166,1425798000,1),(166,1446357600,2),(166,1457852400,1),(166,1478412000,2),(166,1489302000,1),(166,1509861600,2),(166,1520751600,1),(166,1541311200,2),(166,1552201200,1),(166,1572760800,2),(166,1583650800,1),(166,1604210400,2),(166,1615705200,1),(166,1636264800,2),(166,1647154800,1),(166,1667714400,2),(166,1678604400,1),(166,1699164000,2),(166,1710054000,1),(166,1730613600,2),(166,1741503600,1),(166,1762063200,2),(166,1772953200,1),(166,1793512800,2),(166,1805007600,1),(166,1825567200,2),(166,1836457200,1),(166,1857016800,2),(166,1867906800,1),(166,1888466400,2),(166,1899356400,1),(166,1919916000,2),(166,1930806000,1),(166,1951365600,2),(166,1962860400,1),(166,1983420000,2),(166,1994310000,1),(166,2014869600,2),(166,2025759600,1),(166,2046319200,2),(166,2057209200,1),(166,2077768800,2),(166,2088658800,1),(166,2109218400,2),(166,2120108400,1),(166,2140668000,2),(167,-2147483648,0),(167,-1825098836,1),(168,-2147483648,0),(168,-1825095030,2),(168,-179341200,1),(168,-163620000,2),(168,-147891600,1),(168,-131565600,2),(168,-116442000,1),(168,-100116000,2),(168,-84387600,1),(168,-68666400,2),(168,-52938000,1),(168,-37216800,2),(168,-21488400,1),(168,-5767200,2),(168,9961200,1),(168,25682400,2),(168,41410800,1),(168,57736800,2),(168,73465200,1),(168,89186400,2),(168,104914800,1),(168,120636000,2),(168,136364400,1),(168,152085600,2),(168,167814000,1),(168,183535200,2),(168,199263600,1),(168,215589600,2),(168,230713200,1),(168,247039200,2),(168,262767600,1),(168,278488800,2),(168,294217200,1),(168,309938400,2),(168,325666800,1),(168,341388000,2),(168,357116400,1),(168,372837600,2),(168,388566000,1),(168,404892000,2),(168,420015600,1),(168,436341600,2),(168,452070000,1),(168,467791200,2),(168,483519600,1),(168,499240800,2),(168,514969200,1),(168,530690400,2),(168,544604400,1),(168,562140000,2),(168,576054000,1),(168,594194400,2),(168,607503600,1),(168,625644000,2),(168,638953200,1),(168,657093600,2),(168,671007600,1),(168,688543200,2),(168,702457200,1),(168,719992800,2),(168,733906800,1),(168,752047200,2),(168,765356400,1),(168,783496800,2),(168,796806000,1),(168,814946400,2),(168,828860400,1),(168,846396000,2),(168,860310000,1),(168,877845600,2),(168,891759600,1),(168,909295200,2),(168,923209200,1),(168,941349600,2),(168,954658800,1),(168,972799200,2),(168,986108400,1),(168,1004248800,2),(168,1018162800,1),(168,1035698400,2),(168,1049612400,1),(168,1067148000,2),(168,1081062000,1),(168,1099202400,2),(168,1112511600,1),(168,1130652000,2),(168,1143961200,1),(168,1162101600,2),(168,1173596400,1),(168,1194156000,2),(168,1205046000,1),(168,1225605600,2),(168,1236495600,1),(168,1257055200,2),(168,1268550000,1),(168,1289109600,2),(168,1299999600,1),(168,1320559200,2),(168,1331449200,1),(168,1352008800,2),(168,1362898800,1),(168,1383458400,2),(168,1394348400,1),(168,1414908000,2),(168,1425798000,1),(168,1446357600,2),(168,1457852400,1),(168,1478412000,2),(168,1489302000,1),(168,1509861600,2),(168,1520751600,1),(168,1541311200,2),(168,1552201200,1),(168,1572760800,2),(168,1583650800,1),(168,1604210400,2),(168,1615705200,1),(168,1636264800,2),(168,1647154800,1),(168,1667714400,2),(168,1678604400,1),(168,1699164000,2),(168,1710054000,1),(168,1730613600,2),(168,1741503600,1),(168,1762063200,2),(168,1772953200,1),(168,1793512800,2),(168,1805007600,1),(168,1825567200,2),(168,1836457200,1),(168,1857016800,2),(168,1867906800,1),(168,1888466400,2),(168,1899356400,1),(168,1919916000,2),(168,1930806000,1),(168,1951365600,2),(168,1962860400,1),(168,1983420000,2),(168,1994310000,1),(168,2014869600,2),(168,2025759600,1),(168,2046319200,2),(168,2057209200,1),(168,2077768800,2),(168,2088658800,1),(168,2109218400,2),(168,2120108400,1),(168,2140668000,2),(169,-2147483648,2),(169,-1633280400,1),(169,-1615140000,2),(169,-1601830800,1),(169,-1583690400,2),(169,-1570381200,1),(169,-1551636000,2),(169,-1536512400,1),(169,-1523210400,2),(169,-1504458000,1),(169,-1491760800,2),(169,-1473008400,1),(169,-1459706400,2),(169,-1441558800,1),(169,-1428256800,2),(169,-1410109200,1),(169,-1396807200,2),(169,-1378659600,1),(169,-1365357600,2),(169,-1347210000,1),(169,-1333908000,2),(169,-1315155600,1),(169,-1301853600,2),(169,-1283706000,1),(169,-1270404000,2),(169,-1252256400,1),(169,-1238954400,2),(169,-1220806800,1),(169,-1207504800,2),(169,-1189357200,1),(169,-1176055200,2),(169,-1157302800,1),(169,-1144605600,2),(169,-1125853200,1),(169,-1112551200,2),(169,-1094403600,1),(169,-1081101600,2),(169,-1062954000,1),(169,-1049652000,2),(169,-1031504400,1),(169,-1018202400,2),(169,-1000054800,1),(169,-986752800,2),(169,-968000400,1),(169,-955303200,2),(169,-936550800,1),(169,-923248800,2),(169,-905101200,1),(169,-891799200,2),(169,-880218000,3),(169,-769395600,4),(169,-765396000,2),(169,-747248400,1),(169,-733946400,2),(169,-715798800,1),(169,-702496800,2),(169,-684349200,1),(169,-671047200,2),(169,-652899600,1),(169,-639597600,2),(169,-620845200,1),(169,-608148000,2),(169,-589395600,1),(169,-576093600,2),(169,-557946000,1),(169,-544644000,2),(169,-526496400,1),(169,-513194400,2),(169,-495046800,1),(169,-481744800,2),(169,-463597200,1),(169,-447271200,2),(169,-431542800,1),(169,-415821600,2),(169,-400093200,1),(169,-384372000,2),(169,-368643600,1),(169,-352922400,2),(169,-337194000,1),(169,-321472800,2),(169,-305744400,1),(169,-289418400,2),(169,-273690000,1),(169,-257968800,2),(169,-242240400,1),(169,-226519200,2),(169,-210790800,1),(169,-195069600,2),(169,-179341200,1),(169,-163620000,2),(169,-147891600,1),(169,-131565600,2),(169,-116442000,1),(169,-100116000,2),(169,-84387600,1),(169,-68666400,2),(169,-52938000,1),(169,-37216800,2),(169,-21488400,1),(169,-5767200,2),(169,9961200,1),(169,25682400,2),(169,41410800,1),(169,57736800,2),(169,73465200,1),(169,89186400,2),(169,104914800,1),(169,120636000,2),(169,126687600,1),(169,152085600,2),(169,162370800,1),(169,183535200,2),(169,199263600,1),(169,215589600,2),(169,230713200,1),(169,247039200,2),(169,262767600,1),(169,278488800,2),(169,294217200,1),(169,309938400,2),(169,325666800,1),(169,341388000,2),(169,357116400,1),(169,372837600,2),(169,388566000,1),(169,404892000,2),(169,420015600,1),(169,436341600,2),(169,452070000,1),(169,467791200,2),(169,483519600,1),(169,499240800,2),(169,514969200,1),(169,530690400,2),(169,544604400,1),(169,562140000,2),(169,576054000,1),(169,594194400,2),(169,607503600,1),(169,625644000,2),(169,638953200,1),(169,657093600,2),(169,671007600,1),(169,688543200,2),(169,702457200,1),(169,719992800,2),(169,733906800,1),(169,752047200,2),(169,765356400,1),(169,783496800,2),(169,796806000,1),(169,814946400,2),(169,828860400,1),(169,846396000,2),(169,860310000,1),(169,877845600,2),(169,891759600,1),(169,909295200,2),(169,923209200,1),(169,941349600,2),(169,954658800,1),(169,972799200,2),(169,986108400,1),(169,1004248800,2),(169,1018162800,1),(169,1035698400,2),(169,1049612400,1),(169,1067148000,2),(169,1081062000,1),(169,1099202400,2),(169,1112511600,1),(169,1130652000,2),(169,1143961200,1),(169,1162101600,2),(169,1173596400,1),(169,1194156000,2),(169,1205046000,1),(169,1225605600,2),(169,1236495600,1),(169,1257055200,2),(169,1268550000,1),(169,1289109600,2),(169,1299999600,1),(169,1320559200,2),(169,1331449200,1),(169,1352008800,2),(169,1362898800,1),(169,1383458400,2),(169,1394348400,1),(169,1414908000,2),(169,1425798000,1),(169,1446357600,2),(169,1457852400,1),(169,1478412000,2),(169,1489302000,1),(169,1509861600,2),(169,1520751600,1),(169,1541311200,2),(169,1552201200,1),(169,1572760800,2),(169,1583650800,1),(169,1604210400,2),(169,1615705200,1),(169,1636264800,2),(169,1647154800,1),(169,1667714400,2),(169,1678604400,1),(169,1699164000,2),(169,1710054000,1),(169,1730613600,2),(169,1741503600,1),(169,1762063200,2),(169,1772953200,1),(169,1793512800,2),(169,1805007600,1),(169,1825567200,2),(169,1836457200,1),(169,1857016800,2),(169,1867906800,1),(169,1888466400,2),(169,1899356400,1),(169,1919916000,2),(169,1930806000,1),(169,1951365600,2),(169,1962860400,1),(169,1983420000,2),(169,1994310000,1),(169,2014869600,2),(169,2025759600,1),(169,2046319200,2),(169,2057209200,1),(169,2077768800,2),(169,2088658800,1),(169,2109218400,2),(169,2120108400,1),(169,2140668000,2),(170,-2147483648,2),(170,-1632070800,1),(170,-1615140000,2),(170,-923252400,1),(170,-880218000,3),(170,-769395600,4),(170,-765396000,2),(170,136364400,1),(170,152085600,2),(170,167814000,1),(170,183535200,2),(170,199263600,1),(170,215589600,2),(170,230713200,1),(170,247039200,2),(170,262767600,1),(170,278488800,2),(170,294217200,1),(170,309938400,2),(170,325666800,1),(170,341388000,2),(170,357116400,1),(170,372837600,2),(170,388566000,1),(170,404892000,2),(170,420015600,1),(170,436341600,2),(170,452070000,1),(170,467791200,2),(170,483519600,1),(170,499240800,2),(170,514969200,1),(170,530690400,2),(170,544604400,1),(170,562140000,2),(170,576054000,1),(170,594194400,2),(170,607503600,1),(170,625644000,2),(170,638953200,1),(170,657093600,2),(170,671007600,1),(170,688543200,2),(170,702457200,1),(170,719992800,2),(170,733906800,1),(170,752047200,2),(170,765356400,1),(170,783496800,2),(170,796806000,1),(170,814946400,2),(170,828860400,1),(170,846396000,2),(170,860310000,1),(170,877845600,2),(170,891759600,1),(170,909295200,2),(170,923209200,1),(170,941349600,2),(170,954658800,1),(170,972799200,2),(170,986108400,1),(170,1004248800,2),(170,1018162800,1),(170,1035698400,2),(170,1049612400,1),(170,1067148000,2),(170,1081062000,1),(170,1099202400,2),(170,1112511600,1),(170,1130652000,2),(170,1143961200,1),(170,1162101600,2),(170,1173596400,1),(170,1194156000,2),(170,1205046000,1),(170,1225605600,2),(170,1236495600,1),(170,1257055200,2),(170,1268550000,1),(170,1289109600,2),(170,1299999600,1),(170,1320559200,2),(170,1331449200,1),(170,1352008800,2),(170,1362898800,1),(170,1383458400,2),(170,1394348400,1),(170,1414908000,2),(170,1425798000,1),(170,1446357600,2),(170,1457852400,1),(170,1478412000,2),(170,1489302000,1),(170,1509861600,2),(170,1520751600,1),(170,1541311200,2),(170,1552201200,1),(170,1572760800,2),(170,1583650800,1),(170,1604210400,2),(170,1615705200,1),(170,1636264800,2),(170,1647154800,1),(170,1667714400,2),(170,1678604400,1),(170,1699164000,2),(170,1710054000,1),(170,1730613600,2),(170,1741503600,1),(170,1762063200,2),(170,1772953200,1),(170,1793512800,2),(170,1805007600,1),(170,1825567200,2),(170,1836457200,1),(170,1857016800,2),(170,1867906800,1),(170,1888466400,2),(170,1899356400,1),(170,1919916000,2),(170,1930806000,1),(170,1951365600,2),(170,1962860400,1),(170,1983420000,2),(170,1994310000,1),(170,2014869600,2),(170,2025759600,1),(170,2046319200,2),(170,2057209200,1),(170,2077768800,2),(170,2088658800,1),(170,2109218400,2),(170,2120108400,1),(170,2140668000,2),(171,-2147483648,1),(171,-880196400,2),(171,-769395600,3),(171,-765374400,1),(171,-86878800,4),(171,-21466800,5),(171,-5745600,4),(171,9982800,5),(171,25704000,4),(171,41432400,5),(171,57758400,4),(171,73486800,5),(171,89208000,4),(171,104936400,5),(171,120657600,4),(171,126709200,5),(171,152107200,4),(171,162392400,5),(171,183556800,4),(171,199285200,5),(171,215611200,4),(171,230734800,5),(171,247060800,4),(171,262789200,5),(171,278510400,4),(171,294238800,5),(171,309960000,4),(171,325688400,5),(171,341409600,4),(171,357138000,5),(171,372859200,4),(171,388587600,5),(171,404913600,4),(171,420037200,5),(171,436363200,6),(171,439030800,8),(171,452084400,7),(171,467805600,8),(171,483534000,7),(171,499255200,8),(171,514983600,7),(171,530704800,8),(171,544618800,7),(171,562154400,8),(171,576068400,7),(171,594208800,8),(171,607518000,7),(171,625658400,8),(171,638967600,7),(171,657108000,8),(171,671022000,7),(171,688557600,8),(171,702471600,7),(171,720007200,8),(171,733921200,7),(171,752061600,8),(171,765370800,7),(171,783511200,8),(171,796820400,7),(171,814960800,8),(171,828874800,7),(171,846410400,8),(171,860324400,7),(171,877860000,8),(171,891774000,7),(171,909309600,8),(171,923223600,7),(171,941364000,8),(171,954673200,7),(171,972813600,8),(171,986122800,7),(171,1004263200,8),(171,1018177200,7),(171,1035712800,8),(171,1049626800,7),(171,1067162400,8),(171,1081076400,7),(171,1099216800,8),(171,1112526000,7),(171,1130666400,8),(171,1143975600,7),(171,1162116000,8),(171,1173610800,7),(171,1194170400,8),(171,1205060400,7),(171,1225620000,8),(171,1236510000,7),(171,1257069600,8),(171,1268564400,7),(171,1289124000,8),(171,1300014000,7),(171,1320573600,8),(171,1331463600,7),(171,1352023200,8),(171,1362913200,7),(171,1383472800,8),(171,1394362800,7),(171,1414922400,8),(171,1425812400,7),(171,1446372000,8),(171,1457866800,7),(171,1478426400,8),(171,1489316400,7),(171,1509876000,8),(171,1520766000,7),(171,1541325600,8),(171,1552215600,7),(171,1572775200,8),(171,1583665200,7),(171,1604224800,8),(171,1615719600,7),(171,1636279200,8),(171,1647169200,7),(171,1667728800,8),(171,1678618800,7),(171,1699178400,8),(171,1710068400,7),(171,1730628000,8),(171,1741518000,7),(171,1762077600,8),(171,1772967600,7),(171,1793527200,8),(171,1805022000,7),(171,1825581600,8),(171,1836471600,7),(171,1857031200,8),(171,1867921200,7),(171,1888480800,8),(171,1899370800,7),(171,1919930400,8),(171,1930820400,7),(171,1951380000,8),(171,1962874800,7),(171,1983434400,8),(171,1994324400,7),(171,2014884000,8),(171,2025774000,7),(171,2046333600,8),(171,2057223600,7),(171,2077783200,8),(171,2088673200,7),(171,2109232800,8),(171,2120122800,7),(171,2140682400,8),(172,-2147483648,0),(172,-1767217820,2),(172,-1206961200,1),(172,-1191366000,2),(172,-1175378400,1),(172,-1159830000,2),(172,-633823200,1),(172,-622072800,2),(172,-602287200,1),(172,-591836400,2),(172,-570751200,1),(172,-560214000,2),(172,-539128800,1),(172,-531356400,2),(172,-191368800,1),(172,-184201200,2),(172,-155167200,1),(172,-150073200,2),(172,-128901600,1),(172,-121129200,2),(172,-99957600,1),(172,-89593200,2),(172,-68421600,1),(172,-57970800,2),(172,499744800,1),(172,511232400,2),(172,530589600,1),(172,540262800,2),(172,562125600,1),(172,571194000,2),(172,592970400,1),(172,602038800,2),(172,624420000,1),(172,634698000,2),(172,938916000,1),(172,951613200,2),(172,970970400,1),(172,971571600,2),(172,1003024800,1),(172,1013907600,2),(173,-2147483648,2),(173,-1633273200,1),(173,-1615132800,2),(173,-1601823600,1),(173,-1583683200,2),(173,-880210800,3),(173,-769395600,4),(173,-765388800,2),(173,-84380400,1),(173,-68659200,2),(173,-52930800,1),(173,-37209600,2),(173,-21481200,1),(173,-5760000,2),(173,9968400,1),(173,25689600,2),(173,41418000,1),(173,57744000,2),(173,73472400,1),(173,89193600,2),(173,104922000,1),(173,120643200,2),(173,126694800,1),(173,152092800,2),(173,162378000,1),(173,183542400,2),(173,199270800,1),(173,215596800,2),(173,230720400,1),(173,247046400,2),(173,262774800,1),(173,278496000,2),(173,294224400,1),(173,309945600,2),(173,325674000,1),(173,341395200,2),(173,357123600,1),(173,372844800,2),(173,388573200,1),(173,404899200,2),(173,420022800,1),(173,436348800,2),(173,452077200,1),(173,467798400,2),(173,483526800,1),(173,499248000,2),(173,514976400,1),(173,530697600,2),(173,544611600,1),(173,562147200,2),(173,576061200,1),(173,594201600,2),(173,607510800,1),(173,625651200,2),(173,638960400,1),(173,657100800,2),(173,671014800,1),(173,688550400,2),(173,702464400,1),(173,720000000,2),(173,733914000,1),(173,752054400,2),(173,765363600,1),(173,783504000,2),(173,796813200,1),(173,814953600,2),(173,828867600,1),(173,846403200,2),(173,860317200,1),(173,877852800,2),(173,891766800,1),(173,909302400,2),(173,923216400,1),(173,941356800,2),(173,954666000,1),(173,972806400,2),(173,986115600,1),(173,1004256000,2),(173,1018170000,1),(173,1035705600,2),(173,1049619600,1),(173,1067155200,2),(173,1081069200,1),(173,1099209600,2),(173,1112518800,1),(173,1130659200,2),(173,1143968400,1),(173,1162108800,2),(173,1173603600,1),(173,1194163200,2),(173,1205053200,1),(173,1225612800,2),(173,1236502800,1),(173,1257062400,2),(173,1268557200,1),(173,1289116800,6),(173,1300003200,5),(173,1320562800,6),(173,1331452800,5),(173,1352012400,6),(173,1362902400,5),(173,1383462000,6),(173,1394352000,5),(173,1414911600,6),(173,1425801600,5),(173,1446361200,6),(173,1457856000,5),(173,1478415600,6),(173,1489305600,5),(173,1509865200,6),(173,1520755200,5),(173,1541314800,6),(173,1552204800,5),(173,1572764400,6),(173,1583654400,5),(173,1604214000,6),(173,1615708800,5),(173,1636268400,6),(173,1647158400,5),(173,1667718000,6),(173,1678608000,5),(173,1699167600,6),(173,1710057600,5),(173,1730617200,6),(173,1741507200,5),(173,1762066800,6),(173,1772956800,5),(173,1793516400,6),(173,1805011200,5),(173,1825570800,6),(173,1836460800,5),(173,1857020400,6),(173,1867910400,5),(173,1888470000,6),(173,1899360000,5),(173,1919919600,6),(173,1930809600,5),(173,1951369200,6),(173,1962864000,5),(173,1983423600,6),(173,1994313600,5),(173,2014873200,6),(173,2025763200,5),(173,2046322800,6),(173,2057212800,5),(173,2077772400,6),(173,2088662400,5),(173,2109222000,6),(173,2120112000,5),(173,2140671600,6),(174,-2147483648,2),(174,-1633273200,1),(174,-1615132800,2),(174,-1601823600,1),(174,-1583683200,2),(174,-880210800,3),(174,-769395600,4),(174,-765388800,2),(174,-84380400,1),(174,-68659200,2),(174,-52930800,1),(174,-37209600,2),(174,-21481200,1),(174,-5760000,2),(174,9968400,1),(174,25689600,2),(174,41418000,1),(174,57744000,2),(174,73472400,1),(174,89193600,2),(174,104922000,1),(174,120643200,2),(174,126694800,1),(174,152092800,2),(174,162378000,1),(174,183542400,2),(174,199270800,1),(174,215596800,2),(174,230720400,1),(174,247046400,2),(174,262774800,1),(174,278496000,2),(174,294224400,1),(174,309945600,2),(174,325674000,1),(174,341395200,2),(174,357123600,1),(174,372844800,2),(174,388573200,1),(174,404899200,2),(174,420022800,1),(174,436348800,2),(174,452077200,1),(174,467798400,2),(174,483526800,1),(174,499248000,2),(174,514976400,1),(174,530697600,2),(174,544611600,1),(174,562147200,2),(174,576061200,1),(174,594201600,2),(174,607510800,1),(174,625651200,2),(174,638960400,1),(174,657100800,2),(174,671014800,1),(174,688550400,2),(174,702464400,1),(174,720000000,6),(174,733910400,5),(174,752050800,6),(174,765360000,5),(174,783500400,6),(174,796809600,5),(174,814950000,6),(174,828864000,5),(174,846399600,6),(174,860313600,5),(174,877849200,6),(174,891763200,5),(174,909298800,6),(174,923212800,5),(174,941353200,6),(174,954662400,5),(174,972802800,6),(174,986112000,5),(174,1004252400,6),(174,1018166400,5),(174,1035702000,6),(174,1049616000,5),(174,1067151600,6),(174,1081065600,5),(174,1099206000,6),(174,1112515200,5),(174,1130655600,6),(174,1143964800,5),(174,1162105200,6),(174,1173600000,5),(174,1194159600,6),(174,1205049600,5),(174,1225609200,6),(174,1236499200,5),(174,1257058800,6),(174,1268553600,5),(174,1289113200,6),(174,1300003200,5),(174,1320562800,6),(174,1331452800,5),(174,1352012400,6),(174,1362902400,5),(174,1383462000,6),(174,1394352000,5),(174,1414911600,6),(174,1425801600,5),(174,1446361200,6),(174,1457856000,5),(174,1478415600,6),(174,1489305600,5),(174,1509865200,6),(174,1520755200,5),(174,1541314800,6),(174,1552204800,5),(174,1572764400,6),(174,1583654400,5),(174,1604214000,6),(174,1615708800,5),(174,1636268400,6),(174,1647158400,5),(174,1667718000,6),(174,1678608000,5),(174,1699167600,6),(174,1710057600,5),(174,1730617200,6),(174,1741507200,5),(174,1762066800,6),(174,1772956800,5),(174,1793516400,6),(174,1805011200,5),(174,1825570800,6),(174,1836460800,5),(174,1857020400,6),(174,1867910400,5),(174,1888470000,6),(174,1899360000,5),(174,1919919600,6),(174,1930809600,5),(174,1951369200,6),(174,1962864000,5),(174,1983423600,6),(174,1994313600,5),(174,2014873200,6),(174,2025763200,5),(174,2046322800,6),(174,2057212800,5),(174,2077772400,6),(174,2088662400,5),(174,2109222000,6),(174,2120112000,5),(174,2140671600,6),(175,-2147483648,2),(175,-1633273200,1),(175,-1615132800,2),(175,-1601823600,1),(175,-1583683200,2),(175,-880210800,3),(175,-769395600,4),(175,-765388800,2),(175,-84380400,1),(175,-68659200,2),(175,-52930800,1),(175,-37209600,2),(175,-21481200,1),(175,-5760000,2),(175,9968400,1),(175,25689600,2),(175,41418000,1),(175,57744000,2),(175,73472400,1),(175,89193600,2),(175,104922000,1),(175,120643200,2),(175,126694800,1),(175,152092800,2),(175,162378000,1),(175,183542400,2),(175,199270800,1),(175,215596800,2),(175,230720400,1),(175,247046400,2),(175,262774800,1),(175,278496000,2),(175,294224400,1),(175,309945600,2),(175,325674000,1),(175,341395200,2),(175,357123600,1),(175,372844800,2),(175,388573200,1),(175,404899200,2),(175,420022800,1),(175,436348800,2),(175,452077200,1),(175,467798400,2),(175,483526800,1),(175,499248000,2),(175,514976400,1),(175,530697600,2),(175,544611600,1),(175,562147200,2),(175,576061200,1),(175,594201600,2),(175,607510800,1),(175,625651200,2),(175,638960400,1),(175,657100800,2),(175,671014800,1),(175,688550400,2),(175,702464400,1),(175,720000000,2),(175,733914000,1),(175,752054400,2),(175,765363600,1),(175,783504000,2),(175,796813200,1),(175,814953600,2),(175,828867600,1),(175,846403200,2),(175,860317200,1),(175,877852800,2),(175,891766800,1),(175,909302400,2),(175,923216400,1),(175,941356800,2),(175,954666000,1),(175,972806400,2),(175,986115600,1),(175,1004256000,2),(175,1018170000,1),(175,1035705600,2),(175,1049619600,1),(175,1067155200,6),(175,1081065600,5),(175,1099206000,6),(175,1112515200,5),(175,1130655600,6),(175,1143964800,5),(175,1162105200,6),(175,1173600000,5),(175,1194159600,6),(175,1205049600,5),(175,1225609200,6),(175,1236499200,5),(175,1257058800,6),(175,1268553600,5),(175,1289113200,6),(175,1300003200,5),(175,1320562800,6),(175,1331452800,5),(175,1352012400,6),(175,1362902400,5),(175,1383462000,6),(175,1394352000,5),(175,1414911600,6),(175,1425801600,5),(175,1446361200,6),(175,1457856000,5),(175,1478415600,6),(175,1489305600,5),(175,1509865200,6),(175,1520755200,5),(175,1541314800,6),(175,1552204800,5),(175,1572764400,6),(175,1583654400,5),(175,1604214000,6),(175,1615708800,5),(175,1636268400,6),(175,1647158400,5),(175,1667718000,6),(175,1678608000,5),(175,1699167600,6),(175,1710057600,5),(175,1730617200,6),(175,1741507200,5),(175,1762066800,6),(175,1772956800,5),(175,1793516400,6),(175,1805011200,5),(175,1825570800,6),(175,1836460800,5),(175,1857020400,6),(175,1867910400,5),(175,1888470000,6),(175,1899360000,5),(175,1919919600,6),(175,1930809600,5),(175,1951369200,6),(175,1962864000,5),(175,1983423600,6),(175,1994313600,5),(175,2014873200,6),(175,2025763200,5),(175,2046322800,6),(175,2057212800,5),(175,2077772400,6),(175,2088662400,5),(175,2109222000,6),(175,2120112000,5),(175,2140671600,6),(176,-2147483648,0),(176,-1514739600,1),(176,-1343066400,2),(176,-1234807200,1),(176,-1220292000,2),(176,-1207159200,1),(176,-1191344400,2),(176,828864000,3),(176,846399600,2),(176,860313600,3),(176,877849200,2),(176,891766800,4),(176,909302400,1),(176,923216400,4),(176,941356800,1),(176,954666000,4),(176,972806400,1),(176,989139600,4),(176,1001836800,1),(176,1018170000,4),(176,1035705600,1),(176,1049619600,4),(176,1067155200,1),(176,1081069200,4),(176,1099209600,1),(176,1112518800,4),(176,1130659200,1),(176,1143968400,4),(176,1162108800,1),(176,1175418000,4),(176,1193558400,1),(176,1207472400,4),(176,1225008000,1),(176,1238922000,4),(176,1256457600,1),(176,1268557200,4),(176,1289116800,1),(176,1300006800,4),(176,1320566400,1),(176,1331456400,4),(176,1352016000,1),(176,1362906000,4),(176,1383465600,1),(176,1394355600,4),(176,1414915200,1),(176,1425805200,4),(176,1446364800,1),(176,1457859600,4),(176,1478419200,1),(176,1489309200,4),(176,1509868800,1),(176,1520758800,4),(176,1541318400,1),(176,1552208400,4),(176,1572768000,1),(176,1583658000,4),(176,1604217600,1),(176,1615712400,4),(176,1636272000,1),(176,1647162000,4),(176,1667721600,1),(176,1678611600,4),(176,1699171200,1),(176,1710061200,4),(176,1730620800,1),(176,1741510800,4),(176,1762070400,1),(176,1772960400,4),(176,1793520000,1),(176,1805014800,4),(176,1825574400,1),(176,1836464400,4),(176,1857024000,1),(176,1867914000,4),(176,1888473600,1),(176,1899363600,4),(176,1919923200,1),(176,1930813200,4),(176,1951372800,1),(176,1962867600,4),(176,1983427200,1),(176,1994317200,4),(176,2014876800,1),(176,2025766800,4),(176,2046326400,1),(176,2057216400,4),(176,2077776000,1),(176,2088666000,4),(176,2109225600,1),(176,2120115600,4),(176,2140675200,1),(177,-2147483648,1),(177,-1946918424,2),(178,-2147483648,0),(178,-1546300800,3),(178,-880221600,1),(178,-769395600,2),(178,-765399600,3),(178,-147902400,4),(178,-131572800,3),(178,325663200,5),(178,341384400,3),(178,357112800,5),(178,372834000,3),(178,388562400,5),(178,404888400,3),(178,420012000,5),(178,436338000,3),(178,452066400,5),(178,467787600,3),(178,483516000,5),(178,499237200,3),(178,514965600,5),(178,530686800,3),(178,544600800,5),(178,562136400,3),(178,576050400,5),(178,594190800,3),(178,607500000,5),(178,625640400,3),(178,638949600,5),(178,657090000,3),(178,671004000,5),(178,688539600,3),(178,702453600,5),(178,719989200,3),(178,733903200,5),(178,752043600,3),(178,765352800,5),(178,783493200,3),(178,796802400,6),(178,814946400,7),(178,828860400,6),(178,846396000,7),(178,860310000,6),(178,877845600,7),(178,891759600,6),(178,909295200,7),(178,923209200,6),(178,941349600,8),(178,954662400,9),(178,972802800,7),(178,986108400,6),(178,1004248800,7),(178,1018162800,6),(178,1035698400,7),(178,1049612400,6),(178,1067148000,7),(178,1081062000,6),(178,1099202400,7),(178,1112511600,6),(178,1130652000,7),(178,1143961200,6),(178,1162101600,7),(178,1173596400,6),(178,1194156000,7),(178,1205046000,6),(178,1225605600,7),(178,1236495600,6),(178,1257055200,7),(178,1268550000,6),(178,1289109600,7),(178,1299999600,6),(178,1320559200,7),(178,1331449200,6),(178,1352008800,7),(178,1362898800,6),(178,1383458400,7),(178,1394348400,6),(178,1414908000,7),(178,1425798000,6),(178,1446357600,7),(178,1457852400,6),(178,1478412000,7),(178,1489302000,6),(178,1509861600,7),(178,1520751600,6),(178,1541311200,7),(178,1552201200,6),(178,1572760800,7),(178,1583650800,6),(178,1604210400,7),(178,1615705200,6),(178,1636264800,7),(178,1647154800,6),(178,1667714400,7),(178,1678604400,6),(178,1699164000,7),(178,1710054000,6),(178,1730613600,7),(178,1741503600,6),(178,1762063200,7),(178,1772953200,6),(178,1793512800,7),(178,1805007600,6),(178,1825567200,7),(178,1836457200,6),(178,1857016800,7),(178,1867906800,6),(178,1888466400,7),(178,1899356400,6),(178,1919916000,7),(178,1930806000,6),(178,1951365600,7),(178,1962860400,6),(178,1983420000,7),(178,1994310000,6),(178,2014869600,7),(178,2025759600,6),(178,2046319200,7),(178,2057209200,6),(178,2077768800,7),(178,2088658800,6),(178,2109218400,7),(178,2120108400,6),(178,2140668000,7),(179,-2147483648,0),(179,-1861906760,1),(179,-1104524348,2),(179,-765317964,3),(179,465449400,4),(180,-2147483648,2),(180,-1633273200,1),(180,-1615132800,2),(180,-1601823600,1),(180,-1583683200,2),(180,-880210800,3),(180,-820519140,2),(180,-812653140,3),(180,-796845540,2),(180,-84380400,1),(180,-68659200,2),(181,-2147483648,1),(181,-1670483460,3),(181,421218000,2),(181,436334400,3),(181,452062800,2),(181,467784000,3),(181,483512400,2),(181,499233600,3),(181,514962000,2),(181,530683200,3),(181,546411600,2),(181,562132800,3),(181,576050400,4),(181,594194400,5),(181,607500000,4),(181,625644000,5),(181,638949600,4),(181,657093600,5),(181,671004000,4),(181,688543200,5),(181,702453600,4),(181,719992800,5),(181,733903200,4),(181,752047200,5),(181,765352800,4),(181,783496800,5),(181,796802400,4),(181,814946400,5),(181,828856800,4),(181,846396000,5),(181,860306400,4),(181,877845600,5),(181,1112504400,2),(181,1130644800,3),(181,1143954000,2),(181,1162094400,3),(181,1331449200,2),(181,1352008800,3),(181,1362898800,2),(181,1383458400,3),(181,1394348400,2),(181,1414908000,3),(181,1425798000,2),(181,1446357600,3),(181,1489302000,2),(181,1509861600,3),(181,1520751600,2),(181,1541311200,3),(181,1552201200,2),(181,1572760800,3),(181,1583650800,2),(181,1604210400,3),(181,1615705200,2),(181,1636264800,3),(181,1647154800,2),(181,1667714400,3),(181,1678604400,2),(181,1699164000,3),(181,1710054000,2),(181,1730613600,3),(181,1741503600,2),(181,1762063200,3),(181,1772953200,2),(181,1793512800,3),(181,1805007600,2),(181,1825567200,3),(181,1836457200,2),(181,1857016800,3),(181,1867906800,2),(181,1888466400,3),(181,1899356400,2),(181,1919916000,3),(181,1930806000,2),(181,1951365600,3),(181,1962860400,2),(181,1983420000,3),(181,1994310000,2),(181,2014869600,3),(181,2025759600,2),(181,2046319200,3),(181,2057209200,2),(181,2077768800,3),(181,2088658800,2),(181,2109218400,3),(181,2120108400,2),(181,2140668000,3),(182,-2147483648,0),(182,-1825098836,1),(183,-2147483648,0),(183,-1767209328,2),(183,-1206950400,1),(183,-1191355200,2),(183,-1175367600,1),(183,-1159819200,2),(183,-633812400,1),(183,-622062000,2),(183,-602276400,1),(183,-591825600,2),(183,-570740400,1),(183,-560203200,2),(183,-539118000,1),(183,-531345600,2),(183,-191358000,1),(183,-184190400,2),(183,-155156400,1),(183,-150062400,2),(183,-128890800,1),(183,-121118400,2),(183,-99946800,1),(183,-89582400,2),(183,-68410800,1),(183,-57960000,2),(183,499755600,1),(183,511243200,2),(183,530600400,1),(183,540273600,2),(183,562136400,1),(183,571204800,2),(183,1214283600,3),(183,1384056000,2),(184,-2147483648,0),(184,-1767210264,2),(184,-1206954000,1),(184,-1191358800,2),(184,-1175371200,1),(184,-1159822800,2),(184,-633816000,1),(184,-622065600,2),(184,-602280000,1),(184,-591829200,2),(184,-570744000,1),(184,-560206800,2),(184,-539121600,1),(184,-531349200,2),(184,-191361600,1),(184,-184194000,2),(184,-155160000,1),(184,-150066000,2),(184,-128894400,1),(184,-121122000,2),(184,-99950400,1),(184,-89586000,2),(184,-68414400,1),(184,-57963600,2),(184,499752000,1),(184,511239600,2),(184,530596800,1),(184,540270000,2),(184,562132800,1),(184,571201200,2),(185,-2147483648,1),(185,-873057600,3),(185,-769395600,2),(185,-765399600,1),(186,-2147483648,1),(186,-1892661434,2),(186,-1688410800,1),(186,-1619205434,3),(186,-1593806400,1),(186,-1335986234,4),(186,-1317585600,2),(186,-1304362800,4),(186,-1286049600,2),(186,-1272826800,4),(186,-1254513600,2),(186,-1241290800,4),(186,-1222977600,2),(186,-1209754800,4),(186,-1191355200,2),(186,-1178132400,3),(186,-870552000,2),(186,-865278000,3),(186,-718056000,2),(186,-713649600,3),(186,-36619200,5),(186,-23922000,6),(186,-3355200,5),(186,7527600,6),(186,24465600,5),(186,37767600,6),(186,55915200,5),(186,69217200,6),(186,87969600,5),(186,100666800,6),(186,118209600,5),(186,132116400,6),(186,150868800,5),(186,163566000,6),(186,182318400,5),(186,195620400,6),(186,213768000,5),(186,227070000,6),(186,245217600,5),(186,258519600,6),(186,277272000,5),(186,289969200,6),(186,308721600,5),(186,321418800,6),(186,340171200,5),(186,353473200,6),(186,371620800,5),(186,384922800,6),(186,403070400,5),(186,416372400,6),(186,434520000,5),(186,447822000,6),(186,466574400,5),(186,479271600,6),(186,498024000,5),(186,510721200,6),(186,529473600,5),(186,545194800,6),(186,560923200,5),(186,574225200,6),(186,592372800,5),(186,605674800,6),(186,624427200,5),(186,637124400,6),(186,653457600,5),(186,668574000,6),(186,687326400,5),(186,700628400,6),(186,718776000,5),(186,732078000,6),(186,750225600,5),(186,763527600,6),(186,781675200,5),(186,794977200,6),(186,813729600,5),(186,826426800,6),(186,845179200,5),(186,859690800,6),(186,876628800,5),(186,889930800,6),(186,906868800,5),(186,923194800,6),(186,939528000,5),(186,952830000,6),(186,971582400,5),(186,984279600,6),(186,1003032000,5),(186,1015729200,6),(186,1034481600,5),(186,1047178800,6),(186,1065931200,5),(186,1079233200,6),(186,1097380800,5),(186,1110682800,6),(186,1128830400,5),(186,1142132400,6),(186,1160884800,5),(186,1173582000,6),(186,1192334400,5),(186,1206846000,6),(186,1223784000,5),(186,1237086000,6),(186,1255233600,5),(186,1270350000,6),(186,1286683200,5),(186,1304823600,6),(186,1313899200,5),(186,1335668400,6),(186,1346558400,5),(186,1367118000,6),(186,1378612800,5),(186,1398567600,6),(186,1410062400,5),(186,1463281200,6),(186,1471147200,5),(186,1480820400,7),(187,-2147483648,2),(187,-1632067200,1),(187,-1615136400,2),(187,-923248800,1),(187,-880214400,3),(187,-769395600,4),(187,-765392400,2),(187,136368000,1),(187,152089200,2),(187,167817600,1),(187,183538800,2),(187,199267200,1),(187,215593200,2),(187,230716800,1),(187,247042800,2),(187,262771200,1),(187,278492400,2),(187,294220800,1),(187,309942000,2),(187,325670400,1),(187,341391600,2),(187,357120000,1),(187,372841200,2),(187,388569600,1),(187,404895600,2),(187,420019200,1),(187,436345200,2),(187,452073600,1),(187,467794800,2),(187,483523200,1),(187,499244400,2),(187,514972800,1),(187,530694000,2),(187,544608000,1),(187,562143600,2),(187,576057600,1),(187,594198000,2),(187,607507200,1),(187,625647600,2),(187,638956800,1),(187,657097200,2),(187,671011200,1),(187,688546800,2),(187,702460800,1),(187,719996400,2),(187,733910400,1),(187,752050800,2),(187,765360000,1),(187,783500400,2),(187,796809600,1),(187,814950000,2),(187,828864000,1),(187,846399600,2),(187,860313600,1),(187,877849200,2),(187,891763200,1),(187,909298800,2),(187,923212800,1),(187,941353200,2),(187,954662400,1),(187,972802800,2),(187,986112000,1),(187,1004252400,2),(187,1018166400,1),(187,1035702000,2),(187,1049616000,1),(187,1067151600,2),(187,1081065600,1),(187,1099206000,2),(187,1112515200,1),(187,1130655600,2),(187,1143964800,1),(187,1162105200,2),(187,1173600000,1),(187,1194159600,2),(187,1205049600,1),(187,1225609200,2),(187,1236499200,1),(187,1257058800,2),(187,1268553600,1),(187,1289113200,2),(187,1300003200,1),(187,1320562800,2),(187,1331452800,1),(187,1352012400,2),(187,1362902400,1),(187,1383462000,2),(187,1394352000,1),(187,1414911600,2),(187,1425801600,1),(187,1446361200,2),(187,1457856000,1),(187,1478415600,2),(187,1489305600,1),(187,1509865200,2),(187,1520755200,1),(187,1541314800,2),(187,1552204800,1),(187,1572764400,2),(187,1583654400,1),(187,1604214000,2),(187,1615708800,1),(187,1636268400,2),(187,1647158400,1),(187,1667718000,2),(187,1678608000,1),(187,1699167600,2),(187,1710057600,1),(187,1730617200,2),(187,1741507200,1),(187,1762066800,2),(187,1772956800,1),(187,1793516400,2),(187,1805011200,1),(187,1825570800,2),(187,1836460800,1),(187,1857020400,2),(187,1867910400,1),(187,1888470000,2),(187,1899360000,1),(187,1919919600,2),(187,1930809600,1),(187,1951369200,2),(187,1962864000,1),(187,1983423600,2),(187,1994313600,1),(187,2014873200,2),(187,2025763200,1),(187,2046322800,2),(187,2057212800,1),(187,2077772400,2),(187,2088662400,1),(187,2109222000,2),(187,2120112000,1),(187,2140671600,2),(188,-2147483648,0),(188,-410227200,2),(188,-147895200,1),(188,-131565600,2),(188,325670400,3),(188,341391600,2),(188,357120000,3),(188,372841200,2),(188,388569600,3),(188,404895600,2),(188,420019200,3),(188,436345200,2),(188,452073600,3),(188,467794800,2),(188,483523200,3),(188,499244400,2),(188,514972800,3),(188,530694000,2),(188,544608000,3),(188,562143600,2),(188,576057600,3),(188,594198000,2),(188,607507200,3),(188,625647600,2),(188,638956800,3),(188,657097200,2),(188,671011200,3),(188,688546800,2),(188,702460800,3),(188,719996400,2),(188,733910400,3),(188,752050800,2),(188,765360000,3),(188,783500400,2),(188,796809600,3),(188,814950000,2),(188,828864000,3),(188,846399600,2),(188,860313600,3),(188,877849200,2),(188,891763200,3),(188,909298800,2),(188,923212800,3),(188,941353200,2),(188,954662400,3),(188,972802800,4),(188,986112000,3),(188,1004252400,2),(188,1018166400,3),(188,1035702000,2),(188,1049616000,3),(188,1067151600,2),(188,1081065600,3),(188,1099206000,2),(188,1112515200,3),(188,1130655600,2),(188,1143964800,3),(188,1162105200,2),(188,1173600000,3),(188,1194159600,2),(188,1205049600,3),(188,1225609200,2),(188,1236499200,3),(188,1257058800,2),(188,1268553600,3),(188,1289113200,2),(188,1300003200,3),(188,1320562800,2),(188,1331452800,3),(188,1352012400,2),(188,1362902400,3),(188,1383462000,2),(188,1394352000,3),(188,1414911600,2),(188,1425801600,3),(188,1446361200,2),(188,1457856000,3),(188,1478415600,2),(188,1489305600,3),(188,1509865200,2),(188,1520755200,3),(188,1541314800,2),(188,1552204800,3),(188,1572764400,2),(188,1583654400,3),(188,1604214000,2),(188,1615708800,3),(188,1636268400,2),(188,1647158400,3),(188,1667718000,2),(188,1678608000,3),(188,1699167600,2),(188,1710057600,3),(188,1730617200,2),(188,1741507200,3),(188,1762066800,2),(188,1772956800,3),(188,1793516400,2),(188,1805011200,3),(188,1825570800,2),(188,1836460800,3),(188,1857020400,2),(188,1867910400,3),(188,1888470000,2),(188,1899360000,3),(188,1919919600,2),(188,1930809600,3),(188,1951369200,2),(188,1962864000,3),(188,1983423600,2),(188,1994313600,3),(188,2014873200,2),(188,2025763200,3),(188,2046322800,2),(188,2057212800,3),(188,2077772400,2),(188,2088662400,3),(188,2109222000,2),(188,2120112000,3),(188,2140671600,2),(189,-2147483648,0),(189,-1767217224,2),(189,-1206957600,1),(189,-1191362400,2),(189,-1175374800,1),(189,-1159826400,2),(189,-633819600,1),(189,-622069200,2),(189,-602283600,1),(189,-591832800,2),(189,-570747600,1),(189,-560210400,2),(189,-539125200,1),(189,-531352800,2),(189,-191365200,1),(189,-184197600,2),(189,-155163600,1),(189,-150069600,2),(189,-128898000,1),(189,-121125600,2),(189,-99954000,1),(189,-89589600,2),(189,-68418000,1),(189,-57967200,2),(189,499748400,1),(189,511236000,2),(189,530593200,1),(189,540266400,2),(189,562129200,1),(189,571197600,2),(189,592974000,1),(189,602042400,2),(189,624423600,1),(189,634701600,2),(189,938919600,1),(189,951616800,2),(189,970974000,1),(189,971575200,2),(189,1003028400,1),(189,1013911200,2),(190,-2147483648,0),(190,-2030202084,2),(190,-1632063600,1),(190,-1615132800,2),(190,-1251651600,1),(190,-1238349600,2),(190,-1220202000,1),(190,-1206900000,2),(190,-1188752400,1),(190,-1175450400,2),(190,-1156698000,1),(190,-1144000800,2),(190,-1125248400,1),(190,-1111946400,2),(190,-1032714000,1),(190,-1016992800,2),(190,-1001264400,1),(190,-986148000,2),(190,-969814800,1),(190,-954093600,2),(190,-937760400,1),(190,-922039200,2),(190,-906310800,1),(190,-890589600,2),(190,-880210800,3),(190,-769395600,4),(190,-765388800,2),(190,-748450800,1),(190,-732729600,2),(190,-715791600,1),(190,-702489600,2),(190,-684342000,1),(190,-671040000,2),(190,-652892400,1),(190,-639590400,2),(190,-620838000,1),(190,-608140800,2),(190,-589388400,1),(190,-576086400,2),(190,-557938800,1),(190,-544636800,2),(190,-526489200,1),(190,-513187200,2),(190,-495039600,1),(190,-481737600,2),(190,-463590000,1),(190,-450288000,2),(190,-431535600,1),(190,-418233600,2),(190,-400086000,1),(190,-386784000,2),(190,-337186800,1),(190,-321465600,2),(190,-305737200,5),(191,-2147483648,0),(191,-704937600,2),(191,-147895200,1),(191,-131565600,2),(191,325670400,3),(191,341391600,2),(191,357120000,3),(191,372841200,2),(191,388569600,3),(191,404895600,2),(191,420019200,3),(191,436345200,2),(191,452073600,3),(191,467794800,2),(191,483523200,3),(191,499244400,2),(191,514972800,3),(191,530694000,2),(191,544608000,3),(191,562143600,2),(191,576057600,3),(191,594198000,2),(191,607507200,3),(191,625647600,2),(191,638956800,3),(191,657097200,2),(191,671011200,3),(191,688546800,2),(191,702460800,3),(191,719996400,2),(191,733910400,3),(191,752050800,2),(191,765360000,3),(191,783500400,2),(191,796809600,3),(191,814950000,2),(191,828864000,3),(191,846399600,2),(191,860313600,3),(191,877849200,2),(191,891763200,3),(191,909298800,2),(191,923212800,3),(191,941353200,2),(191,954662400,3),(191,972802800,4),(191,986112000,3),(191,1004252400,2),(191,1018166400,3),(191,1035702000,2),(191,1049616000,3),(191,1067151600,2),(191,1081065600,3),(191,1099206000,2),(191,1112515200,3),(191,1130655600,2),(191,1143964800,3),(191,1162105200,4),(191,1173600000,3),(191,1194159600,2),(191,1205049600,3),(191,1225609200,2),(191,1236499200,3),(191,1257058800,2),(191,1268553600,3),(191,1289113200,2),(191,1300003200,3),(191,1320562800,2),(191,1331452800,3),(191,1352012400,2),(191,1362902400,3),(191,1383462000,2),(191,1394352000,3),(191,1414911600,2),(191,1425801600,3),(191,1446361200,2),(191,1457856000,3),(191,1478415600,2),(191,1489305600,3),(191,1509865200,2),(191,1520755200,3),(191,1541314800,2),(191,1552204800,3),(191,1572764400,2),(191,1583654400,3),(191,1604214000,2),(191,1615708800,3),(191,1636268400,2),(191,1647158400,3),(191,1667718000,2),(191,1678608000,3),(191,1699167600,2),(191,1710057600,3),(191,1730617200,2),(191,1741507200,3),(191,1762066800,2),(191,1772956800,3),(191,1793516400,2),(191,1805011200,3),(191,1825570800,2),(191,1836460800,3),(191,1857020400,2),(191,1867910400,3),(191,1888470000,2),(191,1899360000,3),(191,1919919600,2),(191,1930809600,3),(191,1951369200,2),(191,1962864000,3),(191,1983423600,2),(191,1994313600,3),(191,2014873200,2),(191,2025763200,3),(191,2046322800,2),(191,2057212800,3),(191,2077772400,2),(191,2088662400,3),(191,2109222000,2),(191,2120112000,3),(191,2140671600,2),(192,-2147483648,0),(192,-1767209328,2),(192,-1206950400,1),(192,-1191355200,2),(192,-1175367600,1),(192,-1159819200,2),(192,-633812400,1),(192,-622062000,2),(192,-602276400,1),(192,-591825600,2),(192,-570740400,1),(192,-560203200,2),(192,-539118000,1),(192,-531345600,2),(192,-191358000,1),(192,-184190400,2),(192,-155156400,1),(192,-150062400,2),(192,-128890800,1),(192,-121118400,2),(192,-99946800,1),(192,-89582400,2),(192,-68410800,1),(192,-57960000,2),(192,499755600,1),(192,511243200,2),(192,530600400,1),(192,540273600,2),(192,562136400,1),(192,571204800,2),(192,1214283600,3),(192,1384056000,2),(193,-2147483648,1),(193,-1567453392,2),(193,-1233432000,3),(193,-1222981200,2),(193,-1205956800,3),(193,-1194037200,2),(193,-1172865600,3),(193,-1162501200,2),(193,-1141329600,3),(193,-1130965200,2),(193,-1109793600,3),(193,-1099429200,2),(193,-1078257600,3),(193,-1067806800,2),(193,-1046635200,3),(193,-1036270800,2),(193,-1015099200,3),(193,-1004734800,2),(193,-983563200,3),(193,-973198800,2),(193,-952027200,3),(193,-941576400,2),(193,-931032000,3),(193,-900882000,2),(193,-890337600,3),(193,-833749200,2),(193,-827265600,3),(193,-752274000,2),(193,-733780800,3),(193,-197326800,2),(193,-190843200,3),(193,-184194000,2),(193,-164491200,3),(193,-152658000,2),(193,-132955200,3),(193,-121122000,2),(193,-101419200,3),(193,-86821200,2),(193,-71092800,3),(193,-54766800,2),(193,-39038400,3),(193,-23317200,2),(193,-7588800,5),(193,128142000,4),(193,136605600,5),(193,596948400,4),(193,605066400,5),(193,624423600,4),(193,636516000,5),(193,656478000,4),(193,667965600,2),(193,687931200,4),(193,699415200,5),(193,719377200,4),(193,731469600,5),(193,938919600,3),(193,952052400,5),(193,1198983600,4),(193,1205632800,5),(193,1224385200,4),(193,1237082400,5),(194,-2147483648,0),(194,-1514736000,1),(194,-1451667600,2),(194,-1343062800,1),(194,-1234803600,2),(194,-1222963200,3),(194,-1207242000,2),(194,-873820800,4),(194,-769395600,5),(194,-761677200,2),(194,-686073600,3),(194,-661539600,2),(194,-495039600,3),(194,-481734000,2),(194,-463590000,3),(194,-450284400,2),(194,-431535600,3),(194,-418230000,2),(194,-400086000,3),(194,-386780400,2),(194,-368636400,3),(194,-355330800,2),(194,-337186800,3),(194,-323881200,2),(194,-305737200,3),(194,-292431600,2),(194,199274400,3),(194,215600400,2),(194,230724000,3),(194,247050000,2),(194,262778400,3),(194,278499600,2),(194,294228000,3),(194,309949200,2),(194,325677600,3),(194,341398800,2),(194,357127200,3),(194,372848400,2),(194,388576800,3),(194,404902800,2),(194,420026400,3),(194,436352400,2),(194,452080800,3),(194,467802000,2),(194,483530400,3),(194,499251600,2),(194,514980000,3),(194,530701200,2),(194,544615200,3),(194,562150800,2),(194,576064800,3),(194,594205200,2),(194,607514400,3),(194,625654800,2),(194,638964000,3),(194,657104400,2),(194,671018400,3),(194,688554000,2),(194,702468000,3),(194,720003600,2),(194,733917600,3),(194,752058000,2),(194,765367200,3),(194,783507600,2),(194,796816800,3),(194,814957200,2),(194,828871200,3),(194,846406800,2),(194,860320800,3),(194,877856400,2),(194,891770400,3),(194,909306000,2),(194,923220000,3),(194,941360400,2),(194,954669600,3),(194,972810000,2),(194,986119200,3),(194,1004259600,2),(194,1018173600,3),(194,1035709200,2),(194,1049623200,3),(194,1067158800,2),(194,1081072800,3),(194,1099213200,2),(194,1112522400,3),(194,1130662800,2),(194,1143972000,3),(194,1162112400,2),(194,1175421600,3),(194,1193562000,2),(194,1207476000,3),(194,1225011600,2),(194,1238925600,3),(194,1256461200,2),(194,1268560800,3),(194,1289120400,2),(194,1300010400,3),(194,1320570000,2),(194,1331460000,3),(194,1352019600,2),(194,1362909600,3),(194,1383469200,2),(194,1394359200,3),(194,1414918800,2),(194,1425808800,3),(194,1446368400,2),(194,1457863200,3),(194,1478422800,2),(194,1489312800,3),(194,1509872400,2),(194,1520762400,3),(194,1541322000,2),(194,1552212000,3),(194,1572771600,2),(194,1583661600,3),(194,1604221200,2),(194,1615716000,3),(194,1636275600,2),(194,1647165600,3),(194,1667725200,2),(194,1678615200,3),(194,1699174800,2),(194,1710064800,3),(194,1730624400,2),(194,1741514400,3),(194,1762074000,2),(194,1772964000,3),(194,1793523600,2),(194,1805018400,3),(194,1825578000,2),(194,1836468000,3),(194,1857027600,2),(194,1867917600,3),(194,1888477200,2),(194,1899367200,3),(194,1919926800,2),(194,1930816800,3),(194,1951376400,2),(194,1962871200,3),(194,1983430800,2),(194,1994320800,3),(194,2014880400,2),(194,2025770400,3),(194,2046330000,2),(194,2057220000,3),(194,2077779600,2),(194,2088669600,3),(194,2109229200,2),(194,2120119200,3),(194,2140678800,2),(195,-2147483648,0),(195,-1767212472,2),(195,-1206954000,1),(195,-1191358800,2),(195,-1175371200,1),(195,-1159822800,2),(195,-633816000,1),(195,-622065600,2),(195,-602280000,1),(195,-591829200,2),(195,-570744000,1),(195,-560206800,2),(195,-539121600,1),(195,-531349200,2),(195,-191361600,1),(195,-184194000,2),(195,-155160000,1),(195,-150066000,2),(195,-128894400,1),(195,-121122000,2),(195,-99950400,1),(195,-89586000,2),(195,-68414400,1),(195,-57963600,2),(195,499752000,1),(195,511239600,2),(195,530596800,1),(195,540270000,2),(195,562132800,1),(195,571201200,2),(195,1214280000,3),(196,-2147483648,1),(196,-1892661434,2),(196,-1688410800,1),(196,-1619205434,3),(196,-1593806400,1),(196,-1335986234,4),(196,-1317585600,2),(196,-1304362800,4),(196,-1286049600,2),(196,-1272826800,4),(196,-1254513600,2),(196,-1241290800,4),(196,-1222977600,2),(196,-1209754800,4),(196,-1191355200,2),(196,-1178132400,3),(196,-870552000,2),(196,-865278000,3),(196,-740520000,5),(196,-736376400,3),(196,-718056000,2),(196,-713649600,3),(196,-36619200,6),(196,-23922000,7),(196,-3355200,6),(196,7527600,7),(196,24465600,6),(196,37767600,7),(196,55915200,6),(196,69217200,7),(196,87969600,6),(196,100666800,7),(196,118209600,6),(196,132116400,7),(196,150868800,6),(196,163566000,7),(196,182318400,6),(196,195620400,7),(196,213768000,6),(196,227070000,7),(196,245217600,6),(196,258519600,7),(196,277272000,6),(196,289969200,7),(196,308721600,6),(196,321418800,7),(196,340171200,6),(196,353473200,7),(196,371620800,6),(196,384922800,7),(196,403070400,6),(196,416372400,7),(196,434520000,6),(196,447822000,7),(196,466574400,6),(196,479271600,7),(196,498024000,6),(196,510721200,7),(196,529473600,6),(196,545194800,7),(196,560923200,6),(196,574225200,7),(196,592372800,6),(196,605674800,7),(196,624427200,6),(196,637124400,7),(196,653457600,6),(196,668574000,7),(196,687326400,6),(196,700628400,7),(196,718776000,6),(196,732078000,7),(196,750225600,6),(196,763527600,7),(196,781675200,6),(196,794977200,7),(196,813729600,6),(196,826426800,7),(196,845179200,6),(196,859690800,7),(196,876628800,6),(196,889930800,7),(196,906868800,6),(196,923194800,7),(196,939528000,6),(196,952830000,7),(196,971582400,6),(196,984279600,7),(196,1003032000,6),(196,1015729200,7),(196,1034481600,6),(196,1047178800,7),(196,1065931200,6),(196,1079233200,7),(196,1097380800,6),(196,1110682800,7),(196,1128830400,6),(196,1142132400,7),(196,1160884800,6),(196,1173582000,7),(196,1192334400,6),(196,1206846000,7),(196,1223784000,6),(196,1237086000,7),(196,1255233600,6),(196,1270350000,7),(196,1286683200,6),(196,1304823600,7),(196,1313899200,6),(196,1335668400,7),(196,1346558400,6),(196,1367118000,7),(196,1378612800,6),(196,1398567600,7),(196,1410062400,6),(196,1463281200,7),(196,1471147200,6),(196,1494730800,7),(196,1502596800,6),(196,1526180400,7),(196,1534046400,6),(196,1554606000,7),(196,1567915200,6),(196,1586055600,7),(196,1599364800,6),(196,1617505200,7),(196,1630814400,6),(196,1648954800,7),(196,1662264000,6),(196,1680404400,7),(196,1693713600,6),(196,1712458800,7),(196,1725768000,6),(196,1743908400,7),(196,1757217600,6),(196,1775358000,7),(196,1788667200,6),(196,1806807600,7),(196,1820116800,6),(196,1838257200,7),(196,1851566400,6),(196,1870311600,7),(196,1883016000,6),(196,1901761200,7),(196,1915070400,6),(196,1933210800,7),(196,1946520000,6),(196,1964660400,7),(196,1977969600,6),(196,1996110000,7),(196,2009419200,6),(196,2027559600,7),(196,2040868800,6),(196,2059614000,7),(196,2072318400,6),(196,2091063600,7),(196,2104372800,6),(196,2122513200,7),(196,2135822400,6),(197,-2147483648,1),(197,-1159773600,3),(197,-100119600,2),(197,-89668800,3),(197,-5770800,4),(197,4422600,3),(197,25678800,4),(197,33193800,3),(197,57733200,4),(197,64816200,3),(197,89182800,4),(197,96438600,3),(197,120632400,4),(197,127974600,3),(197,152082000,5),(197,972799200,3),(197,975823200,5),(198,-2147483648,0),(198,-1767214412,2),(198,-1206957600,1),(198,-1191362400,2),(198,-1175374800,1),(198,-1159826400,2),(198,-633819600,1),(198,-622069200,2),(198,-602283600,1),(198,-591832800,2),(198,-570747600,1),(198,-560210400,2),(198,-539125200,1),(198,-531352800,2),(198,-195426000,1),(198,-184197600,2),(198,-155163600,1),(198,-150069600,2),(198,-128898000,1),(198,-121125600,2),(198,-99954000,1),(198,-89589600,2),(198,-68418000,1),(198,-57967200,2),(198,499748400,1),(198,511236000,2),(198,530593200,1),(198,540266400,2),(198,562129200,1),(198,571197600,2),(198,592974000,1),(198,602042400,2),(198,624423600,1),(198,634701600,2),(198,656478000,1),(198,666756000,2),(198,687927600,1),(198,697600800,2),(198,719982000,1),(198,728445600,2),(198,750826800,1),(198,761709600,2),(198,782276400,1),(198,793159200,2),(198,813726000,1),(198,824004000,2),(198,844570800,1),(198,856058400,2),(198,876106800,1),(198,888717600,2),(198,908074800,1),(198,919562400,2),(198,938919600,1),(198,951616800,2),(198,970974000,1),(198,982461600,2),(198,1003028400,1),(198,1013911200,2),(198,1036292400,1),(198,1045360800,2),(198,1066532400,1),(198,1076810400,2),(198,1099364400,1),(198,1108864800,2),(198,1129431600,1),(198,1140314400,2),(198,1162695600,1),(198,1172368800,2),(198,1192330800,1),(198,1203213600,2),(198,1224385200,1),(198,1234663200,2),(198,1255834800,1),(198,1266717600,2),(198,1287284400,1),(198,1298167200,2),(198,1318734000,1),(198,1330221600,2),(198,1350788400,1),(198,1361066400,2),(198,1382238000,1),(198,1392516000,2),(198,1413687600,1),(198,1424570400,2),(198,1445137200,1),(198,1456020000,2),(198,1476586800,1),(198,1487469600,2),(198,1508036400,1),(198,1518919200,2),(198,1541300400,1),(198,1550368800,2),(199,-2147483648,0),(199,-1686090728,1),(199,323841600,2),(199,338961600,3),(199,354679200,6),(199,370400400,4),(199,386125200,5),(199,401850000,4),(199,417574800,5),(199,433299600,4),(199,449024400,5),(199,465354000,4),(199,481078800,5),(199,496803600,4),(199,512528400,5),(199,528253200,4),(199,543978000,5),(199,559702800,4),(199,575427600,5),(199,591152400,4),(199,606877200,5),(199,622602000,4),(199,638326800,5),(199,654656400,4),(199,670381200,5),(199,686106000,4),(199,701830800,5),(199,717555600,4),(199,733280400,5),(199,749005200,4),(199,764730000,5),(199,780454800,4),(199,796179600,5),(199,811904400,4),(199,828234000,5),(199,846378000,4),(199,859683600,5),(199,877827600,4),(199,891133200,5),(199,909277200,4),(199,922582800,5),(199,941331600,4),(199,954032400,5),(199,972781200,4),(199,985482000,5),(199,1004230800,4),(199,1017536400,5),(199,1035680400,4),(199,1048986000,5),(199,1067130000,4),(199,1080435600,5),(199,1099184400,4),(199,1111885200,5),(199,1130634000,4),(199,1143334800,5),(199,1162083600,4),(199,1174784400,5),(199,1193533200,4),(199,1206838800,5),(199,1224982800,4),(199,1238288400,5),(199,1256432400,4),(199,1269738000,5),(199,1288486800,4),(199,1301187600,5),(199,1319936400,4),(199,1332637200,5),(199,1351386000,4),(199,1364691600,5),(199,1382835600,4),(199,1396141200,5),(199,1414285200,4),(199,1427590800,5),(199,1445734800,4),(199,1459040400,5),(199,1477789200,4),(199,1490490000,5),(199,1509238800,4),(199,1521939600,5),(199,1540688400,4),(199,1553994000,5),(199,1572138000,4),(199,1585443600,5),(199,1603587600,4),(199,1616893200,5),(199,1635642000,4),(199,1648342800,5),(199,1667091600,4),(199,1679792400,5),(199,1698541200,4),(199,1711846800,5),(199,1729990800,4),(199,1743296400,5),(199,1761440400,4),(199,1774746000,5),(199,1792890000,4),(199,1806195600,5),(199,1824944400,4),(199,1837645200,5),(199,1856394000,4),(199,1869094800,5),(199,1887843600,4),(199,1901149200,5),(199,1919293200,4),(199,1932598800,5),(199,1950742800,4),(199,1964048400,5),(199,1982797200,4),(199,1995498000,5),(199,2014246800,4),(199,2026947600,5),(199,2045696400,4),(199,2058397200,5),(199,2077146000,4),(199,2090451600,5),(199,2108595600,4),(199,2121901200,5),(199,2140045200,4),(200,-2147483648,2),(200,-1633273200,1),(200,-1615132800,2),(200,-1601823600,1),(200,-1583683200,2),(200,-1570374000,1),(200,-1551628800,2),(200,-1538924400,1),(200,-1534089600,2),(200,-880210800,3),(200,-769395600,4),(200,-765388800,2),(200,-147884400,1),(200,-131558400,2),(200,-116434800,1),(200,-100108800,2),(200,-84380400,1),(200,-68659200,2),(200,-52930800,1),(200,-37209600,2),(200,-21481200,1),(200,-5760000,2),(200,9968400,1),(200,25689600,2),(200,41418000,1),(200,57744000,2),(200,73472400,1),(200,89193600,2),(200,104922000,1),(200,120643200,2),(200,126694800,1),(200,152092800,2),(200,162378000,1),(200,183542400,2),(200,199270800,1),(200,215596800,2),(200,230720400,1),(200,247046400,2),(200,262774800,1),(200,278496000,2),(200,294224400,1),(200,309945600,2),(200,325674000,1),(200,341395200,2),(200,357123600,1),(200,372844800,2),(200,388573200,1),(200,404899200,2),(200,420022800,1),(200,436348800,2),(200,452077200,1),(200,467798400,2),(200,483526800,1),(200,499248000,2),(200,514976400,1),(200,530697600,2),(200,544611600,1),(200,562147200,2),(200,576061200,1),(200,594201600,2),(200,607510800,1),(200,625651200,2),(200,638960400,1),(200,657100800,2),(200,671014800,1),(200,688550400,2),(200,702464400,1),(200,720000000,2),(200,733914000,1),(200,752054400,2),(200,765363600,1),(200,783504000,2),(200,796813200,1),(200,814953600,2),(200,828867600,1),(200,846403200,2),(200,860317200,1),(200,877852800,2),(200,891766800,1),(200,909302400,2),(200,923216400,1),(200,941356800,2),(200,954666000,1),(200,972806400,2),(200,986115600,1),(200,1004256000,2),(200,1018170000,1),(200,1035705600,2),(200,1049619600,1),(200,1067155200,2),(200,1081069200,1),(200,1099209600,2),(200,1112518800,1),(200,1130659200,2),(200,1143968400,1),(200,1162108800,2),(200,1173603600,1),(200,1194163200,2),(200,1205053200,1),(200,1225612800,2),(200,1236502800,1),(200,1257062400,2),(200,1268557200,1),(200,1289116800,2),(200,1300006800,1),(200,1320566400,2),(200,1331456400,1),(200,1352016000,2),(200,1362906000,1),(200,1383465600,2),(200,1394355600,1),(200,1414915200,2),(200,1425805200,1),(200,1446364800,2),(200,1457859600,1),(200,1478419200,2),(200,1489309200,1),(200,1509868800,2),(200,1520758800,1),(200,1541318400,2),(200,1552208400,1),(200,1572768000,2),(200,1583658000,1),(200,1604217600,2),(200,1615712400,1),(200,1636272000,2),(200,1647162000,1),(200,1667721600,2),(200,1678611600,1),(200,1699171200,2),(200,1710061200,1),(200,1730620800,2),(200,1741510800,1),(200,1762070400,2),(200,1772960400,1),(200,1793520000,2),(200,1805014800,1),(200,1825574400,2),(200,1836464400,1),(200,1857024000,2),(200,1867914000,1),(200,1888473600,2),(200,1899363600,1),(200,1919923200,2),(200,1930813200,1),(200,1951372800,2),(200,1962867600,1),(200,1983427200,2),(200,1994317200,1),(200,2014876800,2),(200,2025766800,1),(200,2046326400,2),(200,2057216400,1),(200,2077776000,2),(200,2088666000,1),(200,2109225600,2),(200,2120115600,1),(200,2140675200,2),(201,-2147483648,1),(201,-880207200,2),(201,-769395600,3),(201,-765385200,1),(201,-21477600,4),(201,-5756400,1),(201,9972000,4),(201,25693200,1),(201,41421600,4),(201,57747600,1),(201,73476000,4),(201,89197200,1),(201,104925600,4),(201,120646800,1),(201,126698400,4),(201,152096400,1),(201,162381600,4),(201,183546000,1),(201,199274400,4),(201,215600400,1),(201,230724000,4),(201,247050000,1),(201,262778400,4),(201,278499600,1),(201,294228000,4),(201,309949200,1),(201,325677600,4),(201,341398800,1),(201,357127200,4),(201,372848400,1),(201,388576800,4),(201,404902800,1),(201,420026400,4),(201,436352400,5),(201,439030800,7),(201,452084400,6),(201,467805600,7),(201,483534000,6),(201,499255200,7),(201,514983600,6),(201,530704800,7),(201,544618800,6),(201,562154400,7),(201,576068400,6),(201,594208800,7),(201,607518000,6),(201,625658400,7),(201,638967600,6),(201,657108000,7),(201,671022000,6),(201,688557600,7),(201,702471600,6),(201,720007200,7),(201,733921200,6),(201,752061600,7),(201,765370800,6),(201,783511200,7),(201,796820400,6),(201,814960800,7),(201,828874800,6),(201,846410400,7),(201,860324400,6),(201,877860000,7),(201,891774000,6),(201,909309600,7),(201,923223600,6),(201,941364000,7),(201,954673200,6),(201,972813600,7),(201,986122800,6),(201,1004263200,7),(201,1018177200,6),(201,1035712800,7),(201,1049626800,6),(201,1067162400,7),(201,1081076400,6),(201,1099216800,7),(201,1112526000,6),(201,1130666400,7),(201,1143975600,6),(201,1162116000,7),(201,1173610800,6),(201,1194170400,7),(201,1205060400,6),(201,1225620000,7),(201,1236510000,6),(201,1257069600,7),(201,1268564400,6),(201,1289124000,7),(201,1300014000,6),(201,1320573600,7),(201,1331463600,6),(201,1352023200,7),(201,1362913200,6),(201,1383472800,7),(201,1394362800,6),(201,1414922400,7),(201,1425812400,6),(201,1446372000,7),(201,1457866800,6),(201,1478426400,7),(201,1489316400,6),(201,1509876000,7),(201,1520766000,6),(201,1541325600,7),(201,1552215600,6),(201,1572775200,7),(201,1583665200,6),(201,1604224800,7),(201,1615719600,6),(201,1636279200,7),(201,1647169200,6),(201,1667728800,7),(201,1678618800,6),(201,1699178400,7),(201,1710068400,6),(201,1730628000,7),(201,1741518000,6),(201,1762077600,7),(201,1772967600,6),(201,1793527200,7),(201,1805022000,6),(201,1825581600,7),(201,1836471600,6),(201,1857031200,7),(201,1867921200,6),(201,1888480800,7),(201,1899370800,6),(201,1919930400,7),(201,1930820400,6),(201,1951380000,7),(201,1962874800,6),(201,1983434400,7),(201,1994324400,6),(201,2014884000,7),(201,2025774000,6),(201,2046333600,7),(201,2057223600,6),(201,2077783200,7),(201,2088673200,6),(201,2109232800,7),(201,2120122800,6),(201,2140682400,7),(202,-2147483648,0),(202,-1825098836,1),(203,-2147483648,2),(203,-1664130548,1),(203,-1650137348,2),(203,-1632076148,1),(203,-1615145348,2),(203,-1598650148,1),(203,-1590100148,2),(203,-1567286948,1),(203,-1551565748,2),(203,-1535837348,1),(203,-1520116148,2),(203,-1503782948,1),(203,-1488666548,2),(203,-1472333348,1),(203,-1457216948,2),(203,-1440883748,1),(203,-1425767348,2),(203,-1409434148,1),(203,-1394317748,2),(203,-1377984548,1),(203,-1362263348,2),(203,-1346534948,1),(203,-1330813748,2),(203,-1314480548,1),(203,-1299364148,2),(203,-1283030948,1),(203,-1267914548,2),(203,-1251581348,1),(203,-1236464948,2),(203,-1220131748,1),(203,-1205015348,2),(203,-1188682148,1),(203,-1172960948,2),(203,-1156627748,1),(203,-1141511348,2),(203,-1125178148,1),(203,-1110061748,2),(203,-1096921748,4),(203,-1093728600,3),(203,-1078612200,4),(203,-1061670600,3),(203,-1048973400,4),(203,-1030221000,3),(203,-1017523800,4),(203,-998771400,3),(203,-986074200,4),(203,-966717000,3),(203,-954624600,4),(203,-935267400,3),(203,-922570200,4),(203,-903817800,3),(203,-891120600,4),(203,-872368200,6),(203,-769395600,5),(203,-765401400,4),(203,-746044200,3),(203,-733347000,4),(203,-714594600,3),(203,-701897400,4),(203,-683145000,3),(203,-670447800,4),(203,-651695400,3),(203,-638998200,4),(203,-619641000,3),(203,-606943800,4),(203,-589401000,3),(203,-576099000,4),(203,-557951400,3),(203,-544649400,4),(203,-526501800,3),(203,-513199800,4),(203,-495052200,3),(203,-481750200,4),(203,-463602600,3),(203,-450300600,4),(203,-431548200,3),(203,-418246200,4),(203,-400098600,3),(203,-386796600,4),(203,-368649000,3),(203,-355347000,4),(203,-337199400,3),(203,-323897400,4),(203,-305749800,3),(203,-289423800,4),(203,-273695400,3),(203,-257974200,4),(203,-242245800,3),(203,-226524600,4),(203,-210796200,3),(203,-195075000,4),(203,-179346600,3),(203,-163625400,4),(203,-147897000,3),(203,-131571000,4),(203,-116447400,3),(203,-100121400,4),(203,-84393000,3),(203,-68671800,4),(203,-52943400,3),(203,-37222200,4),(203,-21493800,3),(203,-5772600,4),(203,9955800,3),(203,25677000,4),(203,41405400,3),(203,57731400,4),(203,73459800,3),(203,89181000,4),(203,104909400,3),(203,120630600,4),(203,136359000,3),(203,152080200,4),(203,167808600,3),(203,183529800,4),(203,199258200,3),(203,215584200,4),(203,230707800,3),(203,247033800,4),(203,262762200,3),(203,278483400,4),(203,294211800,3),(203,309933000,4),(203,325661400,3),(203,341382600,4),(203,357111000,3),(203,372832200,4),(203,388560600,3),(203,404886600,4),(203,420010200,3),(203,436336200,4),(203,452064600,3),(203,467785800,4),(203,483514200,3),(203,499235400,4),(203,514963800,3),(203,530685000,4),(203,544591860,3),(203,562127460,4),(203,576041460,7),(203,594178260,4),(203,607491060,3),(203,625631460,4),(203,638940660,3),(203,657081060,4),(203,670995060,3),(203,688530660,4),(203,702444660,3),(203,719980260,4),(203,733894260,3),(203,752034660,4),(203,765343860,3),(203,783484260,4),(203,796793460,3),(203,814933860,4),(203,828847860,3),(203,846383460,4),(203,860297460,3),(203,877833060,4),(203,891747060,3),(203,909282660,4),(203,923196660,3),(203,941337060,4),(203,954646260,3),(203,972786660,4),(203,986095860,3),(203,1004236260,4),(203,1018150260,3),(203,1035685860,4),(203,1049599860,3),(203,1067135460,4),(203,1081049460,3),(203,1099189860,4),(203,1112499060,3),(203,1130639460,4),(203,1143948660,3),(203,1162089060,4),(203,1173583860,3),(203,1194143460,4),(203,1205033460,3),(203,1225593060,4),(203,1236483060,3),(203,1257042660,4),(203,1268537460,3),(203,1289097060,4),(203,1299987060,3),(203,1320553800,4),(203,1331443800,3),(203,1352003400,4),(203,1362893400,3),(203,1383453000,4),(203,1394343000,3),(203,1414902600,4),(203,1425792600,3),(203,1446352200,4),(203,1457847000,3),(203,1478406600,4),(203,1489296600,3),(203,1509856200,4),(203,1520746200,3),(203,1541305800,4),(203,1552195800,3),(203,1572755400,4),(203,1583645400,3),(203,1604205000,4),(203,1615699800,3),(203,1636259400,4),(203,1647149400,3),(203,1667709000,4),(203,1678599000,3),(203,1699158600,4),(203,1710048600,3),(203,1730608200,4),(203,1741498200,3),(203,1762057800,4),(203,1772947800,3),(203,1793507400,4),(203,1805002200,3),(203,1825561800,4),(203,1836451800,3),(203,1857011400,4),(203,1867901400,3),(203,1888461000,4),(203,1899351000,3),(203,1919910600,4),(203,1930800600,3),(203,1951360200,4),(203,1962855000,3),(203,1983414600,4),(203,1994304600,3),(203,2014864200,4),(203,2025754200,3),(203,2046313800,4),(203,2057203800,3),(203,2077763400,4),(203,2088653400,3),(203,2109213000,4),(203,2120103000,3),(203,2140662600,4),(204,-2147483648,0),(204,-1825098836,1),(205,-2147483648,0),(205,-1825098836,1),(206,-2147483648,0),(206,-1825098836,1),(207,-2147483648,0),(207,-1825098836,1),(208,-2147483648,0),(208,-2030201320,2),(208,-1632063600,1),(208,-1615132800,2),(208,-880210800,3),(208,-769395600,4),(208,-765388800,2),(208,-747241200,1),(208,-732729600,2),(208,-715791600,1),(208,-702489600,2),(208,-684342000,1),(208,-671040000,2),(208,-652892400,1),(208,-639590400,2),(208,-400086000,1),(208,-384364800,2),(208,-337186800,1),(208,-321465600,2),(208,-305737200,1),(208,-292435200,2),(208,-273682800,1),(208,-260985600,2),(208,73472400,5),(209,-2147483648,0),(209,-1538503868,2),(209,547020000,1),(209,559717200,2),(209,578469600,1),(209,591166800,2),(209,1146981600,1),(209,1154926800,2),(210,-2147483648,0),(210,-1686079492,2),(210,670399200,1),(210,686120400,2),(210,701848800,1),(210,717570000,2),(210,733903200,1),(210,752043600,2),(210,765352800,1),(210,783493200,2),(210,796802400,1),(210,814942800,2),(210,828856800,1),(210,846392400,2),(210,860306400,1),(210,877842000,2),(210,891756000,1),(210,909291600,2),(210,923205600,1),(210,941346000,2),(210,954655200,1),(210,972795600,2),(210,986104800,1),(210,1004245200,2),(210,1018159200,1),(210,1035694800,2),(210,1049608800,1),(210,1067144400,2),(210,1081058400,1),(210,1099198800,2),(210,1112508000,1),(210,1130648400,2),(210,1143957600,1),(210,1162098000,2),(210,1173592800,1),(210,1194152400,2),(210,1205042400,1),(210,1225602000,2),(210,1236492000,1),(210,1257051600,2),(210,1268546400,1),(210,1289106000,2),(210,1299996000,1),(210,1320555600,2),(210,1331445600,1),(210,1352005200,2),(210,1362895200,1),(210,1383454800,2),(210,1394344800,1),(210,1414904400,2),(210,1425794400,1),(210,1446354000,2),(210,1457848800,1),(210,1478408400,2),(210,1489298400,1),(210,1509858000,2),(210,1520748000,1),(210,1541307600,2),(210,1552197600,1),(210,1572757200,2),(210,1583647200,1),(210,1604206800,2),(210,1615701600,1),(210,1636261200,2),(210,1647151200,1),(210,1667710800,2),(210,1678600800,1),(210,1699160400,2),(210,1710050400,1),(210,1730610000,2),(210,1741500000,1),(210,1762059600,2),(210,1772949600,1),(210,1793509200,2),(210,1805004000,1),(210,1825563600,2),(210,1836453600,1),(210,1857013200,2),(210,1867903200,1),(210,1888462800,2),(210,1899352800,1),(210,1919912400,2),(210,1930802400,1),(210,1951362000,2),(210,1962856800,1),(210,1983416400,2),(210,1994306400,1),(210,2014866000,2),(210,2025756000,1),(210,2046315600,2),(210,2057205600,1),(210,2077765200,2),(210,2088655200,1),(210,2109214800,2),(210,2120104800,1),(210,2140664400,2),(211,-2147483648,1),(211,-1893434400,2),(211,-880218000,3),(211,-769395600,4),(211,-765396000,2),(211,9961200,5),(211,25682400,2),(211,41410800,5),(211,57736800,2),(211,73465200,5),(211,89186400,2),(211,136364400,5),(211,152085600,2),(211,167814000,5),(211,183535200,2),(211,199263600,5),(211,215589600,2),(211,230713200,5),(211,247039200,2),(211,262767600,5),(211,278488800,2),(211,294217200,5),(211,309938400,2),(211,325666800,5),(211,341388000,2),(211,357116400,5),(211,372837600,2),(211,388566000,5),(211,404892000,2),(211,420015600,5),(211,436341600,2),(211,452070000,5),(211,467791200,2),(211,483519600,5),(211,499240800,2),(211,514969200,5),(211,530690400,2),(211,544604400,5),(211,562140000,2),(211,576054000,5),(211,594194400,2),(211,607503600,5),(211,625644000,2),(211,638953200,5),(211,657093600,2),(211,671007600,5),(211,688543200,2),(211,702457200,5),(211,719992800,2),(211,733906800,5),(211,752047200,2),(211,765356400,5),(211,783496800,2),(211,796806000,5),(211,814946400,2),(211,828860400,5),(211,846396000,2),(211,860310000,5),(211,877845600,2),(211,891759600,5),(211,909295200,2),(211,923209200,5),(211,941349600,2),(211,954658800,5),(211,972799200,2),(211,986108400,5),(211,1004248800,2),(211,1018162800,5),(211,1035698400,2),(211,1049612400,5),(211,1067148000,2),(211,1081062000,5),(211,1099202400,2),(211,1112511600,5),(211,1130652000,2),(211,1143961200,5),(211,1162101600,2),(211,1173596400,5),(211,1194156000,2),(211,1205046000,5),(211,1225605600,2),(211,1236495600,5),(211,1257055200,2),(211,1268550000,5),(211,1289109600,2),(211,1299999600,5),(211,1320559200,2),(211,1331449200,5),(211,1352008800,2),(211,1362898800,5),(211,1383458400,2),(211,1394348400,5),(211,1414908000,2),(211,1425798000,5),(211,1446357600,2),(211,1457852400,5),(211,1478412000,2),(211,1489302000,5),(211,1509861600,2),(211,1520751600,5),(211,1541311200,2),(211,1552201200,5),(211,1572760800,2),(211,1583650800,5),(211,1604210400,2),(211,1615705200,5),(211,1636264800,2),(211,1647154800,5),(211,1667714400,2),(211,1678604400,5),(211,1699164000,2),(211,1710054000,5),(211,1730613600,2),(211,1741503600,5),(211,1762063200,2),(211,1772953200,5),(211,1793512800,2),(211,1805007600,5),(211,1825567200,2),(211,1836457200,5),(211,1857016800,2),(211,1867906800,5),(211,1888466400,2),(211,1899356400,5),(211,1919916000,2),(211,1930806000,5),(211,1951365600,2),(211,1962860400,5),(211,1983420000,2),(211,1994310000,5),(211,2014869600,2),(211,2025759600,5),(211,2046319200,2),(211,2057209200,5),(211,2077768800,2),(211,2088658800,5),(211,2109218400,2),(211,2120108400,5),(211,2140668000,2),(212,-2147483648,0),(212,-1514736000,1),(212,-1451667600,2),(212,-1343062800,1),(212,-1234803600,2),(212,-1222963200,3),(212,-1207242000,2),(212,-873820800,4),(212,-769395600,5),(212,-761677200,2),(212,-686073600,3),(212,-661539600,2),(212,-495039600,3),(212,-481734000,2),(212,-463590000,3),(212,-450284400,2),(212,-431535600,3),(212,-418230000,2),(212,-400086000,3),(212,-386780400,2),(212,-368636400,3),(212,-355330800,2),(212,-337186800,3),(212,-323881200,2),(212,-305737200,3),(212,-292431600,2),(212,199274400,3),(212,215600400,2),(212,230724000,3),(212,247050000,2),(212,262778400,3),(212,278499600,2),(212,294228000,3),(212,309949200,2),(212,325677600,3),(212,341398800,2),(212,357127200,3),(212,372848400,2),(212,388576800,3),(212,404902800,2),(212,420026400,3),(212,436352400,2),(212,452080800,3),(212,467802000,2),(212,483530400,3),(212,499251600,2),(212,514980000,3),(212,530701200,2),(212,544615200,3),(212,562150800,2),(212,576064800,3),(212,594205200,2),(212,607514400,3),(212,625654800,2),(212,638964000,3),(212,657104400,2),(212,671018400,3),(212,688554000,2),(212,702468000,3),(212,720003600,2),(212,733917600,3),(212,752058000,2),(212,765367200,3),(212,783507600,2),(212,796816800,3),(212,814957200,2),(212,828871200,3),(212,846406800,2),(212,860320800,3),(212,877856400,2),(212,891770400,3),(212,909306000,2),(212,923220000,3),(212,941360400,2),(212,954669600,3),(212,972810000,2),(212,986119200,3),(212,1004259600,2),(212,1018173600,3),(212,1035709200,2),(212,1049623200,3),(212,1067158800,2),(212,1081072800,3),(212,1099213200,2),(212,1112522400,3),(212,1130662800,2),(212,1143972000,3),(212,1162112400,2),(212,1175421600,3),(212,1193562000,2),(212,1207476000,3),(212,1225011600,2),(212,1238925600,3),(212,1256461200,2),(212,1268560800,3),(212,1289120400,2),(212,1300010400,3),(212,1320570000,2),(212,1331460000,3),(212,1352019600,2),(212,1362909600,3),(212,1383469200,2),(212,1394359200,3),(212,1414918800,2),(212,1425808800,3),(212,1446368400,2),(212,1457863200,3),(212,1478422800,2),(212,1489312800,3),(212,1509872400,2),(212,1520762400,3),(212,1541322000,2),(212,1552212000,3),(212,1572771600,2),(212,1583661600,3),(212,1604221200,2),(212,1615716000,3),(212,1636275600,2),(212,1647165600,3),(212,1667725200,2),(212,1678615200,3),(212,1699174800,2),(212,1710064800,3),(212,1730624400,2),(212,1741514400,3),(212,1762074000,2),(212,1772964000,3),(212,1793523600,2),(212,1805018400,3),(212,1825578000,2),(212,1836468000,3),(212,1857027600,2),(212,1867917600,3),(212,1888477200,2),(212,1899367200,3),(212,1919926800,2),(212,1930816800,3),(212,1951376400,2),(212,1962871200,3),(212,1983430800,2),(212,1994320800,3),(212,2014880400,2),(212,2025770400,3),(212,2046330000,2),(212,2057220000,3),(212,2077779600,2),(212,2088669600,3),(212,2109229200,2),(212,2120119200,3),(212,2140678800,2),(213,-2147483648,2),(213,-1632070800,1),(213,-1615140000,2),(213,-1601753400,1),(213,-1583697600,2),(213,-1567357200,1),(213,-1554667200,2),(213,-1534698000,1),(213,-1524074400,2),(213,-1503248400,1),(213,-1492365600,2),(213,-1471798800,1),(213,-1460916000,2),(213,-1440954000,1),(213,-1428861600,2),(213,-1409504400,1),(213,-1397412000,2),(213,-1378054800,1),(213,-1365962400,2),(213,-1346605200,1),(213,-1333908000,2),(213,-1315155600,1),(213,-1301853600,2),(213,-1283706000,1),(213,-1270404000,2),(213,-1252256400,1),(213,-1238954400,2),(213,-1220806800,1),(213,-1207504800,2),(213,-1188752400,1),(213,-1176055200,2),(213,-1157302800,1),(213,-1144000800,2),(213,-1125853200,1),(213,-1112551200,2),(213,-1094403600,1),(213,-1081101600,2),(213,-1062954000,1),(213,-1049652000,2),(213,-1031504400,1),(213,-1018202400,2),(213,-1000054800,1),(213,-986752800,2),(213,-968000400,1),(213,-955303200,2),(213,-936550800,1),(213,-880218000,3),(213,-769395600,4),(213,-765396000,2),(213,-747248400,1),(213,-733946400,2),(213,-715806000,1),(213,-702504000,2),(213,-684356400,1),(213,-671054400,2),(213,-652906800,1),(213,-634161600,2),(213,-620845200,1),(213,-602704800,2),(213,-589395600,1),(213,-576093600,2),(213,-557946000,1),(213,-544644000,2),(213,-526496400,1),(213,-513194400,2),(213,-495046800,1),(213,-481744800,2),(213,-463597200,1),(213,-450295200,2),(213,-431542800,1),(213,-418240800,2),(213,-400093200,1),(213,-384372000,2),(213,-368643600,1),(213,-352922400,2),(213,-337194000,1),(213,-321472800,2),(213,-305744400,1),(213,-289418400,2),(213,-273690000,1),(213,-257968800,2),(213,-242240400,1),(213,-226519200,2),(213,-210790800,1),(213,-195069600,2),(213,-179341200,1),(213,-163620000,2),(213,-147891600,1),(213,-131565600,2),(213,-116442000,1),(213,-100116000,2),(213,-84387600,1),(213,-68666400,2),(213,-52938000,1),(213,-37216800,2),(213,-21488400,1),(213,-5767200,2),(213,9961200,1),(213,25682400,2),(213,41410800,1),(213,57736800,2),(213,73465200,1),(213,89186400,2),(213,104914800,1),(213,120636000,2),(213,136364400,1),(213,152085600,2),(213,167814000,1),(213,183535200,2),(213,199263600,1),(213,215589600,2),(213,230713200,1),(213,247039200,2),(213,262767600,1),(213,278488800,2),(213,294217200,1),(213,309938400,2),(213,325666800,1),(213,341388000,2),(213,357116400,1),(213,372837600,2),(213,388566000,1),(213,404892000,2),(213,420015600,1),(213,436341600,2),(213,452070000,1),(213,467791200,2),(213,483519600,1),(213,499240800,2),(213,514969200,1),(213,530690400,2),(213,544604400,1),(213,562140000,2),(213,576054000,1),(213,594194400,2),(213,607503600,1),(213,625644000,2),(213,638953200,1),(213,657093600,2),(213,671007600,1),(213,688543200,2),(213,702457200,1),(213,719992800,2),(213,733906800,1),(213,752047200,2),(213,765356400,1),(213,783496800,2),(213,796806000,1),(213,814946400,2),(213,828860400,1),(213,846396000,2),(213,860310000,1),(213,877845600,2),(213,891759600,1),(213,909295200,2),(213,923209200,1),(213,941349600,2),(213,954658800,1),(213,972799200,2),(213,986108400,1),(213,1004248800,2),(213,1018162800,1),(213,1035698400,2),(213,1049612400,1),(213,1067148000,2),(213,1081062000,1),(213,1099202400,2),(213,1112511600,1),(213,1130652000,2),(213,1143961200,1),(213,1162101600,2),(213,1173596400,1),(213,1194156000,2),(213,1205046000,1),(213,1225605600,2),(213,1236495600,1),(213,1257055200,2),(213,1268550000,1),(213,1289109600,2),(213,1299999600,1),(213,1320559200,2),(213,1331449200,1),(213,1352008800,2),(213,1362898800,1),(213,1383458400,2),(213,1394348400,1),(213,1414908000,2),(213,1425798000,1),(213,1446357600,2),(213,1457852400,1),(213,1478412000,2),(213,1489302000,1),(213,1509861600,2),(213,1520751600,1),(213,1541311200,2),(213,1552201200,1),(213,1572760800,2),(213,1583650800,1),(213,1604210400,2),(213,1615705200,1),(213,1636264800,2),(213,1647154800,1),(213,1667714400,2),(213,1678604400,1),(213,1699164000,2),(213,1710054000,1),(213,1730613600,2),(213,1741503600,1),(213,1762063200,2),(213,1772953200,1),(213,1793512800,2),(213,1805007600,1),(213,1825567200,2),(213,1836457200,1),(213,1857016800,2),(213,1867906800,1),(213,1888466400,2),(213,1899356400,1),(213,1919916000,2),(213,1930806000,1),(213,1951365600,2),(213,1962860400,1),(213,1983420000,2),(213,1994310000,1),(213,2014869600,2),(213,2025759600,1),(213,2046319200,2),(213,2057209200,1),(213,2077768800,2),(213,2088658800,1),(213,2109218400,2),(213,2120108400,1),(213,2140668000,2),(214,-2147483648,0),(214,-1825098836,1),(215,-2147483648,2),(215,-1632060000,1),(215,-1615129200,2),(215,-880207200,3),(215,-769395600,4),(215,-765385200,2),(215,-747237600,1),(215,-733935600,2),(215,-715788000,1),(215,-702486000,2),(215,-684338400,1),(215,-671036400,2),(215,-652888800,1),(215,-639586800,2),(215,-620834400,1),(215,-608137200,2),(215,-589384800,1),(215,-576082800,2),(215,-557935200,1),(215,-544633200,2),(215,-526485600,1),(215,-513183600,2),(215,-495036000,1),(215,-481734000,2),(215,-463586400,1),(215,-450284400,2),(215,-431532000,1),(215,-418230000,2),(215,-400082400,1),(215,-386780400,2),(215,-368632800,1),(215,-355330800,2),(215,-337183200,1),(215,-323881200,2),(215,-305733600,1),(215,-292431600,2),(215,-273679200,1),(215,-260982000,2),(215,-242229600,1),(215,-226508400,2),(215,-210780000,1),(215,-195058800,2),(215,-179330400,1),(215,-163609200,2),(215,-147880800,1),(215,-131554800,2),(215,-116431200,1),(215,-100105200,2),(215,-84376800,1),(215,-68655600,2),(215,-52927200,1),(215,-37206000,2),(215,-21477600,1),(215,-5756400,2),(215,9972000,1),(215,25693200,2),(215,41421600,1),(215,57747600,2),(215,73476000,1),(215,89197200,2),(215,104925600,1),(215,120646800,2),(215,136375200,1),(215,152096400,2),(215,167824800,1),(215,183546000,2),(215,199274400,1),(215,215600400,2),(215,230724000,1),(215,247050000,2),(215,262778400,1),(215,278499600,2),(215,294228000,1),(215,309949200,2),(215,325677600,1),(215,341398800,2),(215,357127200,1),(215,372848400,2),(215,388576800,1),(215,404902800,2),(215,420026400,1),(215,436352400,2),(215,452080800,1),(215,467802000,2),(215,483530400,1),(215,499251600,2),(215,514980000,1),(215,530701200,2),(215,544615200,1),(215,562150800,2),(215,576064800,1),(215,594205200,2),(215,607514400,1),(215,625654800,2),(215,638964000,1),(215,657104400,2),(215,671018400,1),(215,688554000,2),(215,702468000,1),(215,720003600,2),(215,733917600,1),(215,752058000,2),(215,765367200,1),(215,783507600,2),(215,796816800,1),(215,814957200,2),(215,828871200,1),(215,846406800,2),(215,860320800,1),(215,877856400,2),(215,891770400,1),(215,909306000,2),(215,923220000,1),(215,941360400,2),(215,954669600,1),(215,972810000,2),(215,986119200,1),(215,1004259600,2),(215,1018173600,1),(215,1035709200,2),(215,1049623200,1),(215,1067158800,2),(215,1081072800,1),(215,1099213200,2),(215,1112522400,1),(215,1130662800,2),(215,1143972000,1),(215,1162112400,2),(215,1173607200,1),(215,1194166800,2),(215,1205056800,1),(215,1225616400,2),(215,1236506400,1),(215,1257066000,2),(215,1268560800,1),(215,1289120400,2),(215,1300010400,1),(215,1320570000,2),(215,1331460000,1),(215,1352019600,2),(215,1362909600,1),(215,1383469200,2),(215,1394359200,1),(215,1414918800,2),(215,1425808800,1),(215,1446368400,2),(215,1457863200,1),(215,1478422800,2),(215,1489312800,1),(215,1509872400,2),(215,1520762400,1),(215,1541322000,2),(215,1552212000,1),(215,1572771600,2),(215,1583661600,1),(215,1604221200,2),(215,1615716000,1),(215,1636275600,2),(215,1647165600,1),(215,1667725200,2),(215,1678615200,1),(215,1699174800,2),(215,1710064800,1),(215,1730624400,2),(215,1741514400,1),(215,1762074000,2),(215,1772964000,1),(215,1793523600,2),(215,1805018400,1),(215,1825578000,2),(215,1836468000,1),(215,1857027600,2),(215,1867917600,1),(215,1888477200,2),(215,1899367200,1),(215,1919926800,2),(215,1930816800,1),(215,1951376400,2),(215,1962871200,1),(215,1983430800,2),(215,1994320800,1),(215,2014880400,2),(215,2025770400,1),(215,2046330000,2),(215,2057220000,1),(215,2077779600,2),(215,2088669600,1),(215,2109229200,2),(215,2120119200,1),(215,2140678800,2),(216,-2147483648,0),(216,-1825098836,1),(217,-2147483648,2),(217,-1632056400,1),(217,-1615125600,2),(217,-1596978000,1),(217,-1583164800,2),(217,-880203600,3),(217,-769395600,4),(217,-765381600,2),(217,-147884400,5),(217,-131554800,2),(217,-81961200,6),(217,325677600,7),(217,341398800,6),(217,357127200,7),(217,372848400,6),(217,388576800,7),(217,404902800,6),(217,420026400,7),(217,436352400,6),(217,452080800,7),(217,467802000,6),(217,483530400,7),(217,499251600,6),(217,514980000,7),(217,530701200,6),(217,544615200,7),(217,562150800,6),(217,576064800,7),(217,594205200,6),(217,607514400,7),(217,625654800,6),(217,638964000,7),(217,657104400,6),(217,671018400,7),(217,688554000,6),(217,702468000,7),(217,720003600,6),(217,733917600,7),(217,752058000,6),(217,765367200,7),(217,783507600,6),(217,796816800,7),(217,814957200,6),(217,828871200,7),(217,846406800,6),(217,860320800,7),(217,877856400,6),(217,891770400,7),(217,909306000,6),(217,923220000,7),(217,941360400,6),(217,954669600,7),(217,972810000,6),(217,986119200,7),(217,1004259600,6),(217,1018173600,7),(217,1035709200,6),(217,1049623200,7),(217,1067158800,6),(217,1081072800,7),(217,1099213200,6),(217,1112522400,7),(217,1130662800,6),(217,1143972000,7),(217,1162112400,6),(217,1173607200,7),(217,1194166800,6),(217,1205056800,7),(217,1225616400,6),(217,1236506400,7),(217,1257066000,6),(217,1268560800,7),(217,1289120400,6),(217,1300010400,7),(217,1320570000,6),(217,1331460000,7),(217,1352019600,6),(217,1362909600,7),(217,1383469200,6),(217,1394359200,7),(217,1414918800,6),(217,1425808800,7),(217,1446368400,6),(217,1457863200,7),(217,1478422800,6),(217,1489312800,7),(217,1509872400,6),(217,1520762400,7),(217,1541322000,6),(217,1552212000,7),(217,1572771600,6),(217,1583661600,7),(217,1604221200,6),(217,1615716000,7),(217,1636275600,6),(217,1647165600,7),(217,1667725200,6),(217,1678615200,7),(217,1699174800,6),(217,1710064800,7),(217,1730624400,6),(217,1741514400,7),(217,1762074000,6),(217,1772964000,7),(217,1793523600,6),(217,1805018400,7),(217,1825578000,6),(217,1836468000,7),(217,1857027600,6),(217,1867917600,7),(217,1888477200,6),(217,1899367200,7),(217,1919926800,6),(217,1930816800,7),(217,1951376400,6),(217,1962871200,7),(217,1983430800,6),(217,1994320800,7),(217,2014880400,6),(217,2025770400,7),(217,2046330000,6),(217,2057220000,7),(217,2077779600,6),(217,2088669600,7),(217,2109229200,6),(217,2120119200,7),(217,2140678800,6),(218,-2147483648,2),(218,-1694368800,1),(218,-1681671600,2),(218,-1632067200,1),(218,-1615136400,2),(218,-1029686400,1),(218,-1018198800,2),(218,-880214400,3),(218,-769395600,4),(218,-765392400,2),(218,-746035200,1),(218,-732733200,2),(218,-715795200,1),(218,-702493200,2),(218,-684345600,1),(218,-671043600,2),(218,-652896000,1),(218,-639594000,2),(218,-620755200,1),(218,-607626000,2),(218,-589392000,1),(218,-576090000,2),(218,-557942400,1),(218,-544640400,2),(218,-526492800,1),(218,-513190800,2),(218,-495043200,1),(218,-481741200,2),(218,-463593600,1),(218,-450291600,2),(218,-431539200,1),(218,-418237200,2),(218,-400089600,1),(218,-386787600,2),(218,-368640000,1),(218,-355338000,2),(218,-337190400,1),(218,-321469200,2),(218,-305740800,1),(218,-292438800,2),(218,-210787200,1),(218,-198090000,2),(218,-116438400,5),(218,-100108800,6),(218,-84384000,5),(218,-68659200,6),(218,-52934400,5),(218,-37209600,6),(218,-21484800,5),(218,-5760000,6),(218,9964800,5),(218,25689600,6),(218,41414400,5),(218,57744000,6),(218,73468800,5),(218,89193600,6),(218,104918400,5),(218,120643200,6),(218,136368000,5),(218,152092800,6),(218,167817600,5),(218,183542400,6),(218,199267200,5),(218,215596800,6),(218,230716800,5),(218,247046400,6),(218,262771200,5),(218,278496000,6),(218,294220800,5),(218,309945600,6),(218,325670400,5),(218,341395200,6),(218,357120000,5),(218,372844800,6),(218,388569600,5),(218,404899200,6),(218,420019200,5),(218,436348800,6),(218,452073600,5),(218,467798400,6),(218,483523200,5),(218,499248000,6),(218,514972800,5),(218,530697600,6),(218,544608000,5),(218,562147200,6),(218,576057600,5),(218,594201600,6),(218,607507200,5),(218,625651200,6),(218,638956800,5),(218,657100800,6),(218,671011200,5),(218,688550400,6),(218,702460800,5),(218,720000000,6),(218,733910400,5),(218,752054400,6),(218,765360000,5),(218,783504000,6),(218,796809600,5),(218,814953600,6),(218,828864000,5),(218,846403200,6),(218,860313600,5),(218,877852800,6),(218,891763200,5),(218,909302400,6),(218,923212800,5),(218,941356800,6),(218,954662400,5),(218,972806400,6),(218,986112000,5),(218,1004256000,6),(218,1018166400,5),(218,1035705600,6),(218,1049616000,5),(218,1067155200,6),(218,1081065600,5),(218,1099209600,6),(218,1112515200,5),(218,1130659200,6),(218,1136095200,2),(218,1143964800,1),(218,1162105200,2),(218,1173600000,1),(218,1194159600,2),(218,1205049600,1),(218,1225609200,2),(218,1236499200,1),(218,1257058800,2),(218,1268553600,1),(218,1289113200,2),(218,1300003200,1),(218,1320562800,2),(218,1331452800,1),(218,1352012400,2),(218,1362902400,1),(218,1383462000,2),(218,1394352000,1),(218,1414911600,2),(218,1425801600,1),(218,1446361200,2),(218,1457856000,1),(218,1478415600,2),(218,1489305600,1),(218,1509865200,2),(218,1520755200,1),(218,1541314800,2),(218,1552204800,1),(218,1572764400,2),(218,1583654400,1),(218,1604214000,2),(218,1615708800,1),(218,1636268400,2),(218,1647158400,1),(218,1667718000,2),(218,1678608000,1),(218,1699167600,2),(218,1710057600,1),(218,1730617200,2),(218,1741507200,1),(218,1762066800,2),(218,1772956800,1),(218,1793516400,2),(218,1805011200,1),(218,1825570800,2),(218,1836460800,1),(218,1857020400,2),(218,1867910400,1),(218,1888470000,2),(218,1899360000,1),(218,1919919600,2),(218,1930809600,1),(218,1951369200,2),(218,1962864000,1),(218,1983423600,2),(218,1994313600,1),(218,2014873200,2),(218,2025763200,1),(218,2046322800,2),(218,2057212800,1),(218,2077772400,2),(218,2088662400,1),(218,2109222000,2),(218,2120112000,1),(218,2140671600,2),(219,-2147483648,1),(219,-880203600,2),(219,-769395600,3),(219,-765381600,1),(219,-21474000,4),(219,-5752800,1),(219,9975600,4),(219,25696800,1),(219,41425200,4),(219,57751200,1),(219,73479600,4),(219,89200800,1),(219,104929200,4),(219,120650400,1),(219,126702000,4),(219,152100000,1),(219,162385200,4),(219,183549600,1),(219,199278000,4),(219,215604000,1),(219,230727600,4),(219,247053600,1),(219,262782000,4),(219,278503200,1),(219,294231600,4),(219,309952800,1),(219,325681200,4),(219,341402400,1),(219,357130800,4),(219,372852000,1),(219,388580400,4),(219,404906400,1),(219,420030000,4),(219,436356000,1),(219,439030800,6),(219,452084400,5),(219,467805600,6),(219,483534000,5),(219,499255200,6),(219,514983600,5),(219,530704800,6),(219,544618800,5),(219,562154400,6),(219,576068400,5),(219,594208800,6),(219,607518000,5),(219,625658400,6),(219,638967600,5),(219,657108000,6),(219,671022000,5),(219,688557600,6),(219,702471600,5),(219,720007200,6),(219,733921200,5),(219,752061600,6),(219,765370800,5),(219,783511200,6),(219,796820400,5),(219,814960800,6),(219,828874800,5),(219,846410400,6),(219,860324400,5),(219,877860000,6),(219,891774000,5),(219,909309600,6),(219,923223600,5),(219,941364000,6),(219,954673200,5),(219,972813600,6),(219,986122800,5),(219,1004263200,6),(219,1018177200,5),(219,1035712800,6),(219,1049626800,5),(219,1067162400,6),(219,1081076400,5),(219,1099216800,6),(219,1112526000,5),(219,1130666400,6),(219,1143975600,5),(219,1162116000,6),(219,1173610800,5),(219,1194170400,6),(219,1205060400,5),(219,1225620000,6),(219,1236510000,5),(219,1257069600,6),(219,1268564400,5),(219,1289124000,6),(219,1300014000,5),(219,1320573600,6),(219,1331463600,5),(219,1352023200,6),(219,1362913200,5),(219,1383472800,6),(219,1394362800,5),(219,1414922400,6),(219,1425812400,5),(219,1446372000,6),(219,1457866800,5),(219,1478426400,6),(219,1489316400,5),(219,1509876000,6),(219,1520766000,5),(219,1541325600,6),(219,1552215600,5),(219,1572775200,6),(219,1583665200,5),(219,1604224800,6),(219,1615719600,5),(219,1636279200,6),(219,1647169200,5),(219,1667728800,6),(219,1678618800,5),(219,1699178400,6),(219,1710068400,5),(219,1730628000,6),(219,1741518000,5),(219,1762077600,6),(219,1772967600,5),(219,1793527200,6),(219,1805022000,5),(219,1825581600,6),(219,1836471600,5),(219,1857031200,6),(219,1867921200,5),(219,1888480800,6),(219,1899370800,5),(219,1919930400,6),(219,1930820400,5),(219,1951380000,6),(219,1962874800,5),(219,1983434400,6),(219,1994324400,5),(219,2014884000,6),(219,2025774000,5),(219,2046333600,6),(219,2057223600,5),(219,2077783200,6),(219,2088673200,5),(219,2109232800,6),(219,2120122800,5),(219,2140682400,6),(220,-2147483648,0),(220,-1104537600,3),(220,-880210800,1),(220,-769395600,2),(220,-765388800,3),(220,-147891600,4),(220,-131562000,3),(220,325674000,5),(220,341395200,3),(220,357123600,5),(220,372844800,3),(220,388573200,5),(220,404899200,3),(220,420022800,5),(220,436348800,3),(220,452077200,5),(220,467798400,3),(220,483526800,5),(220,499248000,3),(220,514976400,5),(220,530697600,3),(220,544611600,5),(220,562147200,3),(220,576061200,5),(220,594201600,3),(220,607510800,5),(220,625651200,3),(220,638960400,5),(220,657100800,3),(220,671014800,5),(220,688550400,3),(220,702464400,5),(220,720000000,3),(220,733914000,5),(220,752054400,3),(220,765363600,5),(220,783504000,3),(220,796813200,5),(220,814953600,3),(220,828867600,5),(220,846403200,3),(220,860317200,5),(220,877852800,3),(220,891766800,5),(220,909302400,3),(220,923216400,5),(220,941356800,3),(220,954666000,5),(220,972806400,3),(220,986115600,5),(220,1004256000,3),(220,1018170000,5),(220,1035705600,3),(220,1049619600,5),(220,1067155200,3),(220,1081069200,5),(220,1099209600,3),(220,1112518800,5),(220,1130659200,3),(220,1143968400,5),(220,1162108800,3),(220,1173603600,5),(220,1194163200,3),(220,1205053200,5),(220,1225612800,3),(220,1236502800,5),(220,1257062400,3),(220,1268557200,5),(220,1289116800,3),(220,1300006800,5),(220,1320566400,3),(220,1331456400,5),(220,1352016000,3),(220,1362906000,5),(220,1383465600,3),(220,1394355600,5),(220,1414915200,3),(220,1425805200,5),(220,1446364800,3),(220,1457859600,5),(220,1478419200,3),(220,1489309200,5),(220,1509868800,3),(220,1520758800,5),(220,1541318400,3),(220,1552208400,5),(220,1572768000,3),(220,1583658000,5),(220,1604217600,3),(220,1615712400,5),(220,1636272000,3),(220,1647162000,5),(220,1667721600,3),(220,1678611600,5),(220,1699171200,3),(220,1710061200,5),(220,1730620800,3),(220,1741510800,5),(220,1762070400,3),(220,1772960400,5),(220,1793520000,3),(220,1805014800,5),(220,1825574400,3),(220,1836464400,5),(220,1857024000,3),(220,1867914000,5),(220,1888473600,3),(220,1899363600,5),(220,1919923200,3),(220,1930813200,5),(220,1951372800,3),(220,1962867600,5),(220,1983427200,3),(220,1994317200,5),(220,2014876800,3),(220,2025766800,5),(220,2046326400,3),(220,2057216400,5),(220,2077776000,3),(220,2088666000,5),(220,2109225600,3),(220,2120115600,5),(220,2140675200,3),(221,-2147483648,0),(221,-31536000,1),(221,1255802400,2),(221,1267714800,1),(221,1319738400,2),(221,1329843600,3),(221,1477065600,2),(221,1520701200,1),(222,-2147483648,0),(222,-409190400,1),(222,-163062000,0),(222,-28857600,1),(222,1255806000,2),(222,1268251200,3),(222,1319742000,2),(222,1329854400,3),(223,-2147483648,0),(223,-725846400,1),(223,-566992800,0),(223,-415497600,1),(224,-2147483648,1),(224,-1680508800,2),(224,-1665392400,1),(224,-1601719200,3),(224,-687052800,1),(224,-71136000,4),(224,-55411200,5),(224,-37267200,4),(224,-25776000,5),(224,-5817600,4),(224,5673600,5),(224,25632000,4),(224,37728000,5),(224,57686400,4),(224,67968000,5),(224,89136000,4),(224,100022400,5),(224,120585600,4),(224,131472000,5),(224,152035200,4),(224,162921600,5),(224,183484800,4),(224,194976000,5),(224,215539200,4),(224,226425600,5),(224,246988800,4),(224,257875200,5),(224,278438400,4),(224,289324800,5),(224,309888000,4),(224,320774400,5),(224,341337600,4),(224,352224000,5),(224,372787200,4),(224,386092800,5),(224,404841600,4),(224,417542400,5),(224,436291200,4),(224,447177600,5),(224,467740800,4),(224,478627200,5),(224,499190400,4),(224,510076800,5),(224,530035200,4),(224,542736000,5),(224,562089600,4),(224,574790400,5),(224,594144000,4),(224,606240000,5),(224,625593600,4),(224,637689600,5),(224,657043200,4),(224,670348800,5),(224,686678400,4),(224,701798400,5),(224,718128000,4),(224,733248000,5),(224,749577600,4),(224,764697600,5),(224,781027200,4),(224,796147200,5),(224,812476800,4),(224,828201600,5),(224,844531200,4),(224,859651200,5),(224,875980800,4),(224,891100800,5),(224,907430400,4),(224,922550400,5),(224,938880000,4),(224,954000000,5),(224,967305600,4),(224,985449600,5),(224,1002384000,4),(224,1017504000,5),(224,1033833600,4),(224,1048953600,5),(224,1065283200,4),(224,1080403200,5),(224,1096732800,4),(224,1111852800,5),(224,1128182400,4),(224,1143907200,5),(224,1159632000,4),(224,1174752000,5),(224,1191686400,4),(224,1207411200,5),(224,1223136000,4),(224,1238860800,5),(224,1254585600,4),(224,1270310400,6),(225,-2147483648,0),(225,-501206400,1),(225,1255809600,2),(226,-2147483648,2),(226,-1330335000,1),(226,-1320057000,2),(226,-1300699800,3),(226,-1287396000,2),(226,-1269250200,3),(226,-1255946400,2),(226,-1237800600,3),(226,-1224496800,2),(226,-1206351000,3),(226,-1192442400,2),(226,-1174901400,3),(226,-1160992800,2),(226,-1143451800,3),(226,-1125914400,2),(226,-1112607000,3),(226,-1094464800,2),(226,-1081157400,3),(226,-1063015200,2),(226,-1049707800,3),(226,-1031565600,2),(226,-1018258200,3),(226,-1000116000,2),(226,-986808600,3),(226,-968061600,2),(226,-955359000,3),(226,-936612000,2),(226,-923304600,3),(226,-757425600,6),(226,152632800,4),(226,162309600,5),(226,183477600,4),(226,194968800,5),(226,215532000,4),(226,226418400,5),(226,246981600,4),(226,257868000,5),(226,278431200,4),(226,289317600,5),(226,309880800,4),(226,320767200,5),(226,341330400,4),(226,352216800,5),(226,372780000,4),(226,384271200,5),(226,404834400,4),(226,415720800,5),(226,436284000,4),(226,447170400,5),(226,467733600,4),(226,478620000,5),(226,499183200,4),(226,510069600,5),(226,530632800,4),(226,541519200,5),(226,562082400,4),(226,573573600,5),(226,594136800,4),(226,605023200,5),(226,623772000,4),(226,637682400,5),(226,655221600,4),(226,669132000,5),(226,686671200,4),(226,700581600,5),(226,718120800,4),(226,732636000,5),(226,749570400,4),(226,764085600,5),(226,781020000,4),(226,795535200,5),(226,812469600,4),(226,826984800,5),(226,844524000,4),(226,858434400,5),(226,875973600,4),(226,889884000,5),(226,907423200,4),(226,921938400,5),(226,938872800,4),(226,953388000,5),(226,970322400,4),(226,984837600,5),(226,1002376800,4),(226,1016287200,5),(226,1033826400,4),(226,1047736800,5),(226,1065276000,4),(226,1079791200,5),(226,1096725600,4),(226,1111240800,5),(226,1128175200,4),(226,1142690400,5),(226,1159624800,4),(226,1174140000,5),(226,1191074400,4),(226,1207404000,5),(226,1222524000,4),(226,1238853600,5),(226,1253973600,4),(226,1270303200,5),(226,1285423200,4),(226,1301752800,5),(226,1316872800,4),(226,1333202400,5),(226,1348927200,4),(226,1365256800,5),(226,1380376800,4),(226,1396706400,5),(226,1411826400,4),(226,1428156000,5),(226,1443276000,4),(226,1459605600,5),(226,1474725600,4),(226,1491055200,5),(226,1506175200,4),(226,1522504800,5),(226,1538229600,4),(226,1554559200,5),(226,1569679200,4),(226,1586008800,5),(226,1601128800,4),(226,1617458400,5),(226,1632578400,4),(226,1648908000,5),(226,1664028000,4),(226,1680357600,5),(226,1695477600,4),(226,1712412000,5),(226,1727532000,4),(226,1743861600,5),(226,1758981600,4),(226,1775311200,5),(226,1790431200,4),(226,1806760800,5),(226,1821880800,4),(226,1838210400,5),(226,1853330400,4),(226,1869660000,5),(226,1885384800,4),(226,1901714400,5),(226,1916834400,4),(226,1933164000,5),(226,1948284000,4),(226,1964613600,5),(226,1979733600,4),(226,1996063200,5),(226,2011183200,4),(226,2027512800,5),(226,2042632800,4),(226,2058962400,5),(226,2074687200,4),(226,2091016800,5),(226,2106136800,4),(226,2122466400,5),(226,2137586400,4),(227,-2147483648,0),(227,-157766400,2),(227,-152658000,1),(227,-132955200,2),(227,-121122000,1),(227,-101419200,2),(227,-86821200,1),(227,-71092800,2),(227,-54766800,1),(227,-39038400,2),(227,-23317200,1),(227,-7588800,4),(227,128142000,3),(227,136605600,4),(227,389070000,1),(227,403070400,5),(227,416372400,6),(227,434520000,5),(227,447822000,6),(227,466574400,5),(227,479271600,6),(227,498024000,5),(227,510721200,6),(227,529473600,5),(227,545194800,6),(227,560923200,5),(227,574225200,6),(227,592372800,5),(227,605674800,6),(227,624427200,5),(227,637124400,6),(227,653457600,5),(227,668574000,6),(227,687326400,5),(227,700628400,6),(227,718776000,5),(227,732078000,6),(227,750225600,5),(227,763527600,6),(227,781675200,5),(227,794977200,6),(227,813729600,5),(227,826426800,6),(227,845179200,5),(227,859690800,6),(227,876628800,5),(227,889930800,6),(227,906868800,5),(227,923194800,6),(227,939528000,5),(227,952830000,6),(227,971582400,5),(227,984279600,6),(227,1003032000,5),(227,1015729200,6),(227,1034481600,5),(227,1047178800,6),(227,1065931200,5),(227,1079233200,6),(227,1097380800,5),(227,1110682800,6),(227,1128830400,5),(227,1142132400,6),(227,1160884800,5),(227,1173582000,6),(227,1192334400,5),(227,1206846000,6),(227,1223784000,5),(227,1237086000,6),(227,1255233600,5),(227,1270350000,6),(227,1286683200,5),(227,1304823600,6),(227,1313899200,5),(227,1335668400,6),(227,1346558400,5),(227,1367118000,6),(227,1378612800,5),(227,1398567600,6),(227,1410062400,5),(227,1463281200,6),(227,1471147200,5),(227,1480820400,4),(228,-2147483648,0),(228,218246400,1),(229,-2147483648,2),(229,-1330335000,1),(229,-1320057000,2),(229,-1300699800,3),(229,-1287396000,2),(229,-1269250200,3),(229,-1255946400,2),(229,-1237800600,3),(229,-1224496800,2),(229,-1206351000,3),(229,-1192442400,2),(229,-1174901400,3),(229,-1160992800,2),(229,-1143451800,3),(229,-1125914400,2),(229,-1112607000,3),(229,-1094464800,2),(229,-1081157400,3),(229,-1063015200,2),(229,-1049707800,3),(229,-1031565600,2),(229,-1018258200,3),(229,-1000116000,2),(229,-986808600,3),(229,-968061600,2),(229,-955359000,3),(229,-936612000,2),(229,-923304600,3),(229,-757425600,6),(229,152632800,4),(229,162309600,5),(229,183477600,4),(229,194968800,5),(229,215532000,4),(229,226418400,5),(229,246981600,4),(229,257868000,5),(229,278431200,4),(229,289317600,5),(229,309880800,4),(229,320767200,5),(229,341330400,4),(229,352216800,5),(229,372780000,4),(229,384271200,5),(229,404834400,4),(229,415720800,5),(229,436284000,4),(229,447170400,5),(229,467733600,4),(229,478620000,5),(229,499183200,4),(229,510069600,5),(229,530632800,4),(229,541519200,5),(229,562082400,4),(229,573573600,5),(229,594136800,4),(229,605023200,5),(229,623772000,4),(229,637682400,5),(229,655221600,4),(229,669132000,5),(229,686671200,4),(229,700581600,5),(229,718120800,4),(229,732636000,5),(229,749570400,4),(229,764085600,5),(229,781020000,4),(229,795535200,5),(229,812469600,4),(229,826984800,5),(229,844524000,4),(229,858434400,5),(229,875973600,4),(229,889884000,5),(229,907423200,4),(229,921938400,5),(229,938872800,4),(229,953388000,5),(229,970322400,4),(229,984837600,5),(229,1002376800,4),(229,1016287200,5),(229,1033826400,4),(229,1047736800,5),(229,1065276000,4),(229,1079791200,5),(229,1096725600,4),(229,1111240800,5),(229,1128175200,4),(229,1142690400,5),(229,1159624800,4),(229,1174140000,5),(229,1191074400,4),(229,1207404000,5),(229,1222524000,4),(229,1238853600,5),(229,1253973600,4),(229,1270303200,5),(229,1285423200,4),(229,1301752800,5),(229,1316872800,4),(229,1333202400,5),(229,1348927200,4),(229,1365256800,5),(229,1380376800,4),(229,1396706400,5),(229,1411826400,4),(229,1428156000,5),(229,1443276000,4),(229,1459605600,5),(229,1474725600,4),(229,1491055200,5),(229,1506175200,4),(229,1522504800,5),(229,1538229600,4),(229,1554559200,5),(229,1569679200,4),(229,1586008800,5),(229,1601128800,4),(229,1617458400,5),(229,1632578400,4),(229,1648908000,5),(229,1664028000,4),(229,1680357600,5),(229,1695477600,4),(229,1712412000,5),(229,1727532000,4),(229,1743861600,5),(229,1758981600,4),(229,1775311200,5),(229,1790431200,4),(229,1806760800,5),(229,1821880800,4),(229,1838210400,5),(229,1853330400,4),(229,1869660000,5),(229,1885384800,4),(229,1901714400,5),(229,1916834400,4),(229,1933164000,5),(229,1948284000,4),(229,1964613600,5),(229,1979733600,4),(229,1996063200,5),(229,2011183200,4),(229,2027512800,5),(229,2042632800,4),(229,2058962400,5),(229,2074687200,4),(229,2091016800,5),(229,2106136800,4),(229,2122466400,5),(229,2137586400,4),(230,-2147483648,0),(230,-407808000,1),(231,-2147483648,0),(231,1108166400,3),(231,1111885200,1),(231,1130634000,2),(231,1143334800,1),(231,1162083600,2),(231,1174784400,1),(231,1193533200,2),(231,1206838800,1),(231,1224982800,2),(231,1238288400,1),(231,1256432400,2),(231,1269738000,1),(231,1288486800,2),(231,1301187600,1),(231,1319936400,2),(231,1332637200,1),(231,1351386000,2),(231,1364691600,1),(231,1382835600,2),(231,1396141200,1),(231,1414285200,2),(231,1427590800,1),(231,1445734800,2),(231,1459040400,1),(231,1477789200,2),(231,1490490000,1),(231,1509238800,2),(231,1521939600,1),(231,1540688400,2),(231,1553994000,1),(231,1572138000,2),(231,1585443600,1),(231,1603587600,2),(231,1616893200,1),(231,1635642000,2),(231,1648342800,1),(231,1667091600,2),(231,1679792400,1),(231,1698541200,2),(231,1711846800,1),(231,1729990800,2),(231,1743296400,1),(231,1761440400,2),(231,1774746000,1),(231,1792890000,2),(231,1806195600,1),(231,1824944400,2),(231,1837645200,1),(231,1856394000,2),(231,1869094800,1),(231,1887843600,2),(231,1901149200,1),(231,1919293200,2),(231,1932598800,1),(231,1950742800,2),(231,1964048400,1),(231,1982797200,2),(231,1995498000,1),(231,2014246800,2),(231,2026947600,1),(231,2045696400,2),(231,2058397200,1),(231,2077146000,2),(231,2090451600,1),(231,2108595600,2),(231,2121901200,1),(231,2140045200,2),(232,-2147483648,0),(232,-380073600,1),(233,-2147483648,2),(233,-1691884800,1),(233,-1680573600,2),(233,-927511200,1),(233,-857257200,3),(233,-844556400,4),(233,-828226800,3),(233,-812502000,4),(233,-796777200,3),(233,-781052400,4),(233,-765327600,3),(233,-340844400,4),(233,-324514800,3),(233,-308790000,4),(233,-293065200,3),(233,-277340400,4),(233,-261615600,3),(233,-245890800,4),(233,-230166000,3),(233,-214441200,4),(233,-198716400,3),(233,-182991600,4),(233,-166662000,3),(233,-147913200,4),(233,-135212400,3),(233,315529200,2),(233,323830800,5),(233,338950800,6),(233,354675600,5),(233,370400400,6),(233,386125200,5),(233,401850000,6),(233,417574800,5),(233,433299600,6),(233,449024400,5),(233,465354000,6),(233,481078800,5),(233,496803600,6),(233,512528400,5),(233,528253200,6),(233,543978000,5),(233,559702800,6),(233,575427600,5),(233,591152400,6),(233,606877200,5),(233,622602000,6),(233,638326800,5),(233,654656400,6),(233,670381200,5),(233,686106000,6),(233,701830800,5),(233,717555600,6),(233,733280400,5),(233,749005200,6),(233,764730000,5),(233,780454800,6),(233,796179600,5),(233,811904400,6),(233,828234000,5),(233,846378000,6),(233,859683600,5),(233,877827600,6),(233,891133200,5),(233,909277200,6),(233,922582800,5),(233,941331600,6),(233,954032400,5),(233,972781200,6),(233,985482000,5),(233,1004230800,6),(233,1017536400,5),(233,1035680400,6),(233,1048986000,5),(233,1067130000,6),(233,1080435600,5),(233,1099184400,6),(233,1111885200,5),(233,1130634000,6),(233,1143334800,5),(233,1162083600,6),(233,1174784400,5),(233,1193533200,6),(233,1206838800,5),(233,1224982800,6),(233,1238288400,5),(233,1256432400,6),(233,1269738000,5),(233,1288486800,6),(233,1301187600,5),(233,1319936400,6),(233,1332637200,5),(233,1351386000,6),(233,1364691600,5),(233,1382835600,6),(233,1396141200,5),(233,1414285200,6),(233,1427590800,5),(233,1445734800,6),(233,1459040400,5),(233,1477789200,6),(233,1490490000,5),(233,1509238800,6),(233,1521939600,5),(233,1540688400,6),(233,1553994000,5),(233,1572138000,6),(233,1585443600,5),(233,1603587600,6),(233,1616893200,5),(233,1635642000,6),(233,1648342800,5),(233,1667091600,6),(233,1679792400,5),(233,1698541200,6),(233,1711846800,5),(233,1729990800,6),(233,1743296400,5),(233,1761440400,6),(233,1774746000,5),(233,1792890000,6),(233,1806195600,5),(233,1824944400,6),(233,1837645200,5),(233,1856394000,6),(233,1869094800,5),(233,1887843600,6),(233,1901149200,5),(233,1919293200,6),(233,1932598800,5),(233,1950742800,6),(233,1964048400,5),(233,1982797200,6),(233,1995498000,5),(233,2014246800,6),(233,2026947600,5),(233,2045696400,6),(233,2058397200,5),(233,2077146000,6),(233,2090451600,5),(233,2108595600,6),(233,2121901200,5),(233,2140045200,6),(234,-2147483648,0),(234,-719636812,1),(235,-2147483648,0),(235,-1441170468,1),(235,-1247547600,3),(235,354909600,2),(235,370717200,3),(235,386445600,2),(235,402253200,3),(235,417981600,2),(235,433789200,3),(235,449604000,2),(235,465336000,4),(235,481060800,5),(235,496785600,4),(235,512510400,5),(235,528235200,4),(235,543960000,5),(235,559684800,4),(235,575409600,5),(235,591134400,4),(235,606859200,5),(235,622584000,4),(235,638308800,5),(235,654638400,4),(235,670363200,6),(235,686091600,7),(235,695768400,4),(235,701812800,5),(235,717537600,4),(235,733262400,5),(235,748987200,4),(235,764712000,5),(235,780436800,4),(235,796161600,5),(235,811886400,4),(235,828216000,5),(235,846360000,4),(235,859665600,5),(235,877809600,4),(235,891115200,5),(235,909259200,4),(235,922564800,5),(235,941313600,4),(235,954014400,5),(235,972763200,4),(235,985464000,5),(235,1004212800,4),(235,1017518400,5),(235,1035662400,4),(235,1048968000,5),(235,1067112000,4),(235,1080417600,5),(235,1099166400,4),(236,-2147483648,0),(236,-1230776624,2),(236,108165600,1),(236,118270800,2),(236,136591200,1),(236,149806800,2),(236,168127200,1),(236,181342800,2),(236,199749600,1),(236,215643600,2),(236,231285600,1),(236,244501200,2),(236,262735200,1),(236,275950800,2),(236,481154400,1),(236,496962000,2),(236,512949600,1),(236,528670800,2),(236,544399200,1),(236,560120400,2),(236,575848800,1),(236,592174800,2),(236,610581600,1),(236,623624400,2),(236,641167200,1),(236,655074000,2),(236,671839200,1),(236,685918800,2),(236,702856800,1),(236,717973200,2),(236,733701600,1),(236,749422800,2),(236,765151200,1),(236,779662800,2),(236,797205600,1),(236,811116000,3),(236,828655200,1),(236,843170400,3),(236,860104800,1),(236,874620000,3),(236,891554400,1),(236,906069600,3),(236,930780000,4),(236,938124000,3),(236,954367200,4),(236,970178400,3),(236,985816800,4),(236,1001628000,3),(236,1017352800,1),(236,1033077600,3),(236,1048802400,1),(236,1066946400,3),(236,1080252000,1),(236,1097791200,3),(236,1112306400,1),(236,1128031200,3),(236,1143756000,1),(236,1161900000,3),(236,1175205600,1),(236,1193349600,3),(236,1206655200,1),(236,1225404000,3),(236,1238104800,1),(236,1256853600,3),(236,1269554400,1),(236,1288303200,3),(236,1301608800,1),(236,1319752800,3),(236,1333058400,1),(236,1387486800,2),(236,1395957600,1),(236,1414706400,3),(236,1427407200,1),(236,1446156000,3),(236,1459461600,1),(236,1477605600,3),(236,1490911200,1),(236,1509055200,3),(236,1522360800,1),(236,1540504800,3),(236,1553810400,1),(236,1571954400,3),(236,1585260000,1),(236,1604008800,3),(236,1616709600,1),(236,1635458400,3),(236,1648764000,1),(236,1666908000,3),(236,1680213600,1),(236,1698357600,3),(236,1711663200,1),(236,1729807200,3),(236,1743112800,1),(236,1761861600,3),(236,1774562400,1),(236,1793311200,3),(236,1806012000,1),(236,1824760800,3),(236,1838066400,1),(236,1856210400,3),(236,1869516000,1),(236,1887660000,3),(236,1900965600,1),(236,1919109600,3),(236,1932415200,1),(236,1951164000,3),(236,1963864800,1),(236,1982613600,3),(236,1995919200,1),(236,2014063200,3),(236,2027368800,1),(236,2045512800,3),(236,2058818400,1),(236,2076962400,3),(236,2090268000,1),(236,2109016800,3),(236,2121717600,1),(236,2140466400,3),(237,-2147483648,0),(237,-1441194596,1),(237,-1247572800,3),(237,354884400,2),(237,370692000,3),(237,386420400,4),(237,402231600,1),(237,417960000,4),(237,433767600,1),(237,449582400,4),(237,465314400,5),(237,481039200,6),(237,496764000,5),(237,512488800,6),(237,528213600,5),(237,543938400,6),(237,559663200,5),(237,575388000,6),(237,591112800,5),(237,606837600,6),(237,622562400,5),(237,638287200,6),(237,654616800,5),(237,670341600,7),(237,686070000,8),(237,695746800,5),(237,701791200,6),(237,717516000,5),(237,733240800,6),(237,748965600,5),(237,764690400,6),(237,780415200,5),(237,796140000,6),(237,811864800,5),(237,828194400,6),(237,846338400,5),(237,859644000,6),(237,877788000,5),(237,891093600,6),(237,909237600,5),(237,922543200,6),(237,941292000,5),(237,953992800,6),(237,972741600,5),(237,985442400,6),(237,1004191200,5),(237,1017496800,6),(237,1035640800,5),(237,1048946400,6),(237,1067090400,5),(237,1080396000,6),(237,1099144800,5),(237,1111845600,6),(237,1130594400,5),(237,1143295200,6),(237,1162044000,5),(237,1174744800,6),(237,1193493600,5),(237,1206799200,6),(237,1224943200,5),(237,1238248800,6),(237,1256392800,5),(237,1269698400,7),(237,1288450800,8),(237,1301151600,5),(238,-2147483648,0),(238,-1441164064,1),(238,-1247544000,2),(238,370724400,3),(238,386445600,4),(238,402256800,2),(238,417985200,4),(238,433792800,2),(238,449607600,4),(238,465339600,5),(238,481064400,6),(238,496789200,5),(238,512514000,6),(238,528238800,5),(238,543963600,6),(238,559688400,5),(238,575413200,6),(238,591138000,5),(238,606862800,6),(238,622587600,5),(238,638312400,6),(238,654642000,5),(238,670366800,7),(238,686095200,8),(238,695772000,5),(238,701816400,6),(238,717541200,5),(238,733266000,6),(238,748990800,5),(238,764715600,6),(238,780440400,8),(238,796168800,7),(238,811893600,8),(238,828223200,7),(238,846367200,8),(238,859672800,7),(238,877816800,8),(238,891122400,7),(238,909266400,8),(238,922572000,7),(238,941320800,8),(238,954021600,7),(238,972770400,8),(238,985471200,7),(238,1004220000,8),(238,1017525600,7),(238,1035669600,8),(238,1048975200,7),(238,1067119200,8),(238,1080424800,7),(238,1099173600,5),(239,-2147483648,0),(239,-1441165720,1),(239,-1247544000,2),(239,354913200,3),(239,370720800,4),(239,386445600,3),(239,402256800,2),(239,417985200,3),(239,433792800,2),(239,449607600,3),(239,465339600,5),(239,481064400,6),(239,496789200,5),(239,512514000,6),(239,528238800,5),(239,543963600,6),(239,559688400,5),(239,575413200,6),(239,591138000,5),(239,606862800,6),(239,622587600,5),(239,638312400,6),(239,654642000,5),(239,670366800,7),(239,686095200,8),(239,695772000,5),(239,701816400,6),(239,717541200,5),(239,733266000,6),(239,748990800,5),(239,764715600,6),(239,780440400,5),(239,796165200,6),(239,811890000,5),(239,828219600,6),(239,846363600,5),(239,859669200,6),(239,877813200,5),(239,891118800,6),(239,909262800,5),(239,922568400,6),(239,941317200,5),(239,954018000,6),(239,972766800,5),(239,985467600,6),(239,1004216400,5),(239,1017522000,6),(239,1035666000,5),(239,1048971600,6),(239,1067115600,5),(239,1080421200,6),(239,1099170000,5),(240,-2147483648,0),(240,-1441166012,1),(240,-1247544000,3),(240,354913200,2),(240,370720800,3),(240,386449200,2),(240,402256800,3),(240,417985200,2),(240,433792800,3),(240,449607600,2),(240,465339600,4),(240,481064400,5),(240,496789200,4),(240,512514000,5),(240,528238800,4),(240,543963600,5),(240,559688400,4),(240,575413200,5),(240,591138000,4),(240,606862800,5),(240,622587600,4),(240,638312400,5),(240,654642000,4),(240,670366800,6),(240,686095200,7),(240,695772000,3),(241,-2147483648,0),(241,-1441166012,1),(241,-1247544000,3),(241,354913200,2),(241,370720800,3),(241,386449200,2),(241,402256800,3),(241,417985200,2),(241,433792800,3),(241,449607600,2),(241,465339600,4),(241,481064400,5),(241,496789200,4),(241,512514000,5),(241,528238800,4),(241,543963600,5),(241,559688400,4),(241,575413200,5),(241,591138000,4),(241,606862800,5),(241,622587600,4),(241,638312400,5),(241,654642000,4),(241,670366800,6),(241,686095200,7),(241,695772000,3),(242,-2147483648,0),(242,-1441164464,1),(242,-1247540400,2),(242,370724400,3),(242,386445600,4),(242,402256800,2),(242,417985200,4),(242,433792800,2),(242,449607600,4),(242,465339600,5),(242,481064400,6),(242,496789200,5),(242,512514000,6),(242,528238800,5),(242,543963600,6),(242,559688400,5),(242,575413200,6),(242,591138000,5),(242,606862800,6),(242,622587600,5),(242,638312400,6),(242,654642000,5),(242,670366800,7),(242,686095200,8),(242,695772000,5),(242,701816400,6),(242,717541200,5),(242,733266000,6),(242,748990800,5),(242,764715600,6),(242,780440400,5),(242,796165200,6),(242,811890000,5),(242,828219600,6),(242,846363600,5),(242,859669200,6),(242,877813200,5),(242,891118800,6),(242,909262800,5),(242,922568400,7),(242,941320800,8),(242,954021600,7),(242,972770400,8),(242,985471200,7),(242,1004220000,8),(242,1017525600,7),(242,1035669600,8),(242,1048975200,7),(242,1067119200,8),(242,1080424800,7),(242,1099173600,5),(243,-2147483648,1),(243,-1641005856,2),(243,389048400,3),(243,402264000,2),(243,417906000,3),(243,433800000,2),(243,449614800,3),(243,465422400,2),(243,481150800,3),(243,496792800,4),(243,512517600,5),(243,528242400,4),(243,543967200,5),(243,559692000,4),(243,575416800,5),(243,591141600,4),(243,606866400,5),(243,622591200,4),(243,638316000,5),(243,654645600,4),(243,670464000,5),(243,686275200,4),(243,702086400,5),(243,717897600,4),(243,733622400,5),(243,749433600,4),(243,765158400,5),(243,780969600,4),(243,796694400,5),(243,812505600,4),(243,828316800,5),(243,844128000,4),(243,859852800,5),(243,875664000,4),(243,891388800,5),(243,907200000,4),(243,922924800,5),(243,938736000,4),(243,954547200,5),(243,970358400,4),(243,986083200,5),(243,1001894400,4),(243,1017619200,5),(243,1033430400,4),(243,1049155200,5),(243,1064966400,4),(243,1080777600,5),(243,1096588800,4),(243,1112313600,5),(243,1128124800,4),(243,1143849600,5),(243,1159660800,4),(243,1175385600,5),(243,1191196800,4),(244,-2147483648,0),(244,-1577935568,1),(244,76190400,2),(245,-2147483648,0),(245,-1441163964,1),(245,-405140400,3),(245,354916800,2),(245,370724400,3),(245,386452800,2),(245,402260400,3),(245,417988800,2),(245,433796400,3),(245,449611200,2),(245,465343200,4),(245,481068000,5),(245,496792800,4),(245,512517600,5),(245,528242400,4),(245,543967200,5),(245,559692000,4),(245,575416800,5),(245,591141600,4),(245,606866400,5),(245,622591200,4),(245,638316000,5),(245,654645600,4),(245,670370400,6),(245,686098800,7),(245,701823600,6),(245,717548400,4),(245,820440000,3),(245,828234000,8),(245,846378000,9),(245,852062400,3),(245,859680000,2),(245,877824000,3),(245,891129600,2),(245,909273600,3),(245,922579200,2),(245,941328000,3),(245,954028800,2),(245,972777600,3),(245,985478400,2),(245,1004227200,3),(245,1017532800,2),(245,1035676800,3),(245,1048982400,2),(245,1067126400,3),(245,1080432000,2),(245,1099180800,3),(245,1111881600,2),(245,1130630400,3),(245,1143331200,2),(245,1162080000,3),(245,1174780800,2),(245,1193529600,3),(245,1206835200,2),(245,1224979200,3),(245,1238284800,2),(245,1256428800,3),(245,1269734400,2),(245,1288483200,3),(245,1301184000,2),(245,1319932800,3),(245,1332633600,2),(245,1351382400,3),(245,1364688000,2),(245,1382832000,3),(245,1396137600,2),(245,1414281600,3),(245,1427587200,2),(245,1445731200,3),(246,-2147483648,1),(246,-1570084924,2),(247,-2147483648,0),(247,-1579844100,1),(247,-1247551200,3),(247,354906000,2),(247,370713600,3),(247,386442000,2),(247,402249600,3),(247,417978000,2),(247,433785600,3),(247,449600400,2),(247,465332400,4),(247,481057200,5),(247,496782000,4),(247,512506800,5),(247,528231600,4),(247,543956400,5),(247,559681200,4),(247,575406000,5),(247,591130800,4),(247,606855600,5),(247,622580400,4),(247,638305200,5),(247,654634800,4),(247,670359600,6),(247,686088000,7),(247,695764800,4),(247,701809200,5),(247,717534000,4),(247,733258800,5),(247,748983600,4),(247,764708400,5),(247,780433200,4),(247,796158000,5),(247,801590400,8),(247,811886400,7),(247,828216000,6),(247,846360000,7),(247,859665600,6),(247,877809600,7),(247,891115200,6),(247,909259200,7),(247,922564800,6),(247,941313600,7),(247,954014400,6),(247,972763200,7),(247,985464000,6),(247,1004212800,7),(247,1017518400,6),(247,1035662400,7),(247,1048968000,6),(247,1067112000,7),(247,1080417600,6),(247,1099166400,7),(247,1111867200,6),(247,1130616000,7),(247,1143316800,6),(247,1162065600,7),(247,1174766400,6),(247,1193515200,7),(247,1206820800,6),(247,1224964800,7),(247,1238270400,6),(247,1256414400,7),(247,1269720000,6),(247,1288468800,7),(247,1301169600,4),(247,1414263600,7),(247,1459022400,4),(248,-2147483648,2),(248,-1570413600,1),(248,-1552186800,2),(248,-1538359200,1),(248,-1522551600,2),(248,-1507514400,1),(248,-1490583600,2),(248,-1473645600,1),(248,-1460948400,2),(248,-399866400,1),(248,-386650800,2),(248,-368330400,1),(248,-355114800,2),(248,-336794400,1),(248,-323578800,2),(248,-305172000,1),(248,-291956400,2),(248,-273636000,1),(248,-260420400,2),(248,78012000,1),(248,86734800,2),(248,105055200,1),(248,118270800,2),(248,136591200,1),(248,149806800,2),(248,168127200,1),(248,181342800,2),(248,199749600,1),(248,212965200,2),(248,231285600,1),(248,244501200,2),(248,262735200,1),(248,275950800,2),(248,452210400,1),(248,466722000,2),(248,483746400,1),(248,498258000,2),(248,515282400,1),(248,529794000,2),(248,546818400,1),(248,561330000,2),(248,581119200,1),(248,592952400,2),(248,610754400,1),(248,624488400,2),(248,641512800,1),(248,656024400,2),(248,673048800,1),(248,687560400,2),(248,704671200,1),(248,718146000,2),(248,733269600,1),(248,748990800,2),(248,764719200,1),(248,780440400,2),(248,796168800,1),(248,811890000,2),(248,828223200,1),(248,843944400,2),(248,859672800,1),(248,875394000,2),(248,891122400,1),(248,906843600,2),(248,922572000,1),(248,941317200,2),(248,954021600,1),(248,972766800,2),(248,985471200,1),(248,1004216400,2),(248,1017525600,1),(248,1035666000,2),(248,1048975200,1),(248,1067115600,2),(248,1080424800,1),(248,1099170000,2),(248,1111874400,1),(248,1130619600,2),(248,1143324000,1),(248,1162069200,2),(248,1174773600,1),(248,1193518800,2),(248,1206828000,1),(248,1224968400,2),(248,1238277600,1),(248,1256418000,2),(248,1269727200,1),(248,1288472400,2),(248,1301176800,1),(248,1319922000,2),(248,1332626400,1),(248,1351371600,2),(248,1364680800,1),(248,1382821200,2),(248,1396130400,1),(248,1414270800,2),(248,1427580000,1),(248,1445720400,2),(248,1459029600,1),(248,1477774800,2),(248,1490479200,1),(248,1509224400,2),(248,1521928800,1),(248,1540674000,2),(248,1553983200,1),(248,1572123600,2),(248,1585432800,1),(248,1603573200,2),(248,1616882400,1),(248,1635627600,2),(248,1648332000,1),(248,1667077200,2),(248,1679781600,1),(248,1698526800,2),(248,1711836000,1),(248,1729976400,2),(248,1743285600,1),(248,1761426000,2),(248,1774735200,1),(248,1792875600,2),(248,1806184800,1),(248,1824930000,2),(248,1837634400,1),(248,1856379600,2),(248,1869084000,1),(248,1887829200,2),(248,1901138400,1),(248,1919278800,2),(248,1932588000,1),(248,1950728400,2),(248,1964037600,1),(248,1982782800,2),(248,1995487200,1),(248,2014232400,2),(248,2026936800,1),(248,2045682000,2),(248,2058386400,1),(248,2077131600,2),(248,2090440800,1),(248,2108581200,2),(248,2121890400,1),(248,2140030800,2),(249,-2147483648,0),(249,-1441169904,1),(249,-1247547600,3),(249,354909600,2),(249,370717200,3),(249,386445600,2),(249,402253200,3),(249,417981600,2),(249,433789200,3),(249,449604000,2),(249,465336000,4),(249,481060800,5),(249,496785600,4),(249,512510400,5),(249,528235200,4),(249,543960000,5),(249,559684800,4),(249,575409600,5),(249,591134400,4),(249,606859200,5),(249,622584000,4),(249,638308800,5),(249,654638400,4),(249,670363200,6),(249,683582400,1),(249,703018800,6),(249,717530400,1),(249,734468400,6),(249,748980000,1),(249,765918000,6),(249,780429600,1),(249,797367600,6),(249,811879200,1),(249,828817200,6),(249,843933600,1),(249,859671000,8),(249,877811400,1),(249,891120600,8),(249,909261000,1),(249,922570200,8),(249,941315400,1),(249,954019800,8),(249,972765000,1),(249,985469400,8),(249,1004214600,1),(249,1017523800,8),(249,1035664200,1),(249,1048973400,8),(249,1067113800,1),(249,1080423000,8),(249,1099168200,1),(249,1111872600,8),(249,1123783200,3),(250,-2147483648,0),(250,-1383464380,1),(250,-1167636600,2),(251,-2147483648,1),(251,-2019705670,2),(251,-891581400,3),(251,-872058600,2),(251,-862637400,3),(251,-764145000,2),(252,-2147483648,0),(252,-1579419232,1),(252,-1247558400,3),(252,354898800,2),(252,370706400,3),(252,386434800,2),(252,402242400,3),(252,417970800,2),(252,433778400,3),(252,449593200,2),(252,465325200,4),(252,481050000,5),(252,496774800,4),(252,512499600,5),(252,528224400,4),(252,543949200,5),(252,559674000,4),(252,575398800,5),(252,591123600,4),(252,606848400,5),(252,622573200,4),(252,638298000,5),(252,654627600,4),(252,670352400,6),(252,686080800,7),(252,695757600,4),(252,701802000,5),(252,717526800,4),(252,733251600,5),(252,748976400,4),(252,764701200,5),(252,780426000,4),(252,796150800,5),(252,811875600,4),(252,828205200,5),(252,846349200,4),(252,859654800,5),(252,877798800,4),(252,891104400,5),(252,909248400,4),(252,922554000,5),(252,941302800,4),(252,954003600,5),(252,972752400,4),(252,985453200,5),(252,1004202000,4),(252,1017507600,5),(252,1035651600,4),(252,1048957200,5),(252,1067101200,4),(252,1080406800,5),(252,1099155600,4),(252,1111856400,5),(252,1130605200,4),(252,1143306000,5),(252,1162054800,4),(252,1174755600,5),(252,1193504400,4),(252,1206810000,5),(252,1224954000,4),(252,1238259600,5),(252,1256403600,4),(252,1269709200,5),(252,1288458000,4),(252,1301158800,8),(252,1414252800,7),(252,1459015200,3),(253,-2147483648,0),(253,-2032933080,1),(253,252435600,2),(253,417974400,4),(253,433778400,3),(253,449593200,4),(253,465314400,3),(253,481042800,4),(253,496764000,3),(253,512492400,4),(253,528213600,3),(253,543942000,4),(253,559663200,3),(253,575391600,4),(253,591112800,3),(253,606841200,4),(253,622562400,3),(253,638290800,4),(253,654616800,3),(253,670345200,4),(253,686066400,3),(253,701794800,4),(253,717516000,3),(253,733244400,4),(253,748965600,3),(253,764694000,4),(253,780415200,3),(253,796143600,4),(253,811864800,3),(253,828198000,4),(253,843919200,3),(253,859647600,4),(253,875368800,3),(253,891097200,4),(253,906818400,3),(253,988390800,4),(253,1001692800,3),(253,1017421200,4),(253,1033142400,3),(253,1048870800,4),(253,1064592000,3),(253,1080320400,4),(253,1096041600,3),(253,1111770000,4),(253,1127491200,3),(253,1143219600,4),(253,1159545600,3),(253,1206889200,2),(253,1427479200,5),(253,1443193200,2),(253,1458928800,5),(253,1474642800,2),(254,-2147483648,2),(254,-933667200,1),(254,-922093200,2),(254,-908870400,1),(254,-888829200,2),(254,-881049600,1),(254,-767869200,2),(254,-745833600,1),(254,-733827600,2),(254,-716889600,1),(254,-699613200,2),(254,-683884800,1),(254,-670669200,2),(254,-652348800,1),(254,-650019600,2),(254,515527200,1),(254,527014800,2),(254,545162400,1),(254,558464400,2),(254,577216800,1),(254,589914000,2),(254,608666400,1),(254,621968400,2),(254,640116000,1),(254,653418000,2),(254,671565600,1),(254,684867600,2),(255,-2147483648,2),(255,-933667200,1),(255,-922093200,2),(255,-908870400,1),(255,-888829200,2),(255,-881049600,1),(255,-767869200,2),(255,-745833600,1),(255,-733827600,2),(255,-716889600,1),(255,-699613200,2),(255,-683884800,1),(255,-670669200,2),(255,-652348800,1),(255,-650019600,2),(255,515527200,1),(255,527014800,2),(255,545162400,1),(255,558464400,2),(255,577216800,1),(255,589914000,2),(255,608666400,1),(255,621968400,2),(255,640116000,1),(255,653418000,2),(255,671565600,1),(255,684867600,2),(256,-2147483648,1),(256,-2019705572,2),(256,-883287000,3),(256,-862639200,4),(256,-764051400,2),(256,832962600,5),(256,846266400,6),(256,1145039400,2),(257,-2147483648,1),(257,-891582800,2),(257,-872058600,3),(257,-862637400,2),(257,-576138600,4),(257,1245430800,5),(257,1262278800,4),(258,-2147483648,0),(258,-1577931912,2),(258,-1568592000,1),(258,-1554080400,2),(258,-1537142400,1),(258,-1522630800,2),(258,-1505692800,1),(258,-1491181200,2),(258,-1474243200,1),(258,-1459126800,2),(258,-242265600,1),(258,-228877200,2),(258,-210556800,1),(258,-197427600,2),(258,-178934400,1),(258,-165718800,2),(258,-147398400,1),(258,-134269200,2),(258,-116467200,1),(258,-102646800,2),(258,-84326400,1),(258,-71110800,2),(258,-52704000,1),(258,-39488400,2),(258,-21168000,1),(258,-7952400,2),(258,10368000,1),(258,23583600,2),(258,41904000,1),(258,55119600,2),(258,73526400,1),(258,86742000,2),(258,105062400,1),(258,118278000,2),(258,136598400,1),(258,149814000,2),(258,168134400,1),(258,181350000,2),(258,199756800,1),(258,212972400,2),(258,231292800,1),(258,241916400,2),(258,262828800,1),(258,273452400,2),(258,418694400,1),(258,433810800,2),(258,450316800,1),(258,465433200,2),(258,508896000,1),(258,529196400,2),(258,541555200,1),(258,562633200,2),(258,574387200,1),(258,594255600,2),(258,607305600,1),(258,623199600,2),(258,638928000,1),(258,654649200,2),(258,670456800,1),(258,686264400,2),(258,702684000,1),(258,717886800,2),(258,733096800,1),(258,748904400,2),(258,765151200,1),(258,780958800,2),(258,796687200,1),(258,812494800,2),(258,828309600,1),(258,844117200,2),(258,859759200,1),(258,875653200,2),(258,891208800,1),(258,907189200,2),(258,922917600,1),(258,938725200,2),(258,954540000,1),(258,970347600,2),(258,986076000,1),(258,1001883600,2),(258,1017612000,1),(258,1033419600,2),(258,1049148000,1),(258,1064955600,2),(258,1080770400,1),(258,1096578000,2),(258,1112306400,1),(258,1128114000,2),(258,1143842400,1),(258,1158872400,2),(258,1175205600,1),(258,1193950800,2),(258,1207260000,1),(258,1225486800,2),(258,1238104800,1),(258,1256850000,2),(258,1270159200,1),(258,1288299600,2),(258,1301608800,1),(258,1319749200,2),(258,1333058400,1),(258,1351198800,2),(258,1364508000,1),(258,1382648400,2),(258,1395957600,1),(258,1414702800,2),(258,1427407200,1),(258,1446152400,2),(258,1458856800,1),(258,1477602000,2),(258,1490911200,1),(258,1509051600,2),(258,1522360800,1),(258,1540501200,2),(258,1553810400,1),(258,1571950800,2),(258,1585260000,1),(258,1604005200,2),(258,1616709600,1),(258,1635454800,2),(258,1648159200,1),(258,1666904400,2),(258,1680213600,1),(258,1698354000,2),(258,1711663200,1),(258,1729803600,2),(258,1743112800,1),(258,1761858000,2),(258,1774562400,1),(258,1793307600,2),(258,1806012000,1),(258,1824757200,2),(258,1838066400,1),(258,1856206800,2),(258,1869516000,1),(258,1887656400,2),(258,1900965600,1),(258,1919106000,2),(258,1932415200,1),(258,1951160400,2),(258,1963864800,1),(258,1982610000,2),(258,1995314400,1),(258,2014059600,2),(258,2027368800,1),(258,2045509200,2),(258,2058818400,1),(258,2076958800,2),(258,2090268000,1),(258,2109013200,2),(258,2121717600,1),(258,2140462800,2),(259,-2147483648,1),(259,-891582800,2),(259,-872058600,3),(259,-862637400,2),(259,-576138600,4),(259,1245430800,5),(259,1262278800,4),(260,-2147483648,0),(260,-1830414140,1),(260,-879152400,2),(260,199897200,1),(260,969120000,2),(261,-2147483648,0),(261,-1577936472,1),(262,-2147483648,0),(262,-1441168512,1),(262,-1247547600,3),(262,354909600,2),(262,370717200,3),(262,386445600,2),(262,402253200,3),(262,417981600,2),(262,433789200,3),(262,449604000,2),(262,465336000,4),(262,481060800,5),(262,496785600,4),(262,512510400,5),(262,528235200,4),(262,543960000,5),(262,559684800,4),(262,575409600,5),(262,591134400,4),(262,606859200,5),(262,622584000,4),(262,638308800,5),(262,654638400,4),(262,670363200,6),(262,684363600,7),(263,-2147483648,0),(263,-1518920148,2),(263,166572000,1),(263,182293200,2),(263,200959200,1),(263,213829200,2),(263,228866400,1),(263,243982800,2),(263,260316000,1),(263,276123600,2),(263,291765600,1),(263,307486800,2),(263,323820000,1),(263,338936400,2),(263,354664800,1),(263,370386000,2),(263,386114400,1),(263,401835600,2),(263,417564000,1),(263,433285200,2),(263,449013600,1),(263,465339600,2),(263,481068000,1),(263,496789200,2),(263,512517600,1),(263,528238800,2),(263,543967200,1),(263,559688400,2),(263,575416800,1),(263,591138000,2),(263,606866400,1),(263,622587600,2),(263,638316000,1),(263,654642000,2),(263,670370400,1),(263,686091600,2),(263,701820000,1),(263,717541200,2),(263,733269600,1),(263,748990800,2),(263,764719200,1),(263,780440400,2),(263,796168800,1),(263,811890000,2),(263,828223200,1),(263,843944400,2),(263,859672800,1),(263,875394000,2),(263,891122400,1),(263,909277200,3),(263,922582800,4),(263,941331600,3),(263,954032400,4),(263,972781200,3),(263,985482000,4),(263,1004230800,3),(263,1017536400,4),(263,1035680400,3),(263,1048986000,4),(263,1067130000,3),(263,1080435600,4),(263,1099184400,3),(263,1111885200,4),(263,1130634000,3),(263,1143334800,4),(263,1162083600,3),(263,1174784400,4),(263,1193533200,3),(263,1206838800,4),(263,1224982800,3),(263,1238288400,4),(263,1256432400,3),(263,1269738000,4),(263,1288486800,3),(263,1301187600,4),(263,1319936400,3),(263,1332637200,4),(263,1351386000,3),(263,1364691600,4),(263,1382835600,3),(263,1396141200,4),(263,1414285200,3),(263,1427590800,4),(263,1445734800,3),(263,1459040400,4),(263,1473282000,5),(263,1509238800,3),(263,1521939600,4),(263,1540688400,3),(263,1553994000,4),(263,1572138000,3),(263,1585443600,4),(263,1603587600,3),(263,1616893200,4),(263,1635642000,3),(263,1648342800,4),(263,1667091600,3),(263,1679792400,4),(263,1698541200,3),(263,1711846800,4),(263,1729990800,3),(263,1743296400,4),(263,1761440400,3),(263,1774746000,4),(263,1792890000,3),(263,1806195600,4),(263,1824944400,3),(263,1837645200,4),(263,1856394000,3),(263,1869094800,4),(263,1887843600,3),(263,1901149200,4),(263,1919293200,3),(263,1932598800,4),(263,1950742800,3),(263,1964048400,4),(263,1982797200,3),(263,1995498000,4),(263,2014246800,3),(263,2026947600,4),(263,2045696400,3),(263,2058397200,4),(263,2077146000,3),(263,2090451600,4),(263,2108595600,3),(263,2121901200,4),(263,2140045200,3),(264,-2147483648,2),(264,-933645600,1),(264,-857358000,2),(264,-844300800,1),(264,-825822000,2),(264,-812685600,1),(264,-794199600,2),(264,-779853600,1),(264,-762656400,2),(264,-748310400,1),(264,-731127600,2),(264,-399088800,1),(264,-386650800,2),(264,-368330400,1),(264,-355114800,2),(264,-336790800,1),(264,-323654400,2),(264,-305168400,1),(264,-292032000,2),(264,-273632400,1),(264,-260496000,2),(264,-242096400,1),(264,-228960000,2),(264,-210560400,1),(264,-197424000,2),(264,-178938000,1),(264,-165801600,2),(264,-147402000,1),(264,-134265600,2),(264,-115866000,1),(264,-102643200,2),(264,-84330000,1),(264,-81313200,4),(264,142380000,3),(264,150843600,4),(264,167176800,3),(264,178664400,4),(264,334015200,3),(264,337644000,4),(264,452556000,3),(264,462232800,4),(264,482277600,3),(264,495579600,4),(264,516751200,3),(264,526424400,4),(264,545436000,3),(264,558478800,4),(264,576626400,3),(264,589323600,4),(264,609890400,3),(264,620773200,4),(264,638316000,3),(264,651618000,4),(264,669765600,3),(264,683672400,4),(264,701820000,3),(264,715726800,4),(264,733701600,3),(264,747176400,4),(264,765151200,3),(264,778021200,4),(264,796600800,3),(264,810075600,4),(264,820447200,2),(264,828655200,1),(264,843170400,5),(264,860104800,1),(264,874620000,5),(264,891554400,1),(264,906069600,5),(264,915141600,2),(264,924213600,1),(264,939934800,2),(264,956268000,1),(264,971989200,2),(264,987717600,1),(264,1003438800,2),(264,1019167200,1),(264,1034888400,2),(264,1050616800,1),(264,1066338000,2),(264,1082066400,1),(264,1096581600,2),(264,1113516000,1),(264,1128380400,2),(264,1143842400,1),(264,1158872400,2),(264,1175378400,1),(264,1189638000,2),(264,1206655200,1),(264,1219957200,2),(264,1238104800,1),(264,1252015200,2),(264,1269640860,1),(264,1281474000,2),(264,1301608860,1),(264,1312146000,2),(264,1333058400,1),(264,1348178400,2),(264,1364508000,1),(264,1380229200,2),(264,1395957600,1),(264,1414098000,2),(264,1427493600,1),(264,1445547600,2),(264,1458946800,1),(264,1477692000,2),(264,1490396400,1),(264,1509141600,2),(264,1521846000,1),(264,1540591200,2),(264,1553810400,1),(264,1572040800,2),(264,1585260000,1),(264,1604095200,2),(264,1616709600,1),(264,1635544800,2),(264,1648159200,1),(264,1666994400,2),(264,1680213600,1),(264,1698444000,2),(264,1711663200,1),(264,1729893600,2),(264,1743112800,1),(264,1761343200,2),(264,1774562400,1),(264,1793397600,2),(264,1806012000,1),(264,1824847200,2),(264,1838066400,1),(264,1856296800,2),(264,1869516000,1),(264,1887746400,2),(264,1900965600,1),(264,1919196000,2),(264,1932415200,1),(264,1950645600,2),(264,1963864800,1),(264,1982700000,2),(264,1995314400,1),(264,2014149600,2),(264,2027368800,1),(264,2045599200,2),(264,2058818400,1),(264,2077048800,2),(264,2090268000,1),(264,2108498400,2),(264,2121717600,1),(264,2140552800,2),(265,-2147483648,2),(265,-933667200,1),(265,-922093200,2),(265,-908870400,1),(265,-888829200,2),(265,-881049600,1),(265,-767869200,2),(265,-745833600,1),(265,-733827600,2),(265,-716889600,1),(265,-699613200,2),(265,-683884800,1),(265,-670669200,2),(265,-652348800,1),(265,-650019600,2),(265,515527200,1),(265,527014800,2),(265,545162400,1),(265,558464400,2),(265,577216800,1),(265,589914000,2),(265,608666400,1),(265,621968400,2),(265,640116000,1),(265,653418000,2),(265,671565600,1),(265,684867600,2),(266,-2147483648,2),(266,-933645600,1),(266,-857358000,2),(266,-844300800,1),(266,-825822000,2),(266,-812685600,1),(266,-794199600,2),(266,-779853600,1),(266,-762656400,2),(266,-748310400,1),(266,-731127600,2),(266,-399088800,1),(266,-386650800,2),(266,-368330400,1),(266,-355114800,2),(266,-336790800,1),(266,-323654400,2),(266,-305168400,1),(266,-292032000,2),(266,-273632400,1),(266,-260496000,2),(266,-242096400,1),(266,-228960000,2),(266,-210560400,1),(266,-197424000,2),(266,-178938000,1),(266,-165801600,2),(266,-147402000,1),(266,-134265600,2),(266,-115866000,1),(266,-102643200,2),(266,-84330000,1),(266,-81313200,4),(266,142380000,3),(266,150843600,4),(266,167176800,3),(266,178664400,4),(266,334015200,3),(266,337644000,4),(266,452556000,3),(266,462232800,4),(266,482277600,3),(266,495579600,4),(266,516751200,3),(266,526424400,4),(266,545436000,3),(266,558478800,4),(266,576626400,3),(266,589323600,4),(266,609890400,3),(266,620773200,4),(266,638316000,3),(266,651618000,4),(266,669765600,3),(266,683672400,4),(266,701820000,3),(266,715726800,4),(266,733701600,3),(266,747176400,4),(266,765151200,3),(266,778021200,4),(266,796600800,3),(266,810075600,4),(266,820447200,2),(266,828655200,1),(266,843170400,5),(266,860104800,1),(266,874620000,5),(266,891554400,1),(266,906069600,5),(266,915141600,2),(266,924213600,1),(266,939934800,2),(266,956268000,1),(266,971989200,2),(266,987717600,1),(266,1003438800,2),(266,1019167200,1),(266,1034888400,2),(266,1050616800,1),(266,1066338000,2),(266,1082066400,1),(266,1096581600,2),(266,1113516000,1),(266,1128380400,2),(266,1143842400,1),(266,1158872400,2),(266,1175378400,1),(266,1189638000,2),(266,1206655200,1),(266,1220216400,2),(266,1238104800,1),(266,1252015200,2),(266,1269554400,1),(266,1281474000,2),(266,1301608860,1),(266,1312146000,2),(266,1314655200,1),(266,1317330000,2),(266,1333058400,1),(266,1348178400,2),(266,1364508000,1),(266,1380229200,2),(266,1395957600,1),(266,1414098000,2),(266,1427493600,1),(266,1445547600,2),(266,1458946800,1),(266,1477692000,2),(266,1490396400,1),(266,1509141600,2),(266,1521846000,1),(266,1540591200,2),(266,1553810400,1),(266,1572040800,2),(266,1585260000,1),(266,1604095200,2),(266,1616709600,1),(266,1635544800,2),(266,1648159200,1),(266,1666994400,2),(266,1680213600,1),(266,1698444000,2),(266,1711663200,1),(266,1729893600,2),(266,1743112800,1),(266,1761343200,2),(266,1774562400,1),(266,1793397600,2),(266,1806012000,1),(266,1824847200,2),(266,1838066400,1),(266,1856296800,2),(266,1869516000,1),(266,1887746400,2),(266,1900965600,1),(266,1919196000,2),(266,1932415200,1),(266,1950645600,2),(266,1963864800,1),(266,1982700000,2),(266,1995314400,1),(266,2014149600,2),(266,2027368800,1),(266,2045599200,2),(266,2058818400,1),(266,2077048800,2),(266,2090268000,1),(266,2108498400,2),(266,2121717600,1),(266,2140552800,2),(267,-2147483648,0),(267,-2004073600,1),(267,-1851577590,2),(267,-852105600,3),(267,-782643600,4),(267,-767869200,2),(267,-718095600,3),(267,-457776000,2),(267,-315648000,3),(267,171820800,2),(268,-2147483648,0),(268,-2056690800,1),(268,-900910800,2),(268,-891579600,3),(268,-884248200,4),(268,-761209200,1),(268,-747907200,2),(268,-728541000,5),(268,-717049800,6),(268,-697091400,5),(268,-683785800,6),(268,-668061000,5),(268,-654755400,2),(268,-636611400,5),(268,-623305800,2),(268,-605161800,5),(268,-591856200,2),(268,-573712200,5),(268,-559801800,2),(268,-541657800,5),(268,-528352200,2),(268,-510211800,1),(268,-498112200,2),(268,-478762200,1),(268,-466662600,2),(268,-446707800,1),(268,-435213000,2),(268,-415258200,1),(268,-403158600,2),(268,-383808600,1),(268,-371709000,2),(268,-352359000,1),(268,-340259400,2),(268,-320909400,1),(268,-308809800,2),(268,-288855000,1),(268,-277360200,2),(268,-257405400,1),(268,-245910600,2),(268,-225955800,1),(268,-213856200,2),(268,-194506200,1),(268,-182406600,2),(268,-163056600,1),(268,-148537800,2),(268,-132816600,1),(268,-117088200,2),(268,-101367000,1),(268,-85638600,2),(268,-69312600,1),(268,-53584200,2),(268,-37863000,1),(268,-22134600,2),(268,-6413400,1),(268,9315000,2),(268,25036200,1),(268,40764600,2),(268,56485800,1),(268,72214200,2),(268,88540200,1),(268,104268600,2),(268,119989800,1),(268,126041400,2),(268,151439400,1),(268,167167800,2),(268,182889000,1),(268,198617400,2),(268,214338600,1),(268,295385400,2),(268,309292200,1),(269,-2147483648,0),(269,-2032927596,1),(269,252439200,3),(269,417978000,2),(269,433785600,3),(269,449600400,2),(269,465321600,3),(269,481050000,2),(269,496771200,3),(269,512499600,2),(269,528220800,3),(269,543949200,2),(269,559670400,3),(269,575398800,2),(269,591120000,3),(269,606848400,2),(269,622569600,3),(269,638298000,2),(269,654624000,3),(269,670352400,2),(269,686073600,3),(269,701802000,2),(269,717523200,3),(269,733251600,2),(269,748972800,3),(269,764701200,2),(269,780422400,3),(269,796150800,2),(269,811872000,3),(269,828205200,2),(269,843926400,3),(269,859654800,2),(269,875376000,3),(269,891104400,2),(269,906825600,3),(269,988398000,2),(269,1001700000,3),(269,1017428400,2),(269,1033149600,3),(269,1048878000,2),(269,1064599200,3),(269,1080327600,2),(269,1096048800,3),(269,1111777200,2),(269,1127498400,3),(269,1143226800,2),(269,1159552800,3),(269,1427482800,2),(269,1443196800,3),(269,1458932400,2),(269,1474646400,3),(270,-2147483648,1),(270,-1575874625,2),(270,-1247554800,4),(270,354902400,3),(270,370710000,4),(270,386438400,3),(270,402246000,4),(270,417974400,3),(270,433782000,4),(270,449596800,3),(270,465328800,5),(270,481053600,6),(270,496778400,5),(270,512503200,6),(270,528228000,5),(270,543952800,6),(270,559677600,5),(270,575402400,6),(270,591127200,5),(270,606852000,6),(270,622576800,5),(270,638301600,6),(270,654631200,5),(270,670356000,7),(270,686084400,8),(270,695761200,5),(270,701805600,6),(270,717530400,5),(270,733255200,6),(270,748980000,5),(270,764704800,6),(270,780429600,5),(270,796154400,6),(270,811879200,5),(270,828208800,6),(270,846352800,5),(270,859658400,6),(270,877802400,5),(270,891108000,6),(270,909252000,5),(270,922557600,6),(270,941306400,5),(270,954007200,6),(270,972756000,5),(270,985456800,6),(270,1004205600,5),(270,1017511200,6),(270,1035655200,5),(270,1048960800,6),(270,1067104800,5),(270,1080410400,6),(270,1099159200,5),(270,1111860000,6),(270,1130608800,5),(270,1143309600,6),(270,1162058400,5),(270,1174759200,6),(270,1193508000,5),(270,1206813600,6),(270,1224957600,5),(270,1238263200,6),(270,1256407200,5),(270,1269712800,6),(270,1288461600,5),(270,1301162400,9),(270,1414256400,5),(271,-2147483648,1),(271,-1869875816,3),(271,-1693706400,2),(271,-1680490800,3),(271,-1570413600,2),(271,-1552186800,3),(271,-1538359200,2),(271,-1522551600,3),(271,-1507514400,2),(271,-1490583600,3),(271,-1440208800,2),(271,-1428030000,3),(271,-1409709600,2),(271,-1396494000,3),(271,-931053600,2),(271,-922676400,3),(271,-917834400,2),(271,-892436400,3),(271,-875844000,2),(271,-764737200,3),(271,-744343200,2),(271,-733806000,3),(271,-716436000,2),(271,-701924400,3),(271,-684986400,2),(271,-670474800,3),(271,-654141600,2),(271,-639025200,3),(271,-622087200,2),(271,-606970800,3),(271,-590032800,2),(271,-575521200,3),(271,-235620000,2),(271,-194842800,3),(271,-177732000,2),(271,-165726000,3),(271,107910000,2),(271,121215600,3),(271,133920000,2),(271,152665200,3),(271,164678400,2),(271,184114800,3),(271,196214400,2),(271,215564400,3),(271,228873600,2),(271,245804400,3),(271,260323200,2),(271,267915600,4),(271,428454000,5),(271,433893600,4),(271,468111600,3),(271,482799600,6),(271,496710000,7),(271,512521200,6),(271,528246000,7),(271,543970800,6),(271,559695600,7),(271,575420400,6),(271,591145200,7),(271,606870000,6),(271,622594800,7),(271,638319600,6),(271,654649200,7),(271,670374000,6),(271,686098800,7),(271,701823600,6),(271,717548400,7),(271,733273200,6),(271,748998000,7),(271,764118000,6),(271,780447600,7),(271,796172400,6),(271,811897200,7),(271,828226800,6),(271,846370800,7),(271,859676400,6),(271,877820400,7),(271,891126000,6),(271,909270000,7),(271,922575600,6),(271,941324400,7),(271,954025200,6),(271,972774000,7),(271,985474800,6),(271,1004223600,7),(271,1017529200,6),(271,1035673200,7),(271,1048978800,6),(271,1067122800,7),(271,1080428400,6),(271,1099177200,7),(271,1111878000,6),(271,1130626800,7),(271,1143327600,6),(271,1162076400,7),(271,1167602400,3),(271,1174784400,8),(271,1193533200,9),(271,1206838800,8),(271,1224982800,9),(271,1238288400,8),(271,1256432400,9),(271,1269738000,8),(271,1288486800,9),(271,1301274000,8),(271,1319936400,9),(271,1332637200,8),(271,1351386000,9),(271,1364691600,8),(271,1382835600,9),(271,1396227600,8),(271,1414285200,9),(271,1427590800,8),(271,1446944400,9),(271,1459040400,8),(271,1473195600,4),(272,-2147483648,1),(272,-1451719200,2),(272,-1172906400,3),(272,-876641400,4),(272,-766054800,3),(272,-683883000,5),(272,-620812800,3),(272,-189415800,6),(273,-2147483648,0),(273,-1172913768,1),(273,-799491600,2),(273,-189423000,3),(274,-2147483648,1),(274,-1641003640,3),(274,-933645600,2),(274,-857358000,3),(274,-844300800,2),(274,-825822000,3),(274,-812685600,2),(274,-794199600,3),(274,-779853600,2),(274,-762656400,3),(274,-748310400,2),(274,-731127600,3),(274,-681962400,4),(274,-673243200,2),(274,-667962000,3),(274,-652327200,2),(274,-636426000,3),(274,-622087200,2),(274,-608947200,3),(274,-591847200,2),(274,-572486400,3),(274,-558576000,2),(274,-542851200,3),(274,-527731200,2),(274,-514425600,3),(274,-490845600,2),(274,-482986800,3),(274,-459475200,2),(274,-451537200,3),(274,-428551200,2),(274,-418262400,3),(274,-400032000,2),(274,-387428400,3),(274,142380000,2),(274,150843600,3),(274,167176800,2),(274,178664400,3),(274,334015200,2),(274,337644000,3),(274,452556000,2),(274,462232800,3),(274,482277600,2),(274,495579600,3),(274,516751200,2),(274,526424400,3),(274,545436000,2),(274,558478800,3),(274,576626400,2),(274,589323600,3),(274,609890400,2),(274,620773200,3),(274,638316000,2),(274,651618000,3),(274,669765600,2),(274,683672400,3),(274,701820000,2),(274,715726800,3),(274,733701600,2),(274,747176400,3),(274,765151200,2),(274,778021200,3),(274,796600800,2),(274,810075600,3),(274,826840800,2),(274,842821200,3),(274,858895200,2),(274,874184400,3),(274,890344800,2),(274,905029200,3),(274,923011200,2),(274,936313200,3),(274,955670400,2),(274,970783200,3),(274,986770800,2),(274,1001282400,3),(274,1017356400,2),(274,1033941600,3),(274,1048806000,2),(274,1065132000,3),(274,1081292400,2),(274,1095804000,3),(274,1112313600,2),(274,1128812400,3),(274,1143763200,2),(274,1159657200,3),(274,1175212800,2),(274,1189897200,3),(274,1206662400,2),(274,1223161200,3),(274,1238112000,2),(274,1254006000,3),(274,1269561600,2),(274,1284246000,3),(274,1301616000,2),(274,1317510000,3),(274,1333065600,2),(274,1348354800,3),(274,1364515200,2),(274,1382828400,3),(274,1395964800,2),(274,1414278000,3),(274,1427414400,2),(274,1445727600,3),(274,1458864000,2),(274,1477782000,3),(274,1490313600,2),(274,1509231600,3),(274,1521763200,2),(274,1540681200,3),(274,1553817600,2),(274,1572130800,3),(274,1585267200,2),(274,1603580400,3),(274,1616716800,2),(274,1635634800,3),(274,1648166400,2),(274,1667084400,3),(274,1679616000,2),(274,1698534000,3),(274,1711670400,2),(274,1729983600,3),(274,1743120000,2),(274,1761433200,3),(274,1774569600,2),(274,1792882800,3),(274,1806019200,2),(274,1824937200,3),(274,1837468800,2),(274,1856386800,3),(274,1868918400,2),(274,1887836400,3),(274,1900972800,2),(274,1919286000,3),(274,1932422400,2),(274,1950735600,3),(274,1963872000,2),(274,1982790000,3),(274,1995321600,2),(274,2014239600,3),(274,2026771200,2),(274,2045689200,3),(274,2058220800,2),(274,2077138800,3),(274,2090275200,2),(274,2108588400,3),(274,2121724800,2),(274,2140038000,3),(275,-2147483648,1),(275,-788932800,2),(276,-2147483648,0),(276,-1487759676,1),(276,-1247569200,3),(276,354888000,2),(276,370695600,3),(276,386424000,2),(276,402231600,3),(276,417960000,2),(276,433767600,3),(276,449582400,2),(276,465314400,4),(276,481039200,5),(276,496764000,4),(276,512488800,5),(276,528213600,4),(276,543938400,5),(276,559663200,4),(276,575388000,5),(276,591112800,4),(276,606837600,5),(276,622562400,4),(276,638287200,5),(276,654616800,4),(276,670341600,6),(276,686070000,7),(276,695746800,4),(276,701791200,5),(276,717516000,4),(276,733240800,5),(276,748965600,4),(276,764690400,5),(276,780415200,4),(276,796140000,5),(276,811864800,4),(276,828194400,5),(276,846338400,4),(276,859644000,5),(276,877788000,4),(276,891093600,5),(276,909237600,4),(276,922543200,5),(276,941292000,4),(276,953992800,5),(276,972741600,4),(276,985442400,5),(276,1004191200,4),(276,1017496800,5),(276,1035640800,4),(276,1048946400,5),(276,1067090400,4),(276,1080396000,5),(276,1099144800,4),(276,1111845600,5),(276,1130594400,4),(276,1143295200,5),(276,1162044000,4),(276,1174744800,5),(276,1193493600,4),(276,1206799200,5),(276,1224943200,4),(276,1238248800,5),(276,1256392800,4),(276,1269698400,6),(276,1288450800,7),(276,1301151600,4),(277,-2147483648,0),(277,-1988166492,1),(277,-862637400,2),(277,-764145000,1),(277,-576135000,3),(277,38775600,5),(277,1018119600,4),(277,1033840800,5),(277,1212260400,4),(277,1225476000,5),(277,1239735600,4),(277,1257012000,5),(278,-2147483648,0),(278,-1325483420,1),(279,-2147483648,0),(279,-1577943676,1),(279,504901800,2),(280,-2147483648,0),(280,-1577943676,1),(280,504901800,2),(281,-2147483648,0),(281,-1579424533,1),(281,-1247558400,3),(281,354898800,2),(281,370706400,3),(281,386434800,2),(281,402242400,3),(281,417970800,2),(281,433778400,3),(281,449593200,2),(281,465325200,4),(281,481050000,5),(281,496774800,4),(281,512499600,5),(281,528224400,4),(281,543949200,5),(281,559674000,4),(281,575398800,5),(281,591123600,4),(281,606848400,5),(281,622573200,4),(281,638298000,5),(281,654627600,4),(281,670352400,6),(281,686080800,7),(281,695757600,4),(281,701802000,5),(281,717526800,4),(281,733251600,5),(281,748976400,4),(281,764701200,5),(281,780426000,4),(281,796150800,5),(281,811875600,4),(281,828205200,5),(281,846349200,4),(281,859654800,5),(281,877798800,4),(281,891104400,5),(281,909248400,4),(281,922554000,5),(281,941302800,4),(281,954003600,5),(281,972752400,4),(281,985453200,5),(281,1004202000,4),(281,1017507600,5),(281,1035651600,4),(281,1048957200,5),(281,1067101200,4),(281,1072882800,10),(281,1080403200,8),(281,1099152000,9),(281,1111852800,8),(281,1130601600,9),(281,1143302400,8),(281,1162051200,9),(281,1174752000,8),(281,1193500800,9),(281,1206806400,8),(281,1224950400,9),(281,1238256000,8),(281,1256400000,9),(281,1269705600,8),(281,1288454400,9),(281,1301155200,11),(281,1315832400,9),(281,1414252800,4),(282,-2147483648,1),(282,-2019705670,2),(282,-891581400,3),(282,-872058600,2),(282,-862637400,3),(282,-764145000,2),(283,-2147483648,0),(283,-1577513486,1),(283,-1247551200,3),(283,354906000,2),(283,370713600,3),(283,386442000,2),(283,402249600,3),(283,417978000,2),(283,433785600,3),(283,449600400,2),(283,465332400,4),(283,481057200,5),(283,496782000,4),(283,512506800,5),(283,528231600,4),(283,543956400,5),(283,559681200,4),(283,575406000,5),(283,591130800,4),(283,606855600,5),(283,622580400,4),(283,638305200,5),(283,654634800,4),(283,670359600,6),(283,686088000,7),(283,695764800,4),(283,701809200,5),(283,717534000,4),(283,733258800,5),(283,748983600,4),(283,764708400,5),(283,780433200,4),(283,796158000,5),(283,811882800,4),(283,828212400,5),(283,846356400,4),(283,859662000,5),(283,877806000,4),(283,891111600,5),(283,909255600,4),(283,922561200,5),(283,941310000,4),(283,954010800,5),(283,972759600,4),(283,985460400,5),(283,1004209200,4),(283,1017514800,5),(283,1035658800,4),(283,1048964400,5),(283,1067108400,4),(283,1080414000,5),(283,1099162800,4),(283,1111863600,5),(283,1130612400,4),(283,1143313200,5),(283,1162062000,4),(283,1174762800,5),(283,1193511600,4),(283,1206817200,5),(283,1224961200,4),(283,1238266800,5),(283,1256410800,4),(283,1269716400,5),(283,1288465200,4),(283,1301166000,8),(283,1414260000,4),(284,-2147483648,1),(284,-2038200925,2),(284,-1167634800,3),(284,-1073028000,4),(284,-894180000,5),(284,-879665400,6),(284,-767005200,5),(284,378664200,7),(285,-2147483648,0),(285,-1383463280,1),(285,-1167636600,3),(285,-1082448000,2),(285,-1074586800,3),(285,-1050825600,2),(285,-1042964400,3),(285,-1019289600,2),(285,-1011428400,3),(285,-987753600,2),(285,-979892400,3),(285,-956217600,2),(285,-948356400,3),(285,-924595200,2),(285,-916734000,3),(285,-893059200,2),(285,-885198000,3),(285,-879667200,4),(285,-767005200,3),(286,-2147483648,0),(286,-719636812,1),(287,-2147483648,0),(287,-2056692850,1),(287,-884509200,3),(287,-873280800,2),(287,-855918000,3),(287,-841744800,2),(287,-828529200,3),(287,-765363600,1),(287,-747046800,4),(287,-733827600,5),(287,-716461200,4),(287,-697021200,5),(287,-683715600,4),(287,-667990800,5),(287,-654771600,4),(287,-636627600,5),(287,-623322000,4),(287,-605178000,5),(287,-591872400,4),(287,-573642000,5),(287,-559818000,4),(287,-541674000,5),(287,-528368400,4),(287,-510224400,5),(287,-498128400,4),(287,-478774800,5),(287,-466678800,4),(287,-446720400,5),(287,-435229200,4),(287,-415258200,1),(287,-403158600,6),(287,-383808600,1),(287,-371709000,6),(287,-352359000,1),(287,-340259400,6),(287,-320909400,1),(287,-308809800,6),(287,-288855000,1),(287,-277360200,6),(287,-257405400,1),(287,-245910600,6),(287,-225955800,1),(287,-213856200,6),(287,-194506200,1),(287,-182406600,6),(287,-163056600,1),(287,-148537800,6),(287,-132820200,1),(287,-117088200,6),(287,-101370600,1),(287,-85638600,6),(287,-69312600,1),(287,-53584200,6),(287,-37863000,1),(287,-22134600,6),(287,-6413400,1),(287,9315000,6),(287,25036200,1),(287,40764600,6),(287,56485800,1),(287,72214200,6),(287,88540200,1),(287,104268600,6),(287,119989800,1),(287,126041400,6),(287,151439400,1),(287,167167800,6),(287,182889000,1),(287,198617400,6),(287,214338600,1),(287,295385400,6),(287,309292200,1),(288,-2147483648,0),(288,-2056692850,1),(288,-884509200,3),(288,-873280800,2),(288,-855918000,3),(288,-841744800,2),(288,-828529200,3),(288,-765363600,1),(288,-747046800,4),(288,-733827600,5),(288,-716461200,4),(288,-697021200,5),(288,-683715600,4),(288,-667990800,5),(288,-654771600,4),(288,-636627600,5),(288,-623322000,4),(288,-605178000,5),(288,-591872400,4),(288,-573642000,5),(288,-559818000,4),(288,-541674000,5),(288,-528368400,4),(288,-510224400,5),(288,-498128400,4),(288,-478774800,5),(288,-466678800,4),(288,-446720400,5),(288,-435229200,4),(288,-415258200,1),(288,-403158600,6),(288,-383808600,1),(288,-371709000,6),(288,-352359000,1),(288,-340259400,6),(288,-320909400,1),(288,-308809800,6),(288,-288855000,1),(288,-277360200,6),(288,-257405400,1),(288,-245910600,6),(288,-225955800,1),(288,-213856200,6),(288,-194506200,1),(288,-182406600,6),(288,-163056600,1),(288,-148537800,6),(288,-132820200,1),(288,-117088200,6),(288,-101370600,1),(288,-85638600,6),(288,-69312600,1),(288,-53584200,6),(288,-37863000,1),(288,-22134600,6),(288,-6413400,1),(288,9315000,6),(288,25036200,1),(288,40764600,6),(288,56485800,1),(288,72214200,6),(288,88540200,1),(288,104268600,6),(288,119989800,1),(288,126041400,6),(288,151439400,1),(288,167167800,6),(288,182889000,1),(288,198617400,6),(288,214338600,1),(288,295385400,6),(288,309292200,1),(289,-2147483648,0),(289,-1441188192,1),(289,-1247565600,3),(289,354891600,2),(289,370699200,3),(289,386427600,2),(289,402235200,3),(289,417963600,2),(289,433771200,3),(289,449586000,2),(289,465318000,4),(289,481042800,5),(289,496767600,4),(289,512492400,5),(289,528217200,4),(289,543942000,5),(289,559666800,4),(289,575391600,5),(289,591116400,4),(289,606841200,5),(289,622566000,4),(289,638290800,5),(289,654620400,4),(289,670345200,6),(289,686073600,7),(289,695750400,4),(289,701794800,5),(289,717519600,4),(289,733244400,5),(289,748969200,4),(289,764694000,5),(289,780418800,4),(289,796143600,5),(289,811868400,4),(289,828198000,5),(289,846342000,4),(289,859647600,5),(289,877791600,4),(289,891097200,5),(289,909241200,4),(289,922546800,5),(289,941295600,4),(289,953996400,5),(289,972745200,4),(289,985446000,5),(289,1004194800,4),(289,1017500400,5),(289,1035644400,4),(289,1048950000,5),(289,1067094000,4),(289,1080399600,5),(289,1099148400,4),(289,1111849200,5),(289,1130598000,4),(289,1143298800,5),(289,1162047600,4),(289,1174748400,5),(289,1193497200,4),(289,1206802800,5),(289,1224946800,4),(289,1238252400,5),(289,1256396400,4),(289,1269702000,5),(289,1288450800,4),(289,1301151600,8),(289,1414245600,7),(289,1461427200,4),(290,-2147483648,0),(290,-1577951856,1),(290,-1172908656,2),(290,-880272000,3),(290,-766054800,4),(291,-2147483648,2),(291,-1046678400,1),(291,-1038733200,2),(291,-873273600,3),(291,-794221200,2),(291,-496224000,1),(291,-489315600,2),(291,259344000,1),(291,275151600,2),(292,-2147483648,0),(292,-1577936472,1),(293,-2147483648,0),(293,-1518920008,2),(293,166572000,1),(293,182293200,2),(293,200959200,1),(293,213829200,2),(293,228866400,1),(293,243982800,2),(293,260316000,1),(293,276123600,2),(293,291765600,1),(293,307486800,2),(293,323820000,1),(293,338936400,2),(293,354664800,1),(293,370386000,2),(293,386114400,1),(293,401835600,2),(293,417564000,1),(293,433285200,2),(293,449013600,1),(293,465339600,2),(293,481068000,1),(293,496789200,2),(293,512517600,1),(293,528238800,2),(293,543967200,1),(293,559688400,2),(293,575416800,1),(293,591138000,2),(293,606866400,1),(293,622587600,2),(293,638316000,1),(293,654642000,2),(293,670370400,1),(293,686091600,2),(293,701820000,1),(293,717541200,2),(293,733269600,1),(293,748990800,2),(293,764719200,1),(293,780440400,2),(293,796168800,1),(293,811890000,2),(293,828223200,1),(293,843944400,2),(293,859672800,1),(293,875394000,2),(293,891122400,1),(293,909277200,3),(293,922582800,4),(293,941331600,3),(293,954032400,4),(293,972781200,3),(293,985482000,4),(293,1004230800,3),(293,1017536400,4),(293,1035680400,3),(293,1048986000,4),(293,1067130000,3),(293,1080435600,4),(293,1099184400,3),(293,1111885200,4),(293,1130634000,3),(293,1143334800,4),(293,1162083600,3),(293,1174784400,4),(293,1193533200,3),(293,1206838800,4),(293,1224982800,3),(293,1238288400,4),(293,1256432400,3),(293,1269738000,4),(293,1288486800,3),(293,1301187600,4),(293,1319936400,3),(293,1332637200,4),(293,1351386000,3),(293,1364691600,4),(293,1382835600,3),(293,1396141200,4),(293,1414285200,3),(293,1427590800,4),(293,1445734800,3),(293,1459040400,4),(293,1477789200,3),(293,1490490000,4),(293,1509238800,3),(293,1521939600,4),(293,1540688400,3),(293,1553994000,4),(293,1572138000,3),(293,1585443600,4),(293,1603587600,3),(293,1616893200,4),(293,1635642000,3),(293,1648342800,4),(293,1667091600,3),(293,1679792400,4),(293,1698541200,3),(293,1711846800,4),(293,1729990800,3),(293,1743296400,4),(293,1761440400,3),(293,1774746000,4),(293,1792890000,3),(293,1806195600,4),(293,1824944400,3),(293,1837645200,4),(293,1856394000,3),(293,1869094800,4),(293,1887843600,3),(293,1901149200,4),(293,1919293200,3),(293,1932598800,4),(293,1950742800,3),(293,1964048400,4),(293,1982797200,3),(293,1995498000,4),(293,2014246800,3),(293,2026947600,4),(293,2045696400,3),(293,2058397200,4),(293,2077146000,3),(293,2090451600,4),(293,2108595600,3),(293,2121901200,4),(293,2140045200,3),(294,-2147483648,0),(294,-1441259328,1),(294,-1247551200,3),(294,354906000,2),(294,370713600,3),(294,386442000,2),(294,402249600,3),(294,417978000,2),(294,433785600,3),(294,449600400,2),(294,465332400,4),(294,481057200,5),(294,496782000,4),(294,512506800,5),(294,528231600,4),(294,543956400,5),(294,559681200,4),(294,575406000,5),(294,591130800,4),(294,606855600,5),(294,622580400,4),(294,638305200,5),(294,654634800,4),(294,670359600,6),(294,686088000,7),(294,695764800,4),(294,701809200,5),(294,717534000,4),(294,733258800,5),(294,748983600,4),(294,764708400,5),(294,780433200,4),(294,796158000,5),(294,811882800,4),(294,828212400,5),(294,846356400,4),(294,859662000,5),(294,877806000,4),(294,891111600,5),(294,909255600,4),(294,922561200,5),(294,941310000,4),(294,954010800,5),(294,972759600,4),(294,985460400,5),(294,1004209200,4),(294,1017514800,5),(294,1035658800,4),(294,1048964400,5),(294,1067108400,4),(294,1080414000,5),(294,1099162800,4),(294,1111863600,5),(294,1130612400,4),(294,1143313200,5),(294,1162062000,4),(294,1174762800,5),(294,1193511600,4),(294,1206817200,5),(294,1224961200,4),(294,1238266800,5),(294,1256410800,4),(294,1269716400,6),(294,1288468800,7),(294,1301169600,4),(295,-2147483648,0),(295,-1579476700,1),(295,-1247551200,3),(295,354906000,2),(295,370713600,3),(295,386442000,2),(295,402249600,3),(295,417978000,2),(295,433785600,3),(295,449600400,2),(295,465332400,4),(295,481057200,5),(295,496782000,4),(295,512506800,5),(295,528231600,4),(295,543956400,5),(295,559681200,4),(295,575406000,5),(295,591130800,4),(295,606855600,5),(295,622580400,4),(295,638305200,5),(295,654634800,4),(295,670359600,6),(295,686088000,7),(295,695764800,4),(295,701809200,5),(295,717534000,4),(295,733258800,5),(295,738086400,8),(295,748987200,7),(295,764712000,6),(295,780436800,7),(295,796161600,6),(295,811886400,7),(295,828216000,6),(295,846360000,7),(295,859665600,6),(295,877809600,7),(295,891115200,6),(295,909259200,7),(295,922564800,6),(295,941313600,7),(295,954014400,6),(295,972763200,7),(295,985464000,6),(295,1004212800,7),(295,1017518400,6),(295,1035662400,7),(295,1048968000,6),(295,1067112000,7),(295,1080417600,6),(295,1099166400,7),(295,1111867200,6),(295,1130616000,7),(295,1143316800,6),(295,1162065600,7),(295,1174766400,6),(295,1193515200,7),(295,1206820800,6),(295,1224964800,7),(295,1238270400,6),(295,1256414400,7),(295,1269720000,6),(295,1288468800,7),(295,1301169600,4),(295,1414263600,7),(295,1469304000,4),(296,-2147483648,0),(296,-1582088010,1),(296,-1247547600,3),(296,354909600,2),(296,370717200,3),(296,386445600,2),(296,402253200,3),(296,417981600,2),(296,433789200,3),(296,449604000,2),(296,465336000,4),(296,481060800,5),(296,496785600,4),(296,512510400,5),(296,528235200,4),(296,543960000,5),(296,559684800,4),(296,575409600,5),(296,591134400,4),(296,606859200,5),(296,622584000,4),(296,638308800,5),(296,654638400,4),(296,670363200,6),(296,686091600,7),(296,695768400,4),(296,701812800,5),(296,717537600,4),(296,733262400,5),(296,748987200,4),(296,764712000,5),(296,780436800,4),(296,796161600,5),(296,811886400,4),(296,828216000,5),(296,846360000,4),(296,859665600,5),(296,877809600,4),(296,891115200,5),(296,909259200,4),(296,922564800,5),(296,941313600,4),(296,954014400,5),(296,972763200,4),(296,985464000,5),(296,1004212800,4),(296,1017518400,5),(296,1035662400,4),(296,1048968000,5),(296,1067112000,4),(296,1080417600,5),(296,1099166400,4),(296,1111867200,5),(296,1130616000,4),(296,1143316800,5),(296,1162065600,4),(296,1174766400,5),(296,1193515200,4),(296,1206820800,5),(296,1224964800,4),(296,1238270400,5),(296,1256414400,4),(296,1269720000,5),(296,1288468800,4),(296,1301169600,8),(296,1414263600,4),(297,-2147483648,0),(297,-1441164324,1),(297,-1247540400,2),(297,354913200,3),(297,370720800,4),(297,386445600,3),(297,402256800,2),(297,417985200,3),(297,433792800,2),(297,449607600,3),(297,465339600,5),(297,481064400,6),(297,496789200,5),(297,512514000,6),(297,528238800,5),(297,543963600,6),(297,559688400,5),(297,575413200,6),(297,591138000,5),(297,606862800,7),(297,622591200,8),(297,638316000,7),(297,654645600,8),(297,670370400,7),(297,686095200,8),(297,695772000,5),(297,701816400,7),(297,717544800,8),(297,733269600,7),(297,748994400,8),(297,764719200,7),(297,780444000,8),(297,796168800,7),(297,811893600,8),(297,828223200,7),(297,846367200,8),(297,859672800,7),(297,877816800,8),(297,891122400,7),(297,909266400,8),(297,922572000,7),(297,941320800,8),(297,954021600,7),(297,972770400,8),(297,985471200,7),(297,1004220000,8),(297,1017525600,7),(297,1035669600,8),(297,1048975200,7),(297,1067119200,8),(297,1080424800,7),(297,1099173600,5),(298,-2147483648,1),(298,-1570084924,2),(299,-2147483648,0),(299,-1946186240,1),(299,-1172906240,2),(299,-881220600,3),(299,-766054800,2),(299,-683883000,4),(299,-620812800,2),(299,-189415800,5),(299,567964800,6),(300,-2147483648,0),(300,-1948782180,1),(300,-1830414600,2),(300,-768646800,3),(300,1439564400,1),(300,1525446000,3),(301,-2147483648,0),(301,-1577935568,1),(301,76190400,2),(302,-2147483648,0),(302,-1441167268,1),(302,-1247544000,2),(302,354913200,3),(302,370720800,4),(302,386445600,3),(302,402256800,2),(302,417985200,3),(302,433792800,2),(302,449607600,3),(302,465339600,5),(302,481064400,6),(302,496789200,5),(302,512514000,6),(302,528238800,5),(302,543963600,6),(302,559688400,5),(302,575413200,6),(302,591138000,5),(302,606862800,6),(302,622587600,5),(302,638312400,6),(302,654642000,5),(302,670366800,7),(302,686095200,8),(302,695772000,5),(302,701816400,6),(302,717541200,5),(302,733266000,6),(302,748990800,5),(302,764715600,6),(302,780440400,5),(302,796165200,6),(302,811890000,5),(302,828219600,6),(302,846363600,5),(302,859669200,6),(302,877813200,5),(302,891118800,6),(302,909262800,5),(302,922568400,6),(302,941317200,5),(302,954018000,6),(302,972766800,5),(302,985467600,6),(302,1004216400,5),(302,1017522000,6),(302,1035666000,5),(302,1048971600,6),(302,1067115600,5),(302,1080421200,6),(302,1099170000,9),(303,-2147483648,0),(303,-1441167712,1),(303,-1247544000,2),(303,354913200,3),(303,370720800,4),(303,386445600,3),(303,402256800,2),(303,417985200,3),(303,433792800,2),(303,449607600,3),(303,465339600,5),(303,481064400,6),(303,496789200,5),(303,512514000,6),(303,528238800,5),(303,543963600,6),(303,559688400,5),(303,575413200,6),(303,591138000,5),(303,606862800,6),(303,622587600,5),(303,638312400,6),(303,654642000,5),(303,670366800,7),(303,686095200,5),(303,695768400,9),(303,701812800,6),(303,717541200,5),(303,733266000,6),(303,748990800,5),(303,764715600,6),(303,780440400,5),(303,796165200,6),(303,811890000,5),(303,828219600,6),(303,846363600,5),(303,859669200,6),(303,877813200,5),(303,891118800,6),(303,909262800,5),(303,922568400,6),(303,941317200,5),(303,954018000,6),(303,972766800,5),(303,985467600,6),(303,1004216400,5),(303,1017522000,6),(303,1035666000,5),(303,1048971600,6),(303,1067115600,5),(303,1080421200,6),(303,1099170000,9),(303,1545328800,2),(304,-2147483648,1),(304,-1577946287,2),(304,-873268200,3),(304,-778410000,2),(305,-2147483648,0),(305,-719636812,1),(306,-2147483648,0),(306,-2004073600,1),(306,-1851577590,2),(306,-852105600,3),(306,-782643600,4),(306,-767869200,2),(306,-718095600,3),(306,-457776000,2),(306,-315648000,3),(306,171820800,2),(307,-2147483648,0),(307,-2031039048,1),(307,-768560400,3),(307,354891600,2),(307,370699200,3),(307,386427600,2),(307,402235200,3),(307,417963600,2),(307,433771200,3),(307,449586000,2),(307,465318000,4),(307,481042800,5),(307,496767600,4),(307,512492400,5),(307,528217200,4),(307,543942000,5),(307,559666800,4),(307,575391600,5),(307,591116400,4),(307,606841200,5),(307,622566000,4),(307,638290800,5),(307,654620400,4),(307,670345200,6),(307,686073600,7),(307,695750400,4),(307,701794800,5),(307,717519600,4),(307,733244400,5),(307,748969200,4),(307,764694000,5),(307,780418800,4),(307,796143600,5),(307,811868400,4),(307,828198000,5),(307,846342000,4),(307,859647600,6),(307,877795200,7),(307,891100800,6),(307,909244800,7),(307,922550400,6),(307,941299200,7),(307,954000000,6),(307,972748800,7),(307,985449600,6),(307,1004198400,7),(307,1017504000,6),(307,1035648000,7),(307,1048953600,6),(307,1067097600,7),(307,1080403200,6),(307,1099152000,7),(307,1111852800,6),(307,1130601600,7),(307,1143302400,6),(307,1162051200,7),(307,1174752000,6),(307,1193500800,7),(307,1206806400,6),(307,1224950400,7),(307,1238256000,6),(307,1256400000,7),(307,1269705600,6),(307,1288454400,7),(307,1301155200,4),(307,1414249200,7),(307,1459008000,4),(308,-2147483648,0),(308,-1441168073,1),(308,-1247544000,2),(308,354913200,3),(308,370720800,4),(308,386445600,3),(308,402256800,2),(308,417985200,3),(308,433792800,2),(308,449607600,3),(308,465339600,5),(308,481064400,6),(308,496789200,5),(308,512514000,6),(308,528238800,5),(308,543963600,6),(308,559688400,5),(308,575413200,6),(308,591138000,5),(308,606862800,6),(308,622587600,5),(308,638312400,6),(308,654642000,5),(308,670366800,6),(308,686091600,5),(308,694206000,2),(309,-2147483648,0),(309,-1948782472,1),(309,-1830414600,2),(309,-767350800,4),(309,-681210000,3),(309,-672228000,4),(309,-654771600,3),(309,-640864800,4),(309,-623408400,3),(309,-609415200,4),(309,-588848400,3),(309,-577965600,4),(309,-498128400,1),(309,-462702600,5),(309,-451733400,1),(309,-429784200,5),(309,-418296600,1),(309,-399544200,5),(309,-387451800,1),(309,-368094600,5),(309,-356002200,1),(309,-336645000,5),(309,-324552600,1),(309,-305195400,5),(309,-293103000,1),(309,-264933000,4),(309,547578000,3),(309,560883600,4),(309,579027600,3),(309,592333200,4),(310,-2147483648,2),(310,-933667200,1),(310,-922093200,2),(310,-908870400,1),(310,-888829200,2),(310,-881049600,1),(310,-767869200,2),(310,-745833600,1),(310,-733827600,2),(310,-716889600,1),(310,-699613200,2),(310,-683884800,1),(310,-670669200,2),(310,-652348800,1),(310,-650019600,2),(310,515527200,1),(310,527014800,2),(310,545162400,1),(310,558464400,2),(310,577216800,1),(310,589914000,2),(310,608666400,1),(310,621968400,2),(310,640116000,1),(310,653418000,2),(310,671565600,1),(310,684867600,2),(311,-2147483648,1),(311,-2038200925,2),(311,-1167634800,3),(311,-1073028000,4),(311,-894180000,5),(311,-879665400,6),(311,-767005200,5),(311,378664200,7),(312,-2147483648,0),(312,-1441188892,1),(312,-1247565600,3),(312,354891600,2),(312,370699200,3),(312,386427600,2),(312,402235200,3),(312,417963600,2),(312,433771200,3),(312,449586000,2),(312,465318000,4),(312,481042800,5),(312,496767600,4),(312,512492400,5),(312,528217200,4),(312,543942000,5),(312,559666800,4),(312,575391600,5),(312,591116400,4),(312,606841200,5),(312,622566000,4),(312,638290800,5),(312,654620400,4),(312,670345200,6),(312,686073600,7),(312,695750400,4),(312,701794800,5),(312,717519600,4),(312,733244400,5),(312,748969200,4),(312,764694000,5),(312,780418800,4),(312,796143600,5),(312,811868400,4),(312,828198000,5),(312,846342000,4),(312,859647600,5),(312,877791600,4),(312,891097200,5),(312,909241200,4),(312,922546800,5),(312,941295600,4),(312,953996400,5),(312,972745200,4),(312,985446000,5),(312,1004194800,4),(312,1017500400,5),(312,1035644400,4),(312,1048950000,5),(312,1067094000,4),(312,1080399600,5),(312,1099148400,4),(312,1111849200,5),(312,1130598000,4),(312,1143298800,5),(312,1162047600,4),(312,1174748400,5),(312,1193497200,4),(312,1206802800,5),(312,1224946800,4),(312,1238252400,5),(312,1256396400,4),(312,1269702000,5),(312,1288450800,4),(312,1301151600,8),(312,1414245600,4),(313,-2147483648,1),(313,-1017820800,2),(313,-766224000,1),(313,-745833600,3),(313,-733827600,1),(313,-716889600,3),(313,-699613200,1),(313,-683884800,3),(313,-670669200,1),(313,-652348800,3),(313,-639133200,1),(313,-620812800,3),(313,-607597200,1),(313,-589276800,3),(313,-576061200,1),(313,-562924800,3),(313,-541760400,1),(313,-528710400,3),(313,-510224400,1),(313,-497174400,3),(313,-478688400,1),(313,-465638400,3),(313,-449830800,1),(313,-434016000,3),(313,-418208400,1),(313,-402480000,3),(313,-386672400,1),(313,-370944000,3),(313,-355136400,1),(313,-339408000,3),(313,-323600400,1),(313,-302515200,3),(313,-291978000,1),(313,-270979200,3),(313,-260442000,1),(313,133977600,3),(313,149785200,1),(313,165513600,3),(313,181321200,1),(313,299606400,3),(313,307551600,1),(314,-2147483648,0),(314,-1441168631,1),(314,-1247547600,3),(314,354909600,2),(314,370717200,3),(314,386445600,2),(314,402253200,3),(314,417981600,2),(314,433789200,3),(314,449604000,2),(314,465336000,4),(314,481060800,5),(314,496785600,4),(314,512510400,5),(314,528235200,4),(314,543960000,5),(314,559684800,4),(314,575409600,5),(314,591134400,4),(314,606859200,5),(314,622584000,4),(314,638308800,5),(314,654638400,4),(314,670363200,6),(314,686091600,7),(314,694206000,1),(315,-2147483648,1),(315,-1441162751,2),(315,-405140400,4),(315,354916800,3),(315,370724400,4),(315,386452800,3),(315,402260400,4),(315,417988800,3),(315,433796400,4),(315,449611200,3),(315,465343200,5),(315,481068000,6),(315,496792800,5),(315,512517600,6),(315,528242400,5),(315,543967200,6),(315,559692000,5),(315,575416800,6),(315,591141600,5),(315,606866400,6),(315,622591200,5),(315,638316000,6),(315,654645600,5),(315,670370400,7),(315,686098800,8),(315,694213200,2),(315,701816400,9),(315,717537600,2),(315,733266000,9),(315,748987200,2),(315,764715600,9),(315,780436800,4),(315,796161600,3),(315,811882800,4),(315,828216000,3),(315,859662000,3),(315,877806000,4),(315,891115200,3),(315,909255600,4),(315,922564800,3),(315,941310000,4),(315,954014400,3),(315,972759600,4),(315,985464000,3),(315,1004209200,4),(315,1017518400,3),(315,1035658800,4),(315,1048968000,3),(315,1067108400,4),(315,1080417600,3),(315,1088276400,9),(315,1099177200,8),(315,1111878000,4),(316,-2147483648,0),(316,-1704165944,1),(316,-757394744,2),(316,247177800,4),(316,259272000,3),(316,277758000,4),(316,283982400,2),(316,290809800,5),(316,306531000,2),(316,322432200,5),(316,338499000,2),(316,673216200,5),(316,685481400,2),(316,701209800,5),(316,717103800,2),(316,732745800,5),(316,748639800,2),(316,764281800,5),(316,780175800,2),(316,795817800,5),(316,811711800,2),(316,827353800,5),(316,843247800,2),(316,858976200,5),(316,874870200,2),(316,890512200,5),(316,906406200,2),(316,922048200,5),(316,937942200,2),(316,953584200,5),(316,969478200,2),(316,985206600,5),(316,1001100600,2),(316,1016742600,5),(316,1032636600,2),(316,1048278600,5),(316,1064172600,2),(316,1079814600,5),(316,1095708600,2),(316,1111437000,5),(316,1127331000,2),(316,1206045000,5),(316,1221939000,2),(316,1237667400,5),(316,1253561400,2),(316,1269203400,5),(316,1285097400,2),(316,1300739400,5),(316,1316633400,2),(316,1332275400,5),(316,1348169400,2),(316,1363897800,5),(316,1379791800,2),(316,1395433800,5),(316,1411327800,2),(316,1426969800,5),(316,1442863800,2),(316,1458505800,5),(316,1474399800,2),(316,1490128200,5),(316,1506022200,2),(316,1521664200,5),(316,1537558200,2),(316,1553200200,5),(316,1569094200,2),(316,1584736200,5),(316,1600630200,2),(316,1616358600,5),(316,1632252600,2),(316,1647894600,5),(316,1663788600,2),(316,1679430600,5),(316,1695324600,2),(316,1710966600,5),(316,1726860600,2),(316,1742589000,5),(316,1758483000,2),(316,1774125000,5),(316,1790019000,2),(316,1805661000,5),(316,1821555000,2),(316,1837197000,5),(316,1853091000,2),(316,1868733000,5),(316,1884627000,2),(316,1900355400,5),(316,1916249400,2),(316,1931891400,5),(316,1947785400,2),(316,1963427400,5),(316,1979321400,2),(316,1994963400,5),(316,2010857400,2),(316,2026585800,5),(316,2042479800,2),(316,2058121800,5),(316,2074015800,2),(316,2089657800,5),(316,2105551800,2),(316,2121193800,5),(316,2137087800,2),(317,-2147483648,1),(317,-1641003640,3),(317,-933645600,2),(317,-857358000,3),(317,-844300800,2),(317,-825822000,3),(317,-812685600,2),(317,-794199600,3),(317,-779853600,2),(317,-762656400,3),(317,-748310400,2),(317,-731127600,3),(317,-681962400,4),(317,-673243200,2),(317,-667962000,3),(317,-652327200,2),(317,-636426000,3),(317,-622087200,2),(317,-608947200,3),(317,-591847200,2),(317,-572486400,3),(317,-558576000,2),(317,-542851200,3),(317,-527731200,2),(317,-514425600,3),(317,-490845600,2),(317,-482986800,3),(317,-459475200,2),(317,-451537200,3),(317,-428551200,2),(317,-418262400,3),(317,-400032000,2),(317,-387428400,3),(317,142380000,2),(317,150843600,3),(317,167176800,2),(317,178664400,3),(317,334015200,2),(317,337644000,3),(317,452556000,2),(317,462232800,3),(317,482277600,2),(317,495579600,3),(317,516751200,2),(317,526424400,3),(317,545436000,2),(317,558478800,3),(317,576626400,2),(317,589323600,3),(317,609890400,2),(317,620773200,3),(317,638316000,2),(317,651618000,3),(317,669765600,2),(317,683672400,3),(317,701820000,2),(317,715726800,3),(317,733701600,2),(317,747176400,3),(317,765151200,2),(317,778021200,3),(317,796600800,2),(317,810075600,3),(317,826840800,2),(317,842821200,3),(317,858895200,2),(317,874184400,3),(317,890344800,2),(317,905029200,3),(317,923011200,2),(317,936313200,3),(317,955670400,2),(317,970783200,3),(317,986770800,2),(317,1001282400,3),(317,1017356400,2),(317,1033941600,3),(317,1048806000,2),(317,1065132000,3),(317,1081292400,2),(317,1095804000,3),(317,1112313600,2),(317,1128812400,3),(317,1143763200,2),(317,1159657200,3),(317,1175212800,2),(317,1189897200,3),(317,1206662400,2),(317,1223161200,3),(317,1238112000,2),(317,1254006000,3),(317,1269561600,2),(317,1284246000,3),(317,1301616000,2),(317,1317510000,3),(317,1333065600,2),(317,1348354800,3),(317,1364515200,2),(317,1382828400,3),(317,1395964800,2),(317,1414278000,3),(317,1427414400,2),(317,1445727600,3),(317,1458864000,2),(317,1477782000,3),(317,1490313600,2),(317,1509231600,3),(317,1521763200,2),(317,1540681200,3),(317,1553817600,2),(317,1572130800,3),(317,1585267200,2),(317,1603580400,3),(317,1616716800,2),(317,1635634800,3),(317,1648166400,2),(317,1667084400,3),(317,1679616000,2),(317,1698534000,3),(317,1711670400,2),(317,1729983600,3),(317,1743120000,2),(317,1761433200,3),(317,1774569600,2),(317,1792882800,3),(317,1806019200,2),(317,1824937200,3),(317,1837468800,2),(317,1856386800,3),(317,1868918400,2),(317,1887836400,3),(317,1900972800,2),(317,1919286000,3),(317,1932422400,2),(317,1950735600,3),(317,1963872000,2),(317,1982790000,3),(317,1995321600,2),(317,2014239600,3),(317,2026771200,2),(317,2045689200,3),(317,2058220800,2),(317,2077138800,3),(317,2090275200,2),(317,2108588400,3),(317,2121724800,2),(317,2140038000,3),(318,-2147483648,0),(318,-706341516,1),(318,560025000,2),(319,-2147483648,0),(319,-706341516,1),(319,560025000,2),(320,-2147483648,3),(320,-683802000,1),(320,-672310800,2),(320,-654771600,1),(320,-640861200,2),(320,-620298000,1),(320,-609411600,2),(320,-588848400,1),(320,-577962000,2),(321,-2147483648,0),(321,-1578807591,1),(321,-1247551200,3),(321,354906000,2),(321,370713600,3),(321,386442000,2),(321,402249600,3),(321,417978000,2),(321,433785600,3),(321,449600400,2),(321,465332400,4),(321,481057200,5),(321,496782000,4),(321,512506800,5),(321,528231600,4),(321,543956400,5),(321,559681200,4),(321,575406000,5),(321,591130800,4),(321,606855600,5),(321,622580400,4),(321,638305200,5),(321,654634800,4),(321,670359600,6),(321,686088000,7),(321,695764800,4),(321,701809200,5),(321,717534000,4),(321,733258800,5),(321,748983600,4),(321,764708400,5),(321,780433200,4),(321,796158000,5),(321,811882800,4),(321,828212400,5),(321,846356400,4),(321,859662000,5),(321,877806000,4),(321,891111600,5),(321,909255600,4),(321,922561200,5),(321,941310000,4),(321,954010800,5),(321,972759600,4),(321,985460400,5),(321,1004209200,4),(321,1017514800,5),(321,1020193200,8),(321,1035662400,7),(321,1048968000,6),(321,1067112000,7),(321,1080417600,6),(321,1099166400,7),(321,1111867200,6),(321,1130616000,7),(321,1143316800,6),(321,1162065600,7),(321,1174766400,6),(321,1193515200,7),(321,1206820800,6),(321,1224964800,7),(321,1238270400,6),(321,1256414400,7),(321,1269720000,6),(321,1288468800,7),(321,1301169600,4),(321,1414263600,7),(321,1464465600,4),(322,-2147483648,0),(322,-1577951856,1),(322,-1172908656,2),(322,-880272000,3),(322,-766054800,4),(323,-2147483648,0),(323,-2032931252,1),(323,252435600,3),(323,417974400,2),(323,433782000,3),(323,449596800,2),(323,465318000,3),(323,481046400,2),(323,496767600,3),(323,512496000,2),(323,528217200,3),(323,543945600,2),(323,559666800,3),(323,575395200,2),(323,591116400,3),(323,606844800,2),(323,622566000,3),(323,638294400,2),(323,654620400,3),(323,670348800,2),(323,686070000,3),(323,701798400,2),(323,717519600,3),(323,733248000,2),(323,748969200,3),(323,764697600,2),(323,780418800,3),(323,796147200,2),(323,811868400,3),(323,828201600,2),(323,843922800,3),(323,859651200,2),(323,875372400,3),(323,891100800,2),(323,906822000,3),(323,988394400,2),(323,1001696400,3),(323,1017424800,2),(323,1033146000,3),(323,1048874400,2),(323,1064595600,3),(323,1080324000,2),(323,1096045200,3),(323,1111773600,2),(323,1127494800,3),(323,1143223200,2),(323,1159549200,3),(323,1427479200,2),(323,1443193200,3),(323,1458928800,2),(323,1474642800,3),(324,-2147483648,0),(324,-2032931252,1),(324,252435600,3),(324,417974400,2),(324,433782000,3),(324,449596800,2),(324,465318000,3),(324,481046400,2),(324,496767600,3),(324,512496000,2),(324,528217200,3),(324,543945600,2),(324,559666800,3),(324,575395200,2),(324,591116400,3),(324,606844800,2),(324,622566000,3),(324,638294400,2),(324,654620400,3),(324,670348800,2),(324,686070000,3),(324,701798400,2),(324,717519600,3),(324,733248000,2),(324,748969200,3),(324,764697600,2),(324,780418800,3),(324,796147200,2),(324,811868400,3),(324,828201600,2),(324,843922800,3),(324,859651200,2),(324,875372400,3),(324,891100800,2),(324,906822000,3),(324,988394400,2),(324,1001696400,3),(324,1017424800,2),(324,1033146000,3),(324,1048874400,2),(324,1064595600,3),(324,1080324000,2),(324,1096045200,3),(324,1111773600,2),(324,1127494800,3),(324,1143223200,2),(324,1159549200,3),(324,1427479200,2),(324,1443193200,3),(324,1458928800,2),(324,1474642800,3),(325,-2147483648,0),(325,-1325483420,1),(326,-2147483648,0),(326,-1579426374,1),(326,-1247558400,2),(326,354898800,4),(326,370699200,3),(326,386427600,4),(326,402235200,3),(326,417963600,4),(326,433771200,3),(326,449586000,4),(326,465318000,5),(326,481042800,6),(326,496767600,5),(326,512492400,6),(326,528217200,5),(326,543942000,6),(326,559666800,5),(326,575391600,6),(326,591116400,5),(326,606841200,6),(326,622566000,5),(326,638290800,6),(326,654620400,5),(326,670345200,7),(326,686073600,8),(326,695750400,5),(326,701794800,6),(326,717519600,5),(326,733244400,6),(326,748969200,5),(326,764694000,6),(326,780418800,5),(326,796143600,6),(326,811868400,5),(326,828198000,6),(326,846342000,5),(326,859647600,6),(326,877791600,5),(326,891097200,6),(326,909241200,5),(326,922546800,6),(326,941295600,5),(326,953996400,6),(326,972745200,5),(326,985446000,6),(326,1004194800,5),(326,1017500400,6),(326,1035644400,5),(326,1048950000,6),(326,1067094000,5),(326,1080399600,6),(326,1099148400,5),(326,1111849200,6),(326,1130598000,5),(326,1143298800,6),(326,1162047600,5),(326,1174748400,6),(326,1193497200,5),(326,1206802800,6),(326,1224946800,5),(326,1238252400,6),(326,1256396400,5),(326,1269702000,6),(326,1288450800,5),(326,1301151600,9),(326,1315828800,5),(326,1414249200,8),(327,-2147483648,1),(327,-1570084924,2),(328,-2147483648,0),(328,-1487321251,1),(328,-1247562000,3),(328,354895200,2),(328,370702800,3),(328,386431200,2),(328,402238800,3),(328,417967200,2),(328,433774800,3),(328,449589600,2),(328,465321600,4),(328,481046400,5),(328,496771200,4),(328,512496000,5),(328,528220800,4),(328,543945600,5),(328,559670400,4),(328,575395200,5),(328,591120000,4),(328,606844800,5),(328,622569600,4),(328,638294400,5),(328,654624000,4),(328,670348800,6),(328,686077200,7),(328,695754000,4),(328,701798400,5),(328,717523200,4),(328,733248000,5),(328,748972800,4),(328,764697600,5),(328,780422400,4),(328,796147200,5),(328,811872000,4),(328,828201600,5),(328,846345600,4),(328,859651200,5),(328,877795200,4),(328,891100800,5),(328,909244800,4),(328,922550400,5),(328,941299200,4),(328,954000000,5),(328,972748800,4),(328,985449600,5),(328,1004198400,4),(328,1017504000,5),(328,1035648000,4),(328,1048953600,5),(328,1067097600,4),(328,1080403200,5),(328,1099152000,4),(328,1111852800,5),(328,1130601600,4),(328,1143302400,5),(328,1162051200,4),(328,1174752000,5),(328,1193500800,4),(328,1206806400,5),(328,1224950400,4),(328,1238256000,5),(328,1256400000,4),(328,1269705600,5),(328,1288454400,4),(328,1301155200,8),(328,1414249200,4),(329,-2147483648,0),(329,-1579423138,1),(329,-1247558400,3),(329,354898800,2),(329,370706400,3),(329,386434800,2),(329,402242400,3),(329,417970800,2),(329,433778400,3),(329,449593200,2),(329,465325200,4),(329,481050000,5),(329,496774800,4),(329,512499600,5),(329,528224400,4),(329,543949200,5),(329,559674000,4),(329,575398800,5),(329,591123600,4),(329,606848400,5),(329,622573200,4),(329,638298000,5),(329,654627600,4),(329,670352400,6),(329,686080800,7),(329,695757600,4),(329,701802000,5),(329,717526800,4),(329,733251600,5),(329,748976400,4),(329,764701200,5),(329,780426000,4),(329,796150800,5),(329,811875600,4),(329,828205200,5),(329,846349200,4),(329,859654800,5),(329,877798800,4),(329,891104400,5),(329,909248400,4),(329,922554000,5),(329,941302800,4),(329,954003600,5),(329,972752400,4),(329,985453200,5),(329,1004202000,4),(329,1017507600,5),(329,1035651600,4),(329,1048957200,5),(329,1067101200,4),(329,1080406800,5),(329,1099155600,4),(329,1111856400,5),(329,1130605200,4),(329,1143306000,5),(329,1162054800,4),(329,1174755600,5),(329,1193504400,4),(329,1206810000,5),(329,1224954000,4),(329,1238259600,5),(329,1256403600,4),(329,1269709200,5),(329,1288458000,4),(329,1301158800,8),(329,1414252800,4),(330,-2147483648,1),(330,-1577946287,2),(330,-873268200,3),(330,-778410000,2),(331,-2147483648,0),(331,-1688270553,1),(331,-1592610305,2),(331,-1247544000,4),(331,354913200,3),(331,370720800,4),(331,386449200,3),(331,402256800,4),(331,417985200,3),(331,433792800,4),(331,449607600,3),(331,465339600,5),(331,481064400,6),(331,496789200,5),(331,512514000,6),(331,528238800,5),(331,543963600,6),(331,559688400,5),(331,575413200,6),(331,591138000,5),(331,606862800,6),(331,622587600,5),(331,638312400,6),(331,654642000,5),(331,670366800,7),(331,686095200,8),(331,695772000,5),(331,701816400,6),(331,717541200,5),(331,733266000,6),(331,748990800,5),(331,764715600,6),(331,780440400,5),(331,796165200,6),(331,811890000,5),(331,828219600,6),(331,846363600,5),(331,859669200,6),(331,877813200,5),(331,891118800,6),(331,909262800,5),(331,922568400,6),(331,941317200,5),(331,954018000,6),(331,972766800,5),(331,985467600,6),(331,1004216400,5),(331,1017522000,6),(331,1035666000,5),(331,1048971600,6),(331,1067115600,5),(331,1080421200,6),(331,1099170000,5),(331,1111870800,6),(331,1130619600,5),(331,1143320400,6),(331,1162069200,5),(331,1174770000,6),(331,1193518800,5),(331,1206824400,6),(331,1224968400,5),(331,1238274000,6),(331,1256418000,5),(331,1269723600,6),(331,1288472400,5),(331,1301173200,9),(331,1414267200,5),(332,-2147483648,0),(332,-1441162680,1),(332,-405140400,3),(332,354916800,2),(332,370724400,3),(332,386452800,2),(332,402260400,3),(332,417988800,2),(332,433796400,3),(332,449611200,2),(332,465343200,4),(332,481068000,5),(332,496792800,4),(332,512517600,5),(332,528242400,4),(332,543967200,5),(332,559692000,4),(332,575416800,5),(332,591141600,4),(332,606866400,5),(332,622591200,4),(332,638316000,5),(332,654645600,4),(332,670370400,6),(332,686098800,7),(332,701823600,6),(332,717548400,7),(332,733273200,6),(332,748998000,7),(332,764722800,6),(332,780447600,7),(332,796172400,6),(332,811897200,4),(332,852062400,3),(332,859672800,5),(332,877816800,4),(332,891122400,5),(332,909266400,4),(332,922572000,5),(332,941320800,4),(332,954021600,5),(332,972770400,4),(332,985471200,5),(332,1004220000,4),(332,1017525600,5),(332,1035669600,4),(332,1048975200,5),(332,1067119200,4),(332,1080424800,5),(332,1099173600,4),(332,1111874400,5),(332,1130623200,4),(332,1143324000,5),(332,1162072800,4),(332,1174773600,5),(332,1193522400,4),(332,1206828000,5),(332,1224972000,4),(332,1238277600,5),(332,1256421600,4),(332,1269727200,5),(332,1288476000,4),(332,1293825600,3),(332,1301176800,5),(332,1319925600,4),(333,-2147483648,1),(333,-1830376800,6),(333,-1689548400,2),(333,-1677794400,3),(333,-1667430000,4),(333,-1647730800,5),(333,-1635807600,4),(333,-1616194800,5),(333,-1604358000,4),(333,-1584658800,5),(333,-1572735600,4),(333,-1553036400,5),(333,-1541199600,4),(333,-1521500400,5),(333,-1442444400,4),(333,-1426806000,5),(333,-1379286000,4),(333,-1364770800,5),(333,-1348441200,4),(333,-1333321200,5),(333,-1316386800,4),(333,-1301266800,5),(333,-1284332400,4),(333,-1269817200,5),(333,-1221433200,4),(333,-1206918000,5),(333,-1191193200,4),(333,-1175468400,5),(333,-1127689200,4),(333,-1111964400,5),(333,-1096844400,4),(333,-1080514800,5),(333,-1063580400,4),(333,-1049065200,5),(333,-1033340400,4),(333,-1017615600,5),(333,-1002495600,4),(333,-986166000,5),(333,-969231600,4),(333,-950482800,5),(333,-942015600,4),(333,-922662000,5),(333,-906937200,4),(333,-891126000,5),(333,-877302000,4),(333,-873676800,7),(333,-864000000,4),(333,-857948400,5),(333,-845852400,4),(333,-842832000,7),(333,-831340800,4),(333,-825894000,5),(333,-814402800,4),(333,-810777600,7),(333,-799891200,4),(333,-794444400,5),(333,-782953200,4),(333,-779328000,7),(333,-768441600,4),(333,-762994800,5),(333,-749084400,4),(333,-733359600,5),(333,-717624000,4),(333,-701899200,5),(333,-686174400,4),(333,-670449600,5),(333,-654724800,4),(333,-639000000,5),(333,-591825600,4),(333,-575496000,5),(333,-559771200,4),(333,-544046400,5),(333,-528321600,4),(333,-512596800,5),(333,-496872000,4),(333,-481147200,5),(333,-465422400,4),(333,-449697600,5),(333,-433972800,4),(333,-417643200,5),(333,-401918400,4),(333,-386193600,5),(333,-370468800,4),(333,-354744000,5),(333,-339019200,4),(333,-323294400,5),(333,-307569600,4),(333,-291844800,5),(333,-276120000,4),(333,-260395200,5),(333,-244670400,4),(333,-228340800,5),(333,-212616000,4),(333,-196891200,5),(333,-181166400,4),(333,-165441600,5),(333,-149716800,4),(333,-133992000,5),(333,-118267200,9),(333,228272400,7),(333,243997200,8),(333,260326800,7),(333,276051600,8),(333,291776400,7),(333,307504800,8),(333,323226000,7),(333,338954400,8),(333,354679200,7),(333,370404000,8),(333,386128800,7),(333,401853600,8),(333,417582000,7),(333,433303200,8),(333,449028000,7),(333,465357600,8),(333,481082400,7),(333,496807200,8),(333,512532000,7),(333,528256800,8),(333,543981600,7),(333,559706400,8),(333,575431200,7),(333,591156000,8),(333,606880800,7),(333,622605600,8),(333,638330400,7),(333,654660000,8),(333,670384800,7),(333,686109600,8),(333,701834400,7),(333,717559200,10),(333,733280400,11),(333,749005200,12),(333,764730000,11),(333,780454800,12),(333,796179600,11),(333,811904400,12),(333,828234000,11),(333,846378000,12),(333,859683600,11),(333,877827600,12),(333,891133200,11),(333,909277200,12),(333,922582800,11),(333,941331600,12),(333,954032400,11),(333,972781200,12),(333,985482000,11),(333,1004230800,12),(333,1017536400,11),(333,1035680400,12),(333,1048986000,11),(333,1067130000,12),(333,1080435600,11),(333,1099184400,12),(333,1111885200,11),(333,1130634000,12),(333,1143334800,11),(333,1162083600,12),(333,1174784400,11),(333,1193533200,12),(333,1206838800,11),(333,1224982800,12),(333,1238288400,11),(333,1256432400,12),(333,1269738000,11),(333,1288486800,12),(333,1301187600,11),(333,1319936400,12),(333,1332637200,11),(333,1351386000,12),(333,1364691600,11),(333,1382835600,12),(333,1396141200,11),(333,1414285200,12),(333,1427590800,11),(333,1445734800,12),(333,1459040400,11),(333,1477789200,12),(333,1490490000,11),(333,1509238800,12),(333,1521939600,11),(333,1540688400,12),(333,1553994000,11),(333,1572138000,12),(333,1585443600,11),(333,1603587600,12),(333,1616893200,11),(333,1635642000,12),(333,1648342800,11),(333,1667091600,12),(333,1679792400,11),(333,1698541200,12),(333,1711846800,11),(333,1729990800,12),(333,1743296400,11),(333,1761440400,12),(333,1774746000,11),(333,1792890000,12),(333,1806195600,11),(333,1824944400,12),(333,1837645200,11),(333,1856394000,12),(333,1869094800,11),(333,1887843600,12),(333,1901149200,11),(333,1919293200,12),(333,1932598800,11),(333,1950742800,12),(333,1964048400,11),(333,1982797200,12),(333,1995498000,11),(333,2014246800,12),(333,2026947600,11),(333,2045696400,12),(333,2058397200,11),(333,2077146000,12),(333,2090451600,11),(333,2108595600,12),(333,2121901200,11),(333,2140045200,12),(334,-2147483648,0),(334,-1262281242,1),(334,136360800,2),(334,152082000,1),(334,167810400,2),(334,183531600,1),(334,199260000,2),(334,215586000,1),(334,230709600,2),(334,247035600,1),(334,262764000,2),(334,278485200,1),(334,294213600,2),(334,309934800,1),(334,325663200,2),(334,341384400,1),(334,357112800,2),(334,372834000,1),(334,388562400,2),(334,404888400,1),(334,420012000,2),(334,436338000,1),(334,452066400,2),(334,467787600,1),(334,483516000,2),(334,499237200,1),(334,514965600,2),(334,530686800,1),(334,544600800,2),(334,562136400,1),(334,576050400,2),(334,594190800,1),(334,607500000,2),(334,625640400,1),(334,638949600,2),(334,657090000,1),(334,671004000,2),(334,688539600,1),(334,702453600,2),(334,719989200,1),(334,733903200,2),(334,752043600,1),(334,765352800,2),(334,783493200,1),(334,796802400,2),(334,814942800,1),(334,828856800,2),(334,846392400,1),(334,860306400,2),(334,877842000,1),(334,891756000,2),(334,909291600,1),(334,923205600,2),(334,941346000,1),(334,954655200,2),(334,972795600,1),(334,986104800,2),(334,1004245200,1),(334,1018159200,2),(334,1035694800,1),(334,1049608800,2),(334,1067144400,1),(334,1081058400,2),(334,1099198800,1),(334,1112508000,2),(334,1130648400,1),(334,1143957600,2),(334,1162098000,1),(334,1173592800,2),(334,1194152400,1),(334,1205042400,2),(334,1225602000,1),(334,1236492000,2),(334,1257051600,1),(334,1268546400,2),(334,1289106000,1),(334,1299996000,2),(334,1320555600,1),(334,1331445600,2),(334,1352005200,1),(334,1362895200,2),(334,1383454800,1),(334,1394344800,2),(334,1414904400,1),(334,1425794400,2),(334,1446354000,1),(334,1457848800,2),(334,1478408400,1),(334,1489298400,2),(334,1509858000,1),(334,1520748000,2),(334,1541307600,1),(334,1552197600,2),(334,1572757200,1),(334,1583647200,2),(334,1604206800,1),(334,1615701600,2),(334,1636261200,1),(334,1647151200,2),(334,1667710800,1),(334,1678600800,2),(334,1699160400,1),(334,1710050400,2),(334,1730610000,1),(334,1741500000,2),(334,1762059600,1),(334,1772949600,2),(334,1793509200,1),(334,1805004000,2),(334,1825563600,1),(334,1836453600,2),(334,1857013200,1),(334,1867903200,2),(334,1888462800,1),(334,1899352800,2),(334,1919912400,1),(334,1930802400,2),(334,1951362000,1),(334,1962856800,2),(334,1983416400,1),(334,1994306400,2),(334,2014866000,1),(334,2025756000,2),(334,2046315600,1),(334,2057205600,2),(334,2077765200,1),(334,2088655200,2),(334,2109214800,1),(334,2120104800,2),(334,2140664400,1),(335,-2147483648,0),(335,-1509663504,1),(335,-733874400,2),(335,323827200,3),(335,338950800,4),(335,354675600,5),(335,370400400,4),(335,386125200,5),(335,401850000,4),(335,417574800,5),(335,433299600,4),(335,449024400,5),(335,465354000,4),(335,481078800,5),(335,496803600,4),(335,512528400,5),(335,528253200,4),(335,543978000,5),(335,559702800,4),(335,575427600,5),(335,591152400,4),(335,606877200,5),(335,622602000,4),(335,638326800,5),(335,654656400,4),(335,670381200,5),(335,686106000,4),(335,701830800,5),(335,717555600,4),(335,733280400,5),(335,749005200,4),(335,764730000,5),(335,780454800,4),(335,796179600,5),(335,811904400,4),(335,828234000,5),(335,846378000,4),(335,859683600,5),(335,877827600,4),(335,891133200,5),(335,909277200,4),(335,922582800,5),(335,941331600,4),(335,954032400,5),(335,972781200,4),(335,985482000,5),(335,1004230800,4),(335,1017536400,5),(335,1035680400,4),(335,1048986000,5),(335,1067130000,4),(335,1080435600,5),(335,1099184400,4),(335,1111885200,5),(335,1130634000,4),(335,1143334800,5),(335,1162083600,4),(335,1174784400,5),(335,1193533200,4),(335,1206838800,5),(335,1224982800,4),(335,1238288400,5),(335,1256432400,4),(335,1269738000,5),(335,1288486800,4),(335,1301187600,5),(335,1319936400,4),(335,1332637200,5),(335,1351386000,4),(335,1364691600,5),(335,1382835600,4),(335,1396141200,5),(335,1414285200,4),(335,1427590800,5),(335,1445734800,4),(335,1459040400,5),(335,1477789200,4),(335,1490490000,5),(335,1509238800,4),(335,1521939600,5),(335,1540688400,4),(335,1553994000,5),(335,1572138000,4),(335,1585443600,5),(335,1603587600,4),(335,1616893200,5),(335,1635642000,4),(335,1648342800,5),(335,1667091600,4),(335,1679792400,5),(335,1698541200,4),(335,1711846800,5),(335,1729990800,4),(335,1743296400,5),(335,1761440400,4),(335,1774746000,5),(335,1792890000,4),(335,1806195600,5),(335,1824944400,4),(335,1837645200,5),(335,1856394000,4),(335,1869094800,5),(335,1887843600,4),(335,1901149200,5),(335,1919293200,4),(335,1932598800,5),(335,1950742800,4),(335,1964048400,5),(335,1982797200,4),(335,1995498000,5),(335,2014246800,4),(335,2026947600,5),(335,2045696400,4),(335,2058397200,5),(335,2077146000,4),(335,2090451600,5),(335,2108595600,4),(335,2121901200,5),(335,2140045200,4),(336,-2147483648,0),(336,-1830376800,1),(336,-862610400,2),(336,-764118000,3),(336,186120000,4),(337,-2147483648,0),(337,-1955748776,1),(337,354675600,2),(337,370400400,3),(337,386125200,2),(337,401850000,3),(337,417574800,2),(337,433299600,3),(337,449024400,2),(337,465354000,3),(337,481078800,2),(337,496803600,3),(337,512528400,2),(337,528253200,3),(337,543978000,2),(337,559702800,3),(337,575427600,2),(337,591152400,3),(337,606877200,2),(337,622602000,3),(337,638326800,2),(337,654656400,3),(337,670381200,2),(337,686106000,3),(337,701830800,2),(337,717555600,3),(337,733280400,2),(337,749005200,3),(337,764730000,2),(337,780454800,3),(337,796179600,2),(337,811904400,3),(337,828234000,2),(337,846378000,3),(337,859683600,2),(337,877827600,3),(337,891133200,2),(337,909277200,3),(337,922582800,2),(337,941331600,3),(337,954032400,2),(337,972781200,3),(337,985482000,2),(337,1004230800,3),(337,1017536400,2),(337,1035680400,3),(337,1048986000,2),(337,1067130000,3),(337,1080435600,2),(337,1099184400,3),(337,1111885200,2),(337,1130634000,3),(337,1143334800,2),(337,1162083600,3),(337,1174784400,2),(337,1193533200,3),(337,1206838800,2),(337,1224982800,3),(337,1238288400,2),(337,1256432400,3),(337,1269738000,2),(337,1288486800,3),(337,1301187600,2),(337,1319936400,3),(337,1332637200,2),(337,1351386000,3),(337,1364691600,2),(337,1382835600,3),(337,1396141200,2),(337,1414285200,3),(337,1427590800,2),(337,1445734800,3),(337,1459040400,2),(337,1477789200,3),(337,1490490000,2),(337,1509238800,3),(337,1521939600,2),(337,1540688400,3),(337,1553994000,2),(337,1572138000,3),(337,1585443600,2),(337,1603587600,3),(337,1616893200,2),(337,1635642000,3),(337,1648342800,2),(337,1667091600,3),(337,1679792400,2),(337,1698541200,3),(337,1711846800,2),(337,1729990800,3),(337,1743296400,2),(337,1761440400,3),(337,1774746000,2),(337,1792890000,3),(337,1806195600,2),(337,1824944400,3),(337,1837645200,2),(337,1856394000,3),(337,1869094800,2),(337,1887843600,3),(337,1901149200,2),(337,1919293200,3),(337,1932598800,2),(337,1950742800,3),(337,1964048400,2),(337,1982797200,3),(337,1995498000,2),(337,2014246800,3),(337,2026947600,2),(337,2045696400,3),(337,2058397200,2),(337,2077146000,3),(337,2090451600,2),(337,2108595600,3),(337,2121901200,2),(337,2140045200,3),(338,-2147483648,0),(338,-1955748776,1),(338,354675600,2),(338,370400400,3),(338,386125200,2),(338,401850000,3),(338,417574800,2),(338,433299600,3),(338,449024400,2),(338,465354000,3),(338,481078800,2),(338,496803600,3),(338,512528400,2),(338,528253200,3),(338,543978000,2),(338,559702800,3),(338,575427600,2),(338,591152400,3),(338,606877200,2),(338,622602000,3),(338,638326800,2),(338,654656400,3),(338,670381200,2),(338,686106000,3),(338,701830800,2),(338,717555600,3),(338,733280400,2),(338,749005200,3),(338,764730000,2),(338,780454800,3),(338,796179600,2),(338,811904400,3),(338,828234000,2),(338,846378000,3),(338,859683600,2),(338,877827600,3),(338,891133200,2),(338,909277200,3),(338,922582800,2),(338,941331600,3),(338,954032400,2),(338,972781200,3),(338,985482000,2),(338,1004230800,3),(338,1017536400,2),(338,1035680400,3),(338,1048986000,2),(338,1067130000,3),(338,1080435600,2),(338,1099184400,3),(338,1111885200,2),(338,1130634000,3),(338,1143334800,2),(338,1162083600,3),(338,1174784400,2),(338,1193533200,3),(338,1206838800,2),(338,1224982800,3),(338,1238288400,2),(338,1256432400,3),(338,1269738000,2),(338,1288486800,3),(338,1301187600,2),(338,1319936400,3),(338,1332637200,2),(338,1351386000,3),(338,1364691600,2),(338,1382835600,3),(338,1396141200,2),(338,1414285200,3),(338,1427590800,2),(338,1445734800,3),(338,1459040400,2),(338,1477789200,3),(338,1490490000,2),(338,1509238800,3),(338,1521939600,2),(338,1540688400,3),(338,1553994000,2),(338,1572138000,3),(338,1585443600,2),(338,1603587600,3),(338,1616893200,2),(338,1635642000,3),(338,1648342800,2),(338,1667091600,3),(338,1679792400,2),(338,1698541200,3),(338,1711846800,2),(338,1729990800,3),(338,1743296400,2),(338,1761440400,3),(338,1774746000,2),(338,1792890000,3),(338,1806195600,2),(338,1824944400,3),(338,1837645200,2),(338,1856394000,3),(338,1869094800,2),(338,1887843600,3),(338,1901149200,2),(338,1919293200,3),(338,1932598800,2),(338,1950742800,3),(338,1964048400,2),(338,1982797200,3),(338,1995498000,2),(338,2014246800,3),(338,2026947600,2),(338,2045696400,3),(338,2058397200,2),(338,2077146000,3),(338,2090451600,2),(338,2108595600,3),(338,2121901200,2),(338,2140045200,3),(339,-2147483648,2),(339,-1691884800,1),(339,-1680573600,2),(339,-927511200,1),(339,-857257200,3),(339,-844556400,4),(339,-828226800,3),(339,-812502000,4),(339,-796777200,3),(339,-781052400,4),(339,-765327600,3),(339,-340844400,4),(339,-324514800,3),(339,-308790000,4),(339,-293065200,3),(339,-277340400,4),(339,-261615600,3),(339,-245890800,4),(339,-230166000,3),(339,-214441200,4),(339,-198716400,3),(339,-182991600,4),(339,-166662000,3),(339,-147913200,4),(339,-135212400,3),(339,315529200,2),(339,323830800,5),(339,338950800,6),(339,354675600,5),(339,370400400,6),(339,386125200,5),(339,401850000,6),(339,417574800,5),(339,433299600,6),(339,449024400,5),(339,465354000,6),(339,481078800,5),(339,496803600,6),(339,512528400,5),(339,528253200,6),(339,543978000,5),(339,559702800,6),(339,575427600,5),(339,591152400,6),(339,606877200,5),(339,622602000,6),(339,638326800,5),(339,654656400,6),(339,670381200,5),(339,686106000,6),(339,701830800,5),(339,717555600,6),(339,733280400,5),(339,749005200,6),(339,764730000,5),(339,780454800,6),(339,796179600,5),(339,811904400,6),(339,828234000,5),(339,846378000,6),(339,859683600,5),(339,877827600,6),(339,891133200,5),(339,909277200,6),(339,922582800,5),(339,941331600,6),(339,954032400,5),(339,972781200,6),(339,985482000,5),(339,1004230800,6),(339,1017536400,5),(339,1035680400,6),(339,1048986000,5),(339,1067130000,6),(339,1080435600,5),(339,1099184400,6),(339,1111885200,5),(339,1130634000,6),(339,1143334800,5),(339,1162083600,6),(339,1174784400,5),(339,1193533200,6),(339,1206838800,5),(339,1224982800,6),(339,1238288400,5),(339,1256432400,6),(339,1269738000,5),(339,1288486800,6),(339,1301187600,5),(339,1319936400,6),(339,1332637200,5),(339,1351386000,6),(339,1364691600,5),(339,1382835600,6),(339,1396141200,5),(339,1414285200,6),(339,1427590800,5),(339,1445734800,6),(339,1459040400,5),(339,1477789200,6),(339,1490490000,5),(339,1509238800,6),(339,1521939600,5),(339,1540688400,6),(339,1553994000,5),(339,1572138000,6),(339,1585443600,5),(339,1603587600,6),(339,1616893200,5),(339,1635642000,6),(339,1648342800,5),(339,1667091600,6),(339,1679792400,5),(339,1698541200,6),(339,1711846800,5),(339,1729990800,6),(339,1743296400,5),(339,1761440400,6),(339,1774746000,5),(339,1792890000,6),(339,1806195600,5),(339,1824944400,6),(339,1837645200,5),(339,1856394000,6),(339,1869094800,5),(339,1887843600,6),(339,1901149200,5),(339,1919293200,6),(339,1932598800,5),(339,1950742800,6),(339,1964048400,5),(339,1982797200,6),(339,1995498000,5),(339,2014246800,6),(339,2026947600,5),(339,2045696400,6),(339,2058397200,5),(339,2077146000,6),(339,2090451600,5),(339,2108595600,6),(339,2121901200,5),(339,2140045200,6),(340,-2147483648,1),(340,-1830380400,6),(340,-1689552000,2),(340,-1677798000,3),(340,-1667433600,4),(340,-1647734400,5),(340,-1635811200,4),(340,-1616198400,5),(340,-1604361600,4),(340,-1584662400,5),(340,-1572739200,4),(340,-1553040000,5),(340,-1541203200,4),(340,-1521504000,5),(340,-1442448000,4),(340,-1426809600,5),(340,-1379289600,4),(340,-1364774400,5),(340,-1348444800,4),(340,-1333324800,5),(340,-1316390400,4),(340,-1301270400,5),(340,-1284336000,4),(340,-1269820800,5),(340,-1221436800,4),(340,-1206921600,5),(340,-1191196800,4),(340,-1175472000,5),(340,-1127692800,4),(340,-1111968000,5),(340,-1096848000,4),(340,-1080518400,5),(340,-1063584000,4),(340,-1049068800,5),(340,-1033344000,4),(340,-1017619200,5),(340,-1002499200,4),(340,-986169600,5),(340,-969235200,4),(340,-950486400,5),(340,-942019200,4),(340,-922665600,5),(340,-906940800,4),(340,-891129600,5),(340,-877305600,4),(340,-873680400,7),(340,-864003600,4),(340,-857952000,5),(340,-845856000,4),(340,-842835600,7),(340,-831344400,4),(340,-825897600,5),(340,-814406400,4),(340,-810781200,7),(340,-799894800,4),(340,-794448000,5),(340,-782956800,4),(340,-779331600,7),(340,-768445200,4),(340,-762998400,5),(340,-749088000,4),(340,-733363200,5),(340,-717627600,4),(340,-701902800,5),(340,-686178000,4),(340,-670453200,5),(340,-654728400,4),(340,-639003600,5),(340,-591829200,4),(340,-575499600,5),(340,-559774800,4),(340,-544050000,5),(340,-528325200,4),(340,-512600400,5),(340,-496875600,4),(340,-481150800,5),(340,-465426000,4),(340,-449701200,5),(340,-433976400,4),(340,-417646800,5),(340,-401922000,4),(340,-386197200,5),(340,-370472400,4),(340,-354747600,5),(340,-339022800,4),(340,-323298000,5),(340,-307573200,4),(340,-291848400,5),(340,-276123600,4),(340,-260398800,5),(340,-244674000,4),(340,-228344400,5),(340,-212619600,4),(340,-196894800,5),(340,-181170000,4),(340,-165445200,5),(340,-149720400,4),(340,-133995600,5),(340,-118270800,10),(340,228268800,8),(340,243993600,9),(340,260323200,8),(340,276048000,9),(340,291772800,8),(340,307501200,9),(340,323222400,8),(340,338950800,9),(340,354675600,8),(340,370400400,9),(340,386125200,8),(340,401850000,9),(340,417578400,8),(340,433299600,11),(340,449024400,12),(340,465354000,11),(340,481078800,12),(340,496803600,11),(340,512528400,12),(340,528253200,11),(340,543978000,12),(340,559702800,11),(340,575427600,12),(340,591152400,11),(340,606877200,12),(340,622602000,11),(340,638326800,12),(340,654656400,11),(340,670381200,12),(340,686106000,11),(340,701830800,12),(340,717555600,11),(340,733280400,12),(340,749005200,11),(340,764730000,12),(340,780454800,11),(340,796179600,12),(340,811904400,11),(340,828234000,12),(340,846378000,11),(340,859683600,12),(340,877827600,11),(340,891133200,12),(340,909277200,11),(340,922582800,12),(340,941331600,11),(340,954032400,12),(340,972781200,11),(340,985482000,12),(340,1004230800,11),(340,1017536400,12),(340,1035680400,11),(340,1048986000,12),(340,1067130000,11),(340,1080435600,12),(340,1099184400,11),(340,1111885200,12),(340,1130634000,11),(340,1143334800,12),(340,1162083600,11),(340,1174784400,12),(340,1193533200,11),(340,1206838800,12),(340,1224982800,11),(340,1238288400,12),(340,1256432400,11),(340,1269738000,12),(340,1288486800,11),(340,1301187600,12),(340,1319936400,11),(340,1332637200,12),(340,1351386000,11),(340,1364691600,12),(340,1382835600,11),(340,1396141200,12),(340,1414285200,11),(340,1427590800,12),(340,1445734800,11),(340,1459040400,12),(340,1477789200,11),(340,1490490000,12),(340,1509238800,11),(340,1521939600,12),(340,1540688400,11),(340,1553994000,12),(340,1572138000,11),(340,1585443600,12),(340,1603587600,11),(340,1616893200,12),(340,1635642000,11),(340,1648342800,12),(340,1667091600,11),(340,1679792400,12),(340,1698541200,11),(340,1711846800,12),(340,1729990800,11),(340,1743296400,12),(340,1761440400,11),(340,1774746000,12),(340,1792890000,11),(340,1806195600,12),(340,1824944400,11),(340,1837645200,12),(340,1856394000,11),(340,1869094800,12),(340,1887843600,11),(340,1901149200,12),(340,1919293200,11),(340,1932598800,12),(340,1950742800,11),(340,1964048400,12),(340,1982797200,11),(340,1995498000,12),(340,2014246800,11),(340,2026947600,12),(340,2045696400,11),(340,2058397200,12),(340,2077146000,11),(340,2090451600,12),(340,2108595600,11),(340,2121901200,12),(340,2140045200,11),(341,-2147483648,0),(341,-1956609120,2),(341,-1668211200,1),(341,-1647212400,2),(341,-1636675200,1),(341,-1613430000,2),(341,-1605139200,1),(341,-1581894000,2),(341,-1539561600,1),(341,-1531350000,2),(341,-968025600,1),(341,-952293600,2),(341,-942008400,1),(341,-920239200,3),(341,-909957600,4),(341,-888789600,3),(341,-877903200,4),(341,-857944800,3),(341,-846453600,4),(341,-826495200,3),(341,-815004000,4),(341,-795045600,3),(341,-783554400,4),(341,-762991200,3),(341,-752104800,4),(341,-731541600,3),(341,-717631200,4),(341,-700092000,3),(341,-686181600,4),(341,-668642400,3),(341,-654732000,4),(341,-636588000,3),(341,-623282400,4),(341,-605743200,3),(341,-591832800,4),(341,-573688800,3),(341,-559778400,4),(341,-542239200,3),(341,-528328800,4),(341,-510789600,3),(341,-496879200,4),(341,-479340000,3),(341,-465429600,4),(341,-447890400,3),(341,-433980000,4),(341,-415836000,3),(341,-401925600,4),(341,-384386400,3),(341,-370476000,4),(341,-352936800,3),(341,-339026400,4),(341,-321487200,3),(341,-307576800,4),(341,-290037600,3),(341,-276127200,4),(341,-258588000,3),(341,-244677600,4),(341,-226533600,3),(341,-212623200,4),(341,-195084000,3),(341,-181173600,4),(341,-163634400,3),(341,-149724000,4),(341,-132184800,3),(341,-118274400,4),(341,-100735200,3),(341,-86824800,4),(341,-68680800,3),(341,-54770400,5),(343,-2147483648,0),(343,-1830383032,1),(344,-2147483648,1),(344,-1824235716,3),(344,-1018209600,2),(344,-1003093200,3),(344,-986760000,2),(344,-971643600,3),(344,-954705600,2),(344,-939589200,3),(344,-923256000,2),(344,-908139600,3),(344,-891806400,2),(344,-876690000,3),(344,-860356800,2),(344,-852066000,3),(344,420609600,5),(344,433306800,4),(344,452052000,5),(344,464151600,4),(344,483501600,5),(344,495601200,2),(344,514350000,3),(344,527054400,2),(344,545799600,3),(344,558504000,2),(344,577249200,3),(344,589953600,2),(344,608698800,3),(344,621403200,2),(344,640753200,3),(344,652852800,2),(344,672202800,3),(344,684907200,2),(344,703652400,3),(344,716356800,2),(344,735102000,3),(344,747806400,2),(344,766551600,3),(344,779256000,2),(344,798001200,3),(344,810705600,2),(344,830055600,3),(344,842760000,2),(344,861505200,3),(344,874209600,2),(344,892954800,3),(344,905659200,2),(344,924404400,3),(344,937108800,2),(344,955854000,3),(344,968558400,2),(344,987310800,3),(344,999410400,2),(344,1019365200,3),(344,1030860000,2),(344,1050814800,3),(344,1062914400,2),(344,1082264400,3),(344,1094364000,2),(344,1113714000,3),(344,1125813600,2),(344,1145163600,3),(344,1157263200,2),(344,1176613200,3),(344,1188712800,2),(344,1208667600,3),(344,1220767200,2),(344,1240117200,3),(344,1252216800,2),(344,1271566800,3),(344,1283666400,5),(345,-2147483648,2),(345,-1672567140,1),(345,-1665392400,2),(345,-883641600,1),(345,-876128400,2),(345,-860400000,1),(345,-844678800,2),(345,-828345600,1),(345,-813229200,2),(345,57686400,3),(345,67968000,4),(345,89136000,3),(345,100022400,4),(345,120585600,3),(345,131472000,4),(345,152035200,3),(345,162921600,4),(345,183484800,3),(345,194976000,4),(345,215539200,3),(345,226425600,4),(345,246988800,3),(345,257875200,4),(345,278438400,3),(345,289324800,4),(345,309888000,3),(345,320774400,4),(345,341337600,3),(345,352224000,4),(345,372787200,3),(345,386697600,4),(345,404841600,3),(345,415728000,4),(345,436291200,3),(345,447177600,4),(345,467740800,3),(345,478627200,4),(345,499190400,3),(345,511286400,4),(345,530035200,3),(345,542736000,4),(345,562089600,3),(345,574790400,4),(345,594144000,3),(345,606240000,4),(345,625593600,3),(345,636480000,4),(345,657043200,3),(345,667929600,4),(345,688492800,3),(345,699379200,4),(345,719942400,3),(345,731433600,4),(345,751996800,3),(345,762883200,4),(345,783446400,3),(345,794332800,4),(345,814896000,3),(345,828201600,4),(345,846345600,3),(345,859651200,4),(345,877795200,3),(345,891100800,4),(345,909244800,3),(345,922550400,4),(345,941299200,3),(345,954000000,4),(345,967305600,3),(345,985449600,4),(345,1004198400,3),(345,1017504000,4),(345,1035648000,3),(345,1048953600,4),(345,1067097600,3),(345,1080403200,4),(345,1099152000,3),(345,1111852800,4),(345,1130601600,3),(345,1143907200,4),(345,1162051200,3),(345,1174752000,4),(345,1193500800,3),(345,1207411200,4),(345,1223136000,3),(345,1238860800,4),(345,1254585600,3),(345,1270310400,4),(345,1286035200,3),(345,1301760000,4),(345,1317484800,3),(345,1333209600,4),(345,1349539200,3),(345,1365264000,4),(345,1380988800,3),(345,1396713600,4),(345,1412438400,3),(345,1428163200,4),(345,1443888000,3),(345,1459612800,4),(345,1475337600,3),(345,1491062400,4),(345,1506787200,3),(345,1522512000,4),(345,1538841600,3),(345,1554566400,4),(345,1570291200,3),(345,1586016000,4),(345,1601740800,3),(345,1617465600,4),(345,1633190400,3),(345,1648915200,4),(345,1664640000,3),(345,1680364800,4),(345,1696089600,3),(345,1712419200,4),(345,1728144000,3),(345,1743868800,4),(345,1759593600,3),(345,1775318400,4),(345,1791043200,3),(345,1806768000,4),(345,1822492800,3),(345,1838217600,4),(345,1853942400,3),(345,1869667200,4),(345,1885996800,3),(345,1901721600,4),(345,1917446400,3),(345,1933171200,4),(345,1948896000,3),(345,1964620800,4),(345,1980345600,3),(345,1996070400,4),(345,2011795200,3),(345,2027520000,4),(345,2043244800,3),(345,2058969600,4),(345,2075299200,3),(345,2091024000,4),(345,2106748800,3),(345,2122473600,4),(345,2138198400,3),(346,-2147483648,2),(346,-1672565340,1),(346,-1665390600,2),(346,-883639800,1),(346,-876126600,2),(346,-860398200,1),(346,-844677000,2),(346,-828343800,1),(346,-813227400,2),(346,57688200,3),(346,67969800,4),(346,89137800,3),(346,100024200,4),(346,120587400,3),(346,131473800,4),(346,152037000,3),(346,162923400,4),(346,183486600,3),(346,194977800,4),(346,215541000,3),(346,226427400,4),(346,246990600,3),(346,257877000,4),(346,278440200,3),(346,289326600,4),(346,309889800,3),(346,320776200,4),(346,341339400,3),(346,352225800,4),(346,372789000,3),(346,384280200,4),(346,404843400,3),(346,415729800,4),(346,436293000,3),(346,447179400,4),(346,467742600,3),(346,478629000,4),(346,499192200,3),(346,511288200,4),(346,530037000,3),(346,542737800,4),(346,562091400,3),(346,574792200,4),(346,594145800,3),(346,606241800,4),(346,625595400,3),(346,637691400,4),(346,657045000,3),(346,667931400,4),(346,688494600,3),(346,701195400,4),(346,719944200,3),(346,731435400,4),(346,751998600,3),(346,764094600,4),(346,783448200,3),(346,796149000,4),(346,814897800,3),(346,828203400,4),(346,846347400,3),(346,859653000,4),(346,877797000,3),(346,891102600,4),(346,909246600,3),(346,922552200,4),(346,941301000,3),(346,954001800,4),(346,972750600,3),(346,985451400,4),(346,1004200200,3),(346,1017505800,4),(346,1035649800,3),(346,1048955400,4),(346,1067099400,3),(346,1080405000,4),(346,1099153800,3),(346,1111854600,4),(346,1130603400,3),(346,1143909000,4),(346,1162053000,3),(346,1174753800,4),(346,1193502600,3),(346,1207413000,4),(346,1223137800,3),(346,1238862600,4),(346,1254587400,3),(346,1270312200,4),(346,1286037000,3),(346,1301761800,4),(346,1317486600,3),(346,1333211400,4),(346,1349541000,3),(346,1365265800,4),(346,1380990600,3),(346,1396715400,4),(346,1412440200,3),(346,1428165000,4),(346,1443889800,3),(346,1459614600,4),(346,1475339400,3),(346,1491064200,4),(346,1506789000,3),(346,1522513800,4),(346,1538843400,3),(346,1554568200,4),(346,1570293000,3),(346,1586017800,4),(346,1601742600,3),(346,1617467400,4),(346,1633192200,3),(346,1648917000,4),(346,1664641800,3),(346,1680366600,4),(346,1696091400,3),(346,1712421000,4),(346,1728145800,3),(346,1743870600,4),(346,1759595400,3),(346,1775320200,4),(346,1791045000,3),(346,1806769800,4),(346,1822494600,3),(346,1838219400,4),(346,1853944200,3),(346,1869669000,4),(346,1885998600,3),(346,1901723400,4),(346,1917448200,3),(346,1933173000,4),(346,1948897800,3),(346,1964622600,4),(346,1980347400,3),(346,1996072200,4),(346,2011797000,3),(346,2027521800,4),(346,2043246600,3),(346,2058971400,4),(346,2075301000,3),(346,2091025800,4),(346,2106750600,3),(346,2122475400,4),(346,2138200200,3),(347,-2147483648,2),(347,-1672567140,1),(347,-1665392400,2),(347,-883641600,1),(347,-876128400,2),(347,-860400000,1),(347,-844678800,2),(347,-828345600,1),(347,-813229200,2),(347,57686400,3),(347,67968000,4),(347,625593600,3),(347,636480000,4),(347,657043200,3),(347,667929600,4),(347,688492800,3),(347,699379200,4),(348,-2147483648,2),(348,-1672565340,1),(348,-1665390600,2),(348,-883639800,1),(348,-876126600,2),(348,-860398200,1),(348,-844677000,2),(348,-828343800,1),(348,-813227400,2),(348,57688200,3),(348,67969800,4),(348,89137800,3),(348,100024200,4),(348,120587400,3),(348,131473800,4),(348,152037000,3),(348,162923400,4),(348,183486600,3),(348,194977800,4),(348,215541000,3),(348,226427400,4),(348,246990600,3),(348,257877000,4),(348,278440200,3),(348,289326600,4),(348,309889800,3),(348,320776200,4),(348,341339400,3),(348,352225800,4),(348,372789000,3),(348,386699400,4),(348,404843400,3),(348,415729800,4),(348,436293000,3),(348,447179400,4),(348,467742600,3),(348,478629000,4),(348,499192200,3),(348,511288200,4),(348,530037000,3),(348,542737800,4),(348,562091400,3),(348,574792200,4),(348,594145800,3),(348,606241800,4),(348,625595400,3),(348,636481800,4),(348,657045000,3),(348,667931400,4),(348,688494600,3),(348,699381000,4),(348,719944200,3),(348,731435400,4),(348,751998600,3),(348,762885000,4),(348,783448200,3),(348,794334600,4),(348,814897800,3),(348,828203400,4),(348,846347400,3),(348,859653000,4),(348,877797000,3),(348,891102600,4),(348,909246600,3),(348,922552200,4),(348,941301000,3),(348,946647000,1),(348,954001800,4),(348,972750600,3),(348,985451400,4),(348,1004200200,3),(348,1017505800,4),(348,1035649800,3),(348,1048955400,4),(348,1067099400,3),(348,1080405000,4),(348,1099153800,3),(348,1111854600,4),(348,1130603400,3),(348,1143909000,4),(348,1162053000,3),(348,1174753800,4),(348,1193502600,3),(348,1207413000,4),(348,1223137800,3),(348,1238862600,4),(348,1254587400,3),(348,1270312200,4),(348,1286037000,3),(348,1301761800,4),(348,1317486600,3),(348,1333211400,4),(348,1349541000,3),(348,1365265800,4),(348,1380990600,3),(348,1396715400,4),(348,1412440200,3),(348,1428165000,4),(348,1443889800,3),(348,1459614600,4),(348,1475339400,3),(348,1491064200,4),(348,1506789000,3),(348,1522513800,4),(348,1538843400,3),(348,1554568200,4),(348,1570293000,3),(348,1586017800,4),(348,1601742600,3),(348,1617467400,4),(348,1633192200,3),(348,1648917000,4),(348,1664641800,3),(348,1680366600,4),(348,1696091400,3),(348,1712421000,4),(348,1728145800,3),(348,1743870600,4),(348,1759595400,3),(348,1775320200,4),(348,1791045000,3),(348,1806769800,4),(348,1822494600,3),(348,1838219400,4),(348,1853944200,3),(348,1869669000,4),(348,1885998600,3),(348,1901723400,4),(348,1917448200,3),(348,1933173000,4),(348,1948897800,3),(348,1964622600,4),(348,1980347400,3),(348,1996072200,4),(348,2011797000,3),(348,2027521800,4),(348,2043246600,3),(348,2058971400,4),(348,2075301000,3),(348,2091025800,4),(348,2106750600,3),(348,2122475400,4),(348,2138200200,3),(349,-2147483648,2),(349,-1672567140,1),(349,-1665392400,2),(349,-883641600,1),(349,-876128400,2),(349,-860400000,1),(349,-844678800,2),(349,-828345600,1),(349,-813229200,2),(349,57686400,3),(349,67968000,4),(349,89136000,3),(349,100022400,4),(349,120585600,3),(349,131472000,4),(349,152035200,3),(349,162921600,4),(349,183484800,3),(349,194976000,4),(349,215539200,3),(349,226425600,4),(349,246988800,3),(349,257875200,4),(349,278438400,3),(349,289324800,4),(349,309888000,3),(349,320774400,4),(349,341337600,3),(349,352224000,4),(349,372787200,3),(349,386697600,4),(349,404841600,3),(349,415728000,4),(349,436291200,3),(349,447177600,4),(349,467740800,3),(349,478627200,4),(349,499190400,3),(349,511286400,4),(349,530035200,3),(349,542736000,4),(349,562089600,3),(349,574790400,4),(349,594144000,3),(349,606240000,4),(349,625593600,3),(349,636480000,4),(349,657043200,3),(349,667929600,4),(349,688492800,3),(349,699379200,4),(349,719942400,3),(349,731433600,4),(349,751996800,3),(349,762883200,4),(349,783446400,3),(349,794332800,4),(349,814896000,3),(349,828201600,4),(349,846345600,3),(349,859651200,4),(349,877795200,3),(349,891100800,4),(349,909244800,3),(349,922550400,4),(349,941299200,3),(349,954000000,4),(349,967305600,3),(349,985449600,4),(349,1004198400,3),(349,1017504000,4),(349,1035648000,3),(349,1048953600,4),(349,1067097600,3),(349,1080403200,4),(349,1099152000,3),(349,1111852800,4),(349,1130601600,3),(349,1143907200,4),(349,1162051200,3),(349,1174752000,4),(349,1193500800,3),(349,1207411200,4),(349,1223136000,3),(349,1238860800,4),(349,1254585600,3),(349,1270310400,4),(349,1286035200,3),(349,1301760000,4),(349,1317484800,3),(349,1333209600,4),(349,1349539200,3),(349,1365264000,4),(349,1380988800,3),(349,1396713600,4),(349,1412438400,3),(349,1428163200,4),(349,1443888000,3),(349,1459612800,4),(349,1475337600,3),(349,1491062400,4),(349,1506787200,3),(349,1522512000,4),(349,1538841600,3),(349,1554566400,4),(349,1570291200,3),(349,1586016000,4),(349,1601740800,3),(349,1617465600,4),(349,1633190400,3),(349,1648915200,4),(349,1664640000,3),(349,1680364800,4),(349,1696089600,3),(349,1712419200,4),(349,1728144000,3),(349,1743868800,4),(349,1759593600,3),(349,1775318400,4),(349,1791043200,3),(349,1806768000,4),(349,1822492800,3),(349,1838217600,4),(349,1853942400,3),(349,1869667200,4),(349,1885996800,3),(349,1901721600,4),(349,1917446400,3),(349,1933171200,4),(349,1948896000,3),(349,1964620800,4),(349,1980345600,3),(349,1996070400,4),(349,2011795200,3),(349,2027520000,4),(349,2043244800,3),(349,2058969600,4),(349,2075299200,3),(349,2091024000,4),(349,2106748800,3),(349,2122473600,4),(349,2138198400,3),(350,-2147483648,1),(350,-1680508800,2),(350,-1665392400,1),(350,-883641600,2),(350,-876128400,1),(350,-860400000,2),(350,-844678800,1),(350,-828345600,2),(350,-813229200,1),(350,57686400,3),(350,67968000,4),(350,89136000,3),(350,100022400,4),(350,120585600,3),(350,131472000,4),(350,152035200,3),(350,162921600,4),(350,183484800,3),(350,194976000,4),(350,215539200,3),(350,226425600,4),(350,246988800,3),(350,257875200,4),(350,278438400,3),(350,289324800,4),(350,309888000,3),(350,320774400,4),(350,341337600,3),(350,352224000,4),(350,372787200,3),(350,386092800,4),(350,404841600,3),(350,417542400,4),(350,436291200,3),(350,447177600,4),(350,467740800,3),(350,478627200,4),(350,499190400,3),(350,510076800,4),(350,530035200,3),(350,542736000,4),(350,562089600,3),(350,574790400,4),(350,594144000,3),(350,606240000,4),(350,625593600,3),(350,637689600,4),(350,657043200,3),(350,670348800,4),(350,686678400,3),(350,701798400,4),(350,718128000,3),(350,733248000,4),(350,749577600,3),(350,764697600,4),(350,781027200,3),(350,796147200,4),(350,812476800,3),(350,828201600,4),(350,844531200,3),(350,859651200,4),(350,875980800,3),(350,891100800,4),(350,907430400,3),(350,922550400,4),(350,938880000,3),(350,954000000,4),(350,967305600,3),(350,985449600,4),(350,1002384000,3),(350,1017504000,4),(350,1033833600,3),(350,1048953600,4),(350,1065283200,3),(350,1080403200,4),(350,1096732800,3),(350,1111852800,4),(350,1128182400,3),(350,1143907200,4),(350,1159632000,3),(350,1174752000,4),(350,1191686400,3),(350,1207411200,4),(350,1223136000,3),(350,1238860800,4),(350,1254585600,3),(350,1270310400,4),(350,1286035200,3),(350,1301760000,4),(350,1317484800,3),(350,1333209600,4),(350,1349539200,3),(350,1365264000,4),(350,1380988800,3),(350,1396713600,4),(350,1412438400,3),(350,1428163200,4),(350,1443888000,3),(350,1459612800,4),(350,1475337600,3),(350,1491062400,4),(350,1506787200,3),(350,1522512000,4),(350,1538841600,3),(350,1554566400,4),(350,1570291200,3),(350,1586016000,4),(350,1601740800,3),(350,1617465600,4),(350,1633190400,3),(350,1648915200,4),(350,1664640000,3),(350,1680364800,4),(350,1696089600,3),(350,1712419200,4),(350,1728144000,3),(350,1743868800,4),(350,1759593600,3),(350,1775318400,4),(350,1791043200,3),(350,1806768000,4),(350,1822492800,3),(350,1838217600,4),(350,1853942400,3),(350,1869667200,4),(350,1885996800,3),(350,1901721600,4),(350,1917446400,3),(350,1933171200,4),(350,1948896000,3),(350,1964620800,4),(350,1980345600,3),(350,1996070400,4),(350,2011795200,3),(350,2027520000,4),(350,2043244800,3),(350,2058969600,4),(350,2075299200,3),(350,2091024000,4),(350,2106748800,3),(350,2122473600,4),(350,2138198400,3),(351,-2147483648,2),(351,-1672565340,1),(351,-1665390600,2),(351,-883639800,1),(351,-876126600,2),(351,-860398200,1),(351,-844677000,2),(351,-828343800,1),(351,-813227400,2),(352,-2147483648,2),(352,-1672562640,1),(352,-1665387900,2),(352,-883637100,1),(352,-876123900,2),(352,-860395500,1),(352,-844674300,2),(352,152039700,3),(352,162926100,4),(352,436295700,3),(352,447182100,4),(352,690311700,3),(352,699383700,4),(352,1165079700,3),(352,1174756500,4),(352,1193505300,3),(352,1206810900,4),(352,1224954900,3),(352,1238260500,4),(353,-2147483648,1),(353,-1680508800,2),(353,-1665392400,1),(353,-883641600,2),(353,-876128400,1),(353,-860400000,2),(353,-844678800,1),(353,-828345600,2),(353,-813229200,1),(353,-71136000,3),(353,-55411200,4),(353,-37267200,3),(353,-25776000,4),(353,-5817600,3),(353,5673600,4),(353,25632000,3),(353,37728000,4),(353,57686400,3),(353,67968000,4),(353,89136000,3),(353,100022400,4),(353,120585600,3),(353,131472000,4),(353,152035200,3),(353,162921600,4),(353,183484800,3),(353,194976000,4),(353,215539200,3),(353,226425600,4),(353,246988800,3),(353,257875200,4),(353,278438400,3),(353,289324800,4),(353,309888000,3),(353,320774400,4),(353,341337600,3),(353,352224000,4),(353,372787200,3),(353,386092800,4),(353,404841600,3),(353,417542400,4),(353,436291200,3),(353,447177600,4),(353,467740800,3),(353,478627200,4),(353,499190400,3),(353,510076800,4),(353,530035200,3),(353,542736000,4),(353,562089600,3),(353,574790400,4),(353,594144000,3),(353,606240000,4),(353,625593600,3),(353,637689600,4),(353,657043200,3),(353,670348800,4),(353,686678400,3),(353,701798400,4),(353,718128000,3),(353,733248000,4),(353,749577600,3),(353,764697600,4),(353,781027200,3),(353,796147200,4),(353,812476800,3),(353,828201600,4),(353,844531200,3),(353,859651200,4),(353,875980800,3),(353,891100800,4),(353,907430400,3),(353,922550400,4),(353,938880000,3),(353,954000000,4),(353,967305600,3),(353,985449600,4),(353,1002384000,3),(353,1017504000,4),(353,1033833600,3),(353,1048953600,4),(353,1065283200,3),(353,1080403200,4),(353,1096732800,3),(353,1111852800,4),(353,1128182400,3),(353,1143907200,4),(353,1159632000,3),(353,1174752000,4),(353,1191686400,3),(353,1207411200,4),(353,1223136000,3),(353,1238860800,4),(353,1254585600,3),(353,1270310400,4),(353,1286035200,3),(353,1301760000,4),(353,1317484800,3),(353,1333209600,4),(353,1349539200,3),(353,1365264000,4),(353,1380988800,3),(353,1396713600,4),(353,1412438400,3),(353,1428163200,4),(353,1443888000,3),(353,1459612800,4),(353,1475337600,3),(353,1491062400,4),(353,1506787200,3),(353,1522512000,4),(353,1538841600,3),(353,1554566400,4),(353,1570291200,3),(353,1586016000,4),(353,1601740800,3),(353,1617465600,4),(353,1633190400,3),(353,1648915200,4),(353,1664640000,3),(353,1680364800,4),(353,1696089600,3),(353,1712419200,4),(353,1728144000,3),(353,1743868800,4),(353,1759593600,3),(353,1775318400,4),(353,1791043200,3),(353,1806768000,4),(353,1822492800,3),(353,1838217600,4),(353,1853942400,3),(353,1869667200,4),(353,1885996800,3),(353,1901721600,4),(353,1917446400,3),(353,1933171200,4),(353,1948896000,3),(353,1964620800,4),(353,1980345600,3),(353,1996070400,4),(353,2011795200,3),(353,2027520000,4),(353,2043244800,3),(353,2058969600,4),(353,2075299200,3),(353,2091024000,4),(353,2106748800,3),(353,2122473600,4),(353,2138198400,3),(354,-2147483648,1),(354,352216800,3),(354,372785400,2),(354,384273000,3),(354,404839800,2),(354,415722600,3),(354,436289400,2),(354,447172200,3),(354,467739000,2),(354,478621800,3),(354,499188600,4),(354,511282800,3),(354,530033400,4),(354,542732400,3),(354,562087800,4),(354,574786800,3),(354,594142200,4),(354,606236400,3),(354,625591800,4),(354,636476400,3),(354,657041400,4),(354,667926000,3),(354,688491000,4),(354,699375600,3),(354,719940600,4),(354,731430000,3),(354,751995000,4),(354,762879600,3),(354,783444600,4),(354,794329200,3),(354,814894200,4),(354,828198000,3),(354,846343800,4),(354,859647600,3),(354,877793400,4),(354,891097200,3),(354,909243000,4),(354,922546800,3),(354,941297400,4),(354,953996400,3),(354,967303800,4),(354,985446000,3),(354,1004196600,4),(354,1017500400,3),(354,1035646200,4),(354,1048950000,3),(354,1067095800,4),(354,1080399600,3),(354,1099150200,4),(354,1111849200,3),(354,1130599800,4),(354,1143903600,3),(354,1162049400,4),(354,1174748400,3),(354,1193499000,4),(354,1207407600,3),(354,1223134200,4),(354,1238857200,3),(354,1254583800,4),(354,1270306800,3),(354,1286033400,4),(354,1301756400,3),(354,1317483000,4),(354,1333206000,3),(354,1349537400,4),(354,1365260400,3),(354,1380987000,4),(354,1396710000,3),(354,1412436600,4),(354,1428159600,3),(354,1443886200,4),(354,1459609200,3),(354,1475335800,4),(354,1491058800,3),(354,1506785400,4),(354,1522508400,3),(354,1538839800,4),(354,1554562800,3),(354,1570289400,4),(354,1586012400,3),(354,1601739000,4),(354,1617462000,3),(354,1633188600,4),(354,1648911600,3),(354,1664638200,4),(354,1680361200,3),(354,1696087800,4),(354,1712415600,3),(354,1728142200,4),(354,1743865200,3),(354,1759591800,4),(354,1775314800,3),(354,1791041400,4),(354,1806764400,3),(354,1822491000,4),(354,1838214000,3),(354,1853940600,4),(354,1869663600,3),(354,1885995000,4),(354,1901718000,3),(354,1917444600,4),(354,1933167600,3),(354,1948894200,4),(354,1964617200,3),(354,1980343800,4),(354,1996066800,3),(354,2011793400,4),(354,2027516400,3),(354,2043243000,4),(354,2058966000,3),(354,2075297400,4),(354,2091020400,3),(354,2106747000,4),(354,2122470000,3),(354,2138196600,4),(355,-2147483648,2),(355,-1672567140,1),(355,-1665392400,2),(355,-883641600,1),(355,-876128400,2),(355,-860400000,1),(355,-844678800,2),(355,-828345600,1),(355,-813229200,2),(355,57686400,3),(355,67968000,4),(355,625593600,3),(355,636480000,4),(355,657043200,3),(355,667929600,4),(355,688492800,3),(355,699379200,4),(355,709912800,2),(355,719942400,3),(355,731433600,4),(355,751996800,3),(355,762883200,4),(356,-2147483648,1),(356,352216800,3),(356,372785400,2),(356,384273000,3),(356,404839800,2),(356,415722600,3),(356,436289400,2),(356,447172200,3),(356,467739000,2),(356,478621800,3),(356,499188600,4),(356,511282800,3),(356,530033400,4),(356,542732400,3),(356,562087800,4),(356,574786800,3),(356,594142200,4),(356,606236400,3),(356,625591800,4),(356,636476400,3),(356,657041400,4),(356,667926000,3),(356,688491000,4),(356,699375600,3),(356,719940600,4),(356,731430000,3),(356,751995000,4),(356,762879600,3),(356,783444600,4),(356,794329200,3),(356,814894200,4),(356,828198000,3),(356,846343800,4),(356,859647600,3),(356,877793400,4),(356,891097200,3),(356,909243000,4),(356,922546800,3),(356,941297400,4),(356,953996400,3),(356,967303800,4),(356,985446000,3),(356,1004196600,4),(356,1017500400,3),(356,1035646200,4),(356,1048950000,3),(356,1067095800,4),(356,1080399600,3),(356,1099150200,4),(356,1111849200,3),(356,1130599800,4),(356,1143903600,3),(356,1162049400,4),(356,1174748400,3),(356,1193499000,4),(356,1207407600,3),(356,1223134200,4),(356,1238857200,3),(356,1254583800,4),(356,1270306800,3),(356,1286033400,4),(356,1301756400,3),(356,1317483000,4),(356,1333206000,3),(356,1349537400,4),(356,1365260400,3),(356,1380987000,4),(356,1396710000,3),(356,1412436600,4),(356,1428159600,3),(356,1443886200,4),(356,1459609200,3),(356,1475335800,4),(356,1491058800,3),(356,1506785400,4),(356,1522508400,3),(356,1538839800,4),(356,1554562800,3),(356,1570289400,4),(356,1586012400,3),(356,1601739000,4),(356,1617462000,3),(356,1633188600,4),(356,1648911600,3),(356,1664638200,4),(356,1680361200,3),(356,1696087800,4),(356,1712415600,3),(356,1728142200,4),(356,1743865200,3),(356,1759591800,4),(356,1775314800,3),(356,1791041400,4),(356,1806764400,3),(356,1822491000,4),(356,1838214000,3),(356,1853940600,4),(356,1869663600,3),(356,1885995000,4),(356,1901718000,3),(356,1917444600,4),(356,1933167600,3),(356,1948894200,4),(356,1964617200,3),(356,1980343800,4),(356,1996066800,3),(356,2011793400,4),(356,2027516400,3),(356,2043243000,4),(356,2058966000,3),(356,2075297400,4),(356,2091020400,3),(356,2106747000,4),(356,2122470000,3),(356,2138196600,4),(357,-2147483648,2),(357,-1672567140,1),(357,-1665392400,2),(357,-883641600,1),(357,-876128400,2),(357,-860400000,1),(357,-844678800,2),(357,-828345600,1),(357,-813229200,2),(357,57686400,3),(357,67968000,4),(357,89136000,3),(357,100022400,4),(357,120585600,3),(357,131472000,4),(357,152035200,3),(357,162921600,4),(357,183484800,3),(357,194976000,4),(357,215539200,3),(357,226425600,4),(357,246988800,3),(357,257875200,4),(357,278438400,3),(357,289324800,4),(357,309888000,3),(357,320774400,4),(357,341337600,3),(357,352224000,4),(357,372787200,3),(357,384278400,4),(357,404841600,3),(357,415728000,4),(357,436291200,3),(357,447177600,4),(357,467740800,3),(357,478627200,4),(357,499190400,3),(357,511286400,4),(357,530035200,3),(357,542736000,4),(357,561484800,3),(357,574790400,4),(357,594144000,3),(357,606240000,4),(357,625593600,3),(357,637689600,4),(357,657043200,3),(357,667929600,4),(357,688492800,3),(357,699379200,4),(357,719942400,3),(357,731433600,4),(357,751996800,3),(357,762883200,4),(357,783446400,3),(357,796147200,4),(357,814896000,3),(357,828201600,4),(357,846345600,3),(357,859651200,4),(357,877795200,3),(357,891100800,4),(357,909244800,3),(357,922550400,4),(357,941299200,3),(357,954000000,4),(357,967305600,3),(357,985449600,4),(357,1004198400,3),(357,1017504000,4),(357,1035648000,3),(357,1048953600,4),(357,1067097600,3),(357,1080403200,4),(357,1099152000,3),(357,1111852800,4),(357,1130601600,3),(357,1143907200,4),(357,1162051200,3),(357,1174752000,4),(357,1193500800,3),(357,1207411200,4),(357,1223136000,3),(357,1238860800,4),(357,1254585600,3),(357,1270310400,4),(357,1286035200,3),(357,1301760000,4),(357,1317484800,3),(357,1333209600,4),(357,1349539200,3),(357,1365264000,4),(357,1380988800,3),(357,1396713600,4),(357,1412438400,3),(357,1428163200,4),(357,1443888000,3),(357,1459612800,4),(357,1475337600,3),(357,1491062400,4),(357,1506787200,3),(357,1522512000,4),(357,1538841600,3),(357,1554566400,4),(357,1570291200,3),(357,1586016000,4),(357,1601740800,3),(357,1617465600,4),(357,1633190400,3),(357,1648915200,4),(357,1664640000,3),(357,1680364800,4),(357,1696089600,3),(357,1712419200,4),(357,1728144000,3),(357,1743868800,4),(357,1759593600,3),(357,1775318400,4),(357,1791043200,3),(357,1806768000,4),(357,1822492800,3),(357,1838217600,4),(357,1853942400,3),(357,1869667200,4),(357,1885996800,3),(357,1901721600,4),(357,1917446400,3),(357,1933171200,4),(357,1948896000,3),(357,1964620800,4),(357,1980345600,3),(357,1996070400,4),(357,2011795200,3),(357,2027520000,4),(357,2043244800,3),(357,2058969600,4),(357,2075299200,3),(357,2091024000,4),(357,2106748800,3),(357,2122473600,4),(357,2138198400,3),(358,-2147483648,2),(358,-1672567140,1),(358,-1665392400,2),(358,-883641600,1),(358,-876128400,2),(358,-860400000,1),(358,-844678800,2),(358,-828345600,1),(358,-813229200,2),(358,57686400,3),(358,67968000,4),(358,89136000,3),(358,100022400,4),(358,120585600,3),(358,131472000,4),(358,152035200,3),(358,162921600,4),(358,183484800,3),(358,194976000,4),(358,215539200,3),(358,226425600,4),(358,246988800,3),(358,257875200,4),(358,278438400,3),(358,289324800,4),(358,309888000,3),(358,320774400,4),(358,341337600,3),(358,352224000,4),(358,372787200,3),(358,386697600,4),(358,404841600,3),(358,415728000,4),(358,436291200,3),(358,447177600,4),(358,467740800,3),(358,478627200,4),(358,499190400,3),(358,511286400,4),(358,530035200,3),(358,542736000,4),(358,562089600,3),(358,574790400,4),(358,594144000,3),(358,606240000,4),(358,625593600,3),(358,636480000,4),(358,657043200,3),(358,667929600,4),(358,688492800,3),(358,699379200,4),(358,719942400,3),(358,731433600,4),(358,751996800,3),(358,762883200,4),(358,783446400,3),(358,794332800,4),(358,814896000,3),(358,828201600,4),(358,846345600,3),(358,859651200,4),(358,877795200,3),(358,891100800,4),(358,909244800,3),(358,922550400,4),(358,941299200,3),(358,954000000,4),(358,967305600,3),(358,985449600,4),(358,1004198400,3),(358,1017504000,4),(358,1035648000,3),(358,1048953600,4),(358,1067097600,3),(358,1080403200,4),(358,1099152000,3),(358,1111852800,4),(358,1130601600,3),(358,1143907200,4),(358,1162051200,3),(358,1174752000,4),(358,1193500800,3),(358,1207411200,4),(358,1223136000,3),(358,1238860800,4),(358,1254585600,3),(358,1270310400,4),(358,1286035200,3),(358,1301760000,4),(358,1317484800,3),(358,1333209600,4),(358,1349539200,3),(358,1365264000,4),(358,1380988800,3),(358,1396713600,4),(358,1412438400,3),(358,1428163200,4),(358,1443888000,3),(358,1459612800,4),(358,1475337600,3),(358,1491062400,4),(358,1506787200,3),(358,1522512000,4),(358,1538841600,3),(358,1554566400,4),(358,1570291200,3),(358,1586016000,4),(358,1601740800,3),(358,1617465600,4),(358,1633190400,3),(358,1648915200,4),(358,1664640000,3),(358,1680364800,4),(358,1696089600,3),(358,1712419200,4),(358,1728144000,3),(358,1743868800,4),(358,1759593600,3),(358,1775318400,4),(358,1791043200,3),(358,1806768000,4),(358,1822492800,3),(358,1838217600,4),(358,1853942400,3),(358,1869667200,4),(358,1885996800,3),(358,1901721600,4),(358,1917446400,3),(358,1933171200,4),(358,1948896000,3),(358,1964620800,4),(358,1980345600,3),(358,1996070400,4),(358,2011795200,3),(358,2027520000,4),(358,2043244800,3),(358,2058969600,4),(358,2075299200,3),(358,2091024000,4),(358,2106748800,3),(358,2122473600,4),(358,2138198400,3),(359,-2147483648,2),(359,-1672565340,1),(359,-1665390600,2),(359,-883639800,1),(359,-876126600,2),(359,-860398200,1),(359,-844677000,2),(359,-828343800,1),(359,-813227400,2),(360,-2147483648,2),(360,-1672559940,1),(360,-1665385200,2),(360,-883634400,1),(360,-876121200,2),(360,-860392800,1),(360,-844671600,2),(360,152042400,3),(360,162928800,4),(360,436298400,3),(360,447184800,4),(360,690314400,3),(360,699386400,4),(360,1165082400,3),(360,1174759200,4),(360,1193508000,3),(360,1206813600,4),(360,1224957600,3),(360,1238263200,4),(361,-2147483648,2),(361,-1672567140,1),(361,-1665392400,2),(361,-883641600,1),(361,-876128400,2),(361,-860400000,1),(361,-844678800,2),(361,-828345600,1),(361,-813229200,2),(361,57686400,3),(361,67968000,4),(361,625593600,3),(361,636480000,4),(361,657043200,3),(361,667929600,4),(361,688492800,3),(361,699379200,4),(362,-2147483648,2),(362,-1672565340,1),(362,-1665390600,2),(362,-883639800,1),(362,-876126600,2),(362,-860398200,1),(362,-844677000,2),(362,-828343800,1),(362,-813227400,2),(362,57688200,3),(362,67969800,4),(362,89137800,3),(362,100024200,4),(362,120587400,3),(362,131473800,4),(362,152037000,3),(362,162923400,4),(362,183486600,3),(362,194977800,4),(362,215541000,3),(362,226427400,4),(362,246990600,3),(362,257877000,4),(362,278440200,3),(362,289326600,4),(362,309889800,3),(362,320776200,4),(362,341339400,3),(362,352225800,4),(362,372789000,3),(362,384280200,4),(362,404843400,3),(362,415729800,4),(362,436293000,3),(362,447179400,4),(362,467742600,3),(362,478629000,4),(362,499192200,3),(362,511288200,4),(362,530037000,3),(362,542737800,4),(362,562091400,3),(362,574792200,4),(362,594145800,3),(362,606241800,4),(362,625595400,3),(362,637691400,4),(362,657045000,3),(362,667931400,4),(362,688494600,3),(362,701195400,4),(362,719944200,3),(362,731435400,4),(362,751998600,3),(362,764094600,4),(362,783448200,3),(362,796149000,4),(362,814897800,3),(362,828203400,4),(362,846347400,3),(362,859653000,4),(362,877797000,3),(362,891102600,4),(362,909246600,3),(362,922552200,4),(362,941301000,3),(362,954001800,4),(362,972750600,3),(362,985451400,4),(362,1004200200,3),(362,1017505800,4),(362,1035649800,3),(362,1048955400,4),(362,1067099400,3),(362,1080405000,4),(362,1099153800,3),(362,1111854600,4),(362,1130603400,3),(362,1143909000,4),(362,1162053000,3),(362,1174753800,4),(362,1193502600,3),(362,1207413000,4),(362,1223137800,3),(362,1238862600,4),(362,1254587400,3),(362,1270312200,4),(362,1286037000,3),(362,1301761800,4),(362,1317486600,3),(362,1333211400,4),(362,1349541000,3),(362,1365265800,4),(362,1380990600,3),(362,1396715400,4),(362,1412440200,3),(362,1428165000,4),(362,1443889800,3),(362,1459614600,4),(362,1475339400,3),(362,1491064200,4),(362,1506789000,3),(362,1522513800,4),(362,1538843400,3),(362,1554568200,4),(362,1570293000,3),(362,1586017800,4),(362,1601742600,3),(362,1617467400,4),(362,1633192200,3),(362,1648917000,4),(362,1664641800,3),(362,1680366600,4),(362,1696091400,3),(362,1712421000,4),(362,1728145800,3),(362,1743870600,4),(362,1759595400,3),(362,1775320200,4),(362,1791045000,3),(362,1806769800,4),(362,1822494600,3),(362,1838219400,4),(362,1853944200,3),(362,1869669000,4),(362,1885998600,3),(362,1901723400,4),(362,1917448200,3),(362,1933173000,4),(362,1948897800,3),(362,1964622600,4),(362,1980347400,3),(362,1996072200,4),(362,2011797000,3),(362,2027521800,4),(362,2043246600,3),(362,2058971400,4),(362,2075301000,3),(362,2091025800,4),(362,2106750600,3),(362,2122475400,4),(362,2138200200,3),(363,-2147483648,2),(363,-1672567140,1),(363,-1665392400,2),(363,-883641600,1),(363,-876128400,2),(363,-860400000,1),(363,-844678800,2),(363,-828345600,1),(363,-813229200,2),(363,57686400,3),(363,67968000,4),(363,89136000,3),(363,100022400,4),(363,120585600,3),(363,131472000,4),(363,152035200,3),(363,162921600,4),(363,183484800,3),(363,194976000,4),(363,215539200,3),(363,226425600,4),(363,246988800,3),(363,257875200,4),(363,278438400,3),(363,289324800,4),(363,309888000,3),(363,320774400,4),(363,341337600,3),(363,352224000,4),(363,372787200,3),(363,386697600,4),(363,404841600,3),(363,415728000,4),(363,436291200,3),(363,447177600,4),(363,467740800,3),(363,478627200,4),(363,499190400,3),(363,511286400,4),(363,530035200,3),(363,542736000,4),(363,562089600,3),(363,574790400,4),(363,594144000,3),(363,606240000,4),(363,625593600,3),(363,636480000,4),(363,657043200,3),(363,667929600,4),(363,688492800,3),(363,699379200,4),(363,719942400,3),(363,731433600,4),(363,751996800,3),(363,762883200,4),(363,783446400,3),(363,794332800,4),(363,814896000,3),(363,828201600,4),(363,846345600,3),(363,859651200,4),(363,877795200,3),(363,891100800,4),(363,909244800,3),(363,922550400,4),(363,941299200,3),(363,954000000,4),(363,967305600,3),(363,985449600,4),(363,1004198400,3),(363,1017504000,4),(363,1035648000,3),(363,1048953600,4),(363,1067097600,3),(363,1080403200,4),(363,1099152000,3),(363,1111852800,4),(363,1130601600,3),(363,1143907200,4),(363,1162051200,3),(363,1174752000,4),(363,1193500800,3),(363,1207411200,4),(363,1223136000,3),(363,1238860800,4),(363,1254585600,3),(363,1270310400,4),(363,1286035200,3),(363,1301760000,4),(363,1317484800,3),(363,1333209600,4),(363,1349539200,3),(363,1365264000,4),(363,1380988800,3),(363,1396713600,4),(363,1412438400,3),(363,1428163200,4),(363,1443888000,3),(363,1459612800,4),(363,1475337600,3),(363,1491062400,4),(363,1506787200,3),(363,1522512000,4),(363,1538841600,3),(363,1554566400,4),(363,1570291200,3),(363,1586016000,4),(363,1601740800,3),(363,1617465600,4),(363,1633190400,3),(363,1648915200,4),(363,1664640000,3),(363,1680364800,4),(363,1696089600,3),(363,1712419200,4),(363,1728144000,3),(363,1743868800,4),(363,1759593600,3),(363,1775318400,4),(363,1791043200,3),(363,1806768000,4),(363,1822492800,3),(363,1838217600,4),(363,1853942400,3),(363,1869667200,4),(363,1885996800,3),(363,1901721600,4),(363,1917446400,3),(363,1933171200,4),(363,1948896000,3),(363,1964620800,4),(363,1980345600,3),(363,1996070400,4),(363,2011795200,3),(363,2027520000,4),(363,2043244800,3),(363,2058969600,4),(363,2075299200,3),(363,2091024000,4),(363,2106748800,3),(363,2122473600,4),(363,2138198400,3),(364,-2147483648,1),(364,-1680508800,2),(364,-1665392400,1),(364,-883641600,2),(364,-876128400,1),(364,-860400000,2),(364,-844678800,1),(364,-828345600,2),(364,-813229200,1),(364,-71136000,3),(364,-55411200,4),(364,-37267200,3),(364,-25776000,4),(364,-5817600,3),(364,5673600,4),(364,25632000,3),(364,37728000,4),(364,57686400,3),(364,67968000,4),(364,89136000,3),(364,100022400,4),(364,120585600,3),(364,131472000,4),(364,152035200,3),(364,162921600,4),(364,183484800,3),(364,194976000,4),(364,215539200,3),(364,226425600,4),(364,246988800,3),(364,257875200,4),(364,278438400,3),(364,289324800,4),(364,309888000,3),(364,320774400,4),(364,341337600,3),(364,352224000,4),(364,372787200,3),(364,386092800,4),(364,404841600,3),(364,417542400,4),(364,436291200,3),(364,447177600,4),(364,467740800,3),(364,478627200,4),(364,499190400,3),(364,510076800,4),(364,530035200,3),(364,542736000,4),(364,562089600,3),(364,574790400,4),(364,594144000,3),(364,606240000,4),(364,625593600,3),(364,637689600,4),(364,657043200,3),(364,670348800,4),(364,686678400,3),(364,701798400,4),(364,718128000,3),(364,733248000,4),(364,749577600,3),(364,764697600,4),(364,781027200,3),(364,796147200,4),(364,812476800,3),(364,828201600,4),(364,844531200,3),(364,859651200,4),(364,875980800,3),(364,891100800,4),(364,907430400,3),(364,922550400,4),(364,938880000,3),(364,954000000,4),(364,967305600,3),(364,985449600,4),(364,1002384000,3),(364,1017504000,4),(364,1033833600,3),(364,1048953600,4),(364,1065283200,3),(364,1080403200,4),(364,1096732800,3),(364,1111852800,4),(364,1128182400,3),(364,1143907200,4),(364,1159632000,3),(364,1174752000,4),(364,1191686400,3),(364,1207411200,4),(364,1223136000,3),(364,1238860800,4),(364,1254585600,3),(364,1270310400,4),(364,1286035200,3),(364,1301760000,4),(364,1317484800,3),(364,1333209600,4),(364,1349539200,3),(364,1365264000,4),(364,1380988800,3),(364,1396713600,4),(364,1412438400,3),(364,1428163200,4),(364,1443888000,3),(364,1459612800,4),(364,1475337600,3),(364,1491062400,4),(364,1506787200,3),(364,1522512000,4),(364,1538841600,3),(364,1554566400,4),(364,1570291200,3),(364,1586016000,4),(364,1601740800,3),(364,1617465600,4),(364,1633190400,3),(364,1648915200,4),(364,1664640000,3),(364,1680364800,4),(364,1696089600,3),(364,1712419200,4),(364,1728144000,3),(364,1743868800,4),(364,1759593600,3),(364,1775318400,4),(364,1791043200,3),(364,1806768000,4),(364,1822492800,3),(364,1838217600,4),(364,1853942400,3),(364,1869667200,4),(364,1885996800,3),(364,1901721600,4),(364,1917446400,3),(364,1933171200,4),(364,1948896000,3),(364,1964620800,4),(364,1980345600,3),(364,1996070400,4),(364,2011795200,3),(364,2027520000,4),(364,2043244800,3),(364,2058969600,4),(364,2075299200,3),(364,2091024000,4),(364,2106748800,3),(364,2122473600,4),(364,2138198400,3),(365,-2147483648,2),(365,-1672567140,1),(365,-1665392400,2),(365,-883641600,1),(365,-876128400,2),(365,-860400000,1),(365,-844678800,2),(365,-828345600,1),(365,-813229200,2),(365,57686400,3),(365,67968000,4),(365,89136000,3),(365,100022400,4),(365,120585600,3),(365,131472000,4),(365,152035200,3),(365,162921600,4),(365,183484800,3),(365,194976000,4),(365,215539200,3),(365,226425600,4),(365,246988800,3),(365,257875200,4),(365,278438400,3),(365,289324800,4),(365,309888000,3),(365,320774400,4),(365,341337600,3),(365,352224000,4),(365,372787200,3),(365,384278400,4),(365,404841600,3),(365,415728000,4),(365,436291200,3),(365,447177600,4),(365,467740800,3),(365,478627200,4),(365,499190400,3),(365,511286400,4),(365,530035200,3),(365,542736000,4),(365,561484800,3),(365,574790400,4),(365,594144000,3),(365,606240000,4),(365,625593600,3),(365,637689600,4),(365,657043200,3),(365,667929600,4),(365,688492800,3),(365,699379200,4),(365,719942400,3),(365,731433600,4),(365,751996800,3),(365,762883200,4),(365,783446400,3),(365,796147200,4),(365,814896000,3),(365,828201600,4),(365,846345600,3),(365,859651200,4),(365,877795200,3),(365,891100800,4),(365,909244800,3),(365,922550400,4),(365,941299200,3),(365,954000000,4),(365,967305600,3),(365,985449600,4),(365,1004198400,3),(365,1017504000,4),(365,1035648000,3),(365,1048953600,4),(365,1067097600,3),(365,1080403200,4),(365,1099152000,3),(365,1111852800,4),(365,1130601600,3),(365,1143907200,4),(365,1162051200,3),(365,1174752000,4),(365,1193500800,3),(365,1207411200,4),(365,1223136000,3),(365,1238860800,4),(365,1254585600,3),(365,1270310400,4),(365,1286035200,3),(365,1301760000,4),(365,1317484800,3),(365,1333209600,4),(365,1349539200,3),(365,1365264000,4),(365,1380988800,3),(365,1396713600,4),(365,1412438400,3),(365,1428163200,4),(365,1443888000,3),(365,1459612800,4),(365,1475337600,3),(365,1491062400,4),(365,1506787200,3),(365,1522512000,4),(365,1538841600,3),(365,1554566400,4),(365,1570291200,3),(365,1586016000,4),(365,1601740800,3),(365,1617465600,4),(365,1633190400,3),(365,1648915200,4),(365,1664640000,3),(365,1680364800,4),(365,1696089600,3),(365,1712419200,4),(365,1728144000,3),(365,1743868800,4),(365,1759593600,3),(365,1775318400,4),(365,1791043200,3),(365,1806768000,4),(365,1822492800,3),(365,1838217600,4),(365,1853942400,3),(365,1869667200,4),(365,1885996800,3),(365,1901721600,4),(365,1917446400,3),(365,1933171200,4),(365,1948896000,3),(365,1964620800,4),(365,1980345600,3),(365,1996070400,4),(365,2011795200,3),(365,2027520000,4),(365,2043244800,3),(365,2058969600,4),(365,2075299200,3),(365,2091024000,4),(365,2106748800,3),(365,2122473600,4),(365,2138198400,3),(366,-2147483648,2),(366,-1672559940,1),(366,-1665385200,2),(366,-883634400,1),(366,-876121200,2),(366,-860392800,1),(366,-844671600,2),(366,152042400,3),(366,162928800,4),(366,436298400,3),(366,447184800,4),(366,690314400,3),(366,699386400,4),(366,1165082400,3),(366,1174759200,4),(366,1193508000,3),(366,1206813600,4),(366,1224957600,3),(366,1238263200,4),(367,-2147483648,2),(367,-1672565340,1),(367,-1665390600,2),(367,-883639800,1),(367,-876126600,2),(367,-860398200,1),(367,-844677000,2),(367,-828343800,1),(367,-813227400,2),(367,57688200,3),(367,67969800,4),(367,89137800,3),(367,100024200,4),(367,120587400,3),(367,131473800,4),(367,152037000,3),(367,162923400,4),(367,183486600,3),(367,194977800,4),(367,215541000,3),(367,226427400,4),(367,246990600,3),(367,257877000,4),(367,278440200,3),(367,289326600,4),(367,309889800,3),(367,320776200,4),(367,341339400,3),(367,352225800,4),(367,372789000,3),(367,386699400,4),(367,404843400,3),(367,415729800,4),(367,436293000,3),(367,447179400,4),(367,467742600,3),(367,478629000,4),(367,499192200,3),(367,511288200,4),(367,530037000,3),(367,542737800,4),(367,562091400,3),(367,574792200,4),(367,594145800,3),(367,606241800,4),(367,625595400,3),(367,636481800,4),(367,657045000,3),(367,667931400,4),(367,688494600,3),(367,699381000,4),(367,719944200,3),(367,731435400,4),(367,751998600,3),(367,762885000,4),(367,783448200,3),(367,794334600,4),(367,814897800,3),(367,828203400,4),(367,846347400,3),(367,859653000,4),(367,877797000,3),(367,891102600,4),(367,909246600,3),(367,922552200,4),(367,941301000,3),(367,946647000,1),(367,954001800,4),(367,972750600,3),(367,985451400,4),(367,1004200200,3),(367,1017505800,4),(367,1035649800,3),(367,1048955400,4),(367,1067099400,3),(367,1080405000,4),(367,1099153800,3),(367,1111854600,4),(367,1130603400,3),(367,1143909000,4),(367,1162053000,3),(367,1174753800,4),(367,1193502600,3),(367,1207413000,4),(367,1223137800,3),(367,1238862600,4),(367,1254587400,3),(367,1270312200,4),(367,1286037000,3),(367,1301761800,4),(367,1317486600,3),(367,1333211400,4),(367,1349541000,3),(367,1365265800,4),(367,1380990600,3),(367,1396715400,4),(367,1412440200,3),(367,1428165000,4),(367,1443889800,3),(367,1459614600,4),(367,1475339400,3),(367,1491064200,4),(367,1506789000,3),(367,1522513800,4),(367,1538843400,3),(367,1554568200,4),(367,1570293000,3),(367,1586017800,4),(367,1601742600,3),(367,1617467400,4),(367,1633192200,3),(367,1648917000,4),(367,1664641800,3),(367,1680366600,4),(367,1696091400,3),(367,1712421000,4),(367,1728145800,3),(367,1743870600,4),(367,1759595400,3),(367,1775320200,4),(367,1791045000,3),(367,1806769800,4),(367,1822494600,3),(367,1838219400,4),(367,1853944200,3),(367,1869669000,4),(367,1885998600,3),(367,1901723400,4),(367,1917448200,3),(367,1933173000,4),(367,1948897800,3),(367,1964622600,4),(367,1980347400,3),(367,1996072200,4),(367,2011797000,3),(367,2027521800,4),(367,2043246600,3),(367,2058971400,4),(367,2075301000,3),(367,2091025800,4),(367,2106750600,3),(367,2122475400,4),(367,2138200200,3),(368,-2147483648,0),(368,-1767209328,2),(368,-1206950400,1),(368,-1191355200,2),(368,-1175367600,1),(368,-1159819200,2),(368,-633812400,1),(368,-622062000,2),(368,-602276400,1),(368,-591825600,2),(368,-570740400,1),(368,-560203200,2),(368,-539118000,1),(368,-531345600,2),(368,-191358000,1),(368,-184190400,2),(368,-155156400,1),(368,-150062400,2),(368,-128890800,1),(368,-121118400,2),(368,-99946800,1),(368,-89582400,2),(368,-68410800,1),(368,-57960000,2),(368,499755600,1),(368,511243200,2),(368,530600400,1),(368,540273600,2),(368,562136400,1),(368,571204800,2),(368,1214283600,3),(368,1384056000,2),(369,-2147483648,0),(369,-1767217820,2),(369,-1206961200,1),(369,-1191366000,2),(369,-1175378400,1),(369,-1159830000,2),(369,-633823200,1),(369,-622072800,2),(369,-602287200,1),(369,-591836400,2),(369,-570751200,1),(369,-560214000,2),(369,-539128800,1),(369,-531356400,2),(369,-191368800,1),(369,-184201200,2),(369,-155167200,1),(369,-150073200,2),(369,-128901600,1),(369,-121129200,2),(369,-99957600,1),(369,-89593200,2),(369,-68421600,1),(369,-57970800,2),(369,499744800,1),(369,511232400,2),(369,530589600,1),(369,540262800,2),(369,562125600,1),(369,571194000,2),(369,592970400,1),(369,602038800,2),(369,624420000,1),(369,634698000,2),(369,938916000,1),(369,951613200,2),(369,970970400,1),(369,971571600,2),(369,1003024800,1),(369,1013907600,2),(370,-2147483648,0),(370,-1767214412,2),(370,-1206957600,1),(370,-1191362400,2),(370,-1175374800,1),(370,-1159826400,2),(370,-633819600,1),(370,-622069200,2),(370,-602283600,1),(370,-591832800,2),(370,-570747600,1),(370,-560210400,2),(370,-539125200,1),(370,-531352800,2),(370,-195426000,1),(370,-184197600,2),(370,-155163600,1),(370,-150069600,2),(370,-128898000,1),(370,-121125600,2),(370,-99954000,1),(370,-89589600,2),(370,-68418000,1),(370,-57967200,2),(370,499748400,1),(370,511236000,2),(370,530593200,1),(370,540266400,2),(370,562129200,1),(370,571197600,2),(370,592974000,1),(370,602042400,2),(370,624423600,1),(370,634701600,2),(370,656478000,1),(370,666756000,2),(370,687927600,1),(370,697600800,2),(370,719982000,1),(370,728445600,2),(370,750826800,1),(370,761709600,2),(370,782276400,1),(370,793159200,2),(370,813726000,1),(370,824004000,2),(370,844570800,1),(370,856058400,2),(370,876106800,1),(370,888717600,2),(370,908074800,1),(370,919562400,2),(370,938919600,1),(370,951616800,2),(370,970974000,1),(370,982461600,2),(370,1003028400,1),(370,1013911200,2),(370,1036292400,1),(370,1045360800,2),(370,1066532400,1),(370,1076810400,2),(370,1099364400,1),(370,1108864800,2),(370,1129431600,1),(370,1140314400,2),(370,1162695600,1),(370,1172368800,2),(370,1192330800,1),(370,1203213600,2),(370,1224385200,1),(370,1234663200,2),(370,1255834800,1),(370,1266717600,2),(370,1287284400,1),(370,1298167200,2),(370,1318734000,1),(370,1330221600,2),(370,1350788400,1),(370,1361066400,2),(370,1382238000,1),(370,1392516000,2),(370,1413687600,1),(370,1424570400,2),(370,1445137200,1),(370,1456020000,2),(370,1476586800,1),(370,1487469600,2),(370,1508036400,1),(370,1518919200,2),(370,1541300400,1),(370,1550368800,2),(371,-2147483648,0),(371,-1767211196,2),(371,-1206954000,1),(371,-1191358800,2),(371,-1175371200,1),(371,-1159822800,2),(371,-633816000,1),(371,-622065600,2),(371,-602280000,1),(371,-591829200,2),(371,-570744000,1),(371,-560206800,2),(371,-539121600,1),(371,-531349200,2),(371,-191361600,1),(371,-184194000,2),(371,-155160000,1),(371,-150066000,2),(371,-128894400,1),(371,-121122000,2),(371,-99950400,1),(371,-89586000,2),(371,-68414400,1),(371,-57963600,2),(371,499752000,1),(371,511239600,2),(371,530596800,1),(371,540270000,2),(371,562132800,1),(371,571201200,2),(371,750830400,1),(371,761713200,2),(372,-1693706400,0),(372,-1680483600,1),(372,-1663455600,2),(372,-1650150000,3),(372,-1632006000,2),(372,-1618700400,3),(372,-938905200,2),(372,-857257200,3),(372,-844556400,2),(372,-828226800,3),(372,-812502000,2),(372,-796777200,3),(372,-781052400,2),(372,-766623600,3),(372,228877200,2),(372,243997200,3),(372,260326800,2),(372,276051600,3),(372,291776400,2),(372,307501200,3),(372,323830800,2),(372,338950800,3),(372,354675600,2),(372,370400400,3),(372,386125200,2),(372,401850000,3),(372,417574800,2),(372,433299600,3),(372,449024400,2),(372,465354000,3),(372,481078800,2),(372,496803600,3),(372,512528400,2),(372,528253200,3),(372,543978000,2),(372,559702800,3),(372,575427600,2),(372,591152400,3),(372,606877200,2),(372,622602000,3),(372,638326800,2),(372,654656400,3),(372,670381200,2),(372,686106000,3),(372,701830800,2),(372,717555600,3),(372,733280400,2),(372,749005200,3),(372,764730000,2),(372,780454800,3),(372,796179600,2),(372,811904400,3),(372,828234000,2),(372,846378000,3),(372,859683600,2),(372,877827600,3),(372,891133200,2),(372,909277200,3),(372,922582800,2),(372,941331600,3),(372,954032400,2),(372,972781200,3),(372,985482000,2),(372,1004230800,3),(372,1017536400,2),(372,1035680400,3),(372,1048986000,2),(372,1067130000,3),(372,1080435600,2),(372,1099184400,3),(372,1111885200,2),(372,1130634000,3),(372,1143334800,2),(372,1162083600,3),(372,1174784400,2),(372,1193533200,3),(372,1206838800,2),(372,1224982800,3),(372,1238288400,2),(372,1256432400,3),(372,1269738000,2),(372,1288486800,3),(372,1301187600,2),(372,1319936400,3),(372,1332637200,2),(372,1351386000,3),(372,1364691600,2),(372,1382835600,3),(372,1396141200,2),(372,1414285200,3),(372,1427590800,2),(372,1445734800,3),(372,1459040400,2),(372,1477789200,3),(372,1490490000,2),(372,1509238800,3),(372,1521939600,2),(372,1540688400,3),(372,1553994000,2),(372,1572138000,3),(372,1585443600,2),(372,1603587600,3),(372,1616893200,2),(372,1635642000,3),(372,1648342800,2),(372,1667091600,3),(372,1679792400,2),(372,1698541200,3),(372,1711846800,2),(372,1729990800,3),(372,1743296400,2),(372,1761440400,3),(372,1774746000,2),(372,1792890000,3),(372,1806195600,2),(372,1824944400,3),(372,1837645200,2),(372,1856394000,3),(372,1869094800,2),(372,1887843600,3),(372,1901149200,2),(372,1919293200,3),(372,1932598800,2),(372,1950742800,3),(372,1964048400,2),(372,1982797200,3),(372,1995498000,2),(372,2014246800,3),(372,2026947600,2),(372,2045696400,3),(372,2058397200,2),(372,2077146000,3),(372,2090451600,2),(372,2108595600,3),(372,2121901200,2),(372,2140045200,3),(373,-1633276800,0),(373,-1615136400,1),(373,-1601827200,0),(373,-1583686800,1),(373,-880214400,2),(373,-769395600,3),(373,-765392400,1),(373,-84384000,0),(373,-68662800,1),(373,-52934400,0),(373,-37213200,1),(373,-21484800,0),(373,-5763600,1),(373,9964800,0),(373,25686000,1),(373,41414400,0),(373,57740400,1),(373,73468800,0),(373,89190000,1),(373,104918400,0),(373,120639600,1),(373,126691200,0),(373,152089200,1),(373,162374400,0),(373,183538800,1),(373,199267200,0),(373,215593200,1),(373,230716800,0),(373,247042800,1),(373,262771200,0),(373,278492400,1),(373,294220800,0),(373,309942000,1),(373,325670400,0),(373,341391600,1),(373,357120000,0),(373,372841200,1),(373,388569600,0),(373,404895600,1),(373,420019200,0),(373,436345200,1),(373,452073600,0),(373,467794800,1),(373,483523200,0),(373,499244400,1),(373,514972800,0),(373,530694000,1),(373,544608000,0),(373,562143600,1),(373,576057600,0),(373,594198000,1),(373,607507200,0),(373,625647600,1),(373,638956800,0),(373,657097200,1),(373,671011200,0),(373,688546800,1),(373,702460800,0),(373,719996400,1),(373,733910400,0),(373,752050800,1),(373,765360000,0),(373,783500400,1),(373,796809600,0),(373,814950000,1),(373,828864000,0),(373,846399600,1),(373,860313600,0),(373,877849200,1),(373,891763200,0),(373,909298800,1),(373,923212800,0),(373,941353200,1),(373,954662400,0),(373,972802800,1),(373,986112000,0),(373,1004252400,1),(373,1018166400,0),(373,1035702000,1),(373,1049616000,0),(373,1067151600,1),(373,1081065600,0),(373,1099206000,1),(373,1112515200,0),(373,1130655600,1),(373,1143964800,0),(373,1162105200,1),(373,1173600000,0),(373,1194159600,1),(373,1205049600,0),(373,1225609200,1),(373,1236499200,0),(373,1257058800,1),(373,1268553600,0),(373,1289113200,1),(373,1300003200,0),(373,1320562800,1),(373,1331452800,0),(373,1352012400,1),(373,1362902400,0),(373,1383462000,1),(373,1394352000,0),(373,1414911600,1),(373,1425801600,0),(373,1446361200,1),(373,1457856000,0),(373,1478415600,1),(373,1489305600,0),(373,1509865200,1),(373,1520755200,0),(373,1541314800,1),(373,1552204800,0),(373,1572764400,1),(373,1583654400,0),(373,1604214000,1),(373,1615708800,0),(373,1636268400,1),(373,1647158400,0),(373,1667718000,1),(373,1678608000,0),(373,1699167600,1),(373,1710057600,0),(373,1730617200,1),(373,1741507200,0),(373,1762066800,1),(373,1772956800,0),(373,1793516400,1),(373,1805011200,0),(373,1825570800,1),(373,1836460800,0),(373,1857020400,1),(373,1867910400,0),(373,1888470000,1),(373,1899360000,0),(373,1919919600,1),(373,1930809600,0),(373,1951369200,1),(373,1962864000,0),(373,1983423600,1),(373,1994313600,0),(373,2014873200,1),(373,2025763200,0),(373,2046322800,1),(373,2057212800,0),(373,2077772400,1),(373,2088662400,0),(373,2109222000,1),(373,2120112000,0),(373,2140671600,1),(374,-2147483648,0),(374,-2131645536,2),(374,-1696276800,1),(374,-1680469200,2),(374,-1632074400,1),(374,-1615143600,2),(374,-1566763200,1),(374,-1557090000,2),(374,-1535486400,1),(374,-1524949200,2),(374,-1504468800,1),(374,-1493413200,2),(374,-1472414400,1),(374,-1461963600,2),(374,-1440964800,1),(374,-1429390800,2),(374,-1409515200,1),(374,-1396731600,2),(374,-1376856000,1),(374,-1366491600,2),(374,-1346616000,1),(374,-1333832400,2),(374,-1313956800,1),(374,-1303678800,2),(374,-1282507200,1),(374,-1272661200,2),(374,-1251057600,1),(374,-1240088400,2),(374,-1219608000,1),(374,-1207429200,2),(374,-1188763200,1),(374,-1175979600,2),(374,-1157313600,1),(374,-1143925200,2),(374,-1124049600,1),(374,-1113771600,2),(374,-1091390400,1),(374,-1081026000,2),(374,-1059854400,1),(374,-1050786000,2),(374,-1030910400,1),(374,-1018126800,2),(374,-999460800,1),(374,-986677200,2),(374,-965592000,1),(374,-955227600,2),(374,-935956800,1),(374,-923173200,2),(374,-904507200,1),(374,-891723600,2),(374,-880221600,3),(374,-769395600,4),(374,-765399600,2),(374,-747252000,1),(374,-733950000,2),(374,-715802400,1),(374,-702500400,2),(374,-684352800,1),(374,-671050800,2),(374,-652903200,1),(374,-639601200,2),(374,-589399200,1),(374,-576097200,2),(374,-557949600,1),(374,-544647600,2),(374,-526500000,1),(374,-513198000,2),(374,-495050400,1),(374,-481748400,2),(374,-431546400,1),(374,-418244400,2),(374,-400096800,1),(374,-386794800,2),(374,-368647200,1),(374,-355345200,2),(374,-337197600,1),(374,-323895600,2),(374,-242244000,1),(374,-226522800,2),(374,-210794400,1),(374,-195073200,2),(374,-179344800,1),(374,-163623600,2),(374,-147895200,1),(374,-131569200,2),(374,-116445600,1),(374,-100119600,2),(374,-84391200,1),(374,-68670000,2),(374,-52941600,1),(374,-37220400,2),(374,-21492000,1),(374,-5770800,2),(374,9957600,1),(374,25678800,2),(374,41407200,1),(374,57733200,2),(374,73461600,1),(374,89182800,2),(374,104911200,1),(374,120632400,2),(374,136360800,1),(374,152082000,2),(374,167810400,1),(374,183531600,2),(374,199260000,1),(374,215586000,2),(374,230709600,1),(374,247035600,2),(374,262764000,1),(374,278485200,2),(374,294213600,1),(374,309934800,2),(374,325663200,1),(374,341384400,2),(374,357112800,1),(374,372834000,2),(374,388562400,1),(374,404888400,2),(374,420012000,1),(374,436338000,2),(374,452066400,1),(374,467787600,2),(374,483516000,1),(374,499237200,2),(374,514965600,1),(374,530686800,2),(374,544600800,1),(374,562136400,2),(374,576050400,1),(374,594190800,2),(374,607500000,1),(374,625640400,2),(374,638949600,1),(374,657090000,2),(374,671004000,1),(374,688539600,2),(374,702453600,1),(374,719989200,2),(374,733903200,1),(374,752043600,2),(374,765352800,1),(374,783493200,2),(374,796802400,1),(374,814942800,2),(374,828856800,1),(374,846392400,2),(374,860306400,1),(374,877842000,2),(374,891756000,1),(374,909291600,2),(374,923205600,1),(374,941346000,2),(374,954655200,1),(374,972795600,2),(374,986104800,1),(374,1004245200,2),(374,1018159200,1),(374,1035694800,2),(374,1049608800,1),(374,1067144400,2),(374,1081058400,1),(374,1099198800,2),(374,1112508000,1),(374,1130648400,2),(374,1143957600,1),(374,1162098000,2),(374,1173592800,1),(374,1194152400,2),(374,1205042400,1),(374,1225602000,2),(374,1236492000,1),(374,1257051600,2),(374,1268546400,1),(374,1289106000,2),(374,1299996000,1),(374,1320555600,2),(374,1331445600,1),(374,1352005200,2),(374,1362895200,1),(374,1383454800,2),(374,1394344800,1),(374,1414904400,2),(374,1425794400,1),(374,1446354000,2),(374,1457848800,1),(374,1478408400,2),(374,1489298400,1),(374,1509858000,2),(374,1520748000,1),(374,1541307600,2),(374,1552197600,1),(374,1572757200,2),(374,1583647200,1),(374,1604206800,2),(374,1615701600,1),(374,1636261200,2),(374,1647151200,1),(374,1667710800,2),(374,1678600800,1),(374,1699160400,2),(374,1710050400,1),(374,1730610000,2),(374,1741500000,1),(374,1762059600,2),(374,1772949600,1),(374,1793509200,2),(374,1805004000,1),(374,1825563600,2),(374,1836453600,1),(374,1857013200,2),(374,1867903200,1),(374,1888462800,2),(374,1899352800,1),(374,1919912400,2),(374,1930802400,1),(374,1951362000,2),(374,1962856800,1),(374,1983416400,2),(374,1994306400,1),(374,2014866000,2),(374,2025756000,1),(374,2046315600,2),(374,2057205600,1),(374,2077765200,2),(374,2088655200,1),(374,2109214800,2),(374,2120104800,1),(374,2140664400,2),(375,-2147483648,2),(375,-1694368800,1),(375,-1681671600,2),(375,-1632067200,1),(375,-1615136400,2),(375,-1029686400,1),(375,-1018198800,2),(375,-880214400,3),(375,-769395600,4),(375,-765392400,2),(375,-746035200,1),(375,-732733200,2),(375,-715795200,1),(375,-702493200,2),(375,-684345600,1),(375,-671043600,2),(375,-652896000,1),(375,-639594000,2),(375,-620755200,1),(375,-607626000,2),(375,-589392000,1),(375,-576090000,2),(375,-557942400,1),(375,-544640400,2),(375,-526492800,1),(375,-513190800,2),(375,-495043200,1),(375,-481741200,2),(375,-463593600,1),(375,-450291600,2),(375,-431539200,1),(375,-418237200,2),(375,-400089600,1),(375,-386787600,2),(375,-368640000,1),(375,-355338000,2),(375,-337190400,1),(375,-321469200,2),(375,-305740800,1),(375,-292438800,2),(375,-210787200,1),(375,-198090000,2),(375,-116438400,5),(375,-100108800,6),(375,-84384000,5),(375,-68659200,6),(375,-52934400,5),(375,-37209600,6),(375,-21484800,5),(375,-5760000,6),(375,9964800,5),(375,25689600,6),(375,41414400,5),(375,57744000,6),(375,73468800,5),(375,89193600,6),(375,104918400,5),(375,120643200,6),(375,136368000,5),(375,152092800,6),(375,167817600,5),(375,183542400,6),(375,199267200,5),(375,215596800,6),(375,230716800,5),(375,247046400,6),(375,262771200,5),(375,278496000,6),(375,294220800,5),(375,309945600,6),(375,325670400,5),(375,341395200,6),(375,357120000,5),(375,372844800,6),(375,388569600,5),(375,404899200,6),(375,420019200,5),(375,436348800,6),(375,452073600,5),(375,467798400,6),(375,483523200,5),(375,499248000,6),(375,514972800,5),(375,530697600,6),(375,544608000,5),(375,562147200,6),(375,576057600,5),(375,594201600,6),(375,607507200,5),(375,625651200,6),(375,638956800,5),(375,657100800,6),(375,671011200,5),(375,688550400,6),(375,702460800,5),(375,720000000,6),(375,733910400,5),(375,752054400,6),(375,765360000,5),(375,783504000,6),(375,796809600,5),(375,814953600,6),(375,828864000,5),(375,846403200,6),(375,860313600,5),(375,877852800,6),(375,891763200,5),(375,909302400,6),(375,923212800,5),(375,941356800,6),(375,954662400,5),(375,972806400,6),(375,986112000,5),(375,1004256000,6),(375,1018166400,5),(375,1035705600,6),(375,1049616000,5),(375,1067155200,6),(375,1081065600,5),(375,1099209600,6),(375,1112515200,5),(375,1130659200,6),(375,1136095200,2),(375,1143964800,1),(375,1162105200,2),(375,1173600000,1),(375,1194159600,2),(375,1205049600,1),(375,1225609200,2),(375,1236499200,1),(375,1257058800,2),(375,1268553600,1),(375,1289113200,2),(375,1300003200,1),(375,1320562800,2),(375,1331452800,1),(375,1352012400,2),(375,1362902400,1),(375,1383462000,2),(375,1394352000,1),(375,1414911600,2),(375,1425801600,1),(375,1446361200,2),(375,1457856000,1),(375,1478415600,2),(375,1489305600,1),(375,1509865200,2),(375,1520755200,1),(375,1541314800,2),(375,1552204800,1),(375,1572764400,2),(375,1583654400,1),(375,1604214000,2),(375,1615708800,1),(375,1636268400,2),(375,1647158400,1),(375,1667718000,2),(375,1678608000,1),(375,1699167600,2),(375,1710057600,1),(375,1730617200,2),(375,1741507200,1),(375,1762066800,2),(375,1772956800,1),(375,1793516400,2),(375,1805011200,1),(375,1825570800,2),(375,1836460800,1),(375,1857020400,2),(375,1867910400,1),(375,1888470000,2),(375,1899360000,1),(375,1919919600,2),(375,1930809600,1),(375,1951369200,2),(375,1962864000,1),(375,1983423600,2),(375,1994313600,1),(375,2014873200,2),(375,2025763200,1),(375,2046322800,2),(375,2057212800,1),(375,2077772400,2),(375,2088662400,1),(375,2109222000,2),(375,2120112000,1),(375,2140671600,2),(376,-2147483648,2),(376,-1632070800,1),(376,-1615140000,2),(376,-1601753400,1),(376,-1583697600,2),(376,-1567357200,1),(376,-1554667200,2),(376,-1534698000,1),(376,-1524074400,2),(376,-1503248400,1),(376,-1492365600,2),(376,-1471798800,1),(376,-1460916000,2),(376,-1440954000,1),(376,-1428861600,2),(376,-1409504400,1),(376,-1397412000,2),(376,-1378054800,1),(376,-1365962400,2),(376,-1346605200,1),(376,-1333908000,2),(376,-1315155600,1),(376,-1301853600,2),(376,-1283706000,1),(376,-1270404000,2),(376,-1252256400,1),(376,-1238954400,2),(376,-1220806800,1),(376,-1207504800,2),(376,-1188752400,1),(376,-1176055200,2),(376,-1157302800,1),(376,-1144000800,2),(376,-1125853200,1),(376,-1112551200,2),(376,-1094403600,1),(376,-1081101600,2),(376,-1062954000,1),(376,-1049652000,2),(376,-1031504400,1),(376,-1018202400,2),(376,-1000054800,1),(376,-986752800,2),(376,-968000400,1),(376,-955303200,2),(376,-936550800,1),(376,-880218000,3),(376,-769395600,4),(376,-765396000,2),(376,-747248400,1),(376,-733946400,2),(376,-715806000,1),(376,-702504000,2),(376,-684356400,1),(376,-671054400,2),(376,-652906800,1),(376,-634161600,2),(376,-620845200,1),(376,-602704800,2),(376,-589395600,1),(376,-576093600,2),(376,-557946000,1),(376,-544644000,2),(376,-526496400,1),(376,-513194400,2),(376,-495046800,1),(376,-481744800,2),(376,-463597200,1),(376,-450295200,2),(376,-431542800,1),(376,-418240800,2),(376,-400093200,1),(376,-384372000,2),(376,-368643600,1),(376,-352922400,2),(376,-337194000,1),(376,-321472800,2),(376,-305744400,1),(376,-289418400,2),(376,-273690000,1),(376,-257968800,2),(376,-242240400,1),(376,-226519200,2),(376,-210790800,1),(376,-195069600,2),(376,-179341200,1),(376,-163620000,2),(376,-147891600,1),(376,-131565600,2),(376,-116442000,1),(376,-100116000,2),(376,-84387600,1),(376,-68666400,2),(376,-52938000,1),(376,-37216800,2),(376,-21488400,1),(376,-5767200,2),(376,9961200,1),(376,25682400,2),(376,41410800,1),(376,57736800,2),(376,73465200,1),(376,89186400,2),(376,104914800,1),(376,120636000,2),(376,136364400,1),(376,152085600,2),(376,167814000,1),(376,183535200,2),(376,199263600,1),(376,215589600,2),(376,230713200,1),(376,247039200,2),(376,262767600,1),(376,278488800,2),(376,294217200,1),(376,309938400,2),(376,325666800,1),(376,341388000,2),(376,357116400,1),(376,372837600,2),(376,388566000,1),(376,404892000,2),(376,420015600,1),(376,436341600,2),(376,452070000,1),(376,467791200,2),(376,483519600,1),(376,499240800,2),(376,514969200,1),(376,530690400,2),(376,544604400,1),(376,562140000,2),(376,576054000,1),(376,594194400,2),(376,607503600,1),(376,625644000,2),(376,638953200,1),(376,657093600,2),(376,671007600,1),(376,688543200,2),(376,702457200,1),(376,719992800,2),(376,733906800,1),(376,752047200,2),(376,765356400,1),(376,783496800,2),(376,796806000,1),(376,814946400,2),(376,828860400,1),(376,846396000,2),(376,860310000,1),(376,877845600,2),(376,891759600,1),(376,909295200,2),(376,923209200,1),(376,941349600,2),(376,954658800,1),(376,972799200,2),(376,986108400,1),(376,1004248800,2),(376,1018162800,1),(376,1035698400,2),(376,1049612400,1),(376,1067148000,2),(376,1081062000,1),(376,1099202400,2),(376,1112511600,1),(376,1130652000,2),(376,1143961200,1),(376,1162101600,2),(376,1173596400,1),(376,1194156000,2),(376,1205046000,1),(376,1225605600,2),(376,1236495600,1),(376,1257055200,2),(376,1268550000,1),(376,1289109600,2),(376,1299999600,1),(376,1320559200,2),(376,1331449200,1),(376,1352008800,2),(376,1362898800,1),(376,1383458400,2),(376,1394348400,1),(376,1414908000,2),(376,1425798000,1),(376,1446357600,2),(376,1457852400,1),(376,1478412000,2),(376,1489302000,1),(376,1509861600,2),(376,1520751600,1),(376,1541311200,2),(376,1552201200,1),(376,1572760800,2),(376,1583650800,1),(376,1604210400,2),(376,1615705200,1),(376,1636264800,2),(376,1647154800,1),(376,1667714400,2),(376,1678604400,1),(376,1699164000,2),(376,1710054000,1),(376,1730613600,2),(376,1741503600,1),(376,1762063200,2),(376,1772953200,1),(376,1793512800,2),(376,1805007600,1),(376,1825567200,2),(376,1836457200,1),(376,1857016800,2),(376,1867906800,1),(376,1888466400,2),(376,1899356400,1),(376,1919916000,2),(376,1930806000,1),(376,1951365600,2),(376,1962860400,1),(376,1983420000,2),(376,1994310000,1),(376,2014869600,2),(376,2025759600,1),(376,2046319200,2),(376,2057209200,1),(376,2077768800,2),(376,2088658800,1),(376,2109218400,2),(376,2120108400,1),(376,2140668000,2),(377,-2147483648,0),(377,-1998663968,2),(377,-1632063600,1),(377,-1615132800,2),(377,-1600614000,1),(377,-1596816000,2),(377,-1567954800,1),(377,-1551628800,2),(377,-1536505200,1),(377,-1523203200,2),(377,-1504450800,1),(377,-1491753600,2),(377,-1473001200,1),(377,-1459699200,2),(377,-880210800,3),(377,-769395600,4),(377,-765388800,2),(377,-715791600,1),(377,-702489600,2),(377,73472400,1),(377,89193600,2),(377,104922000,1),(377,120643200,2),(377,136371600,1),(377,152092800,2),(377,167821200,1),(377,183542400,2),(377,199270800,1),(377,215596800,2),(377,230720400,1),(377,247046400,2),(377,262774800,1),(377,278496000,2),(377,294224400,1),(377,309945600,2),(377,325674000,1),(377,341395200,2),(377,357123600,1),(377,372844800,2),(377,388573200,1),(377,404899200,2),(377,420022800,1),(377,436348800,2),(377,452077200,1),(377,467798400,2),(377,483526800,1),(377,499248000,2),(377,514976400,1),(377,530697600,2),(377,544611600,1),(377,562147200,2),(377,576061200,1),(377,594201600,2),(377,607510800,1),(377,625651200,2),(377,638960400,1),(377,657100800,2),(377,671014800,1),(377,688550400,2),(377,702464400,1),(377,720000000,2),(377,733914000,1),(377,752054400,2),(377,765363600,1),(377,783504000,2),(377,796813200,1),(377,814953600,2),(377,828867600,1),(377,846403200,2),(377,860317200,1),(377,877852800,2),(377,891766800,1),(377,909302400,2),(377,923216400,1),(377,941356800,2),(377,954666000,1),(377,972806400,2),(377,986115600,1),(377,1004256000,2),(377,1018170000,1),(377,1035705600,2),(377,1049619600,1),(377,1067155200,2),(377,1081069200,1),(377,1099209600,2),(377,1112518800,1),(377,1130659200,2),(377,1143968400,1),(377,1162108800,2),(377,1173603600,1),(377,1194163200,2),(377,1205053200,1),(377,1225612800,2),(377,1236502800,1),(377,1257062400,2),(377,1268557200,1),(377,1289116800,2),(377,1300006800,1),(377,1320566400,2),(377,1331456400,1),(377,1352016000,2),(377,1362906000,1),(377,1383465600,2),(377,1394355600,1),(377,1414915200,2),(377,1425805200,1),(377,1446364800,2),(377,1457859600,1),(377,1478419200,2),(377,1489309200,1),(377,1509868800,2),(377,1520758800,1),(377,1541318400,2),(377,1552208400,1),(377,1572768000,2),(377,1583658000,1),(377,1604217600,2),(377,1615712400,1),(377,1636272000,2),(377,1647162000,1),(377,1667721600,2),(377,1678611600,1),(377,1699171200,2),(377,1710061200,1),(377,1730620800,2),(377,1741510800,1),(377,1762070400,2),(377,1772960400,1),(377,1793520000,2),(377,1805014800,1),(377,1825574400,2),(377,1836464400,1),(377,1857024000,2),(377,1867914000,1),(377,1888473600,2),(377,1899363600,1),(377,1919923200,2),(377,1930813200,1),(377,1951372800,2),(377,1962867600,1),(377,1983427200,2),(377,1994317200,1),(377,2014876800,2),(377,2025766800,1),(377,2046326400,2),(377,2057216400,1),(377,2077776000,2),(377,2088666000,1),(377,2109225600,2),(377,2120115600,1),(377,2140675200,2),(378,-2147483648,2),(378,-1664130548,1),(378,-1650137348,2),(378,-1632076148,1),(378,-1615145348,2),(378,-1598650148,1),(378,-1590100148,2),(378,-1567286948,1),(378,-1551565748,2),(378,-1535837348,1),(378,-1520116148,2),(378,-1503782948,1),(378,-1488666548,2),(378,-1472333348,1),(378,-1457216948,2),(378,-1440883748,1),(378,-1425767348,2),(378,-1409434148,1),(378,-1394317748,2),(378,-1377984548,1),(378,-1362263348,2),(378,-1346534948,1),(378,-1330813748,2),(378,-1314480548,1),(378,-1299364148,2),(378,-1283030948,1),(378,-1267914548,2),(378,-1251581348,1),(378,-1236464948,2),(378,-1220131748,1),(378,-1205015348,2),(378,-1188682148,1),(378,-1172960948,2),(378,-1156627748,1),(378,-1141511348,2),(378,-1125178148,1),(378,-1110061748,2),(378,-1096921748,4),(378,-1093728600,3),(378,-1078612200,4),(378,-1061670600,3),(378,-1048973400,4),(378,-1030221000,3),(378,-1017523800,4),(378,-998771400,3),(378,-986074200,4),(378,-966717000,3),(378,-954624600,4),(378,-935267400,3),(378,-922570200,4),(378,-903817800,3),(378,-891120600,4),(378,-872368200,6),(378,-769395600,5),(378,-765401400,4),(378,-746044200,3),(378,-733347000,4),(378,-714594600,3),(378,-701897400,4),(378,-683145000,3),(378,-670447800,4),(378,-651695400,3),(378,-638998200,4),(378,-619641000,3),(378,-606943800,4),(378,-589401000,3),(378,-576099000,4),(378,-557951400,3),(378,-544649400,4),(378,-526501800,3),(378,-513199800,4),(378,-495052200,3),(378,-481750200,4),(378,-463602600,3),(378,-450300600,4),(378,-431548200,3),(378,-418246200,4),(378,-400098600,3),(378,-386796600,4),(378,-368649000,3),(378,-355347000,4),(378,-337199400,3),(378,-323897400,4),(378,-305749800,3),(378,-289423800,4),(378,-273695400,3),(378,-257974200,4),(378,-242245800,3),(378,-226524600,4),(378,-210796200,3),(378,-195075000,4),(378,-179346600,3),(378,-163625400,4),(378,-147897000,3),(378,-131571000,4),(378,-116447400,3),(378,-100121400,4),(378,-84393000,3),(378,-68671800,4),(378,-52943400,3),(378,-37222200,4),(378,-21493800,3),(378,-5772600,4),(378,9955800,3),(378,25677000,4),(378,41405400,3),(378,57731400,4),(378,73459800,3),(378,89181000,4),(378,104909400,3),(378,120630600,4),(378,136359000,3),(378,152080200,4),(378,167808600,3),(378,183529800,4),(378,199258200,3),(378,215584200,4),(378,230707800,3),(378,247033800,4),(378,262762200,3),(378,278483400,4),(378,294211800,3),(378,309933000,4),(378,325661400,3),(378,341382600,4),(378,357111000,3),(378,372832200,4),(378,388560600,3),(378,404886600,4),(378,420010200,3),(378,436336200,4),(378,452064600,3),(378,467785800,4),(378,483514200,3),(378,499235400,4),(378,514963800,3),(378,530685000,4),(378,544591860,3),(378,562127460,4),(378,576041460,7),(378,594178260,4),(378,607491060,3),(378,625631460,4),(378,638940660,3),(378,657081060,4),(378,670995060,3),(378,688530660,4),(378,702444660,3),(378,719980260,4),(378,733894260,3),(378,752034660,4),(378,765343860,3),(378,783484260,4),(378,796793460,3),(378,814933860,4),(378,828847860,3),(378,846383460,4),(378,860297460,3),(378,877833060,4),(378,891747060,3),(378,909282660,4),(378,923196660,3),(378,941337060,4),(378,954646260,3),(378,972786660,4),(378,986095860,3),(378,1004236260,4),(378,1018150260,3),(378,1035685860,4),(378,1049599860,3),(378,1067135460,4),(378,1081049460,3),(378,1099189860,4),(378,1112499060,3),(378,1130639460,4),(378,1143948660,3),(378,1162089060,4),(378,1173583860,3),(378,1194143460,4),(378,1205033460,3),(378,1225593060,4),(378,1236483060,3),(378,1257042660,4),(378,1268537460,3),(378,1289097060,4),(378,1299987060,3),(378,1320553800,4),(378,1331443800,3),(378,1352003400,4),(378,1362893400,3),(378,1383453000,4),(378,1394343000,3),(378,1414902600,4),(378,1425792600,3),(378,1446352200,4),(378,1457847000,3),(378,1478406600,4),(378,1489296600,3),(378,1509856200,4),(378,1520746200,3),(378,1541305800,4),(378,1552195800,3),(378,1572755400,4),(378,1583645400,3),(378,1604205000,4),(378,1615699800,3),(378,1636259400,4),(378,1647149400,3),(378,1667709000,4),(378,1678599000,3),(378,1699158600,4),(378,1710048600,3),(378,1730608200,4),(378,1741498200,3),(378,1762057800,4),(378,1772947800,3),(378,1793507400,4),(378,1805002200,3),(378,1825561800,4),(378,1836451800,3),(378,1857011400,4),(378,1867901400,3),(378,1888461000,4),(378,1899351000,3),(378,1919910600,4),(378,1930800600,3),(378,1951360200,4),(378,1962855000,3),(378,1983414600,4),(378,1994304600,3),(378,2014864200,4),(378,2025754200,3),(378,2046313800,4),(378,2057203800,3),(378,2077763400,4),(378,2088653400,3),(378,2109213000,4),(378,2120103000,3),(378,2140662600,4),(379,-2147483648,2),(379,-1632060000,1),(379,-1615129200,2),(379,-880207200,3),(379,-769395600,4),(379,-765385200,2),(379,-747237600,1),(379,-733935600,2),(379,-715788000,1),(379,-702486000,2),(379,-684338400,1),(379,-671036400,2),(379,-652888800,1),(379,-639586800,2),(379,-620834400,1),(379,-608137200,2),(379,-589384800,1),(379,-576082800,2),(379,-557935200,1),(379,-544633200,2),(379,-526485600,1),(379,-513183600,2),(379,-495036000,1),(379,-481734000,2),(379,-463586400,1),(379,-450284400,2),(379,-431532000,1),(379,-418230000,2),(379,-400082400,1),(379,-386780400,2),(379,-368632800,1),(379,-355330800,2),(379,-337183200,1),(379,-323881200,2),(379,-305733600,1),(379,-292431600,2),(379,-273679200,1),(379,-260982000,2),(379,-242229600,1),(379,-226508400,2),(379,-210780000,1),(379,-195058800,2),(379,-179330400,1),(379,-163609200,2),(379,-147880800,1),(379,-131554800,2),(379,-116431200,1),(379,-100105200,2),(379,-84376800,1),(379,-68655600,2),(379,-52927200,1),(379,-37206000,2),(379,-21477600,1),(379,-5756400,2),(379,9972000,1),(379,25693200,2),(379,41421600,1),(379,57747600,2),(379,73476000,1),(379,89197200,2),(379,104925600,1),(379,120646800,2),(379,136375200,1),(379,152096400,2),(379,167824800,1),(379,183546000,2),(379,199274400,1),(379,215600400,2),(379,230724000,1),(379,247050000,2),(379,262778400,1),(379,278499600,2),(379,294228000,1),(379,309949200,2),(379,325677600,1),(379,341398800,2),(379,357127200,1),(379,372848400,2),(379,388576800,1),(379,404902800,2),(379,420026400,1),(379,436352400,2),(379,452080800,1),(379,467802000,2),(379,483530400,1),(379,499251600,2),(379,514980000,1),(379,530701200,2),(379,544615200,1),(379,562150800,2),(379,576064800,1),(379,594205200,2),(379,607514400,1),(379,625654800,2),(379,638964000,1),(379,657104400,2),(379,671018400,1),(379,688554000,2),(379,702468000,1),(379,720003600,2),(379,733917600,1),(379,752058000,2),(379,765367200,1),(379,783507600,2),(379,796816800,1),(379,814957200,2),(379,828871200,1),(379,846406800,2),(379,860320800,1),(379,877856400,2),(379,891770400,1),(379,909306000,2),(379,923220000,1),(379,941360400,2),(379,954669600,1),(379,972810000,2),(379,986119200,1),(379,1004259600,2),(379,1018173600,1),(379,1035709200,2),(379,1049623200,1),(379,1067158800,2),(379,1081072800,1),(379,1099213200,2),(379,1112522400,1),(379,1130662800,2),(379,1143972000,1),(379,1162112400,2),(379,1173607200,1),(379,1194166800,2),(379,1205056800,1),(379,1225616400,2),(379,1236506400,1),(379,1257066000,2),(379,1268560800,1),(379,1289120400,2),(379,1300010400,1),(379,1320570000,2),(379,1331460000,1),(379,1352019600,2),(379,1362909600,1),(379,1383469200,2),(379,1394359200,1),(379,1414918800,2),(379,1425808800,1),(379,1446368400,2),(379,1457863200,1),(379,1478422800,2),(379,1489312800,1),(379,1509872400,2),(379,1520762400,1),(379,1541322000,2),(379,1552212000,1),(379,1572771600,2),(379,1583661600,1),(379,1604221200,2),(379,1615716000,1),(379,1636275600,2),(379,1647165600,1),(379,1667725200,2),(379,1678615200,1),(379,1699174800,2),(379,1710064800,1),(379,1730624400,2),(379,1741514400,1),(379,1762074000,2),(379,1772964000,1),(379,1793523600,2),(379,1805018400,1),(379,1825578000,2),(379,1836468000,1),(379,1857027600,2),(379,1867917600,1),(379,1888477200,2),(379,1899367200,1),(379,1919926800,2),(379,1930816800,1),(379,1951376400,2),(379,1962871200,1),(379,1983430800,2),(379,1994320800,1),(379,2014880400,2),(379,2025770400,1),(379,2046330000,2),(379,2057220000,1),(379,2077779600,2),(379,2088669600,1),(379,2109229200,2),(379,2120119200,1),(379,2140678800,2),(380,-2147483648,0),(380,-2030202084,2),(380,-1632063600,1),(380,-1615132800,2),(380,-1251651600,1),(380,-1238349600,2),(380,-1220202000,1),(380,-1206900000,2),(380,-1188752400,1),(380,-1175450400,2),(380,-1156698000,1),(380,-1144000800,2),(380,-1125248400,1),(380,-1111946400,2),(380,-1032714000,1),(380,-1016992800,2),(380,-1001264400,1),(380,-986148000,2),(380,-969814800,1),(380,-954093600,2),(380,-937760400,1),(380,-922039200,2),(380,-906310800,1),(380,-890589600,2),(380,-880210800,3),(380,-769395600,4),(380,-765388800,2),(380,-748450800,1),(380,-732729600,2),(380,-715791600,1),(380,-702489600,2),(380,-684342000,1),(380,-671040000,2),(380,-652892400,1),(380,-639590400,2),(380,-620838000,1),(380,-608140800,2),(380,-589388400,1),(380,-576086400,2),(380,-557938800,1),(380,-544636800,2),(380,-526489200,1),(380,-513187200,2),(380,-495039600,1),(380,-481737600,2),(380,-463590000,1),(380,-450288000,2),(380,-431535600,1),(380,-418233600,2),(380,-400086000,1),(380,-386784000,2),(380,-337186800,1),(380,-321465600,2),(380,-305737200,5),(381,-2147483648,2),(381,-1632056400,1),(381,-1615125600,2),(381,-1596978000,1),(381,-1583164800,2),(381,-880203600,3),(381,-769395600,4),(381,-765381600,2),(381,-147884400,5),(381,-131554800,2),(381,-81961200,6),(381,325677600,7),(381,341398800,6),(381,357127200,7),(381,372848400,6),(381,388576800,7),(381,404902800,6),(381,420026400,7),(381,436352400,6),(381,452080800,7),(381,467802000,6),(381,483530400,7),(381,499251600,6),(381,514980000,7),(381,530701200,6),(381,544615200,7),(381,562150800,6),(381,576064800,7),(381,594205200,6),(381,607514400,7),(381,625654800,6),(381,638964000,7),(381,657104400,6),(381,671018400,7),(381,688554000,6),(381,702468000,7),(381,720003600,6),(381,733917600,7),(381,752058000,6),(381,765367200,7),(381,783507600,6),(381,796816800,7),(381,814957200,6),(381,828871200,7),(381,846406800,6),(381,860320800,7),(381,877856400,6),(381,891770400,7),(381,909306000,6),(381,923220000,7),(381,941360400,6),(381,954669600,7),(381,972810000,6),(381,986119200,7),(381,1004259600,6),(381,1018173600,7),(381,1035709200,6),(381,1049623200,7),(381,1067158800,6),(381,1081072800,7),(381,1099213200,6),(381,1112522400,7),(381,1130662800,6),(381,1143972000,7),(381,1162112400,6),(381,1173607200,7),(381,1194166800,6),(381,1205056800,7),(381,1225616400,6),(381,1236506400,7),(381,1257066000,6),(381,1268560800,7),(381,1289120400,6),(381,1300010400,7),(381,1320570000,6),(381,1331460000,7),(381,1352019600,6),(381,1362909600,7),(381,1383469200,6),(381,1394359200,7),(381,1414918800,6),(381,1425808800,7),(381,1446368400,6),(381,1457863200,7),(381,1478422800,6),(381,1489312800,7),(381,1509872400,6),(381,1520762400,7),(381,1541322000,6),(381,1552212000,7),(381,1572771600,6),(381,1583661600,7),(381,1604221200,6),(381,1615716000,7),(381,1636275600,6),(381,1647165600,7),(381,1667725200,6),(381,1678615200,7),(381,1699174800,6),(381,1710064800,7),(381,1730624400,6),(381,1741514400,7),(381,1762074000,6),(381,1772964000,7),(381,1793523600,6),(381,1805018400,7),(381,1825578000,6),(381,1836468000,7),(381,1857027600,6),(381,1867917600,7),(381,1888477200,6),(381,1899367200,7),(381,1919926800,6),(381,1930816800,7),(381,1951376400,6),(381,1962871200,7),(381,1983430800,6),(381,1994320800,7),(381,2014880400,6),(381,2025770400,7),(381,2046330000,6),(381,2057220000,7),(381,2077779600,6),(381,2088669600,7),(381,2109229200,6),(381,2120119200,7),(381,2140678800,6),(382,-2147483648,1),(382,-1892661434,2),(382,-1688410800,1),(382,-1619205434,3),(382,-1593806400,1),(382,-1335986234,4),(382,-1317585600,2),(382,-1304362800,4),(382,-1286049600,2),(382,-1272826800,4),(382,-1254513600,2),(382,-1241290800,4),(382,-1222977600,2),(382,-1209754800,4),(382,-1191355200,2),(382,-1178132400,3),(382,-870552000,2),(382,-865278000,3),(382,-740520000,5),(382,-736376400,3),(382,-718056000,2),(382,-713649600,3),(382,-36619200,6),(382,-23922000,7),(382,-3355200,6),(382,7527600,7),(382,24465600,6),(382,37767600,7),(382,55915200,6),(382,69217200,7),(382,87969600,6),(382,100666800,7),(382,118209600,6),(382,132116400,7),(382,150868800,6),(382,163566000,7),(382,182318400,6),(382,195620400,7),(382,213768000,6),(382,227070000,7),(382,245217600,6),(382,258519600,7),(382,277272000,6),(382,289969200,7),(382,308721600,6),(382,321418800,7),(382,340171200,6),(382,353473200,7),(382,371620800,6),(382,384922800,7),(382,403070400,6),(382,416372400,7),(382,434520000,6),(382,447822000,7),(382,466574400,6),(382,479271600,7),(382,498024000,6),(382,510721200,7),(382,529473600,6),(382,545194800,7),(382,560923200,6),(382,574225200,7),(382,592372800,6),(382,605674800,7),(382,624427200,6),(382,637124400,7),(382,653457600,6),(382,668574000,7),(382,687326400,6),(382,700628400,7),(382,718776000,6),(382,732078000,7),(382,750225600,6),(382,763527600,7),(382,781675200,6),(382,794977200,7),(382,813729600,6),(382,826426800,7),(382,845179200,6),(382,859690800,7),(382,876628800,6),(382,889930800,7),(382,906868800,6),(382,923194800,7),(382,939528000,6),(382,952830000,7),(382,971582400,6),(382,984279600,7),(382,1003032000,6),(382,1015729200,7),(382,1034481600,6),(382,1047178800,7),(382,1065931200,6),(382,1079233200,7),(382,1097380800,6),(382,1110682800,7),(382,1128830400,6),(382,1142132400,7),(382,1160884800,6),(382,1173582000,7),(382,1192334400,6),(382,1206846000,7),(382,1223784000,6),(382,1237086000,7),(382,1255233600,6),(382,1270350000,7),(382,1286683200,6),(382,1304823600,7),(382,1313899200,6),(382,1335668400,7),(382,1346558400,6),(382,1367118000,7),(382,1378612800,6),(382,1398567600,7),(382,1410062400,6),(382,1463281200,7),(382,1471147200,6),(382,1494730800,7),(382,1502596800,6),(382,1526180400,7),(382,1534046400,6),(382,1554606000,7),(382,1567915200,6),(382,1586055600,7),(382,1599364800,6),(382,1617505200,7),(382,1630814400,6),(382,1648954800,7),(382,1662264000,6),(382,1680404400,7),(382,1693713600,6),(382,1712458800,7),(382,1725768000,6),(382,1743908400,7),(382,1757217600,6),(382,1775358000,7),(382,1788667200,6),(382,1806807600,7),(382,1820116800,6),(382,1838257200,7),(382,1851566400,6),(382,1870311600,7),(382,1883016000,6),(382,1901761200,7),(382,1915070400,6),(382,1933210800,7),(382,1946520000,6),(382,1964660400,7),(382,1977969600,6),(382,1996110000,7),(382,2009419200,6),(382,2027559600,7),(382,2040868800,6),(382,2059614000,7),(382,2072318400,6),(382,2091063600,7),(382,2104372800,6),(382,2122513200,7),(382,2135822400,6),(383,-2147483648,1),(383,-1178124152,4),(383,-36619200,2),(383,-23922000,3),(383,-3355200,2),(383,7527600,3),(383,24465600,2),(383,37767600,3),(383,55915200,2),(383,69217200,3),(383,87969600,2),(383,100666800,3),(383,118209600,2),(383,132116400,3),(383,150868800,2),(383,163566000,3),(383,182318400,2),(383,195620400,3),(383,213768000,2),(383,227070000,3),(383,245217600,2),(383,258519600,3),(383,277272000,2),(383,289969200,3),(383,308721600,2),(383,321418800,3),(383,340171200,2),(383,353473200,3),(383,371620800,2),(383,384922800,5),(383,403070400,6),(383,416372400,5),(383,434520000,6),(383,447822000,5),(383,466574400,6),(383,479271600,5),(383,498024000,6),(383,510721200,5),(383,529473600,6),(383,545194800,5),(383,560923200,6),(383,574225200,5),(383,592372800,6),(383,605674800,5),(383,624427200,6),(383,637124400,5),(383,653457600,6),(383,668574000,5),(383,687326400,6),(383,700628400,5),(383,718776000,6),(383,732078000,5),(383,750225600,6),(383,763527600,5),(383,781675200,6),(383,794977200,5),(383,813729600,6),(383,826426800,5),(383,845179200,6),(383,859690800,5),(383,876628800,6),(383,889930800,5),(383,906868800,6),(383,923194800,5),(383,939528000,6),(383,952830000,5),(383,971582400,6),(383,984279600,5),(383,1003032000,6),(383,1015729200,5),(383,1034481600,6),(383,1047178800,5),(383,1065931200,6),(383,1079233200,5),(383,1097380800,6),(383,1110682800,5),(383,1128830400,6),(383,1142132400,5),(383,1160884800,6),(383,1173582000,5),(383,1192334400,6),(383,1206846000,5),(383,1223784000,6),(383,1237086000,5),(383,1255233600,6),(383,1270350000,5),(383,1286683200,6),(383,1304823600,5),(383,1313899200,6),(383,1335668400,5),(383,1346558400,6),(383,1367118000,5),(383,1378612800,6),(383,1398567600,5),(383,1410062400,6),(383,1463281200,5),(383,1471147200,6),(383,1494730800,5),(383,1502596800,6),(383,1526180400,5),(383,1534046400,6),(383,1554606000,5),(383,1567915200,6),(383,1586055600,5),(383,1599364800,6),(383,1617505200,5),(383,1630814400,6),(383,1648954800,5),(383,1662264000,6),(383,1680404400,5),(383,1693713600,6),(383,1712458800,5),(383,1725768000,6),(383,1743908400,5),(383,1757217600,6),(383,1775358000,5),(383,1788667200,6),(383,1806807600,5),(383,1820116800,6),(383,1838257200,5),(383,1851566400,6),(383,1870311600,5),(383,1883016000,6),(383,1901761200,5),(383,1915070400,6),(383,1933210800,5),(383,1946520000,6),(383,1964660400,5),(383,1977969600,6),(383,1996110000,5),(383,2009419200,6),(383,2027559600,5),(383,2040868800,6),(383,2059614000,5),(383,2072318400,6),(383,2091063600,5),(383,2104372800,6),(383,2122513200,5),(383,2135822400,6),(384,-2147483648,1),(384,-1402813824,3),(384,-1311534000,2),(384,-1300996800,3),(384,-933534000,2),(384,-925675200,3),(384,-902084400,2),(384,-893620800,3),(384,-870030000,2),(384,-862171200,3),(384,-775681200,2),(384,-767822400,3),(384,-744231600,2),(384,-736372800,3),(384,-144702000,2),(384,-134251200,3),(384,-113425200,2),(384,-102542400,3),(384,-86295600,2),(384,-72907200,3),(384,-54154800,2),(384,-41457600,3),(384,-21495600,2),(384,-5774400,3),(384,9954000,2),(384,25675200,3),(384,41403600,2),(384,57729600,3),(384,73458000,2),(384,87364800,3),(384,104907600,2),(384,118900800,3),(384,136357200,2),(384,150436800,3),(384,167806800,2),(384,183528000,3),(384,199256400,2),(384,215582400,3),(384,230706000,2),(384,247032000,3),(384,263365200,2),(384,276667200,3),(384,290581200,2),(384,308721600,3),(384,322030800,2),(384,340171200,3),(384,358318800,2),(384,371620800,3),(384,389768400,2),(384,403070400,3),(384,421218000,2),(384,434520000,3),(384,452667600,2),(384,466574400,3),(384,484117200,2),(384,498024000,3),(384,511333200,2),(384,529473600,3),(384,542782800,2),(384,560923200,3),(384,574837200,2),(384,592372800,3),(384,606286800,2),(384,623822400,3),(384,638946000,2),(384,655876800,3),(384,671000400,2),(384,687330000,4),(384,702450000,2),(384,718779600,4),(384,733899600,2),(384,750229200,4),(384,765349200,2),(384,781678800,4),(384,796798800,2),(384,813128400,4),(384,828853200,2),(384,844578000,4),(384,860302800,2),(384,876632400,4),(384,891147600,5),(384,909291600,4),(384,922597200,5),(384,941346000,4),(384,954651600,5),(384,972795600,4),(384,986101200,5),(384,1004245200,4),(384,1018155600,5),(384,1035694800,4),(384,1049605200,5),(384,1067144400,4),(384,1080450000,5),(384,1162098000,4),(384,1173589200,5),(384,1193547600,4),(384,1205643600,5),(384,1224997200,4),(384,1236488400,5),(384,1256446800,4),(384,1268542800,5),(384,1288501200,4),(384,1300597200,5),(384,1321160400,4),(384,1333256400,5),(384,1352005200,4),(384,1362891600,5),(384,1383454800,4),(384,1394341200,5),(384,1414904400,4),(384,1425790800,5),(384,1446354000,4),(384,1457845200,5),(384,1478408400,4),(384,1489294800,5),(384,1509858000,4),(384,1520744400,5),(384,1541307600,4),(384,1552194000,5),(384,1572757200,4),(384,1583643600,5),(384,1604206800,4),(384,1615698000,5),(384,1636261200,4),(384,1647147600,5),(384,1667710800,4),(384,1678597200,5),(384,1699160400,4),(384,1710046800,5),(384,1730610000,4),(384,1741496400,5),(384,1762059600,4),(384,1772946000,5),(384,1793509200,4),(384,1805000400,5),(384,1825563600,4),(384,1836450000,5),(384,1857013200,4),(384,1867899600,5),(384,1888462800,4),(384,1899349200,5),(384,1919912400,4),(384,1930798800,5),(384,1951362000,4),(384,1962853200,5),(384,1983416400,4),(384,1994302800,5),(384,2014866000,4),(384,2025752400,5),(384,2046315600,4),(384,2057202000,5),(384,2077765200,4),(384,2088651600,5),(384,2109214800,4),(384,2120101200,5),(384,2140664400,4),(385,228877200,0),(385,243997200,1),(385,260326800,0),(385,276051600,1),(385,291776400,0),(385,307501200,1),(385,323830800,0),(385,338950800,1),(385,354675600,0),(385,370400400,1),(385,386125200,0),(385,401850000,1),(385,417574800,0),(385,433299600,1),(385,449024400,0),(385,465354000,1),(385,481078800,0),(385,496803600,1),(385,512528400,0),(385,528253200,1),(385,543978000,0),(385,559702800,1),(385,575427600,0),(385,591152400,1),(385,606877200,0),(385,622602000,1),(385,638326800,0),(385,654656400,1),(385,670381200,0),(385,686106000,1),(385,701830800,0),(385,717555600,1),(385,733280400,0),(385,749005200,1),(385,764730000,0),(385,780454800,1),(385,796179600,0),(385,811904400,1),(385,828234000,0),(385,846378000,1),(385,859683600,0),(385,877827600,1),(385,891133200,0),(385,909277200,1),(385,922582800,0),(385,941331600,1),(385,954032400,0),(385,972781200,1),(385,985482000,0),(385,1004230800,1),(385,1017536400,0),(385,1035680400,1),(385,1048986000,0),(385,1067130000,1),(385,1080435600,0),(385,1099184400,1),(385,1111885200,0),(385,1130634000,1),(385,1143334800,0),(385,1162083600,1),(385,1174784400,0),(385,1193533200,1),(385,1206838800,0),(385,1224982800,1),(385,1238288400,0),(385,1256432400,1),(385,1269738000,0),(385,1288486800,1),(385,1301187600,0),(385,1319936400,1),(385,1332637200,0),(385,1351386000,1),(385,1364691600,0),(385,1382835600,1),(385,1396141200,0),(385,1414285200,1),(385,1427590800,0),(385,1445734800,1),(385,1459040400,0),(385,1477789200,1),(385,1490490000,0),(385,1509238800,1),(385,1521939600,0),(385,1540688400,1),(385,1553994000,0),(385,1572138000,1),(385,1585443600,0),(385,1603587600,1),(385,1616893200,0),(385,1635642000,1),(385,1648342800,0),(385,1667091600,1),(385,1679792400,0),(385,1698541200,1),(385,1711846800,0),(385,1729990800,1),(385,1743296400,0),(385,1761440400,1),(385,1774746000,0),(385,1792890000,1),(385,1806195600,0),(385,1824944400,1),(385,1837645200,0),(385,1856394000,1),(385,1869094800,0),(385,1887843600,1),(385,1901149200,0),(385,1919293200,1),(385,1932598800,0),(385,1950742800,1),(385,1964048400,0),(385,1982797200,1),(385,1995498000,0),(385,2014246800,1),(385,2026947600,0),(385,2045696400,1),(385,2058397200,0),(385,2077146000,1),(385,2090451600,0),(385,2108595600,1),(385,2121901200,0),(385,2140045200,1),(387,-1633280400,0),(387,-1615140000,1),(387,-1601830800,0),(387,-1583690400,1),(387,-880218000,2),(387,-769395600,3),(387,-765396000,1),(387,-84387600,0),(387,-68666400,1),(387,-52938000,0),(387,-37216800,1),(387,-21488400,0),(387,-5767200,1),(387,9961200,0),(387,25682400,1),(387,41410800,0),(387,57736800,1),(387,73465200,0),(387,89186400,1),(387,104914800,0),(387,120636000,1),(387,126687600,0),(387,152085600,1),(387,162370800,0),(387,183535200,1),(387,199263600,0),(387,215589600,1),(387,230713200,0),(387,247039200,1),(387,262767600,0),(387,278488800,1),(387,294217200,0),(387,309938400,1),(387,325666800,0),(387,341388000,1),(387,357116400,0),(387,372837600,1),(387,388566000,0),(387,404892000,1),(387,420015600,0),(387,436341600,1),(387,452070000,0),(387,467791200,1),(387,483519600,0),(387,499240800,1),(387,514969200,0),(387,530690400,1),(387,544604400,0),(387,562140000,1),(387,576054000,0),(387,594194400,1),(387,607503600,0),(387,625644000,1),(387,638953200,0),(387,657093600,1),(387,671007600,0),(387,688543200,1),(387,702457200,0),(387,719992800,1),(387,733906800,0),(387,752047200,1),(387,765356400,0),(387,783496800,1),(387,796806000,0),(387,814946400,1),(387,828860400,0),(387,846396000,1),(387,860310000,0),(387,877845600,1),(387,891759600,0),(387,909295200,1),(387,923209200,0),(387,941349600,1),(387,954658800,0),(387,972799200,1),(387,986108400,0),(387,1004248800,1),(387,1018162800,0),(387,1035698400,1),(387,1049612400,0),(387,1067148000,1),(387,1081062000,0),(387,1099202400,1),(387,1112511600,0),(387,1130652000,1),(387,1143961200,0),(387,1162101600,1),(387,1173596400,0),(387,1194156000,1),(387,1205046000,0),(387,1225605600,1),(387,1236495600,0),(387,1257055200,1),(387,1268550000,0),(387,1289109600,1),(387,1299999600,0),(387,1320559200,1),(387,1331449200,0),(387,1352008800,1),(387,1362898800,0),(387,1383458400,1),(387,1394348400,0),(387,1414908000,1),(387,1425798000,0),(387,1446357600,1),(387,1457852400,0),(387,1478412000,1),(387,1489302000,0),(387,1509861600,1),(387,1520751600,0),(387,1541311200,1),(387,1552201200,0),(387,1572760800,1),(387,1583650800,0),(387,1604210400,1),(387,1615705200,0),(387,1636264800,1),(387,1647154800,0),(387,1667714400,1),(387,1678604400,0),(387,1699164000,1),(387,1710054000,0),(387,1730613600,1),(387,1741503600,0),(387,1762063200,1),(387,1772953200,0),(387,1793512800,1),(387,1805007600,0),(387,1825567200,1),(387,1836457200,0),(387,1857016800,1),(387,1867906800,0),(387,1888466400,1),(387,1899356400,0),(387,1919916000,1),(387,1930806000,0),(387,1951365600,1),(387,1962860400,0),(387,1983420000,1),(387,1994310000,0),(387,2014869600,1),(387,2025759600,0),(387,2046319200,1),(387,2057209200,0),(387,2077768800,1),(387,2088658800,0),(387,2109218400,1),(387,2120108400,0),(387,2140668000,1),(388,-2147483648,2),(388,-929844000,1),(388,-923108400,2),(388,-906170400,1),(388,-892868400,2),(388,-875844000,1),(388,-857790000,2),(388,-844308000,1),(388,-825822000,2),(388,-812685600,1),(388,-794199600,2),(388,-779853600,1),(388,-762663600,2),(388,-399088800,1),(388,-386650800,2),(388,-368330400,1),(388,-355114800,2),(388,-336790800,1),(388,-323654400,2),(388,-305168400,1),(388,-292032000,2),(388,-273632400,1),(388,-260496000,2),(388,-242096400,1),(388,-228960000,2),(388,-210560400,1),(388,-197424000,2),(388,-178938000,1),(388,-165801600,2),(388,-147402000,1),(388,-134265600,2),(388,-115866000,1),(388,-102643200,2),(388,-84330000,1),(388,-71107200,2),(388,-52707600,1),(388,-39484800,2),(388,-21171600,1),(388,-7948800,2),(388,10364400,1),(388,23587200,2),(388,41900400,1),(388,55123200,2),(388,73522800,1),(388,86745600,2),(388,105058800,1),(388,118281600,2),(388,136594800,1),(388,149817600,2),(388,168130800,1),(388,181353600,2),(388,199753200,1),(388,212976000,2),(388,231289200,1),(388,244512000,2),(388,262825200,1),(388,276048000,2),(388,294361200,1),(388,307584000,2),(388,325983600,1),(388,339206400,2),(388,357519600,1),(388,370742400,2),(388,396399600,1),(388,402278400,2),(388,426812400,1),(388,433814400,2),(388,452214000,1),(388,465436800,2),(388,483750000,1),(388,496972800,2),(388,515286000,1),(388,528508800,2),(388,546822000,1),(388,560044800,2),(388,578444400,1),(388,591667200,2),(388,610412400,1),(388,623203200,2),(388,641516400,1),(388,654739200,2),(388,673052400,1),(388,686275200,2),(388,704674800,1),(388,717897600,2),(388,736210800,1),(388,749433600,2),(388,767746800,1),(388,780969600,2),(388,799020000,3),(388,812322000,2),(388,830469600,3),(388,843771600,2),(388,861919200,3),(388,875221200,2),(388,893368800,3),(388,906670800,2),(388,925423200,3),(388,938725200,2),(388,956872800,3),(388,970174800,2),(388,988322400,3),(388,1001624400,2),(388,1019772000,3),(388,1033074000,2),(388,1051221600,3),(388,1064523600,2),(388,1083276000,3),(388,1096578000,2),(388,1114725600,3),(388,1128027600,2),(388,1146175200,3),(388,1158872400,2),(388,1177624800,3),(388,1189112400,2),(388,1209074400,3),(388,1219957200,2),(388,1240524000,3),(388,1250802000,2),(388,1272578400,3),(388,1281474000,2),(388,1284069600,1),(388,1285880400,2),(388,1400191200,1),(388,1403816400,2),(388,1406844000,1),(388,1411678800,2),(389,-2147483648,1),(389,-1691962479,2),(389,-1680471279,4),(389,-1664143200,3),(389,-1650146400,4),(389,-1633903200,3),(389,-1617487200,4),(389,-1601848800,3),(389,-1586037600,4),(389,-1570399200,3),(389,-1552168800,4),(389,-1538344800,3),(389,-1522533600,4),(389,-1517011200,6),(389,-1507500000,5),(389,-1490565600,4),(389,-1473631200,5),(389,-1460930400,4),(389,-1442786400,5),(389,-1428876000,4),(389,-1410732000,5),(389,-1396216800,4),(389,-1379282400,5),(389,-1364767200,4),(389,-1348437600,5),(389,-1333317600,4),(389,-1315778400,5),(389,-1301263200,4),(389,-1284328800,5),(389,-1269813600,4),(389,-1253484000,5),(389,-1238364000,4),(389,-1221429600,5),(389,-1206914400,4),(389,-1189980000,5),(389,-1175464800,4),(389,-1159135200,5),(389,-1143410400,4),(389,-1126476000,5),(389,-1111960800,4),(389,-1095631200,5),(389,-1080511200,4),(389,-1063576800,5),(389,-1049061600,4),(389,-1032127200,5),(389,-1017612000,4),(389,-1001282400,5),(389,-986162400,4),(389,-969228000,5),(389,-950479200,4),(389,-942012000,5),(389,-733356000,4),(389,-719445600,5),(389,-699487200,4),(389,-684972000,5),(389,-668037600,4),(389,-654732000,5),(389,-636588000,4),(389,-622072800,5),(389,-605743200,4),(389,-590623200,5),(389,-574293600,4),(389,-558568800,5),(389,-542239200,4),(389,-527119200,5),(389,-512604000,4),(389,-496274400,5),(389,-481154400,4),(389,-464220000,5),(389,-449704800,4),(389,-432165600,5),(389,-417650400,4),(389,-401320800,5),(389,-386200800,4),(389,-369266400,5),(389,-354751200,4),(389,-337816800,5),(389,-323301600,4),(389,-306972000,5),(389,-291852000,4),(389,-276732000,5),(389,-257983200,4),(389,-245282400,5),(389,-226533600,4),(389,-213228000,5),(389,-195084000,4),(389,-182383200,5),(389,-163634400,4),(389,-150933600,5),(389,-132184800,4),(389,-119484000,5),(389,-100735200,4),(389,-88034400,5),(389,-68680800,4),(389,-59004000,5),(389,-37242000,9),(389,57722400,7),(389,69818400,8),(389,89172000,7),(389,101268000,8),(389,120621600,7),(389,132717600,8),(389,152071200,7),(389,164167200,8),(389,183520800,7),(389,196221600,8),(389,214970400,7),(389,227671200,8),(389,246420000,7),(389,259120800,8),(389,278474400,7),(389,290570400,8),(389,309924000,7),(389,322020000,8),(389,341373600,7),(389,354675600,8),(389,372819600,7),(389,386125200,8),(389,404269200,7),(389,417574800,8),(389,435718800,7),(389,449024400,8),(389,467773200,7),(389,481078800,8),(389,499222800,7),(389,512528400,8),(389,530672400,7),(389,543978000,8),(389,562122000,7),(389,575427600,8),(389,593571600,7),(389,606877200,8),(389,625626000,7),(389,638326800,8),(389,657075600,7),(389,670381200,8),(389,688525200,7),(389,701830800,8),(389,719974800,7),(389,733280400,8),(389,751424400,7),(389,764730000,8),(389,782874000,7),(389,796179600,8),(389,814323600,7),(389,828234000,8),(389,846378000,7),(389,859683600,8),(389,877827600,7),(389,891133200,8),(389,909277200,7),(389,922582800,8),(389,941331600,7),(389,954032400,8),(389,972781200,7),(389,985482000,8),(389,1004230800,7),(389,1017536400,8),(389,1035680400,7),(389,1048986000,8),(389,1067130000,7),(389,1080435600,8),(389,1099184400,7),(389,1111885200,8),(389,1130634000,7),(389,1143334800,8),(389,1162083600,7),(389,1174784400,8),(389,1193533200,7),(389,1206838800,8),(389,1224982800,7),(389,1238288400,8),(389,1256432400,7),(389,1269738000,8),(389,1288486800,7),(389,1301187600,8),(389,1319936400,7),(389,1332637200,8),(389,1351386000,7),(389,1364691600,8),(389,1382835600,7),(389,1396141200,8),(389,1414285200,7),(389,1427590800,8),(389,1445734800,7),(389,1459040400,8),(389,1477789200,7),(389,1490490000,8),(389,1509238800,7),(389,1521939600,8),(389,1540688400,7),(389,1553994000,8),(389,1572138000,7),(389,1585443600,8),(389,1603587600,7),(389,1616893200,8),(389,1635642000,7),(389,1648342800,8),(389,1667091600,7),(389,1679792400,8),(389,1698541200,7),(389,1711846800,8),(389,1729990800,7),(389,1743296400,8),(389,1761440400,7),(389,1774746000,8),(389,1792890000,7),(389,1806195600,8),(389,1824944400,7),(389,1837645200,8),(389,1856394000,7),(389,1869094800,8),(389,1887843600,7),(389,1901149200,8),(389,1919293200,7),(389,1932598800,8),(389,1950742800,7),(389,1964048400,8),(389,1982797200,7),(389,1995498000,8),(389,2014246800,7),(389,2026947600,8),(389,2045696400,7),(389,2058397200,8),(389,2077146000,7),(389,2090451600,8),(389,2108595600,7),(389,2121901200,8),(389,2140045200,7),(425,-2147483648,2),(425,-1693700372,1),(425,-1680484772,2),(425,-1663453172,3),(425,-1650147572,4),(425,-1633213172,3),(425,-1617488372,4),(425,-1601158772,3),(425,-1586038772,4),(425,-1569709172,3),(425,-1554589172,4),(425,-1538259572,3),(425,-1523139572,4),(425,-1507501172,3),(425,-1490566772,4),(425,-1470176372,3),(425,-1459117172,4),(425,-1443997172,3),(425,-1427667572,4),(425,-1406672372,3),(425,-1396217972,4),(425,-1376950772,3),(425,-1364768372,4),(425,-1345414772,3),(425,-1333318772,4),(425,-1313792372,3),(425,-1301264372,4),(425,-1282256372,3),(425,-1269814772,4),(425,-1250720372,3),(425,-1238365172,4),(425,-1219184372,3),(425,-1206915572,4),(425,-1186957172,3),(425,-1175465972,4),(425,-1156025972,3),(425,-1143411572,4),(425,-1124489972,3),(425,-1111961972,4),(425,-1092953972,3),(425,-1080512372,4),(425,-1061331572,3),(425,-1049062772,4),(425,-1029190772,3),(425,-1025745572,7),(425,-1017613200,5),(425,-998259600,6),(425,-986163600,5),(425,-966723600,6),(425,-954109200,5),(425,-935022000,10),(425,-857257200,8),(425,-844556400,9),(425,-828226800,8),(425,-812502000,9),(425,-796777200,8),(425,-781052400,9),(425,-766623600,8),(425,220921200,13),(425,228877200,11),(425,243997200,12),(425,260326800,11),(425,276051600,12),(425,291776400,11),(425,307501200,12),(425,323830800,11),(425,338950800,12),(425,354675600,11),(425,370400400,12),(425,386125200,11),(425,401850000,12),(425,417574800,11),(425,433299600,12),(425,449024400,11),(425,465354000,12),(425,481078800,11),(425,496803600,12),(425,512528400,11),(425,528253200,12),(425,543978000,11),(425,559702800,12),(425,575427600,11),(425,591152400,12),(425,606877200,11),(425,622602000,12),(425,638326800,11),(425,654656400,12),(425,670381200,11),(425,686106000,12),(425,701830800,11),(425,717555600,12),(425,733280400,11),(425,749005200,12),(425,764730000,11),(425,780454800,12),(425,796179600,11),(425,811904400,12),(425,828234000,11),(425,846378000,12),(425,859683600,11),(425,877827600,12),(425,891133200,11),(425,909277200,12),(425,922582800,11),(425,941331600,12),(425,954032400,11),(425,972781200,12),(425,985482000,11),(425,1004230800,12),(425,1017536400,11),(425,1035680400,12),(425,1048986000,11),(425,1067130000,12),(425,1080435600,11),(425,1099184400,12),(425,1111885200,11),(425,1130634000,12),(425,1143334800,11),(425,1162083600,12),(425,1174784400,11),(425,1193533200,12),(425,1206838800,11),(425,1224982800,12),(425,1238288400,11),(425,1256432400,12),(425,1269738000,11),(425,1288486800,12),(425,1301187600,11),(425,1319936400,12),(425,1332637200,11),(425,1351386000,12),(425,1364691600,11),(425,1382835600,12),(425,1396141200,11),(425,1414285200,12),(425,1427590800,11),(425,1445734800,12),(425,1459040400,11),(425,1477789200,12),(425,1490490000,11),(425,1509238800,12),(425,1521939600,11),(425,1540688400,12),(425,1553994000,11),(425,1572138000,12),(425,1585443600,11),(425,1603587600,12),(425,1616893200,11),(425,1635642000,12),(425,1648342800,11),(425,1667091600,12),(425,1679792400,11),(425,1698541200,12),(425,1711846800,11),(425,1729990800,12),(425,1743296400,11),(425,1761440400,12),(425,1774746000,11),(425,1792890000,12),(425,1806195600,11),(425,1824944400,12),(425,1837645200,11),(425,1856394000,12),(425,1869094800,11),(425,1887843600,12),(425,1901149200,11),(425,1919293200,12),(425,1932598800,11),(425,1950742800,12),(425,1964048400,11),(425,1982797200,12),(425,1995498000,11),(425,2014246800,12),(425,2026947600,11),(425,2045696400,12),(425,2058397200,11),(425,2077146000,12),(425,2090451600,11),(425,2108595600,12),(425,2121901200,11),(425,2140045200,12),(426,-2147483648,1),(426,-733881600,2),(426,481078800,3),(426,496803600,4),(426,512528400,3),(426,528253200,4),(426,543978000,3),(426,559702800,4),(426,575427600,3),(426,591152400,4),(426,606877200,3),(426,622602000,4),(426,638326800,3),(426,654656400,4),(426,670381200,3),(426,686106000,4),(426,701830800,3),(426,717555600,4),(426,733280400,3),(426,749005200,4),(426,764730000,3),(426,780454800,4),(426,796179600,3),(426,811904400,4),(426,828234000,3),(426,846378000,4),(426,859683600,3),(426,877827600,4),(426,891133200,3),(426,909277200,4),(426,922582800,3),(426,941331600,4),(426,954032400,3),(426,972781200,4),(426,985482000,3),(426,1004230800,4),(426,1017536400,3),(426,1035680400,4),(426,1048986000,3),(426,1067130000,4),(426,1080435600,3),(426,1099184400,4),(426,1111885200,3),(426,1130634000,4),(426,1143334800,3),(426,1162083600,4),(426,1174784400,3),(426,1193533200,4),(426,1206838800,3),(426,1224982800,4),(426,1238288400,3),(426,1256432400,4),(426,1269738000,3),(426,1288486800,4),(426,1301187600,3),(426,1319936400,4),(426,1332637200,3),(426,1351386000,4),(426,1364691600,3),(426,1382835600,4),(426,1396141200,3),(426,1414285200,4),(426,1427590800,3),(426,1445734800,4),(426,1459040400,3),(426,1477789200,4),(426,1490490000,3),(426,1509238800,4),(426,1521939600,3),(426,1540688400,4),(426,1553994000,3),(426,1572138000,4),(426,1585443600,3),(426,1603587600,4),(426,1616893200,3),(426,1635642000,4),(426,1648342800,3),(426,1667091600,4),(426,1679792400,3),(426,1698541200,4),(426,1711846800,3),(426,1729990800,4),(426,1743296400,3),(426,1761440400,4),(426,1774746000,3),(426,1792890000,4),(426,1806195600,3),(426,1824944400,4),(426,1837645200,3),(426,1856394000,4),(426,1869094800,3),(426,1887843600,4),(426,1901149200,3),(426,1919293200,4),(426,1932598800,3),(426,1950742800,4),(426,1964048400,3),(426,1982797200,4),(426,1995498000,3),(426,2014246800,4),(426,2026947600,3),(426,2045696400,4),(426,2058397200,3),(426,2077146000,4),(426,2090451600,3),(426,2108595600,4),(426,2121901200,3),(426,2140045200,4),(427,-2147483648,0),(427,-1441249932,1),(427,-1247540400,3),(427,354916800,2),(427,370724400,3),(427,386452800,2),(427,402260400,3),(427,417988800,2),(427,433796400,3),(427,449611200,2),(427,465343200,4),(427,481068000,5),(427,496792800,4),(427,512517600,5),(427,528242400,4),(427,543967200,5),(427,559692000,4),(427,575416800,5),(427,591141600,4),(427,606866400,6),(427,622594800,7),(427,638319600,6),(427,654649200,7),(427,670374000,4),(427,701820000,6),(427,717548400,7),(427,733273200,6),(427,748998000,7),(427,764722800,6),(427,780447600,7),(427,796172400,6),(427,811897200,7),(427,828226800,6),(427,846370800,7),(427,859676400,6),(427,877820400,7),(427,891126000,6),(427,909270000,7),(427,922575600,6),(427,941324400,7),(427,954025200,6),(427,972774000,7),(427,985474800,6),(427,1004223600,7),(427,1017529200,6),(427,1035673200,7),(427,1048978800,6),(427,1067122800,7),(427,1080428400,6),(427,1099177200,7),(427,1111878000,6),(427,1130626800,7),(427,1143327600,6),(427,1162076400,7),(427,1174777200,6),(427,1193526000,7),(427,1206831600,6),(427,1224975600,7),(427,1238281200,6),(427,1256425200,7),(427,1269730800,6),(427,1288479600,7),(427,1301180400,4),(427,1414274400,7),(427,1459033200,4),(428,-2147483648,1),(428,-1686101632,3),(428,-1182996000,2),(428,-1178161200,3),(428,-906861600,2),(428,-904878000,5),(428,-857257200,4),(428,-844477200,5),(428,-828237600,4),(428,-812422800,3),(428,-552362400,2),(428,-541652400,3),(428,166485600,6),(428,186184800,7),(428,198028800,6),(428,213753600,7),(428,228873600,6),(428,244080000,7),(428,260323200,6),(428,275446800,3),(428,291798000,2),(428,307407600,3),(428,323388000,2),(428,338936400,3),(428,354675600,8),(428,370400400,9),(428,386125200,8),(428,401850000,9),(428,417574800,8),(428,433299600,9),(428,449024400,8),(428,465354000,9),(428,481078800,8),(428,496803600,9),(428,512528400,8),(428,528253200,9),(428,543978000,8),(428,559702800,9),(428,575427600,8),(428,591152400,9),(428,606877200,8),(428,622602000,9),(428,638326800,8),(428,654656400,9),(428,670381200,8),(428,686106000,9),(428,701830800,8),(428,717555600,9),(428,733280400,8),(428,749005200,9),(428,764730000,8),(428,780454800,9),(428,796179600,8),(428,811904400,9),(428,828234000,8),(428,846378000,9),(428,859683600,8),(428,877827600,9),(428,891133200,8),(428,909277200,9),(428,922582800,8),(428,941331600,9),(428,954032400,8),(428,972781200,9),(428,985482000,8),(428,1004230800,9),(428,1017536400,8),(428,1035680400,9),(428,1048986000,8),(428,1067130000,9),(428,1080435600,8),(428,1099184400,9),(428,1111885200,8),(428,1130634000,9),(428,1143334800,8),(428,1162083600,9),(428,1174784400,8),(428,1193533200,9),(428,1206838800,8),(428,1224982800,9),(428,1238288400,8),(428,1256432400,9),(428,1269738000,8),(428,1288486800,9),(428,1301187600,8),(428,1319936400,9),(428,1332637200,8),(428,1351386000,9),(428,1364691600,8),(428,1382835600,9),(428,1396141200,8),(428,1414285200,9),(428,1427590800,8),(428,1445734800,9),(428,1459040400,8),(428,1477789200,9),(428,1490490000,8),(428,1509238800,9),(428,1521939600,8),(428,1540688400,9),(428,1553994000,8),(428,1572138000,9),(428,1585443600,8),(428,1603587600,9),(428,1616893200,8),(428,1635642000,9),(428,1648342800,8),(428,1667091600,9),(428,1679792400,8),(428,1698541200,9),(428,1711846800,8),(428,1729990800,9),(428,1743296400,8),(428,1761440400,9),(428,1774746000,8),(428,1792890000,9),(428,1806195600,8),(428,1824944400,9),(428,1837645200,8),(428,1856394000,9),(428,1869094800,8),(428,1887843600,9),(428,1901149200,8),(428,1919293200,9),(428,1932598800,8),(428,1950742800,9),(428,1964048400,8),(428,1982797200,9),(428,1995498000,8),(428,2014246800,9),(428,2026947600,8),(428,2045696400,9),(428,2058397200,8),(428,2077146000,9),(428,2090451600,8),(428,2108595600,9),(428,2121901200,8),(428,2140045200,9),(429,-2147483648,2),(429,-1691964000,1),(429,-1680472800,2),(429,-1664143200,1),(429,-1650146400,2),(429,-1633903200,1),(429,-1617487200,2),(429,-1601848800,1),(429,-1586037600,2),(429,-1570399200,1),(429,-1552168800,2),(429,-1538344800,1),(429,-1522533600,2),(429,-1507500000,1),(429,-1490565600,2),(429,-1473631200,1),(429,-1460930400,2),(429,-1442786400,1),(429,-1428876000,2),(429,-1410732000,1),(429,-1396216800,2),(429,-1379282400,1),(429,-1364767200,2),(429,-1348437600,1),(429,-1333317600,2),(429,-1315778400,1),(429,-1301263200,2),(429,-1284328800,1),(429,-1269813600,2),(429,-1253484000,1),(429,-1238364000,2),(429,-1221429600,1),(429,-1206914400,2),(429,-1189980000,1),(429,-1175464800,2),(429,-1159135200,1),(429,-1143410400,2),(429,-1126476000,1),(429,-1111960800,2),(429,-1095631200,1),(429,-1080511200,2),(429,-1063576800,1),(429,-1049061600,2),(429,-1032127200,1),(429,-1017612000,2),(429,-1001282400,1),(429,-986162400,2),(429,-969228000,1),(429,-950479200,2),(429,-942012000,1),(429,-904518000,3),(429,-896050800,1),(429,-875487600,3),(429,-864601200,1),(429,-844038000,3),(429,-832546800,1),(429,-812588400,3),(429,-798073200,1),(429,-781052400,3),(429,-772066800,1),(429,-764805600,2),(429,-748476000,1),(429,-733356000,2),(429,-719445600,1),(429,-717030000,3),(429,-706748400,1),(429,-699487200,2),(429,-687996000,1),(429,-668037600,2),(429,-654732000,1),(429,-636588000,2),(429,-622072800,1),(429,-605743200,2),(429,-590623200,1),(429,-574293600,2),(429,-558568800,1),(429,-542239200,2),(429,-527119200,1),(429,-512604000,2),(429,-496274400,1),(429,-481154400,2),(429,-464220000,1),(429,-449704800,2),(429,-432165600,1),(429,-417650400,2),(429,-401320800,1),(429,-386200800,2),(429,-369266400,1),(429,-354751200,2),(429,-337816800,1),(429,-323301600,2),(429,-306972000,1),(429,-291852000,2),(429,-276732000,1),(429,-257983200,2),(429,-245282400,1),(429,-226533600,2),(429,-213228000,1),(429,-195084000,2),(429,-182383200,1),(429,-163634400,2),(429,-150933600,1),(429,-132184800,2),(429,-119484000,1),(429,-100735200,2),(429,-88034400,1),(429,-68680800,2),(429,-59004000,1),(429,-37242000,4),(429,57722400,6),(429,69818400,1),(429,89172000,2),(429,101268000,1),(429,120621600,2),(429,132717600,1),(429,152071200,2),(429,164167200,1),(429,183520800,2),(429,196221600,1),(429,214970400,2),(429,227671200,1),(429,246420000,2),(429,259120800,1),(429,278474400,2),(429,290570400,1),(429,309924000,2),(429,322020000,1),(429,341373600,2),(429,354675600,5),(429,372819600,6),(429,386125200,5),(429,404269200,6),(429,417574800,5),(429,435718800,6),(429,449024400,5),(429,467773200,6),(429,481078800,5),(429,499222800,6),(429,512528400,5),(429,530672400,6),(429,543978000,5),(429,562122000,6),(429,575427600,5),(429,593571600,6),(429,606877200,5),(429,625626000,6),(429,638326800,5),(429,657075600,6),(429,670381200,5),(429,688525200,6),(429,701830800,5),(429,719974800,6),(429,733280400,5),(429,751424400,6),(429,764730000,5),(429,782874000,6),(429,796179600,5),(429,814323600,6),(429,820454400,7),(429,828234000,5),(429,846378000,6),(429,859683600,5),(429,877827600,6),(429,891133200,5),(429,909277200,6),(429,922582800,5),(429,941331600,6),(429,954032400,5),(429,972781200,6),(429,985482000,5),(429,1004230800,6),(429,1017536400,5),(429,1035680400,6),(429,1048986000,5),(429,1067130000,6),(429,1080435600,5),(429,1099184400,6),(429,1111885200,5),(429,1130634000,6),(429,1143334800,5),(429,1162083600,6),(429,1174784400,5),(429,1193533200,6),(429,1206838800,5),(429,1224982800,6),(429,1238288400,5),(429,1256432400,6),(429,1269738000,5),(429,1288486800,6),(429,1301187600,5),(429,1319936400,6),(429,1332637200,5),(429,1351386000,6),(429,1364691600,5),(429,1382835600,6),(429,1396141200,5),(429,1414285200,6),(429,1427590800,5),(429,1445734800,6),(429,1459040400,5),(429,1477789200,6),(429,1490490000,5),(429,1509238800,6),(429,1521939600,5),(429,1540688400,6),(429,1553994000,5),(429,1572138000,6),(429,1585443600,5),(429,1603587600,6),(429,1616893200,5),(429,1635642000,6),(429,1648342800,5),(429,1667091600,6),(429,1679792400,5),(429,1698541200,6),(429,1711846800,5),(429,1729990800,6),(429,1743296400,5),(429,1761440400,6),(429,1774746000,5),(429,1792890000,6),(429,1806195600,5),(429,1824944400,6),(429,1837645200,5),(429,1856394000,6),(429,1869094800,5),(429,1887843600,6),(429,1901149200,5),(429,1919293200,6),(429,1932598800,5),(429,1950742800,6),(429,1964048400,5),(429,1982797200,6),(429,1995498000,5),(429,2014246800,6),(429,2026947600,5),(429,2045696400,6),(429,2058397200,5),(429,2077146000,6),(429,2090451600,5),(429,2108595600,6),(429,2121901200,5),(429,2140045200,6),(430,-2147483648,1),(430,-905824800,4),(430,-857257200,2),(430,-844556400,3),(430,-828226800,2),(430,-812502000,3),(430,-796777200,2),(430,-788922000,1),(430,-777942000,3),(430,-766623600,2),(430,407199600,1),(430,417574800,5),(430,433299600,6),(430,449024400,5),(430,465354000,6),(430,481078800,5),(430,496803600,6),(430,512528400,5),(430,528253200,6),(430,543978000,5),(430,559702800,6),(430,575427600,5),(430,591152400,6),(430,606877200,5),(430,622602000,6),(430,638326800,5),(430,654656400,6),(430,670381200,5),(430,686106000,6),(430,701830800,5),(430,717555600,6),(430,733280400,5),(430,749005200,6),(430,764730000,5),(430,780454800,6),(430,796179600,5),(430,811904400,6),(430,828234000,5),(430,846378000,6),(430,859683600,5),(430,877827600,6),(430,891133200,5),(430,909277200,6),(430,922582800,5),(430,941331600,6),(430,954032400,5),(430,972781200,6),(430,985482000,5),(430,1004230800,6),(430,1017536400,5),(430,1035680400,6),(430,1048986000,5),(430,1067130000,6),(430,1080435600,5),(430,1099184400,6),(430,1111885200,5),(430,1130634000,6),(430,1143334800,5),(430,1162083600,6),(430,1174784400,5),(430,1193533200,6),(430,1206838800,5),(430,1224982800,6),(430,1238288400,5),(430,1256432400,6),(430,1269738000,5),(430,1288486800,6),(430,1301187600,5),(430,1319936400,6),(430,1332637200,5),(430,1351386000,6),(430,1364691600,5),(430,1382835600,6),(430,1396141200,5),(430,1414285200,6),(430,1427590800,5),(430,1445734800,6),(430,1459040400,5),(430,1477789200,6),(430,1490490000,5),(430,1509238800,6),(430,1521939600,5),(430,1540688400,6),(430,1553994000,5),(430,1572138000,6),(430,1585443600,5),(430,1603587600,6),(430,1616893200,5),(430,1635642000,6),(430,1648342800,5),(430,1667091600,6),(430,1679792400,5),(430,1698541200,6),(430,1711846800,5),(430,1729990800,6),(430,1743296400,5),(430,1761440400,6),(430,1774746000,5),(430,1792890000,6),(430,1806195600,5),(430,1824944400,6),(430,1837645200,5),(430,1856394000,6),(430,1869094800,5),(430,1887843600,6),(430,1901149200,5),(430,1919293200,6),(430,1932598800,5),(430,1950742800,6),(430,1964048400,5),(430,1982797200,6),(430,1995498000,5),(430,2014246800,6),(430,2026947600,5),(430,2045696400,6),(430,2058397200,5),(430,2077146000,6),(430,2090451600,5),(430,2108595600,6),(430,2121901200,5),(430,2140045200,6),(431,-2147483648,2),(431,-1693706400,1),(431,-1680483600,2),(431,-1663455600,3),(431,-1650150000,4),(431,-1632006000,3),(431,-1618700400,4),(431,-938905200,3),(431,-857257200,4),(431,-844556400,3),(431,-828226800,4),(431,-812502000,3),(431,-796777200,4),(431,-781052400,3),(431,-776563200,5),(431,-765936000,1),(431,-761180400,4),(431,-757386000,2),(431,-748479600,3),(431,-733273200,4),(431,-717631200,3),(431,-714610800,6),(431,-710380800,1),(431,-701910000,4),(431,-684975600,3),(431,-670460400,4),(431,-654130800,3),(431,-639010800,4),(431,315529200,2),(431,323830800,7),(431,338950800,8),(431,354675600,7),(431,370400400,8),(431,386125200,7),(431,401850000,8),(431,417574800,7),(431,433299600,8),(431,449024400,7),(431,465354000,8),(431,481078800,7),(431,496803600,8),(431,512528400,7),(431,528253200,8),(431,543978000,7),(431,559702800,8),(431,575427600,7),(431,591152400,8),(431,606877200,7),(431,622602000,8),(431,638326800,7),(431,654656400,8),(431,670381200,7),(431,686106000,8),(431,701830800,7),(431,717555600,8),(431,733280400,7),(431,749005200,8),(431,764730000,7),(431,780454800,8),(431,796179600,7),(431,811904400,8),(431,828234000,7),(431,846378000,8),(431,859683600,7),(431,877827600,8),(431,891133200,7),(431,909277200,8),(431,922582800,7),(431,941331600,8),(431,954032400,7),(431,972781200,8),(431,985482000,7),(431,1004230800,8),(431,1017536400,7),(431,1035680400,8),(431,1048986000,7),(431,1067130000,8),(431,1080435600,7),(431,1099184400,8),(431,1111885200,7),(431,1130634000,8),(431,1143334800,7),(431,1162083600,8),(431,1174784400,7),(431,1193533200,8),(431,1206838800,7),(431,1224982800,8),(431,1238288400,7),(431,1256432400,8),(431,1269738000,7),(431,1288486800,8),(431,1301187600,7),(431,1319936400,8),(431,1332637200,7),(431,1351386000,8),(431,1364691600,7),(431,1382835600,8),(431,1396141200,7),(431,1414285200,8),(431,1427590800,7),(431,1445734800,8),(431,1459040400,7),(431,1477789200,8),(431,1490490000,7),(431,1509238800,8),(431,1521939600,7),(431,1540688400,8),(431,1553994000,7),(431,1572138000,8),(431,1585443600,7),(431,1603587600,8),(431,1616893200,7),(431,1635642000,8),(431,1648342800,7),(431,1667091600,8),(431,1679792400,7),(431,1698541200,8),(431,1711846800,7),(431,1729990800,8),(431,1743296400,7),(431,1761440400,8),(431,1774746000,7),(431,1792890000,8),(431,1806195600,7),(431,1824944400,8),(431,1837645200,7),(431,1856394000,8),(431,1869094800,7),(431,1887843600,8),(431,1901149200,7),(431,1919293200,8),(431,1932598800,7),(431,1950742800,8),(431,1964048400,7),(431,1982797200,8),(431,1995498000,7),(431,2014246800,8),(431,2026947600,7),(431,2045696400,8),(431,2058397200,7),(431,2077146000,8),(431,2090451600,7),(431,2108595600,8),(431,2121901200,7),(431,2140045200,8),(432,-2147483648,2),(432,-1693706400,1),(432,-1680483600,2),(432,-1663455600,3),(432,-1650150000,4),(432,-1632006000,3),(432,-1618700400,4),(432,-938905200,3),(432,-857257200,4),(432,-844556400,3),(432,-828226800,4),(432,-812502000,3),(432,-796777200,4),(432,-781052400,3),(432,-777866400,1),(432,-765327600,4),(432,-746578800,3),(432,-733359600,4),(432,-728517600,5),(432,-721260000,2),(432,-716425200,3),(432,-701910000,4),(432,-684975600,3),(432,-670460400,4),(432,-654217200,3),(432,-639010800,4),(432,283993200,2),(432,291776400,6),(432,307501200,7),(432,323830800,6),(432,338950800,7),(432,354675600,6),(432,370400400,7),(432,386125200,6),(432,401850000,7),(432,417574800,6),(432,433299600,7),(432,449024400,6),(432,465354000,7),(432,481078800,6),(432,496803600,7),(432,512528400,6),(432,528253200,7),(432,543978000,6),(432,559702800,7),(432,575427600,6),(432,591152400,7),(432,606877200,6),(432,622602000,7),(432,638326800,6),(432,654656400,7),(432,670381200,6),(432,686106000,7),(432,701830800,6),(432,717555600,7),(432,733280400,6),(432,749005200,7),(432,764730000,6),(432,780454800,7),(432,796179600,6),(432,811904400,7),(432,828234000,6),(432,846378000,7),(432,859683600,6),(432,877827600,7),(432,891133200,6),(432,909277200,7),(432,922582800,6),(432,941331600,7),(432,954032400,6),(432,972781200,7),(432,985482000,6),(432,1004230800,7),(432,1017536400,6),(432,1035680400,7),(432,1048986000,6),(432,1067130000,7),(432,1080435600,6),(432,1099184400,7),(432,1111885200,6),(432,1130634000,7),(432,1143334800,6),(432,1162083600,7),(432,1174784400,6),(432,1193533200,7),(432,1206838800,6),(432,1224982800,7),(432,1238288400,6),(432,1256432400,7),(432,1269738000,6),(432,1288486800,7),(432,1301187600,6),(432,1319936400,7),(432,1332637200,6),(432,1351386000,7),(432,1364691600,6),(432,1382835600,7),(432,1396141200,6),(432,1414285200,7),(432,1427590800,6),(432,1445734800,7),(432,1459040400,6),(432,1477789200,7),(432,1490490000,6),(432,1509238800,7),(432,1521939600,6),(432,1540688400,7),(432,1553994000,6),(432,1572138000,7),(432,1585443600,6),(432,1603587600,7),(432,1616893200,6),(432,1635642000,7),(432,1648342800,6),(432,1667091600,7),(432,1679792400,6),(432,1698541200,7),(432,1711846800,6),(432,1729990800,7),(432,1743296400,6),(432,1761440400,7),(432,1774746000,6),(432,1792890000,7),(432,1806195600,6),(432,1824944400,7),(432,1837645200,6),(432,1856394000,7),(432,1869094800,6),(432,1887843600,7),(432,1901149200,6),(432,1919293200,7),(432,1932598800,6),(432,1950742800,7),(432,1964048400,6),(432,1982797200,7),(432,1995498000,6),(432,2014246800,7),(432,2026947600,6),(432,2045696400,7),(432,2058397200,6),(432,2077146000,7),(432,2090451600,6),(432,2108595600,7),(432,2121901200,6),(432,2140045200,7),(433,-2147483648,1),(433,-1740355200,2),(433,-1693702800,5),(433,-1680483600,2),(433,-1663455600,3),(433,-1650150000,4),(433,-1632006000,3),(433,-1618700400,4),(433,-1613826000,8),(433,-1604278800,6),(433,-1585530000,7),(433,-1574038800,6),(433,-1552266000,7),(433,-1539997200,6),(433,-1520557200,7),(433,-1507510800,6),(433,-1490576400,7),(433,-1473642000,6),(433,-1459126800,7),(433,-1444006800,6),(433,-1427677200,7),(433,-1411952400,6),(433,-1396227600,7),(433,-1379293200,6),(433,-1364778000,7),(433,-1348448400,6),(433,-1333328400,7),(433,-1316394000,6),(433,-1301263200,7),(433,-1284328800,6),(433,-1269813600,7),(433,-1253484000,6),(433,-1238364000,7),(433,-1221429600,6),(433,-1206914400,7),(433,-1191189600,6),(433,-1175464800,7),(433,-1160344800,6),(433,-1143410400,7),(433,-1127685600,6),(433,-1111960800,7),(433,-1096840800,6),(433,-1080511200,7),(433,-1063576800,6),(433,-1049061600,7),(433,-1033336800,6),(433,-1017612000,7),(433,-1002492000,6),(433,-986162400,7),(433,-969228000,6),(433,-950479200,7),(433,-942012000,6),(433,-934668000,3),(433,-857257200,4),(433,-844556400,3),(433,-828226800,4),(433,-812502000,3),(433,-799293600,5),(433,-798073200,4),(433,-781052400,3),(433,-766623600,4),(433,-745455600,3),(433,-733273200,4),(433,220921200,2),(433,228877200,9),(433,243997200,10),(433,260326800,9),(433,276051600,10),(433,291776400,9),(433,307501200,10),(433,323830800,9),(433,338950800,10),(433,354675600,9),(433,370400400,10),(433,386125200,9),(433,401850000,10),(433,417574800,9),(433,433299600,10),(433,449024400,9),(433,465354000,10),(433,481078800,9),(433,496803600,10),(433,512528400,9),(433,528253200,10),(433,543978000,9),(433,559702800,10),(433,575427600,9),(433,591152400,10),(433,606877200,9),(433,622602000,10),(433,638326800,9),(433,654656400,10),(433,670381200,9),(433,686106000,10),(433,701830800,9),(433,717555600,10),(433,733280400,9),(433,749005200,10),(433,764730000,9),(433,780454800,10),(433,796179600,9),(433,811904400,10),(433,828234000,9),(433,846378000,10),(433,859683600,9),(433,877827600,10),(433,891133200,9),(433,909277200,10),(433,922582800,9),(433,941331600,10),(433,954032400,9),(433,972781200,10),(433,985482000,9),(433,1004230800,10),(433,1017536400,9),(433,1035680400,10),(433,1048986000,9),(433,1067130000,10),(433,1080435600,9),(433,1099184400,10),(433,1111885200,9),(433,1130634000,10),(433,1143334800,9),(433,1162083600,10),(433,1174784400,9),(433,1193533200,10),(433,1206838800,9),(433,1224982800,10),(433,1238288400,9),(433,1256432400,10),(433,1269738000,9),(433,1288486800,10),(433,1301187600,9),(433,1319936400,10),(433,1332637200,9),(433,1351386000,10),(433,1364691600,9),(433,1382835600,10),(433,1396141200,9),(433,1414285200,10),(433,1427590800,9),(433,1445734800,10),(433,1459040400,9),(433,1477789200,10),(433,1490490000,9),(433,1509238800,10),(433,1521939600,9),(433,1540688400,10),(433,1553994000,9),(433,1572138000,10),(433,1585443600,9),(433,1603587600,10),(433,1616893200,9),(433,1635642000,10),(433,1648342800,9),(433,1667091600,10),(433,1679792400,9),(433,1698541200,10),(433,1711846800,9),(433,1729990800,10),(433,1743296400,9),(433,1761440400,10),(433,1774746000,9),(433,1792890000,10),(433,1806195600,9),(433,1824944400,10),(433,1837645200,9),(433,1856394000,10),(433,1869094800,9),(433,1887843600,10),(433,1901149200,9),(433,1919293200,10),(433,1932598800,9),(433,1950742800,10),(433,1964048400,9),(433,1982797200,10),(433,1995498000,9),(433,2014246800,10),(433,2026947600,9),(433,2045696400,10),(433,2058397200,9),(433,2077146000,10),(433,2090451600,9),(433,2108595600,10),(433,2121901200,9),(433,2140045200,10),(434,-2147483648,1),(434,-1213148664,5),(434,-1187056800,2),(434,-1175479200,3),(434,-1159754400,2),(434,-1144029600,3),(434,-1127700000,2),(434,-1111975200,3),(434,-1096250400,2),(434,-1080525600,3),(434,-1064800800,2),(434,-1049076000,3),(434,-1033351200,2),(434,-1017626400,3),(434,-1001901600,2),(434,-986176800,3),(434,-970452000,2),(434,-954727200,3),(434,296604000,4),(434,307486800,5),(434,323816400,4),(434,338940000,5),(434,354672000,2),(434,370396800,3),(434,386121600,2),(434,401846400,3),(434,417571200,2),(434,433296000,3),(434,449020800,2),(434,465350400,3),(434,481075200,2),(434,496800000,3),(434,512524800,2),(434,528249600,3),(434,543974400,2),(434,559699200,3),(434,575424000,2),(434,591148800,3),(434,606873600,2),(434,622598400,3),(434,638323200,2),(434,654652800,3),(434,662680800,5),(434,670370400,2),(434,686095200,3),(434,701820000,2),(434,717544800,3),(434,733269600,2),(434,748994400,3),(434,757375200,5),(434,764719200,4),(434,780440400,5),(434,796168800,4),(434,811890000,5),(434,828223200,4),(434,846363600,5),(434,859683600,6),(434,877827600,7),(434,891133200,6),(434,909277200,7),(434,922582800,6),(434,941331600,7),(434,954032400,6),(434,972781200,7),(434,985482000,6),(434,1004230800,7),(434,1017536400,6),(434,1035680400,7),(434,1048986000,6),(434,1067130000,7),(434,1080435600,6),(434,1099184400,7),(434,1111885200,6),(434,1130634000,7),(434,1143334800,6),(434,1162083600,7),(434,1174784400,6),(434,1193533200,7),(434,1206838800,6),(434,1224982800,7),(434,1238288400,6),(434,1256432400,7),(434,1269738000,6),(434,1288486800,7),(434,1301187600,6),(434,1319936400,7),(434,1332637200,6),(434,1351386000,7),(434,1364691600,6),(434,1382835600,7),(434,1396141200,6),(434,1414285200,7),(434,1427590800,6),(434,1445734800,7),(434,1459040400,6),(434,1477789200,7),(434,1490490000,6),(434,1509238800,7),(434,1521939600,6),(434,1540688400,7),(434,1553994000,6),(434,1572138000,7),(434,1585443600,6),(434,1603587600,7),(434,1616893200,6),(434,1635642000,7),(434,1648342800,6),(434,1667091600,7),(434,1679792400,6),(434,1698541200,7),(434,1711846800,6),(434,1729990800,7),(434,1743296400,6),(434,1761440400,7),(434,1774746000,6),(434,1792890000,7),(434,1806195600,6),(434,1824944400,7),(434,1837645200,6),(434,1856394000,7),(434,1869094800,6),(434,1887843600,7),(434,1901149200,6),(434,1919293200,7),(434,1932598800,6),(434,1950742800,7),(434,1964048400,6),(434,1982797200,7),(434,1995498000,6),(434,2014246800,7),(434,2026947600,6),(434,2045696400,7),(434,2058397200,6),(434,2077146000,7),(434,2090451600,6),(434,2108595600,7),(434,2121901200,6),(434,2140045200,7),(435,-2147483648,2),(435,-1693706400,1),(435,-1680483600,2),(435,-1663455600,3),(435,-1650150000,4),(435,-1640998800,2),(435,-1633212000,1),(435,-1618700400,2),(435,-1600466400,1),(435,-1581202800,2),(435,-906771600,1),(435,-857257200,4),(435,-844556400,3),(435,-828226800,4),(435,-812502000,3),(435,-796777200,4),(435,-788922000,2),(435,-778471200,1),(435,-762660000,2),(435,-749689200,3),(435,-733359600,4),(435,-717634800,3),(435,-701910000,4),(435,-686185200,3),(435,-670460400,4),(435,-654130800,3),(435,-639010800,4),(435,-621990000,3),(435,-605660400,4),(435,-492656400,1),(435,-481168800,2),(435,-461120400,1),(435,-449632800,2),(435,-428547600,1),(435,-418269600,2),(435,-397094400,1),(435,-386809200,2),(435,323827200,1),(435,338950800,5),(435,354675600,6),(435,370400400,5),(435,386125200,6),(435,401850000,5),(435,417574800,6),(435,433299600,5),(435,449024400,6),(435,465354000,5),(435,481078800,6),(435,496803600,5),(435,512528400,6),(435,528253200,5),(435,543978000,6),(435,559702800,5),(435,575427600,6),(435,591152400,5),(435,606877200,6),(435,622602000,5),(435,638326800,6),(435,654656400,5),(435,670381200,6),(435,686106000,5),(435,701830800,6),(435,717555600,5),(435,733280400,6),(435,749005200,5),(435,764730000,6),(435,780454800,5),(435,796179600,6),(435,811904400,5),(435,828234000,6),(435,846378000,5),(435,859683600,6),(435,877827600,5),(435,891133200,6),(435,909277200,5),(435,922582800,6),(435,941331600,5),(435,954032400,6),(435,972781200,5),(435,985482000,6),(435,1004230800,5),(435,1017536400,6),(435,1035680400,5),(435,1048986000,6),(435,1067130000,5),(435,1080435600,6),(435,1099184400,5),(435,1111885200,6),(435,1130634000,5),(435,1143334800,6),(435,1162083600,5),(435,1174784400,6),(435,1193533200,5),(435,1206838800,6),(435,1224982800,5),(435,1238288400,6),(435,1256432400,5),(435,1269738000,6),(435,1288486800,5),(435,1301187600,6),(435,1319936400,5),(435,1332637200,6),(435,1351386000,5),(435,1364691600,6),(435,1382835600,5),(435,1396141200,6),(435,1414285200,5),(435,1427590800,6),(435,1445734800,5),(435,1459040400,6),(435,1477789200,5),(435,1490490000,6),(435,1509238800,5),(435,1521939600,6),(435,1540688400,5),(435,1553994000,6),(435,1572138000,5),(435,1585443600,6),(435,1603587600,5),(435,1616893200,6),(435,1635642000,5),(435,1648342800,6),(435,1667091600,5),(435,1679792400,6),(435,1698541200,5),(435,1711846800,6),(435,1729990800,5),(435,1743296400,6),(435,1761440400,5),(435,1774746000,6),(435,1792890000,5),(435,1806195600,6),(435,1824944400,5),(435,1837645200,6),(435,1856394000,5),(435,1869094800,6),(435,1887843600,5),(435,1901149200,6),(435,1919293200,5),(435,1932598800,6),(435,1950742800,5),(435,1964048400,6),(435,1982797200,5),(435,1995498000,6),(435,2014246800,5),(435,2026947600,6),(435,2045696400,5),(435,2058397200,6),(435,2077146000,5),(435,2090451600,6),(435,2108595600,5),(435,2121901200,6),(435,2140045200,5),(436,-2147483648,2),(436,-904435200,1),(436,-891129600,2),(436,-872985600,1),(436,-859680000,2),(436,354675600,3),(436,370400400,4),(436,386125200,3),(436,401850000,4),(436,417574800,3),(436,433299600,4),(436,449024400,3),(436,465354000,4),(436,481078800,3),(436,496803600,4),(436,512528400,3),(436,528253200,4),(436,543978000,3),(436,559702800,4),(436,575427600,3),(436,591152400,4),(436,606877200,3),(436,622602000,4),(436,638326800,3),(436,654656400,4),(436,670381200,3),(436,686106000,4),(436,701830800,3),(436,717555600,4),(436,733280400,3),(436,749005200,4),(436,764730000,3),(436,780454800,4),(436,796179600,3),(436,811904400,4),(436,828234000,3),(436,846378000,4),(436,859683600,3),(436,877827600,4),(436,891133200,3),(436,909277200,4),(436,922582800,3),(436,941331600,4),(436,954032400,3),(436,972781200,4),(436,985482000,3),(436,1004230800,4),(436,1017536400,3),(436,1035680400,4),(436,1048986000,3),(436,1067130000,4),(436,1080435600,3),(436,1099184400,4),(436,1111885200,3),(436,1130634000,4),(436,1143334800,3),(436,1162083600,4),(436,1174784400,3),(436,1193533200,4),(436,1206838800,3),(436,1224982800,4),(436,1238288400,3),(436,1256432400,4),(436,1269738000,3),(436,1288486800,4),(436,1301187600,3),(436,1319936400,4),(436,1332637200,3),(436,1351386000,4),(436,1364691600,3),(436,1382835600,4),(436,1396141200,3),(436,1414285200,4),(436,1427590800,3),(436,1445734800,4),(436,1459040400,3),(436,1477789200,4),(436,1490490000,3),(436,1509238800,4),(436,1521939600,3),(436,1540688400,4),(436,1553994000,3),(436,1572138000,4),(436,1585443600,3),(436,1603587600,4),(436,1616893200,3),(436,1635642000,4),(436,1648342800,3),(436,1667091600,4),(436,1679792400,3),(436,1698541200,4),(436,1711846800,3),(436,1729990800,4),(436,1743296400,3),(436,1761440400,4),(436,1774746000,3),(436,1792890000,4),(436,1806195600,3),(436,1824944400,4),(436,1837645200,3),(436,1856394000,4),(436,1869094800,3),(436,1887843600,4),(436,1901149200,3),(436,1919293200,4),(436,1932598800,3),(436,1950742800,4),(436,1964048400,3),(436,1982797200,4),(436,1995498000,3),(436,2014246800,4),(436,2026947600,3),(436,2045696400,4),(436,2058397200,3),(436,2077146000,4),(436,2090451600,3),(436,2108595600,4),(436,2121901200,3),(436,2140045200,4),(437,-2147483648,1),(437,-1637114100,2),(437,-1213148664,5),(437,-1187056800,3),(437,-1175479200,4),(437,-1159754400,3),(437,-1144029600,4),(437,-1127700000,3),(437,-1111975200,4),(437,-1096250400,3),(437,-1080525600,4),(437,-1064800800,3),(437,-1049076000,4),(437,-1033351200,3),(437,-1017626400,4),(437,-1001901600,3),(437,-986176800,4),(437,-970452000,3),(437,-954727200,4),(437,-927165600,6),(437,-898138800,9),(437,-857257200,7),(437,-844556400,8),(437,-828226800,7),(437,-812502000,8),(437,-800157600,11),(437,354920400,10),(437,370728000,11),(437,386456400,10),(437,402264000,11),(437,417992400,10),(437,433800000,11),(437,449614800,10),(437,465346800,12),(437,481071600,13),(437,496796400,12),(437,512521200,13),(437,528246000,12),(437,543970800,13),(437,559695600,12),(437,575420400,13),(437,591145200,12),(437,606870000,13),(437,622594800,12),(437,638319600,13),(437,641944800,6),(437,654652800,4),(437,670377600,3),(437,686102400,4),(437,694216800,5),(437,701820000,6),(437,717541200,5),(437,733269600,6),(437,748990800,5),(437,764719200,6),(437,780440400,5),(437,796168800,6),(437,811890000,5),(437,828223200,6),(437,846363600,5),(437,859680000,6),(437,877824000,5),(437,891129600,6),(437,909273600,5),(437,922579200,6),(437,941328000,5),(437,954028800,6),(437,972777600,5),(437,985478400,6),(437,1004227200,5),(437,1017532800,6),(437,1035676800,5),(437,1048982400,6),(437,1067126400,5),(437,1080432000,6),(437,1099180800,5),(437,1111881600,6),(437,1130630400,5),(437,1143331200,6),(437,1162080000,5),(437,1174780800,6),(437,1193529600,5),(437,1206835200,6),(437,1224979200,5),(437,1238284800,6),(437,1256428800,5),(437,1269734400,6),(437,1288483200,5),(437,1301184000,6),(437,1319932800,5),(437,1332633600,6),(437,1351382400,5),(437,1364688000,6),(437,1382832000,5),(437,1396137600,6),(437,1414281600,5),(437,1427587200,6),(437,1445731200,5),(437,1459036800,6),(437,1477785600,5),(437,1490486400,6),(437,1509235200,5),(437,1521936000,6),(437,1540684800,5),(437,1553990400,6),(437,1572134400,5),(437,1585440000,6),(437,1603584000,5),(437,1616889600,6),(437,1635638400,5),(437,1648339200,6),(437,1667088000,5),(437,1679788800,6),(437,1698537600,5),(437,1711843200,6),(437,1729987200,5),(437,1743292800,6),(437,1761436800,5),(437,1774742400,6),(437,1792886400,5),(437,1806192000,6),(437,1824940800,5),(437,1837641600,6),(437,1856390400,5),(437,1869091200,6),(437,1887840000,5),(437,1901145600,6),(437,1919289600,5),(437,1932595200,6),(437,1950739200,5),(437,1964044800,6),(437,1982793600,5),(437,1995494400,6),(437,2014243200,5),(437,2026944000,6),(437,2045692800,5),(437,2058393600,6),(437,2077142400,5),(437,2090448000,6),(437,2108592000,5),(437,2121897600,6),(437,2140041600,5),(438,-2147483648,2),(438,-1692496800,1),(438,-1680490800,2),(438,-935110800,1),(438,-857257200,3),(438,-844556400,4),(438,-828226800,3),(438,-812502000,4),(438,-796777200,3),(438,-781052400,4),(438,-769388400,3),(438,-747010800,4),(438,-736383600,3),(438,-715215600,4),(438,-706748400,3),(438,-683161200,4),(438,-675298800,3),(438,315529200,2),(438,323830800,5),(438,338950800,6),(438,354675600,5),(438,370400400,6),(438,386125200,5),(438,401850000,6),(438,417574800,5),(438,433299600,6),(438,449024400,5),(438,465354000,6),(438,481078800,5),(438,496803600,6),(438,512528400,5),(438,528253200,6),(438,543978000,5),(438,559702800,6),(438,575427600,5),(438,591152400,6),(438,606877200,5),(438,622602000,6),(438,638326800,5),(438,654656400,6),(438,670381200,5),(438,686106000,6),(438,701830800,5),(438,717555600,6),(438,733280400,5),(438,749005200,6),(438,764730000,5),(438,780454800,6),(438,796179600,5),(438,811904400,6),(438,828234000,5),(438,846378000,6),(438,859683600,5),(438,877827600,6),(438,891133200,5),(438,909277200,6),(438,922582800,5),(438,941331600,6),(438,954032400,5),(438,972781200,6),(438,985482000,5),(438,1004230800,6),(438,1017536400,5),(438,1035680400,6),(438,1048986000,5),(438,1067130000,6),(438,1080435600,5),(438,1099184400,6),(438,1111885200,5),(438,1130634000,6),(438,1143334800,5),(438,1162083600,6),(438,1174784400,5),(438,1193533200,6),(438,1206838800,5),(438,1224982800,6),(438,1238288400,5),(438,1256432400,6),(438,1269738000,5),(438,1288486800,6),(438,1301187600,5),(438,1319936400,6),(438,1332637200,5),(438,1351386000,6),(438,1364691600,5),(438,1382835600,6),(438,1396141200,5),(438,1414285200,6),(438,1427590800,5),(438,1445734800,6),(438,1459040400,5),(438,1477789200,6),(438,1490490000,5),(438,1509238800,6),(438,1521939600,5),(438,1540688400,6),(438,1553994000,5),(438,1572138000,6),(438,1585443600,5),(438,1603587600,6),(438,1616893200,5),(438,1635642000,6),(438,1648342800,5),(438,1667091600,6),(438,1679792400,5),(438,1698541200,6),(438,1711846800,5),(438,1729990800,6),(438,1743296400,5),(438,1761440400,6),(438,1774746000,5),(438,1792890000,6),(438,1806195600,5),(438,1824944400,6),(438,1837645200,5),(438,1856394000,6),(438,1869094800,5),(438,1887843600,6),(438,1901149200,5),(438,1919293200,6),(438,1932598800,5),(438,1950742800,6),(438,1964048400,5),(438,1982797200,6),(438,1995498000,5),(438,2014246800,6),(438,2026947600,5),(438,2045696400,6),(438,2058397200,5),(438,2077146000,6),(438,2090451600,5),(438,2108595600,6),(438,2121901200,5),(438,2140045200,6),(439,-2147483648,1),(439,-1691962479,2),(439,-1680471279,4),(439,-1664143200,3),(439,-1650146400,4),(439,-1633903200,3),(439,-1617487200,4),(439,-1601848800,3),(439,-1586037600,4),(439,-1570399200,3),(439,-1552168800,4),(439,-1538344800,3),(439,-1522533600,4),(439,-1517011200,6),(439,-1507500000,5),(439,-1490565600,4),(439,-1473631200,5),(439,-1460930400,4),(439,-1442786400,5),(439,-1428876000,4),(439,-1410732000,5),(439,-1396216800,4),(439,-1379282400,5),(439,-1364767200,4),(439,-1348437600,5),(439,-1333317600,4),(439,-1315778400,5),(439,-1301263200,4),(439,-1284328800,5),(439,-1269813600,4),(439,-1253484000,5),(439,-1238364000,4),(439,-1221429600,5),(439,-1206914400,4),(439,-1189980000,5),(439,-1175464800,4),(439,-1159135200,5),(439,-1143410400,4),(439,-1126476000,5),(439,-1111960800,4),(439,-1095631200,5),(439,-1080511200,4),(439,-1063576800,5),(439,-1049061600,4),(439,-1032127200,5),(439,-1017612000,4),(439,-1001282400,5),(439,-986162400,4),(439,-969228000,5),(439,-950479200,4),(439,-942012000,5),(439,-733356000,4),(439,-719445600,5),(439,-699487200,4),(439,-684972000,5),(439,-668037600,4),(439,-654732000,5),(439,-636588000,4),(439,-622072800,5),(439,-605743200,4),(439,-590623200,5),(439,-574293600,4),(439,-558568800,5),(439,-542239200,4),(439,-527119200,5),(439,-512604000,4),(439,-496274400,5),(439,-481154400,4),(439,-464220000,5),(439,-449704800,4),(439,-432165600,5),(439,-417650400,4),(439,-401320800,5),(439,-386200800,4),(439,-369266400,5),(439,-354751200,4),(439,-337816800,5),(439,-323301600,4),(439,-306972000,5),(439,-291852000,4),(439,-276732000,5),(439,-257983200,4),(439,-245282400,5),(439,-226533600,4),(439,-213228000,5),(439,-195084000,4),(439,-182383200,5),(439,-163634400,4),(439,-150933600,5),(439,-132184800,4),(439,-119484000,5),(439,-100735200,4),(439,-88034400,5),(439,-68680800,4),(439,-59004000,5),(439,-37242000,9),(439,57722400,7),(439,69818400,8),(439,89172000,7),(439,101268000,8),(439,120621600,7),(439,132717600,8),(439,152071200,7),(439,164167200,8),(439,183520800,7),(439,196221600,8),(439,214970400,7),(439,227671200,8),(439,246420000,7),(439,259120800,8),(439,278474400,7),(439,290570400,8),(439,309924000,7),(439,322020000,8),(439,341373600,7),(439,354675600,8),(439,372819600,7),(439,386125200,8),(439,404269200,7),(439,417574800,8),(439,435718800,7),(439,449024400,8),(439,467773200,7),(439,481078800,8),(439,499222800,7),(439,512528400,8),(439,530672400,7),(439,543978000,8),(439,562122000,7),(439,575427600,8),(439,593571600,7),(439,606877200,8),(439,625626000,7),(439,638326800,8),(439,657075600,7),(439,670381200,8),(439,688525200,7),(439,701830800,8),(439,719974800,7),(439,733280400,8),(439,751424400,7),(439,764730000,8),(439,782874000,7),(439,796179600,8),(439,814323600,7),(439,828234000,8),(439,846378000,7),(439,859683600,8),(439,877827600,7),(439,891133200,8),(439,909277200,7),(439,922582800,8),(439,941331600,7),(439,954032400,8),(439,972781200,7),(439,985482000,8),(439,1004230800,7),(439,1017536400,8),(439,1035680400,7),(439,1048986000,8),(439,1067130000,7),(439,1080435600,8),(439,1099184400,7),(439,1111885200,8),(439,1130634000,7),(439,1143334800,8),(439,1162083600,7),(439,1174784400,8),(439,1193533200,7),(439,1206838800,8),(439,1224982800,7),(439,1238288400,8),(439,1256432400,7),(439,1269738000,8),(439,1288486800,7),(439,1301187600,8),(439,1319936400,7),(439,1332637200,8),(439,1351386000,7),(439,1364691600,8),(439,1382835600,7),(439,1396141200,8),(439,1414285200,7),(439,1427590800,8),(439,1445734800,7),(439,1459040400,8),(439,1477789200,7),(439,1490490000,8),(439,1509238800,7),(439,1521939600,8),(439,1540688400,7),(439,1553994000,8),(439,1572138000,7),(439,1585443600,8),(439,1603587600,7),(439,1616893200,8),(439,1635642000,7),(439,1648342800,8),(439,1667091600,7),(439,1679792400,8),(439,1698541200,7),(439,1711846800,8),(439,1729990800,7),(439,1743296400,8),(439,1761440400,7),(439,1774746000,8),(439,1792890000,7),(439,1806195600,8),(439,1824944400,7),(439,1837645200,8),(439,1856394000,7),(439,1869094800,8),(439,1887843600,7),(439,1901149200,8),(439,1919293200,7),(439,1932598800,8),(439,1950742800,7),(439,1964048400,8),(439,1982797200,7),(439,1995498000,8),(439,2014246800,7),(439,2026947600,8),(439,2045696400,7),(439,2058397200,8),(439,2077146000,7),(439,2090451600,8),(439,2108595600,7),(439,2121901200,8),(439,2140045200,7),(440,-2147483648,2),(440,-1691964000,1),(440,-1680472800,2),(440,-1664143200,1),(440,-1650146400,2),(440,-1633903200,1),(440,-1617487200,2),(440,-1601848800,1),(440,-1586037600,2),(440,-1570399200,1),(440,-1552168800,2),(440,-1538344800,1),(440,-1522533600,2),(440,-1507500000,1),(440,-1490565600,2),(440,-1473631200,1),(440,-1460930400,2),(440,-1442786400,1),(440,-1428876000,2),(440,-1410732000,1),(440,-1396216800,2),(440,-1379282400,1),(440,-1364767200,2),(440,-1348437600,1),(440,-1333317600,2),(440,-1315778400,1),(440,-1301263200,2),(440,-1284328800,1),(440,-1269813600,2),(440,-1253484000,1),(440,-1238364000,2),(440,-1221429600,1),(440,-1206914400,2),(440,-1189980000,1),(440,-1175464800,2),(440,-1159135200,1),(440,-1143410400,2),(440,-1126476000,1),(440,-1111960800,2),(440,-1095631200,1),(440,-1080511200,2),(440,-1063576800,1),(440,-1049061600,2),(440,-1032127200,1),(440,-1017612000,2),(440,-1001282400,1),(440,-986162400,2),(440,-969228000,1),(440,-950479200,2),(440,-942012000,1),(440,-904518000,3),(440,-896050800,1),(440,-875487600,3),(440,-864601200,1),(440,-844038000,3),(440,-832546800,1),(440,-812588400,3),(440,-798073200,1),(440,-781052400,3),(440,-772066800,1),(440,-764805600,2),(440,-748476000,1),(440,-733356000,2),(440,-719445600,1),(440,-717030000,3),(440,-706748400,1),(440,-699487200,2),(440,-687996000,1),(440,-668037600,2),(440,-654732000,1),(440,-636588000,2),(440,-622072800,1),(440,-605743200,2),(440,-590623200,1),(440,-574293600,2),(440,-558568800,1),(440,-542239200,2),(440,-527119200,1),(440,-512604000,2),(440,-496274400,1),(440,-481154400,2),(440,-464220000,1),(440,-449704800,2),(440,-432165600,1),(440,-417650400,2),(440,-401320800,4),(440,386125200,5),(440,401850000,6),(440,417574800,5),(440,433299600,6),(440,449024400,5),(440,465354000,6),(440,481078800,5),(440,496803600,6),(440,512528400,5),(440,528253200,6),(440,543978000,5),(440,559702800,6),(440,575427600,5),(440,591152400,6),(440,606877200,5),(440,622602000,6),(440,638326800,5),(440,654656400,6),(440,670381200,5),(440,686106000,6),(440,701830800,5),(440,717555600,6),(440,733280400,5),(440,749005200,6),(440,764730000,5),(440,780454800,6),(440,796179600,5),(440,811904400,6),(440,828234000,5),(440,846378000,6),(440,859683600,5),(440,877827600,6),(440,891133200,5),(440,909277200,6),(440,922582800,5),(440,941331600,6),(440,954032400,5),(440,972781200,6),(440,985482000,5),(440,1004230800,6),(440,1017536400,5),(440,1035680400,6),(440,1048986000,5),(440,1067130000,6),(440,1080435600,5),(440,1099184400,6),(440,1111885200,5),(440,1130634000,6),(440,1143334800,5),(440,1162083600,6),(440,1174784400,5),(440,1193533200,6),(440,1206838800,5),(440,1224982800,6),(440,1238288400,5),(440,1256432400,6),(440,1269738000,5),(440,1288486800,6),(440,1301187600,5),(440,1319936400,6),(440,1332637200,5),(440,1351386000,6),(440,1364691600,5),(440,1382835600,6),(440,1396141200,5),(440,1414285200,6),(440,1427590800,5),(440,1445734800,6),(440,1459040400,5),(440,1477789200,6),(440,1490490000,5),(440,1509238800,6),(440,1521939600,5),(440,1540688400,6),(440,1553994000,5),(440,1572138000,6),(440,1585443600,5),(440,1603587600,6),(440,1616893200,5),(440,1635642000,6),(440,1648342800,5),(440,1667091600,6),(440,1679792400,5),(440,1698541200,6),(440,1711846800,5),(440,1729990800,6),(440,1743296400,5),(440,1761440400,6),(440,1774746000,5),(440,1792890000,6),(440,1806195600,5),(440,1824944400,6),(440,1837645200,5),(440,1856394000,6),(440,1869094800,5),(440,1887843600,6),(440,1901149200,5),(440,1919293200,6),(440,1932598800,5),(440,1950742800,6),(440,1964048400,5),(440,1982797200,6),(440,1995498000,5),(440,2014246800,6),(440,2026947600,5),(440,2045696400,6),(440,2058397200,5),(440,2077146000,6),(440,2090451600,5),(440,2108595600,6),(440,2121901200,5),(440,2140045200,6),(441,-2147483648,2),(441,-1691964000,1),(441,-1680472800,2),(441,-1664143200,1),(441,-1650146400,2),(441,-1633903200,1),(441,-1617487200,2),(441,-1601848800,1),(441,-1586037600,2),(441,-1570399200,1),(441,-1552168800,2),(441,-1538344800,1),(441,-1522533600,2),(441,-1507500000,1),(441,-1490565600,2),(441,-1473631200,1),(441,-1460930400,2),(441,-1442786400,1),(441,-1428876000,2),(441,-1410732000,1),(441,-1396216800,2),(441,-1379282400,1),(441,-1364767200,2),(441,-1348437600,1),(441,-1333317600,2),(441,-1315778400,1),(441,-1301263200,2),(441,-1284328800,1),(441,-1269813600,2),(441,-1253484000,1),(441,-1238364000,2),(441,-1221429600,1),(441,-1206914400,2),(441,-1189980000,1),(441,-1175464800,2),(441,-1159135200,1),(441,-1143410400,2),(441,-1126476000,1),(441,-1111960800,2),(441,-1095631200,1),(441,-1080511200,2),(441,-1063576800,1),(441,-1049061600,2),(441,-1032127200,1),(441,-1017612000,2),(441,-1001282400,1),(441,-986162400,2),(441,-969228000,1),(441,-950479200,2),(441,-942012000,1),(441,-904518000,3),(441,-896050800,1),(441,-875487600,3),(441,-864601200,1),(441,-844038000,3),(441,-832546800,1),(441,-812588400,3),(441,-798073200,1),(441,-781052400,3),(441,-772066800,1),(441,-764805600,2),(441,-748476000,1),(441,-733356000,2),(441,-719445600,1),(441,-717030000,3),(441,-706748400,1),(441,-699487200,2),(441,-687996000,1),(441,-668037600,2),(441,-654732000,1),(441,-636588000,2),(441,-622072800,1),(441,-605743200,2),(441,-590623200,1),(441,-574293600,2),(441,-558568800,1),(441,-542239200,2),(441,-527119200,1),(441,-512604000,2),(441,-496274400,1),(441,-481154400,2),(441,-464220000,1),(441,-449704800,2),(441,-432165600,1),(441,-417650400,2),(441,-401320800,1),(441,-386200800,2),(441,-369266400,1),(441,-354751200,2),(441,-337816800,1),(441,-323301600,2),(441,-306972000,1),(441,-291852000,2),(441,-276732000,1),(441,-257983200,2),(441,-245282400,1),(441,-226533600,2),(441,-213228000,1),(441,-195084000,2),(441,-182383200,1),(441,-163634400,2),(441,-150933600,1),(441,-132184800,2),(441,-119484000,1),(441,-100735200,2),(441,-88034400,1),(441,-68680800,2),(441,-59004000,1),(441,-37242000,4),(441,57722400,6),(441,69818400,1),(441,89172000,2),(441,101268000,1),(441,120621600,2),(441,132717600,1),(441,152071200,2),(441,164167200,1),(441,183520800,2),(441,196221600,1),(441,214970400,2),(441,227671200,1),(441,246420000,2),(441,259120800,1),(441,278474400,2),(441,290570400,1),(441,309924000,2),(441,322020000,1),(441,341373600,2),(441,354675600,5),(441,372819600,6),(441,386125200,5),(441,404269200,6),(441,417574800,5),(441,435718800,6),(441,449024400,5),(441,467773200,6),(441,481078800,5),(441,499222800,6),(441,512528400,5),(441,530672400,6),(441,543978000,5),(441,562122000,6),(441,575427600,5),(441,593571600,6),(441,606877200,5),(441,625626000,6),(441,638326800,5),(441,657075600,6),(441,670381200,5),(441,688525200,6),(441,701830800,5),(441,719974800,6),(441,733280400,5),(441,751424400,6),(441,764730000,5),(441,782874000,6),(441,796179600,5),(441,814323600,6),(441,820454400,7),(441,828234000,5),(441,846378000,6),(441,859683600,5),(441,877827600,6),(441,891133200,5),(441,909277200,6),(441,922582800,5),(441,941331600,6),(441,954032400,5),(441,972781200,6),(441,985482000,5),(441,1004230800,6),(441,1017536400,5),(441,1035680400,6),(441,1048986000,5),(441,1067130000,6),(441,1080435600,5),(441,1099184400,6),(441,1111885200,5),(441,1130634000,6),(441,1143334800,5),(441,1162083600,6),(441,1174784400,5),(441,1193533200,6),(441,1206838800,5),(441,1224982800,6),(441,1238288400,5),(441,1256432400,6),(441,1269738000,5),(441,1288486800,6),(441,1301187600,5),(441,1319936400,6),(441,1332637200,5),(441,1351386000,6),(441,1364691600,5),(441,1382835600,6),(441,1396141200,5),(441,1414285200,6),(441,1427590800,5),(441,1445734800,6),(441,1459040400,5),(441,1477789200,6),(441,1490490000,5),(441,1509238800,6),(441,1521939600,5),(441,1540688400,6),(441,1553994000,5),(441,1572138000,6),(441,1585443600,5),(441,1603587600,6),(441,1616893200,5),(441,1635642000,6),(441,1648342800,5),(441,1667091600,6),(441,1679792400,5),(441,1698541200,6),(441,1711846800,5),(441,1729990800,6),(441,1743296400,5),(441,1761440400,6),(441,1774746000,5),(441,1792890000,6),(441,1806195600,5),(441,1824944400,6),(441,1837645200,5),(441,1856394000,6),(441,1869094800,5),(441,1887843600,6),(441,1901149200,5),(441,1919293200,6),(441,1932598800,5),(441,1950742800,6),(441,1964048400,5),(441,1982797200,6),(441,1995498000,5),(441,2014246800,6),(441,2026947600,5),(441,2045696400,6),(441,2058397200,5),(441,2077146000,6),(441,2090451600,5),(441,2108595600,6),(441,2121901200,5),(441,2140045200,6),(442,-2147483648,1),(442,-1535938789,3),(442,-875671200,2),(442,-859773600,3),(442,354672000,2),(442,370396800,3),(442,386121600,2),(442,401846400,3),(442,417574800,4),(442,433299600,5),(442,449024400,4),(442,465354000,5),(442,481078800,4),(442,496803600,5),(442,512528400,4),(442,528253200,5),(442,543978000,4),(442,559702800,5),(442,575427600,4),(442,591152400,5),(442,606877200,4),(442,622602000,5),(442,638326800,4),(442,654656400,5),(442,670381200,4),(442,686106000,5),(442,701830800,4),(442,717555600,5),(442,733280400,4),(442,749005200,5),(442,764730000,4),(442,780454800,5),(442,796179600,4),(442,811904400,5),(442,828234000,4),(442,846378000,5),(442,859683600,4),(442,877827600,5),(442,891133200,4),(442,909277200,5),(442,922582800,4),(442,941331600,5),(442,954032400,4),(442,972781200,5),(442,985482000,4),(442,1004230800,5),(442,1017536400,4),(442,1035680400,5),(442,1048986000,4),(442,1067130000,5),(442,1080435600,4),(442,1099184400,5),(442,1111885200,4),(442,1130634000,5),(442,1143334800,4),(442,1162083600,5),(442,1174784400,4),(442,1193533200,5),(442,1206838800,4),(442,1224982800,5),(442,1238288400,4),(442,1256432400,5),(442,1269738000,4),(442,1288486800,5),(442,1301187600,4),(442,1319936400,5),(442,1332637200,4),(442,1351386000,5),(442,1364691600,4),(442,1382835600,5),(442,1396141200,4),(442,1414285200,5),(442,1427590800,4),(442,1445734800,5),(442,1459040400,4),(442,1477789200,5),(442,1490490000,4),(442,1509238800,5),(442,1521939600,4),(442,1540688400,5),(442,1553994000,4),(442,1572138000,5),(442,1585443600,4),(442,1603587600,5),(442,1616893200,4),(442,1635642000,5),(442,1648342800,4),(442,1667091600,5),(442,1679792400,4),(442,1698541200,5),(442,1711846800,4),(442,1729990800,5),(442,1743296400,4),(442,1761440400,5),(442,1774746000,4),(442,1792890000,5),(442,1806195600,4),(442,1824944400,5),(442,1837645200,4),(442,1856394000,5),(442,1869094800,4),(442,1887843600,5),(442,1901149200,4),(442,1919293200,5),(442,1932598800,4),(442,1950742800,5),(442,1964048400,4),(442,1982797200,5),(442,1995498000,4),(442,2014246800,5),(442,2026947600,4),(442,2045696400,5),(442,2058397200,4),(442,2077146000,5),(442,2090451600,4),(442,2108595600,5),(442,2121901200,4),(442,2140045200,5),(443,-2147483648,2),(443,-1691964000,1),(443,-1680472800,2),(443,-1664143200,1),(443,-1650146400,2),(443,-1633903200,1),(443,-1617487200,2),(443,-1601848800,1),(443,-1586037600,2),(443,-1570399200,1),(443,-1552168800,2),(443,-1538344800,1),(443,-1522533600,2),(443,-1507500000,1),(443,-1490565600,2),(443,-1473631200,1),(443,-1460930400,2),(443,-1442786400,1),(443,-1428876000,2),(443,-1410732000,1),(443,-1396216800,2),(443,-1379282400,1),(443,-1364767200,2),(443,-1348437600,1),(443,-1333317600,2),(443,-1315778400,1),(443,-1301263200,2),(443,-1284328800,1),(443,-1269813600,2),(443,-1253484000,1),(443,-1238364000,2),(443,-1221429600,1),(443,-1206914400,2),(443,-1189980000,1),(443,-1175464800,2),(443,-1159135200,1),(443,-1143410400,2),(443,-1126476000,1),(443,-1111960800,2),(443,-1095631200,1),(443,-1080511200,2),(443,-1063576800,1),(443,-1049061600,2),(443,-1032127200,1),(443,-1017612000,2),(443,-1001282400,1),(443,-986162400,2),(443,-969228000,1),(443,-950479200,2),(443,-942012000,1),(443,-904518000,3),(443,-896050800,1),(443,-875487600,3),(443,-864601200,1),(443,-844038000,3),(443,-832546800,1),(443,-812588400,3),(443,-798073200,1),(443,-781052400,3),(443,-772066800,1),(443,-764805600,2),(443,-748476000,1),(443,-733356000,2),(443,-719445600,1),(443,-717030000,3),(443,-706748400,1),(443,-699487200,2),(443,-687996000,1),(443,-668037600,2),(443,-654732000,1),(443,-636588000,2),(443,-622072800,1),(443,-605743200,2),(443,-590623200,1),(443,-574293600,2),(443,-558568800,1),(443,-542239200,2),(443,-527119200,1),(443,-512604000,2),(443,-496274400,1),(443,-481154400,2),(443,-464220000,1),(443,-449704800,2),(443,-432165600,1),(443,-417650400,2),(443,-401320800,1),(443,-386200800,2),(443,-369266400,1),(443,-354751200,2),(443,-337816800,1),(443,-323301600,2),(443,-306972000,1),(443,-291852000,2),(443,-276732000,1),(443,-257983200,2),(443,-245282400,1),(443,-226533600,2),(443,-213228000,1),(443,-195084000,2),(443,-182383200,1),(443,-163634400,2),(443,-150933600,1),(443,-132184800,2),(443,-119484000,1),(443,-100735200,2),(443,-88034400,1),(443,-68680800,2),(443,-59004000,1),(443,-37242000,4),(443,57722400,6),(443,69818400,1),(443,89172000,2),(443,101268000,1),(443,120621600,2),(443,132717600,1),(443,152071200,2),(443,164167200,1),(443,183520800,2),(443,196221600,1),(443,214970400,2),(443,227671200,1),(443,246420000,2),(443,259120800,1),(443,278474400,2),(443,290570400,1),(443,309924000,2),(443,322020000,1),(443,341373600,2),(443,354675600,5),(443,372819600,6),(443,386125200,5),(443,404269200,6),(443,417574800,5),(443,435718800,6),(443,449024400,5),(443,467773200,6),(443,481078800,5),(443,499222800,6),(443,512528400,5),(443,530672400,6),(443,543978000,5),(443,562122000,6),(443,575427600,5),(443,593571600,6),(443,606877200,5),(443,625626000,6),(443,638326800,5),(443,657075600,6),(443,670381200,5),(443,688525200,6),(443,701830800,5),(443,719974800,6),(443,733280400,5),(443,751424400,6),(443,764730000,5),(443,782874000,6),(443,796179600,5),(443,814323600,6),(443,820454400,7),(443,828234000,5),(443,846378000,6),(443,859683600,5),(443,877827600,6),(443,891133200,5),(443,909277200,6),(443,922582800,5),(443,941331600,6),(443,954032400,5),(443,972781200,6),(443,985482000,5),(443,1004230800,6),(443,1017536400,5),(443,1035680400,6),(443,1048986000,5),(443,1067130000,6),(443,1080435600,5),(443,1099184400,6),(443,1111885200,5),(443,1130634000,6),(443,1143334800,5),(443,1162083600,6),(443,1174784400,5),(443,1193533200,6),(443,1206838800,5),(443,1224982800,6),(443,1238288400,5),(443,1256432400,6),(443,1269738000,5),(443,1288486800,6),(443,1301187600,5),(443,1319936400,6),(443,1332637200,5),(443,1351386000,6),(443,1364691600,5),(443,1382835600,6),(443,1396141200,5),(443,1414285200,6),(443,1427590800,5),(443,1445734800,6),(443,1459040400,5),(443,1477789200,6),(443,1490490000,5),(443,1509238800,6),(443,1521939600,5),(443,1540688400,6),(443,1553994000,5),(443,1572138000,6),(443,1585443600,5),(443,1603587600,6),(443,1616893200,5),(443,1635642000,6),(443,1648342800,5),(443,1667091600,6),(443,1679792400,5),(443,1698541200,6),(443,1711846800,5),(443,1729990800,6),(443,1743296400,5),(443,1761440400,6),(443,1774746000,5),(443,1792890000,6),(443,1806195600,5),(443,1824944400,6),(443,1837645200,5),(443,1856394000,6),(443,1869094800,5),(443,1887843600,6),(443,1901149200,5),(443,1919293200,6),(443,1932598800,5),(443,1950742800,6),(443,1964048400,5),(443,1982797200,6),(443,1995498000,5),(443,2014246800,6),(443,2026947600,5),(443,2045696400,6),(443,2058397200,5),(443,2077146000,6),(443,2090451600,5),(443,2108595600,6),(443,2121901200,5),(443,2140045200,6),(444,-2147483648,1),(444,-1869875816,3),(444,-1693706400,2),(444,-1680490800,3),(444,-1570413600,2),(444,-1552186800,3),(444,-1538359200,2),(444,-1522551600,3),(444,-1507514400,2),(444,-1490583600,3),(444,-1440208800,2),(444,-1428030000,3),(444,-1409709600,2),(444,-1396494000,3),(444,-931053600,2),(444,-922676400,3),(444,-917834400,2),(444,-892436400,3),(444,-875844000,2),(444,-764737200,3),(444,-744343200,2),(444,-733806000,3),(444,-716436000,2),(444,-701924400,3),(444,-684986400,2),(444,-670474800,3),(444,-654141600,2),(444,-639025200,3),(444,-622087200,2),(444,-606970800,3),(444,-590032800,2),(444,-575521200,3),(444,-235620000,2),(444,-194842800,3),(444,-177732000,2),(444,-165726000,3),(444,107910000,2),(444,121215600,3),(444,133920000,2),(444,152665200,3),(444,164678400,2),(444,184114800,3),(444,196214400,2),(444,215564400,3),(444,228873600,2),(444,245804400,3),(444,260323200,2),(444,267915600,4),(444,428454000,5),(444,433893600,4),(444,468111600,3),(444,482799600,6),(444,496710000,7),(444,512521200,6),(444,528246000,7),(444,543970800,6),(444,559695600,7),(444,575420400,6),(444,591145200,7),(444,606870000,6),(444,622594800,7),(444,638319600,6),(444,654649200,7),(444,670374000,6),(444,686098800,7),(444,701823600,6),(444,717548400,7),(444,733273200,6),(444,748998000,7),(444,764118000,6),(444,780447600,7),(444,796172400,6),(444,811897200,7),(444,828226800,6),(444,846370800,7),(444,859676400,6),(444,877820400,7),(444,891126000,6),(444,909270000,7),(444,922575600,6),(444,941324400,7),(444,954025200,6),(444,972774000,7),(444,985474800,6),(444,1004223600,7),(444,1017529200,6),(444,1035673200,7),(444,1048978800,6),(444,1067122800,7),(444,1080428400,6),(444,1099177200,7),(444,1111878000,6),(444,1130626800,7),(444,1143327600,6),(444,1162076400,7),(444,1167602400,3),(444,1174784400,8),(444,1193533200,9),(444,1206838800,8),(444,1224982800,9),(444,1238288400,8),(444,1256432400,9),(444,1269738000,8),(444,1288486800,9),(444,1301274000,8),(444,1319936400,9),(444,1332637200,8),(444,1351386000,9),(444,1364691600,8),(444,1382835600,9),(444,1396227600,8),(444,1414285200,9),(444,1427590800,8),(444,1446944400,9),(444,1459040400,8),(444,1473195600,4),(445,-2147483648,2),(445,-1691964000,1),(445,-1680472800,2),(445,-1664143200,1),(445,-1650146400,2),(445,-1633903200,1),(445,-1617487200,2),(445,-1601848800,1),(445,-1586037600,2),(445,-1570399200,1),(445,-1552168800,2),(445,-1538344800,1),(445,-1522533600,2),(445,-1507500000,1),(445,-1490565600,2),(445,-1473631200,1),(445,-1460930400,2),(445,-1442786400,1),(445,-1428876000,2),(445,-1410732000,1),(445,-1396216800,2),(445,-1379282400,1),(445,-1364767200,2),(445,-1348437600,1),(445,-1333317600,2),(445,-1315778400,1),(445,-1301263200,2),(445,-1284328800,1),(445,-1269813600,2),(445,-1253484000,1),(445,-1238364000,2),(445,-1221429600,1),(445,-1206914400,2),(445,-1189980000,1),(445,-1175464800,2),(445,-1159135200,1),(445,-1143410400,2),(445,-1126476000,1),(445,-1111960800,2),(445,-1095631200,1),(445,-1080511200,2),(445,-1063576800,1),(445,-1049061600,2),(445,-1032127200,1),(445,-1017612000,2),(445,-1001282400,1),(445,-986162400,2),(445,-969228000,1),(445,-950479200,2),(445,-942012000,1),(445,-904518000,3),(445,-896050800,1),(445,-875487600,3),(445,-864601200,1),(445,-844038000,3),(445,-832546800,1),(445,-812588400,3),(445,-798073200,1),(445,-781052400,3),(445,-772066800,1),(445,-764805600,2),(445,-748476000,1),(445,-733356000,2),(445,-719445600,1),(445,-717030000,3),(445,-706748400,1),(445,-699487200,2),(445,-687996000,1),(445,-668037600,2),(445,-654732000,1),(445,-636588000,2),(445,-622072800,1),(445,-605743200,2),(445,-590623200,1),(445,-574293600,2),(445,-558568800,1),(445,-542239200,2),(445,-527119200,1),(445,-512604000,2),(445,-496274400,1),(445,-481154400,2),(445,-464220000,1),(445,-449704800,2),(445,-432165600,1),(445,-417650400,2),(445,-401320800,1),(445,-386200800,2),(445,-369266400,1),(445,-354751200,2),(445,-337816800,1),(445,-323301600,2),(445,-306972000,1),(445,-291852000,2),(445,-276732000,1),(445,-257983200,2),(445,-245282400,1),(445,-226533600,2),(445,-213228000,1),(445,-195084000,2),(445,-182383200,1),(445,-163634400,2),(445,-150933600,1),(445,-132184800,2),(445,-119484000,1),(445,-100735200,2),(445,-88034400,1),(445,-68680800,2),(445,-59004000,1),(445,-37242000,4),(445,57722400,6),(445,69818400,1),(445,89172000,2),(445,101268000,1),(445,120621600,2),(445,132717600,1),(445,152071200,2),(445,164167200,1),(445,183520800,2),(445,196221600,1),(445,214970400,2),(445,227671200,1),(445,246420000,2),(445,259120800,1),(445,278474400,2),(445,290570400,1),(445,309924000,2),(445,322020000,1),(445,341373600,2),(445,354675600,5),(445,372819600,6),(445,386125200,5),(445,404269200,6),(445,417574800,5),(445,435718800,6),(445,449024400,5),(445,467773200,6),(445,481078800,5),(445,499222800,6),(445,512528400,5),(445,530672400,6),(445,543978000,5),(445,562122000,6),(445,575427600,5),(445,593571600,6),(445,606877200,5),(445,625626000,6),(445,638326800,5),(445,657075600,6),(445,670381200,5),(445,688525200,6),(445,701830800,5),(445,719974800,6),(445,733280400,5),(445,751424400,6),(445,764730000,5),(445,782874000,6),(445,796179600,5),(445,814323600,6),(445,820454400,7),(445,828234000,5),(445,846378000,6),(445,859683600,5),(445,877827600,6),(445,891133200,5),(445,909277200,6),(445,922582800,5),(445,941331600,6),(445,954032400,5),(445,972781200,6),(445,985482000,5),(445,1004230800,6),(445,1017536400,5),(445,1035680400,6),(445,1048986000,5),(445,1067130000,6),(445,1080435600,5),(445,1099184400,6),(445,1111885200,5),(445,1130634000,6),(445,1143334800,5),(445,1162083600,6),(445,1174784400,5),(445,1193533200,6),(445,1206838800,5),(445,1224982800,6),(445,1238288400,5),(445,1256432400,6),(445,1269738000,5),(445,1288486800,6),(445,1301187600,5),(445,1319936400,6),(445,1332637200,5),(445,1351386000,6),(445,1364691600,5),(445,1382835600,6),(445,1396141200,5),(445,1414285200,6),(445,1427590800,5),(445,1445734800,6),(445,1459040400,5),(445,1477789200,6),(445,1490490000,5),(445,1509238800,6),(445,1521939600,5),(445,1540688400,6),(445,1553994000,5),(445,1572138000,6),(445,1585443600,5),(445,1603587600,6),(445,1616893200,5),(445,1635642000,6),(445,1648342800,5),(445,1667091600,6),(445,1679792400,5),(445,1698541200,6),(445,1711846800,5),(445,1729990800,6),(445,1743296400,5),(445,1761440400,6),(445,1774746000,5),(445,1792890000,6),(445,1806195600,5),(445,1824944400,6),(445,1837645200,5),(445,1856394000,6),(445,1869094800,5),(445,1887843600,6),(445,1901149200,5),(445,1919293200,6),(445,1932598800,5),(445,1950742800,6),(445,1964048400,5),(445,1982797200,6),(445,1995498000,5),(445,2014246800,6),(445,2026947600,5),(445,2045696400,6),(445,2058397200,5),(445,2077146000,6),(445,2090451600,5),(445,2108595600,6),(445,2121901200,5),(445,2140045200,6),(446,-2147483648,2),(446,-1693706400,1),(446,-1680483600,2),(446,-1663455600,3),(446,-1650150000,4),(446,-1632006000,3),(446,-1618700400,4),(446,-938905200,3),(446,-857257200,4),(446,-844556400,3),(446,-828226800,4),(446,-812502000,3),(446,-796777200,4),(446,-781052400,3),(446,-780372000,6),(446,-778730400,5),(446,-762663600,6),(446,-749095200,8),(446,354920400,7),(446,370728000,8),(446,386456400,7),(446,402264000,8),(446,417992400,7),(446,433800000,8),(446,449614800,7),(446,465346800,9),(446,481071600,10),(446,496796400,9),(446,512521200,10),(446,528246000,9),(446,543970800,10),(446,559695600,9),(446,575420400,10),(446,591145200,9),(446,606870000,11),(446,622598400,12),(446,638323200,11),(446,654652800,12),(446,670377600,11),(446,686102400,12),(446,701827200,11),(446,717552000,12),(446,733276800,11),(446,749001600,12),(446,764726400,11),(446,780451200,12),(446,796176000,11),(446,811900800,12),(446,828230400,11),(446,846374400,12),(446,859680000,11),(446,877824000,12),(446,891129600,11),(446,909273600,12),(446,922579200,11),(446,941328000,12),(446,954028800,11),(446,972777600,12),(446,985478400,11),(446,1004227200,12),(446,1017532800,11),(446,1035676800,12),(446,1048982400,11),(446,1067126400,12),(446,1080432000,11),(446,1099180800,12),(446,1111881600,11),(446,1130630400,12),(446,1143331200,11),(446,1162080000,12),(446,1174780800,11),(446,1193529600,12),(446,1206835200,11),(446,1224979200,12),(446,1238284800,11),(446,1256428800,12),(446,1269734400,11),(446,1288483200,12),(446,1301184000,13),(446,1414278000,12),(447,-2147483648,1),(447,-1441159324,2),(447,-1247536800,3),(447,-892522800,6),(447,-857257200,4),(447,-844556400,5),(447,-828226800,4),(447,-825382800,3),(447,354920400,7),(447,370728000,3),(447,386456400,7),(447,402264000,3),(447,417992400,7),(447,433800000,3),(447,449614800,7),(447,465346800,8),(447,481071600,9),(447,496796400,8),(447,512521200,9),(447,528246000,8),(447,543970800,9),(447,559695600,8),(447,575420400,9),(447,591145200,8),(447,606870000,9),(447,622594800,8),(447,638319600,9),(447,646783200,10),(447,686102400,2),(447,701820000,10),(447,717541200,2),(447,733269600,10),(447,748990800,2),(447,764719200,10),(447,780440400,2),(447,796179600,11),(447,811904400,12),(447,828234000,11),(447,846378000,12),(447,859683600,11),(447,877827600,12),(447,891133200,11),(447,909277200,12),(447,922582800,11),(447,941331600,12),(447,954032400,11),(447,972781200,12),(447,985482000,11),(447,1004230800,12),(447,1017536400,11),(447,1035680400,12),(447,1048986000,11),(447,1067130000,12),(447,1080435600,11),(447,1099184400,12),(447,1111885200,11),(447,1130634000,12),(447,1143334800,11),(447,1162083600,12),(447,1174784400,11),(447,1193533200,12),(447,1206838800,11),(447,1224982800,12),(447,1238288400,11),(447,1256432400,12),(447,1269738000,11),(447,1288486800,12),(447,1301187600,11),(447,1319936400,12),(447,1332637200,11),(447,1351386000,12),(447,1364691600,11),(447,1382835600,12),(447,1396141200,11),(447,1414285200,12),(447,1427590800,11),(447,1445734800,12),(447,1459040400,11),(447,1477789200,12),(447,1490490000,11),(447,1509238800,12),(447,1521939600,11),(447,1540688400,12),(447,1553994000,11),(447,1572138000,12),(447,1585443600,11),(447,1603587600,12),(447,1616893200,11),(447,1635642000,12),(447,1648342800,11),(447,1667091600,12),(447,1679792400,11),(447,1698541200,12),(447,1711846800,11),(447,1729990800,12),(447,1743296400,11),(447,1761440400,12),(447,1774746000,11),(447,1792890000,12),(447,1806195600,11),(447,1824944400,12),(447,1837645200,11),(447,1856394000,12),(447,1869094800,11),(447,1887843600,12),(447,1901149200,11),(447,1919293200,12),(447,1932598800,11),(447,1950742800,12),(447,1964048400,11),(447,1982797200,12),(447,1995498000,11),(447,2014246800,12),(447,2026947600,11),(447,2045696400,12),(447,2058397200,11),(447,2077146000,12),(447,2090451600,11),(447,2108595600,12),(447,2121901200,11),(447,2140045200,12),(448,-2147483648,0),(448,-1593820800,1),(448,-1247540400,3),(448,354916800,2),(448,370724400,3),(448,386452800,2),(448,402260400,3),(448,417988800,2),(448,433796400,3),(448,449611200,2),(448,465343200,4),(448,481068000,5),(448,496792800,4),(448,512517600,5),(448,528242400,4),(448,543967200,5),(448,559692000,4),(448,575416800,5),(448,591141600,4),(448,606866400,6),(448,622594800,7),(448,638319600,6),(448,654649200,7),(448,670374000,4),(448,701820000,6),(448,717548400,7),(448,733273200,6),(448,748998000,7),(448,764722800,6),(448,780447600,7),(448,796172400,6),(448,811897200,7),(448,828226800,6),(448,846370800,7),(448,859676400,6),(448,877820400,7),(448,891126000,6),(448,909270000,7),(448,922575600,6),(448,941324400,7),(448,954025200,6),(448,972774000,7),(448,985474800,6),(448,1004223600,7),(448,1017529200,6),(448,1035673200,7),(448,1048978800,6),(448,1067122800,7),(448,1080428400,6),(448,1099177200,7),(448,1111878000,6),(448,1130626800,7),(448,1143327600,6),(448,1162076400,7),(448,1174777200,6),(448,1193526000,7),(448,1206831600,6),(448,1224975600,7),(448,1238281200,6),(448,1256425200,7),(448,1269730800,6),(448,1288479600,7),(448,1301180400,4),(448,1414274400,7),(449,-2147483648,0),(449,-1830384000,6),(449,-1689555600,1),(449,-1677801600,2),(449,-1667437200,3),(449,-1647738000,4),(449,-1635814800,3),(449,-1616202000,4),(449,-1604365200,3),(449,-1584666000,4),(449,-1572742800,3),(449,-1553043600,4),(449,-1541206800,3),(449,-1521507600,4),(449,-1442451600,3),(449,-1426813200,4),(449,-1379293200,3),(449,-1364778000,4),(449,-1348448400,3),(449,-1333328400,4),(449,-1316394000,3),(449,-1301274000,4),(449,-1284339600,3),(449,-1269824400,4),(449,-1221440400,3),(449,-1206925200,4),(449,-1191200400,3),(449,-1175475600,4),(449,-1127696400,3),(449,-1111971600,4),(449,-1096851600,3),(449,-1080522000,4),(449,-1063587600,3),(449,-1049072400,4),(449,-1033347600,3),(449,-1017622800,4),(449,-1002502800,3),(449,-986173200,4),(449,-969238800,3),(449,-950490000,4),(449,-942022800,3),(449,-922669200,4),(449,-906944400,3),(449,-891133200,4),(449,-877309200,3),(449,-873684000,5),(449,-864007200,3),(449,-857955600,4),(449,-845859600,3),(449,-842839200,5),(449,-831348000,3),(449,-825901200,4),(449,-814410000,3),(449,-810784800,5),(449,-799898400,3),(449,-794451600,4),(449,-782960400,3),(449,-779335200,5),(449,-768448800,3),(449,-763002000,4),(449,-749091600,3),(449,-733366800,4),(449,-717631200,3),(449,-701906400,4),(449,-686181600,3),(449,-670456800,4),(449,-654732000,3),(449,-639007200,4),(449,-591832800,3),(449,-575503200,4),(449,-559778400,3),(449,-544053600,4),(449,-528328800,3),(449,-512604000,4),(449,-496879200,3),(449,-481154400,4),(449,-465429600,3),(449,-449704800,4),(449,-433980000,3),(449,-417650400,4),(449,-401925600,3),(449,-386200800,4),(449,-370476000,3),(449,-354751200,4),(449,-339026400,3),(449,-323301600,4),(449,-307576800,3),(449,-291852000,4),(449,-276127200,3),(449,-260402400,4),(449,-244677600,3),(449,-228348000,4),(449,-212623200,3),(449,-196898400,4),(449,-181173600,3),(449,-165448800,4),(449,-149724000,3),(449,-133999200,4),(449,-118274400,7),(449,212544000,2),(449,228268800,3),(449,243993600,4),(449,260323200,3),(449,276048000,4),(449,291772800,3),(449,307501200,4),(449,323222400,3),(449,338950800,4),(449,354675600,3),(449,370400400,4),(449,386125200,3),(449,401850000,4),(449,417578400,3),(449,433299600,4),(449,449024400,3),(449,465354000,4),(449,481078800,3),(449,496803600,4),(449,512528400,3),(449,528253200,4),(449,543978000,3),(449,559702800,4),(449,575427600,3),(449,591152400,4),(449,606877200,3),(449,622602000,4),(449,638326800,3),(449,654656400,4),(449,670381200,3),(449,686106000,4),(449,701830800,3),(449,717555600,8),(449,733280400,9),(449,749005200,8),(449,764730000,9),(449,780454800,8),(449,796179600,9),(449,811904400,8),(449,828234000,10),(449,846378000,6),(449,859683600,10),(449,877827600,6),(449,891133200,10),(449,909277200,6),(449,922582800,10),(449,941331600,6),(449,954032400,10),(449,972781200,6),(449,985482000,10),(449,1004230800,6),(449,1017536400,10),(449,1035680400,6),(449,1048986000,10),(449,1067130000,6),(449,1080435600,10),(449,1099184400,6),(449,1111885200,10),(449,1130634000,6),(449,1143334800,10),(449,1162083600,6),(449,1174784400,10),(449,1193533200,6),(449,1206838800,10),(449,1224982800,6),(449,1238288400,10),(449,1256432400,6),(449,1269738000,10),(449,1288486800,6),(449,1301187600,10),(449,1319936400,6),(449,1332637200,10),(449,1351386000,6),(449,1364691600,10),(449,1382835600,6),(449,1396141200,10),(449,1414285200,6),(449,1427590800,10),(449,1445734800,6),(449,1459040400,10),(449,1477789200,6),(449,1490490000,10),(449,1509238800,6),(449,1521939600,10),(449,1540688400,6),(449,1553994000,10),(449,1572138000,6),(449,1585443600,10),(449,1603587600,6),(449,1616893200,10),(449,1635642000,6),(449,1648342800,10),(449,1667091600,6),(449,1679792400,10),(449,1698541200,6),(449,1711846800,10),(449,1729990800,6),(449,1743296400,10),(449,1761440400,6),(449,1774746000,10),(449,1792890000,6),(449,1806195600,10),(449,1824944400,6),(449,1837645200,10),(449,1856394000,6),(449,1869094800,10),(449,1887843600,6),(449,1901149200,10),(449,1919293200,6),(449,1932598800,10),(449,1950742800,6),(449,1964048400,10),(449,1982797200,6),(449,1995498000,10),(449,2014246800,6),(449,2026947600,10),(449,2045696400,6),(449,2058397200,10),(449,2077146000,6),(449,2090451600,10),(449,2108595600,6),(449,2121901200,10),(449,2140045200,6),(450,-2147483648,1),(450,-905824800,4),(450,-857257200,2),(450,-844556400,3),(450,-828226800,2),(450,-812502000,3),(450,-796777200,2),(450,-788922000,1),(450,-777942000,3),(450,-766623600,2),(450,407199600,1),(450,417574800,5),(450,433299600,6),(450,449024400,5),(450,465354000,6),(450,481078800,5),(450,496803600,6),(450,512528400,5),(450,528253200,6),(450,543978000,5),(450,559702800,6),(450,575427600,5),(450,591152400,6),(450,606877200,5),(450,622602000,6),(450,638326800,5),(450,654656400,6),(450,670381200,5),(450,686106000,6),(450,701830800,5),(450,717555600,6),(450,733280400,5),(450,749005200,6),(450,764730000,5),(450,780454800,6),(450,796179600,5),(450,811904400,6),(450,828234000,5),(450,846378000,6),(450,859683600,5),(450,877827600,6),(450,891133200,5),(450,909277200,6),(450,922582800,5),(450,941331600,6),(450,954032400,5),(450,972781200,6),(450,985482000,5),(450,1004230800,6),(450,1017536400,5),(450,1035680400,6),(450,1048986000,5),(450,1067130000,6),(450,1080435600,5),(450,1099184400,6),(450,1111885200,5),(450,1130634000,6),(450,1143334800,5),(450,1162083600,6),(450,1174784400,5),(450,1193533200,6),(450,1206838800,5),(450,1224982800,6),(450,1238288400,5),(450,1256432400,6),(450,1269738000,5),(450,1288486800,6),(450,1301187600,5),(450,1319936400,6),(450,1332637200,5),(450,1351386000,6),(450,1364691600,5),(450,1382835600,6),(450,1396141200,5),(450,1414285200,6),(450,1427590800,5),(450,1445734800,6),(450,1459040400,5),(450,1477789200,6),(450,1490490000,5),(450,1509238800,6),(450,1521939600,5),(450,1540688400,6),(450,1553994000,5),(450,1572138000,6),(450,1585443600,5),(450,1603587600,6),(450,1616893200,5),(450,1635642000,6),(450,1648342800,5),(450,1667091600,6),(450,1679792400,5),(450,1698541200,6),(450,1711846800,5),(450,1729990800,6),(450,1743296400,5),(450,1761440400,6),(450,1774746000,5),(450,1792890000,6),(450,1806195600,5),(450,1824944400,6),(450,1837645200,5),(450,1856394000,6),(450,1869094800,5),(450,1887843600,6),(450,1901149200,5),(450,1919293200,6),(450,1932598800,5),(450,1950742800,6),(450,1964048400,5),(450,1982797200,6),(450,1995498000,5),(450,2014246800,6),(450,2026947600,5),(450,2045696400,6),(450,2058397200,5),(450,2077146000,6),(450,2090451600,5),(450,2108595600,6),(450,2121901200,5),(450,2140045200,6),(451,-2147483648,2),(451,-1691964000,1),(451,-1680472800,2),(451,-1664143200,1),(451,-1650146400,2),(451,-1633903200,1),(451,-1617487200,2),(451,-1601848800,1),(451,-1586037600,2),(451,-1570399200,1),(451,-1552168800,2),(451,-1538344800,1),(451,-1522533600,2),(451,-1507500000,1),(451,-1490565600,2),(451,-1473631200,1),(451,-1460930400,2),(451,-1442786400,1),(451,-1428876000,2),(451,-1410732000,1),(451,-1396216800,2),(451,-1379282400,1),(451,-1364767200,2),(451,-1348437600,1),(451,-1333317600,2),(451,-1315778400,1),(451,-1301263200,2),(451,-1284328800,1),(451,-1269813600,2),(451,-1253484000,1),(451,-1238364000,2),(451,-1221429600,1),(451,-1206914400,2),(451,-1189980000,1),(451,-1175464800,2),(451,-1159135200,1),(451,-1143410400,2),(451,-1126476000,1),(451,-1111960800,2),(451,-1095631200,1),(451,-1080511200,2),(451,-1063576800,1),(451,-1049061600,2),(451,-1032127200,1),(451,-1017612000,2),(451,-1001282400,1),(451,-986162400,2),(451,-969228000,1),(451,-950479200,2),(451,-942012000,1),(451,-904518000,3),(451,-896050800,1),(451,-875487600,3),(451,-864601200,1),(451,-844038000,3),(451,-832546800,1),(451,-812588400,3),(451,-798073200,1),(451,-781052400,3),(451,-772066800,1),(451,-764805600,2),(451,-748476000,1),(451,-733356000,2),(451,-719445600,1),(451,-717030000,3),(451,-706748400,1),(451,-699487200,2),(451,-687996000,1),(451,-668037600,2),(451,-654732000,1),(451,-636588000,2),(451,-622072800,1),(451,-605743200,2),(451,-590623200,1),(451,-574293600,2),(451,-558568800,1),(451,-542239200,2),(451,-527119200,1),(451,-512604000,2),(451,-496274400,1),(451,-481154400,2),(451,-464220000,1),(451,-449704800,2),(451,-432165600,1),(451,-417650400,2),(451,-401320800,1),(451,-386200800,2),(451,-369266400,1),(451,-354751200,2),(451,-337816800,1),(451,-323301600,2),(451,-306972000,1),(451,-291852000,2),(451,-276732000,1),(451,-257983200,2),(451,-245282400,1),(451,-226533600,2),(451,-213228000,1),(451,-195084000,2),(451,-182383200,1),(451,-163634400,2),(451,-150933600,1),(451,-132184800,2),(451,-119484000,1),(451,-100735200,2),(451,-88034400,1),(451,-68680800,2),(451,-59004000,1),(451,-37242000,4),(451,57722400,6),(451,69818400,1),(451,89172000,2),(451,101268000,1),(451,120621600,2),(451,132717600,1),(451,152071200,2),(451,164167200,1),(451,183520800,2),(451,196221600,1),(451,214970400,2),(451,227671200,1),(451,246420000,2),(451,259120800,1),(451,278474400,2),(451,290570400,1),(451,309924000,2),(451,322020000,1),(451,341373600,2),(451,354675600,5),(451,372819600,6),(451,386125200,5),(451,404269200,6),(451,417574800,5),(451,435718800,6),(451,449024400,5),(451,467773200,6),(451,481078800,5),(451,499222800,6),(451,512528400,5),(451,530672400,6),(451,543978000,5),(451,562122000,6),(451,575427600,5),(451,593571600,6),(451,606877200,5),(451,625626000,6),(451,638326800,5),(451,657075600,6),(451,670381200,5),(451,688525200,6),(451,701830800,5),(451,719974800,6),(451,733280400,5),(451,751424400,6),(451,764730000,5),(451,782874000,6),(451,796179600,5),(451,814323600,6),(451,820454400,7),(451,828234000,5),(451,846378000,6),(451,859683600,5),(451,877827600,6),(451,891133200,5),(451,909277200,6),(451,922582800,5),(451,941331600,6),(451,954032400,5),(451,972781200,6),(451,985482000,5),(451,1004230800,6),(451,1017536400,5),(451,1035680400,6),(451,1048986000,5),(451,1067130000,6),(451,1080435600,5),(451,1099184400,6),(451,1111885200,5),(451,1130634000,6),(451,1143334800,5),(451,1162083600,6),(451,1174784400,5),(451,1193533200,6),(451,1206838800,5),(451,1224982800,6),(451,1238288400,5),(451,1256432400,6),(451,1269738000,5),(451,1288486800,6),(451,1301187600,5),(451,1319936400,6),(451,1332637200,5),(451,1351386000,6),(451,1364691600,5),(451,1382835600,6),(451,1396141200,5),(451,1414285200,6),(451,1427590800,5),(451,1445734800,6),(451,1459040400,5),(451,1477789200,6),(451,1490490000,5),(451,1509238800,6),(451,1521939600,5),(451,1540688400,6),(451,1553994000,5),(451,1572138000,6),(451,1585443600,5),(451,1603587600,6),(451,1616893200,5),(451,1635642000,6),(451,1648342800,5),(451,1667091600,6),(451,1679792400,5),(451,1698541200,6),(451,1711846800,5),(451,1729990800,6),(451,1743296400,5),(451,1761440400,6),(451,1774746000,5),(451,1792890000,6),(451,1806195600,5),(451,1824944400,6),(451,1837645200,5),(451,1856394000,6),(451,1869094800,5),(451,1887843600,6),(451,1901149200,5),(451,1919293200,6),(451,1932598800,5),(451,1950742800,6),(451,1964048400,5),(451,1982797200,6),(451,1995498000,5),(451,2014246800,6),(451,2026947600,5),(451,2045696400,6),(451,2058397200,5),(451,2077146000,6),(451,2090451600,5),(451,2108595600,6),(451,2121901200,5),(451,2140045200,6),(452,-2147483648,0),(452,-2069713476,2),(452,-1692496800,1),(452,-1680483600,2),(452,-1662343200,1),(452,-1650157200,2),(452,-1632006000,3),(452,-1618700400,4),(452,-1612659600,6),(452,-1604278800,5),(452,-1585519200,6),(452,-1574038800,5),(452,-1552258800,6),(452,-1539997200,5),(452,-1520550000,6),(452,-1507510800,5),(452,-1490572800,6),(452,-1473642000,5),(452,-1459119600,6),(452,-1444006800,5),(452,-1427673600,6),(452,-1411866000,5),(452,-1396224000,6),(452,-1379293200,5),(452,-1364774400,6),(452,-1348448400,5),(452,-1333324800,6),(452,-1316394000,5),(452,-1301270400,6),(452,-1284339600,5),(452,-1269813600,7),(452,-1253484000,8),(452,-1238364000,7),(452,-1221429600,8),(452,-1206914400,7),(452,-1191189600,8),(452,-1175464800,7),(452,-1160344800,8),(452,-1143410400,7),(452,-1127685600,8),(452,-1111960800,7),(452,-1096840800,8),(452,-1080511200,7),(452,-1063576800,8),(452,-1049061600,7),(452,-1033336800,8),(452,-1017612000,7),(452,-1002492000,8),(452,-986162400,7),(452,-969228000,8),(452,-950479200,7),(452,-942012000,8),(452,-935186400,11),(452,-857257200,9),(452,-844556400,10),(452,-828226800,9),(452,-812502000,10),(452,-797986800,2),(452,-781052400,3),(452,-766623600,4),(452,-745455600,3),(452,-733273200,4),(452,220921200,2),(452,228877200,12),(452,243997200,13),(452,260326800,12),(452,276051600,13),(452,291776400,12),(452,307501200,13),(452,323830800,12),(452,338950800,13),(452,354675600,12),(452,370400400,13),(452,386125200,12),(452,401850000,13),(452,417574800,12),(452,433299600,13),(452,449024400,12),(452,465354000,13),(452,481078800,12),(452,496803600,13),(452,512528400,12),(452,528253200,13),(452,543978000,12),(452,559702800,13),(452,575427600,12),(452,591152400,13),(452,606877200,12),(452,622602000,13),(452,638326800,12),(452,654656400,13),(452,670381200,12),(452,686106000,13),(452,701830800,12),(452,717555600,13),(452,733280400,12),(452,749005200,13),(452,764730000,12),(452,780454800,13),(452,796179600,12),(452,811904400,13),(452,828234000,12),(452,846378000,13),(452,859683600,12),(452,877827600,13),(452,891133200,12),(452,909277200,13),(452,922582800,12),(452,941331600,13),(452,954032400,12),(452,972781200,13),(452,985482000,12),(452,1004230800,13),(452,1017536400,12),(452,1035680400,13),(452,1048986000,12),(452,1067130000,13),(452,1080435600,12),(452,1099184400,13),(452,1111885200,12),(452,1130634000,13),(452,1143334800,12),(452,1162083600,13),(452,1174784400,12),(452,1193533200,13),(452,1206838800,12),(452,1224982800,13),(452,1238288400,12),(452,1256432400,13),(452,1269738000,12),(452,1288486800,13),(452,1301187600,12),(452,1319936400,13),(452,1332637200,12),(452,1351386000,13),(452,1364691600,12),(452,1382835600,13),(452,1396141200,12),(452,1414285200,13),(452,1427590800,12),(452,1445734800,13),(452,1459040400,12),(452,1477789200,13),(452,1490490000,12),(452,1509238800,13),(452,1521939600,12),(452,1540688400,13),(452,1553994000,12),(452,1572138000,13),(452,1585443600,12),(452,1603587600,13),(452,1616893200,12),(452,1635642000,13),(452,1648342800,12),(452,1667091600,13),(452,1679792400,12),(452,1698541200,13),(452,1711846800,12),(452,1729990800,13),(452,1743296400,12),(452,1761440400,13),(452,1774746000,12),(452,1792890000,13),(452,1806195600,12),(452,1824944400,13),(452,1837645200,12),(452,1856394000,13),(452,1869094800,12),(452,1887843600,13),(452,1901149200,12),(452,1919293200,13),(452,1932598800,12),(452,1950742800,13),(452,1964048400,12),(452,1982797200,13),(452,1995498000,12),(452,2014246800,13),(452,2026947600,12),(452,2045696400,13),(452,2058397200,12),(452,2077146000,13),(452,2090451600,12),(452,2108595600,13),(452,2121901200,12),(452,2140045200,13),(453,-2147483648,4),(453,-1631926800,1),(453,-1616889600,2),(453,-1601168400,1),(453,-1585353600,2),(453,-1442451600,1),(453,-1427673600,2),(453,-1379293200,1),(453,-1364774400,2),(453,-1348448400,1),(453,-1333324800,2),(453,-1316390400,1),(453,-1301270400,2),(453,-1284339600,1),(453,-1269820800,2),(453,-1026954000,1),(453,-1017619200,2),(453,-1001898000,1),(453,-999482400,3),(453,-986090400,1),(453,-954115200,2),(453,-940208400,6),(453,-873079200,5),(453,-862621200,6),(453,-842839200,5),(453,-828320400,6),(453,-811389600,5),(453,-796870800,6),(453,-779940000,5),(453,-765421200,6),(453,-748490400,5),(453,-733971600,6),(453,-652327200,5),(453,-639018000,6),(453,135122400,5),(453,150246000,6),(453,166572000,5),(453,181695600,6),(453,196812000,5),(453,212540400,6),(453,228866400,5),(453,243990000,6),(453,260326800,7),(453,276051600,8),(453,283993200,6),(453,291776400,9),(453,307501200,10),(453,323830800,9),(453,338950800,10),(453,354675600,9),(453,370400400,10),(453,386125200,9),(453,401850000,10),(453,417574800,9),(453,433299600,10),(453,449024400,9),(453,465354000,10),(453,481078800,9),(453,496803600,10),(453,512528400,9),(453,528253200,10),(453,543978000,9),(453,559702800,10),(453,575427600,9),(453,591152400,10),(453,606877200,9),(453,622602000,10),(453,638326800,9),(453,654656400,10),(453,670381200,9),(453,686106000,10),(453,701830800,9),(453,717555600,10),(453,733280400,9),(453,749005200,10),(453,764730000,9),(453,780454800,10),(453,796179600,9),(453,811904400,10),(453,828234000,9),(453,846378000,10),(453,859683600,9),(453,877827600,10),(453,891133200,9),(453,909277200,10),(453,922582800,9),(453,941331600,10),(453,954032400,9),(453,972781200,10),(453,985482000,9),(453,1004230800,10),(453,1017536400,9),(453,1035680400,10),(453,1048986000,9),(453,1067130000,10),(453,1080435600,9),(453,1099184400,10),(453,1111885200,9),(453,1130634000,10),(453,1143334800,9),(453,1162083600,10),(453,1174784400,9),(453,1193533200,10),(453,1206838800,9),(453,1224982800,10),(453,1238288400,9),(453,1256432400,10),(453,1269738000,9),(453,1288486800,10),(453,1301187600,9),(453,1319936400,10),(453,1332637200,9),(453,1351386000,10),(453,1364691600,9),(453,1382835600,10),(453,1396141200,9),(453,1414285200,10),(453,1427590800,9),(453,1445734800,10),(453,1459040400,9),(453,1477789200,10),(453,1490490000,9),(453,1509238800,10),(453,1521939600,9),(453,1540688400,10),(453,1553994000,9),(453,1572138000,10),(453,1585443600,9),(453,1603587600,10),(453,1616893200,9),(453,1635642000,10),(453,1648342800,9),(453,1667091600,10),(453,1679792400,9),(453,1698541200,10),(453,1711846800,9),(453,1729990800,10),(453,1743296400,9),(453,1761440400,10),(453,1774746000,9),(453,1792890000,10),(453,1806195600,9),(453,1824944400,10),(453,1837645200,9),(453,1856394000,10),(453,1869094800,9),(453,1887843600,10),(453,1901149200,9),(453,1919293200,10),(453,1932598800,9),(453,1950742800,10),(453,1964048400,9),(453,1982797200,10),(453,1995498000,9),(453,2014246800,10),(453,2026947600,9),(453,2045696400,10),(453,2058397200,9),(453,2077146000,10),(453,2090451600,9),(453,2108595600,10),(453,2121901200,9),(453,2140045200,10),(454,-2147483648,3),(454,-1690765200,1),(454,-1680487200,2),(454,-1664758800,1),(454,-1648951200,2),(454,-1635123600,1),(454,-1616896800,2),(454,-1604278800,1),(454,-1585533600,2),(454,-1571014800,1),(454,-1555293600,2),(454,-932432400,1),(454,-857257200,3),(454,-844556400,4),(454,-828226800,3),(454,-812588400,4),(454,-798073200,3),(454,-781052400,1),(454,-766717200,2),(454,-750898800,4),(454,-733359600,3),(454,-719456400,4),(454,-701917200,3),(454,-689209200,4),(454,-670460400,3),(454,-114051600,4),(454,-103168800,2),(454,-81997200,4),(454,-71715600,3),(454,-50547600,4),(454,-40266000,3),(454,-18493200,4),(454,-8211600,3),(454,12956400,4),(454,23238000,3),(454,43801200,4),(454,54687600,3),(454,75855600,4),(454,86742000,3),(454,102380400,4),(454,118105200,3),(454,135730800,4),(454,148518000,3),(454,167187600,1),(454,180489600,2),(454,198637200,1),(454,211939200,2),(454,230086800,1),(454,243388800,2),(454,261536400,1),(454,274838400,2),(454,292986000,1),(454,306288000,2),(454,323312400,1),(454,338342400,2),(454,354675600,5),(454,370400400,6),(454,386125200,5),(454,401850000,6),(454,417574800,5),(454,433299600,6),(454,449024400,5),(454,465354000,6),(454,481078800,5),(454,496803600,6),(454,512528400,5),(454,528253200,6),(454,543978000,5),(454,559702800,6),(454,575427600,5),(454,591152400,6),(454,606877200,5),(454,622602000,6),(454,638326800,5),(454,654656400,6),(454,670381200,5),(454,686106000,6),(454,701830800,5),(454,717555600,6),(454,733280400,5),(454,749005200,6),(454,764730000,5),(454,780454800,6),(454,796179600,5),(454,811904400,6),(454,828234000,5),(454,846378000,6),(454,859683600,5),(454,877827600,6),(454,891133200,5),(454,909277200,6),(454,922582800,5),(454,941331600,6),(454,954032400,5),(454,972781200,6),(454,985482000,5),(454,1004230800,6),(454,1017536400,5),(454,1035680400,6),(454,1048986000,5),(454,1067130000,6),(454,1080435600,5),(454,1099184400,6),(454,1111885200,5),(454,1130634000,6),(454,1143334800,5),(454,1162083600,6),(454,1174784400,5),(454,1193533200,6),(454,1206838800,5),(454,1224982800,6),(454,1238288400,5),(454,1256432400,6),(454,1269738000,5),(454,1288486800,6),(454,1301187600,5),(454,1319936400,6),(454,1332637200,5),(454,1351386000,6),(454,1364691600,5),(454,1382835600,6),(454,1396141200,5),(454,1414285200,6),(454,1427590800,5),(454,1445734800,6),(454,1459040400,5),(454,1477789200,6),(454,1490490000,5),(454,1509238800,6),(454,1521939600,5),(454,1540688400,6),(454,1553994000,5),(454,1572138000,6),(454,1585443600,5),(454,1603587600,6),(454,1616893200,5),(454,1635642000,6),(454,1648342800,5),(454,1667091600,6),(454,1679792400,5),(454,1698541200,6),(454,1711846800,5),(454,1729990800,6),(454,1743296400,5),(454,1761440400,6),(454,1774746000,5),(454,1792890000,6),(454,1806195600,5),(454,1824944400,6),(454,1837645200,5),(454,1856394000,6),(454,1869094800,5),(454,1887843600,6),(454,1901149200,5),(454,1919293200,6),(454,1932598800,5),(454,1950742800,6),(454,1964048400,5),(454,1982797200,6),(454,1995498000,5),(454,2014246800,6),(454,2026947600,5),(454,2045696400,6),(454,2058397200,5),(454,2077146000,6),(454,2090451600,5),(454,2108595600,6),(454,2121901200,5),(454,2140045200,6),(455,-2147483648,1),(455,-1535938789,3),(455,-875671200,2),(455,-859773600,3),(455,354672000,2),(455,370396800,3),(455,386121600,2),(455,401846400,3),(455,417574800,4),(455,433299600,5),(455,449024400,4),(455,465354000,5),(455,481078800,4),(455,496803600,5),(455,512528400,4),(455,528253200,5),(455,543978000,4),(455,559702800,5),(455,575427600,4),(455,591152400,5),(455,606877200,4),(455,622602000,5),(455,638326800,4),(455,654656400,5),(455,670381200,4),(455,686106000,5),(455,701830800,4),(455,717555600,5),(455,733280400,4),(455,749005200,5),(455,764730000,4),(455,780454800,5),(455,796179600,4),(455,811904400,5),(455,828234000,4),(455,846378000,5),(455,859683600,4),(455,877827600,5),(455,891133200,4),(455,909277200,5),(455,922582800,4),(455,941331600,5),(455,954032400,4),(455,972781200,5),(455,985482000,4),(455,1004230800,5),(455,1017536400,4),(455,1035680400,5),(455,1048986000,4),(455,1067130000,5),(455,1080435600,4),(455,1099184400,5),(455,1111885200,4),(455,1130634000,5),(455,1143334800,4),(455,1162083600,5),(455,1174784400,4),(455,1193533200,5),(455,1206838800,4),(455,1224982800,5),(455,1238288400,4),(455,1256432400,5),(455,1269738000,4),(455,1288486800,5),(455,1301187600,4),(455,1319936400,5),(455,1332637200,4),(455,1351386000,5),(455,1364691600,4),(455,1382835600,5),(455,1396141200,4),(455,1414285200,5),(455,1427590800,4),(455,1445734800,5),(455,1459040400,4),(455,1477789200,5),(455,1490490000,4),(455,1509238800,5),(455,1521939600,4),(455,1540688400,5),(455,1553994000,4),(455,1572138000,5),(455,1585443600,4),(455,1603587600,5),(455,1616893200,4),(455,1635642000,5),(455,1648342800,4),(455,1667091600,5),(455,1679792400,4),(455,1698541200,5),(455,1711846800,4),(455,1729990800,5),(455,1743296400,4),(455,1761440400,5),(455,1774746000,4),(455,1792890000,5),(455,1806195600,4),(455,1824944400,5),(455,1837645200,4),(455,1856394000,5),(455,1869094800,4),(455,1887843600,5),(455,1901149200,4),(455,1919293200,5),(455,1932598800,4),(455,1950742800,5),(455,1964048400,4),(455,1982797200,5),(455,1995498000,4),(455,2014246800,5),(455,2026947600,4),(455,2045696400,5),(455,2058397200,4),(455,2077146000,5),(455,2090451600,4),(455,2108595600,5),(455,2121901200,4),(455,2140045200,5),(456,-2147483648,1),(456,-1441158600,2),(456,-1247536800,3),(456,-899780400,6),(456,-857257200,4),(456,-844556400,5),(456,-828226800,4),(456,-812502000,5),(456,-804650400,3),(456,354920400,7),(456,370728000,3),(456,386456400,7),(456,402264000,3),(456,417992400,7),(456,433800000,3),(456,449614800,7),(456,465346800,8),(456,481071600,9),(456,496796400,8),(456,512521200,9),(456,528246000,8),(456,543970800,9),(456,559695600,8),(456,575420400,9),(456,591145200,8),(456,606870000,9),(456,622594800,8),(456,631141200,3),(456,670374000,10),(456,686102400,11),(456,701827200,10),(456,717552000,11),(456,733276800,10),(456,749001600,11),(456,764726400,10),(456,780451200,11),(456,796176000,10),(456,811900800,11),(456,828230400,10),(456,846374400,11),(456,859680000,10),(456,877824000,11),(456,891129600,10),(456,909273600,11),(456,922579200,10),(456,941328000,11),(456,954028800,10),(456,972777600,11),(456,985478400,10),(456,1004227200,11),(456,1017532800,10),(456,1035676800,11),(456,1048982400,10),(456,1067126400,11),(456,1080432000,10),(456,1099180800,11),(456,1111881600,10),(456,1130630400,11),(456,1143331200,10),(456,1162080000,11),(456,1174780800,10),(456,1193529600,11),(456,1206835200,10),(456,1224979200,11),(456,1238284800,10),(456,1256428800,11),(456,1269734400,10),(456,1288483200,11),(456,1301184000,12),(457,-2147483648,1),(457,-1855958961,6),(457,-1689814800,2),(457,-1680397200,3),(457,-1665363600,2),(457,-1648342800,3),(457,-1635123600,2),(457,-1616893200,3),(457,-1604278800,2),(457,-1585443600,3),(457,-1574038800,2),(457,-1552266000,3),(457,-1539997200,2),(457,-1520557200,3),(457,-1507510800,2),(457,-1490576400,3),(457,-1470618000,2),(457,-1459126800,3),(457,-1444006800,2),(457,-1427677200,3),(457,-1411952400,2),(457,-1396227600,3),(457,-1379293200,2),(457,-1364778000,3),(457,-1348448400,2),(457,-1333328400,3),(457,-1316394000,2),(457,-1301274000,3),(457,-1284339600,2),(457,-1269824400,3),(457,-1253494800,2),(457,-1238374800,3),(457,-1221440400,2),(457,-1206925200,3),(457,-1191200400,2),(457,-1175475600,3),(457,-1160355600,2),(457,-1143421200,3),(457,-1127696400,2),(457,-1111971600,3),(457,-1096851600,2),(457,-1080522000,3),(457,-1063587600,2),(457,-1049072400,3),(457,-1033347600,2),(457,-1017622800,3),(457,-1002502800,2),(457,-986173200,3),(457,-969238800,2),(457,-950490000,3),(457,-942012000,4),(457,-904438800,5),(457,-891136800,4),(457,-877827600,5),(457,-857257200,4),(457,-844556400,5),(457,-828226800,4),(457,-812502000,5),(457,-796266000,4),(457,-781052400,5),(457,-766623600,8),(457,196819200,7),(457,212540400,8),(457,228877200,9),(457,243997200,10),(457,260326800,9),(457,276051600,10),(457,291776400,9),(457,307501200,10),(457,323830800,9),(457,338950800,10),(457,354675600,9),(457,370400400,10),(457,386125200,9),(457,401850000,10),(457,417574800,9),(457,433299600,10),(457,449024400,9),(457,465354000,10),(457,481078800,9),(457,496803600,10),(457,512528400,9),(457,528253200,10),(457,543978000,9),(457,559702800,10),(457,575427600,9),(457,591152400,10),(457,606877200,9),(457,622602000,10),(457,638326800,9),(457,654656400,10),(457,670381200,9),(457,686106000,10),(457,701830800,9),(457,717555600,10),(457,733280400,9),(457,749005200,10),(457,764730000,9),(457,780454800,10),(457,796179600,9),(457,811904400,10),(457,828234000,9),(457,846378000,10),(457,859683600,9),(457,877827600,10),(457,891133200,9),(457,909277200,10),(457,922582800,9),(457,941331600,10),(457,954032400,9),(457,972781200,10),(457,985482000,9),(457,1004230800,10),(457,1017536400,9),(457,1035680400,10),(457,1048986000,9),(457,1067130000,10),(457,1080435600,9),(457,1099184400,10),(457,1111885200,9),(457,1130634000,10),(457,1143334800,9),(457,1162083600,10),(457,1174784400,9),(457,1193533200,10),(457,1206838800,9),(457,1224982800,10),(457,1238288400,9),(457,1256432400,10),(457,1269738000,9),(457,1288486800,10),(457,1301187600,9),(457,1319936400,10),(457,1332637200,9),(457,1351386000,10),(457,1364691600,9),(457,1382835600,10),(457,1396141200,9),(457,1414285200,10),(457,1427590800,9),(457,1445734800,10),(457,1459040400,9),(457,1477789200,10),(457,1490490000,9),(457,1509238800,10),(457,1521939600,9),(457,1540688400,10),(457,1553994000,9),(457,1572138000,10),(457,1585443600,9),(457,1603587600,10),(457,1616893200,9),(457,1635642000,10),(457,1648342800,9),(457,1667091600,10),(457,1679792400,9),(457,1698541200,10),(457,1711846800,9),(457,1729990800,10),(457,1743296400,9),(457,1761440400,10),(457,1774746000,9),(457,1792890000,10),(457,1806195600,9),(457,1824944400,10),(457,1837645200,9),(457,1856394000,10),(457,1869094800,9),(457,1887843600,10),(457,1901149200,9),(457,1919293200,10),(457,1932598800,9),(457,1950742800,10),(457,1964048400,9),(457,1982797200,10),(457,1995498000,9),(457,2014246800,10),(457,2026947600,9),(457,2045696400,10),(457,2058397200,9),(457,2077146000,10),(457,2090451600,9),(457,2108595600,10),(457,2121901200,9),(457,2140045200,10),(458,-2147483648,1),(458,-1688265017,3),(458,-1656819079,2),(458,-1641353479,3),(458,-1627965079,4),(458,-1618716679,2),(458,-1596429079,4),(458,-1593820800,5),(458,-1589860800,6),(458,-1542427200,7),(458,-1539493200,8),(458,-1525323600,7),(458,-1522728000,6),(458,-1491188400,9),(458,-1247536800,6),(458,354920400,7),(458,370728000,6),(458,386456400,7),(458,402264000,6),(458,417992400,7),(458,433800000,6),(458,449614800,7),(458,465346800,10),(458,481071600,11),(458,496796400,10),(458,512521200,11),(458,528246000,10),(458,543970800,11),(458,559695600,10),(458,575420400,11),(458,591145200,10),(458,606870000,11),(458,622594800,10),(458,638319600,11),(458,654649200,10),(458,670374000,12),(458,686102400,13),(458,695779200,10),(458,701823600,11),(458,717548400,10),(458,733273200,11),(458,748998000,10),(458,764722800,11),(458,780447600,10),(458,796172400,11),(458,811897200,10),(458,828226800,11),(458,846370800,10),(458,859676400,11),(458,877820400,10),(458,891126000,11),(458,909270000,10),(458,922575600,11),(458,941324400,10),(458,954025200,11),(458,972774000,10),(458,985474800,11),(458,1004223600,10),(458,1017529200,11),(458,1035673200,10),(458,1048978800,11),(458,1067122800,10),(458,1080428400,11),(458,1099177200,10),(458,1111878000,11),(458,1130626800,10),(458,1143327600,11),(458,1162076400,10),(458,1174777200,11),(458,1193526000,10),(458,1206831600,11),(458,1224975600,10),(458,1238281200,11),(458,1256425200,10),(458,1269730800,11),(458,1288479600,10),(458,1301180400,14),(458,1414274400,10),(459,-2147483648,0),(459,-1518920008,2),(459,166572000,1),(459,182293200,2),(459,200959200,1),(459,213829200,2),(459,228866400,1),(459,243982800,2),(459,260316000,1),(459,276123600,2),(459,291765600,1),(459,307486800,2),(459,323820000,1),(459,338936400,2),(459,354664800,1),(459,370386000,2),(459,386114400,1),(459,401835600,2),(459,417564000,1),(459,433285200,2),(459,449013600,1),(459,465339600,2),(459,481068000,1),(459,496789200,2),(459,512517600,1),(459,528238800,2),(459,543967200,1),(459,559688400,2),(459,575416800,1),(459,591138000,2),(459,606866400,1),(459,622587600,2),(459,638316000,1),(459,654642000,2),(459,670370400,1),(459,686091600,2),(459,701820000,1),(459,717541200,2),(459,733269600,1),(459,748990800,2),(459,764719200,1),(459,780440400,2),(459,796168800,1),(459,811890000,2),(459,828223200,1),(459,843944400,2),(459,859672800,1),(459,875394000,2),(459,891122400,1),(459,909277200,3),(459,922582800,4),(459,941331600,3),(459,954032400,4),(459,972781200,3),(459,985482000,4),(459,1004230800,3),(459,1017536400,4),(459,1035680400,3),(459,1048986000,4),(459,1067130000,3),(459,1080435600,4),(459,1099184400,3),(459,1111885200,4),(459,1130634000,3),(459,1143334800,4),(459,1162083600,3),(459,1174784400,4),(459,1193533200,3),(459,1206838800,4),(459,1224982800,3),(459,1238288400,4),(459,1256432400,3),(459,1269738000,4),(459,1288486800,3),(459,1301187600,4),(459,1319936400,3),(459,1332637200,4),(459,1351386000,3),(459,1364691600,4),(459,1382835600,3),(459,1396141200,4),(459,1414285200,3),(459,1427590800,4),(459,1445734800,3),(459,1459040400,4),(459,1477789200,3),(459,1490490000,4),(459,1509238800,3),(459,1521939600,4),(459,1540688400,3),(459,1553994000,4),(459,1572138000,3),(459,1585443600,4),(459,1603587600,3),(459,1616893200,4),(459,1635642000,3),(459,1648342800,4),(459,1667091600,3),(459,1679792400,4),(459,1698541200,3),(459,1711846800,4),(459,1729990800,3),(459,1743296400,4),(459,1761440400,3),(459,1774746000,4),(459,1792890000,3),(459,1806195600,4),(459,1824944400,3),(459,1837645200,4),(459,1856394000,3),(459,1869094800,4),(459,1887843600,3),(459,1901149200,4),(459,1919293200,3),(459,1932598800,4),(459,1950742800,3),(459,1964048400,4),(459,1982797200,3),(459,1995498000,4),(459,2014246800,3),(459,2026947600,4),(459,2045696400,3),(459,2058397200,4),(459,2077146000,3),(459,2090451600,4),(459,2108595600,3),(459,2121901200,4),(459,2140045200,3),(460,-2147483648,2),(460,-1691884800,1),(460,-1680573600,2),(460,-927511200,1),(460,-857257200,3),(460,-844556400,4),(460,-828226800,3),(460,-812502000,4),(460,-796777200,3),(460,-781052400,4),(460,-765327600,3),(460,-340844400,4),(460,-324514800,3),(460,-308790000,4),(460,-293065200,3),(460,-277340400,4),(460,-261615600,3),(460,-245890800,4),(460,-230166000,3),(460,-214441200,4),(460,-198716400,3),(460,-182991600,4),(460,-166662000,3),(460,-147913200,4),(460,-135212400,3),(460,315529200,2),(460,323830800,5),(460,338950800,6),(460,354675600,5),(460,370400400,6),(460,386125200,5),(460,401850000,6),(460,417574800,5),(460,433299600,6),(460,449024400,5),(460,465354000,6),(460,481078800,5),(460,496803600,6),(460,512528400,5),(460,528253200,6),(460,543978000,5),(460,559702800,6),(460,575427600,5),(460,591152400,6),(460,606877200,5),(460,622602000,6),(460,638326800,5),(460,654656400,6),(460,670381200,5),(460,686106000,6),(460,701830800,5),(460,717555600,6),(460,733280400,5),(460,749005200,6),(460,764730000,5),(460,780454800,6),(460,796179600,5),(460,811904400,6),(460,828234000,5),(460,846378000,6),(460,859683600,5),(460,877827600,6),(460,891133200,5),(460,909277200,6),(460,922582800,5),(460,941331600,6),(460,954032400,5),(460,972781200,6),(460,985482000,5),(460,1004230800,6),(460,1017536400,5),(460,1035680400,6),(460,1048986000,5),(460,1067130000,6),(460,1080435600,5),(460,1099184400,6),(460,1111885200,5),(460,1130634000,6),(460,1143334800,5),(460,1162083600,6),(460,1174784400,5),(460,1193533200,6),(460,1206838800,5),(460,1224982800,6),(460,1238288400,5),(460,1256432400,6),(460,1269738000,5),(460,1288486800,6),(460,1301187600,5),(460,1319936400,6),(460,1332637200,5),(460,1351386000,6),(460,1364691600,5),(460,1382835600,6),(460,1396141200,5),(460,1414285200,6),(460,1427590800,5),(460,1445734800,6),(460,1459040400,5),(460,1477789200,6),(460,1490490000,5),(460,1509238800,6),(460,1521939600,5),(460,1540688400,6),(460,1553994000,5),(460,1572138000,6),(460,1585443600,5),(460,1603587600,6),(460,1616893200,5),(460,1635642000,6),(460,1648342800,5),(460,1667091600,6),(460,1679792400,5),(460,1698541200,6),(460,1711846800,5),(460,1729990800,6),(460,1743296400,5),(460,1761440400,6),(460,1774746000,5),(460,1792890000,6),(460,1806195600,5),(460,1824944400,6),(460,1837645200,5),(460,1856394000,6),(460,1869094800,5),(460,1887843600,6),(460,1901149200,5),(460,1919293200,6),(460,1932598800,5),(460,1950742800,6),(460,1964048400,5),(460,1982797200,6),(460,1995498000,5),(460,2014246800,6),(460,2026947600,5),(460,2045696400,6),(460,2058397200,5),(460,2077146000,6),(460,2090451600,5),(460,2108595600,6),(460,2121901200,5),(460,2140045200,6),(461,-2147483648,1),(461,-1855958901,5),(461,-1689814800,2),(461,-1680397200,3),(461,-1665363600,2),(461,-1648342800,3),(461,-1635123600,2),(461,-1616893200,3),(461,-1604278800,2),(461,-1585443600,3),(461,-1574038800,2),(461,-1552266000,3),(461,-1539997200,2),(461,-1520557200,3),(461,-1507510800,2),(461,-1490576400,3),(461,-1470618000,2),(461,-1459126800,3),(461,-1444006800,2),(461,-1427677200,3),(461,-1411952400,2),(461,-1396227600,3),(461,-1379293200,2),(461,-1364778000,3),(461,-1348448400,2),(461,-1333328400,3),(461,-1316394000,2),(461,-1301274000,3),(461,-1284339600,2),(461,-1269824400,3),(461,-1253494800,2),(461,-1238374800,3),(461,-1221440400,2),(461,-1206925200,3),(461,-1191200400,2),(461,-1175475600,3),(461,-1160355600,2),(461,-1143421200,3),(461,-1127696400,2),(461,-1111971600,3),(461,-1096851600,2),(461,-1080522000,3),(461,-1063587600,2),(461,-1049072400,3),(461,-1033347600,2),(461,-1017622800,3),(461,-1002502800,2),(461,-986173200,3),(461,-969238800,2),(461,-950490000,3),(461,-942012000,4),(461,-932436000,8),(461,-857257200,6),(461,-844556400,7),(461,-828226800,6),(461,-812502000,7),(461,-800071200,9),(461,-796266000,4),(461,-781052400,9),(461,-766623600,10),(461,196819200,8),(461,212540400,10),(461,228877200,11),(461,243997200,12),(461,260326800,11),(461,276051600,12),(461,291776400,11),(461,307501200,12),(461,323830800,11),(461,338950800,12),(461,354675600,11),(461,370400400,12),(461,386125200,11),(461,401850000,12),(461,417574800,11),(461,433299600,12),(461,449024400,11),(461,465354000,12),(461,481078800,11),(461,496803600,12),(461,512528400,11),(461,528253200,12),(461,543978000,11),(461,559702800,12),(461,575427600,11),(461,591152400,12),(461,606877200,11),(461,622602000,12),(461,638326800,11),(461,654656400,12),(461,670381200,11),(461,686106000,12),(461,701830800,11),(461,717555600,12),(461,733280400,11),(461,749005200,12),(461,764730000,11),(461,780454800,12),(461,796179600,11),(461,811904400,12),(461,828234000,11),(461,846378000,12),(461,859683600,11),(461,877827600,12),(461,891133200,11),(461,909277200,12),(461,922582800,11),(461,941331600,12),(461,954032400,11),(461,972781200,12),(461,985482000,11),(461,1004230800,12),(461,1017536400,11),(461,1035680400,12),(461,1048986000,11),(461,1067130000,12),(461,1080435600,11),(461,1099184400,12),(461,1111885200,11),(461,1130634000,12),(461,1143334800,11),(461,1162083600,12),(461,1174784400,11),(461,1193533200,12),(461,1206838800,11),(461,1224982800,12),(461,1238288400,11),(461,1256432400,12),(461,1269738000,11),(461,1288486800,12),(461,1301187600,11),(461,1319936400,12),(461,1332637200,11),(461,1351386000,12),(461,1364691600,11),(461,1382835600,12),(461,1396141200,11),(461,1414285200,12),(461,1427590800,11),(461,1445734800,12),(461,1459040400,11),(461,1477789200,12),(461,1490490000,11),(461,1509238800,12),(461,1521939600,11),(461,1540688400,12),(461,1553994000,11),(461,1572138000,12),(461,1585443600,11),(461,1603587600,12),(461,1616893200,11),(461,1635642000,12),(461,1648342800,11),(461,1667091600,12),(461,1679792400,11),(461,1698541200,12),(461,1711846800,11),(461,1729990800,12),(461,1743296400,11),(461,1761440400,12),(461,1774746000,11),(461,1792890000,12),(461,1806195600,11),(461,1824944400,12),(461,1837645200,11),(461,1856394000,12),(461,1869094800,11),(461,1887843600,12),(461,1901149200,11),(461,1919293200,12),(461,1932598800,11),(461,1950742800,12),(461,1964048400,11),(461,1982797200,12),(461,1995498000,11),(461,2014246800,12),(461,2026947600,11),(461,2045696400,12),(461,2058397200,11),(461,2077146000,12),(461,2090451600,11),(461,2108595600,12),(461,2121901200,11),(461,2140045200,12),(462,-2147483648,1),(462,-905824800,4),(462,-857257200,2),(462,-844556400,3),(462,-828226800,2),(462,-812502000,3),(462,-796777200,2),(462,-788922000,1),(462,-777942000,3),(462,-766623600,2),(462,407199600,1),(462,417574800,5),(462,433299600,6),(462,449024400,5),(462,465354000,6),(462,481078800,5),(462,496803600,6),(462,512528400,5),(462,528253200,6),(462,543978000,5),(462,559702800,6),(462,575427600,5),(462,591152400,6),(462,606877200,5),(462,622602000,6),(462,638326800,5),(462,654656400,6),(462,670381200,5),(462,686106000,6),(462,701830800,5),(462,717555600,6),(462,733280400,5),(462,749005200,6),(462,764730000,5),(462,780454800,6),(462,796179600,5),(462,811904400,6),(462,828234000,5),(462,846378000,6),(462,859683600,5),(462,877827600,6),(462,891133200,5),(462,909277200,6),(462,922582800,5),(462,941331600,6),(462,954032400,5),(462,972781200,6),(462,985482000,5),(462,1004230800,6),(462,1017536400,5),(462,1035680400,6),(462,1048986000,5),(462,1067130000,6),(462,1080435600,5),(462,1099184400,6),(462,1111885200,5),(462,1130634000,6),(462,1143334800,5),(462,1162083600,6),(462,1174784400,5),(462,1193533200,6),(462,1206838800,5),(462,1224982800,6),(462,1238288400,5),(462,1256432400,6),(462,1269738000,5),(462,1288486800,6),(462,1301187600,5),(462,1319936400,6),(462,1332637200,5),(462,1351386000,6),(462,1364691600,5),(462,1382835600,6),(462,1396141200,5),(462,1414285200,6),(462,1427590800,5),(462,1445734800,6),(462,1459040400,5),(462,1477789200,6),(462,1490490000,5),(462,1509238800,6),(462,1521939600,5),(462,1540688400,6),(462,1553994000,5),(462,1572138000,6),(462,1585443600,5),(462,1603587600,6),(462,1616893200,5),(462,1635642000,6),(462,1648342800,5),(462,1667091600,6),(462,1679792400,5),(462,1698541200,6),(462,1711846800,5),(462,1729990800,6),(462,1743296400,5),(462,1761440400,6),(462,1774746000,5),(462,1792890000,6),(462,1806195600,5),(462,1824944400,6),(462,1837645200,5),(462,1856394000,6),(462,1869094800,5),(462,1887843600,6),(462,1901149200,5),(462,1919293200,6),(462,1932598800,5),(462,1950742800,6),(462,1964048400,5),(462,1982797200,6),(462,1995498000,5),(462,2014246800,6),(462,2026947600,5),(462,2045696400,6),(462,2058397200,5),(462,2077146000,6),(462,2090451600,5),(462,2108595600,6),(462,2121901200,5),(462,2140045200,6),(463,-2147483648,2),(463,-1693706400,1),(463,-1680483600,2),(463,-1663455600,3),(463,-1650150000,4),(463,-1632006000,3),(463,-1618700400,4),(463,-938905200,3),(463,-857257200,4),(463,-844556400,3),(463,-828226800,4),(463,-812502000,3),(463,-796777200,4),(463,-781052400,3),(463,-777866400,1),(463,-765327600,4),(463,-746578800,3),(463,-733359600,4),(463,-728517600,5),(463,-721260000,2),(463,-716425200,3),(463,-701910000,4),(463,-684975600,3),(463,-670460400,4),(463,-654217200,3),(463,-639010800,4),(463,283993200,2),(463,291776400,6),(463,307501200,7),(463,323830800,6),(463,338950800,7),(463,354675600,6),(463,370400400,7),(463,386125200,6),(463,401850000,7),(463,417574800,6),(463,433299600,7),(463,449024400,6),(463,465354000,7),(463,481078800,6),(463,496803600,7),(463,512528400,6),(463,528253200,7),(463,543978000,6),(463,559702800,7),(463,575427600,6),(463,591152400,7),(463,606877200,6),(463,622602000,7),(463,638326800,6),(463,654656400,7),(463,670381200,6),(463,686106000,7),(463,701830800,6),(463,717555600,7),(463,733280400,6),(463,749005200,7),(463,764730000,6),(463,780454800,7),(463,796179600,6),(463,811904400,7),(463,828234000,6),(463,846378000,7),(463,859683600,6),(463,877827600,7),(463,891133200,6),(463,909277200,7),(463,922582800,6),(463,941331600,7),(463,954032400,6),(463,972781200,7),(463,985482000,6),(463,1004230800,7),(463,1017536400,6),(463,1035680400,7),(463,1048986000,6),(463,1067130000,7),(463,1080435600,6),(463,1099184400,7),(463,1111885200,6),(463,1130634000,7),(463,1143334800,6),(463,1162083600,7),(463,1174784400,6),(463,1193533200,7),(463,1206838800,6),(463,1224982800,7),(463,1238288400,6),(463,1256432400,7),(463,1269738000,6),(463,1288486800,7),(463,1301187600,6),(463,1319936400,7),(463,1332637200,6),(463,1351386000,7),(463,1364691600,6),(463,1382835600,7),(463,1396141200,6),(463,1414285200,7),(463,1427590800,6),(463,1445734800,7),(463,1459040400,6),(463,1477789200,7),(463,1490490000,6),(463,1509238800,7),(463,1521939600,6),(463,1540688400,7),(463,1553994000,6),(463,1572138000,7),(463,1585443600,6),(463,1603587600,7),(463,1616893200,6),(463,1635642000,7),(463,1648342800,6),(463,1667091600,7),(463,1679792400,6),(463,1698541200,7),(463,1711846800,6),(463,1729990800,7),(463,1743296400,6),(463,1761440400,7),(463,1774746000,6),(463,1792890000,7),(463,1806195600,6),(463,1824944400,7),(463,1837645200,6),(463,1856394000,7),(463,1869094800,6),(463,1887843600,7),(463,1901149200,6),(463,1919293200,7),(463,1932598800,6),(463,1950742800,7),(463,1964048400,6),(463,1982797200,7),(463,1995498000,6),(463,2014246800,7),(463,2026947600,6),(463,2045696400,7),(463,2058397200,6),(463,2077146000,7),(463,2090451600,6),(463,2108595600,7),(463,2121901200,6),(463,2140045200,7),(464,-2147483648,1),(464,-1632008194,2),(464,-1618702594,1),(464,-1601681794,2),(464,-1597275394,1),(464,-1377308194,3),(464,-928029600,4),(464,-899521200,7),(464,-857257200,5),(464,-844556400,6),(464,-828226800,5),(464,-812502000,6),(464,-796777200,5),(464,-795834000,4),(464,354920400,8),(464,370728000,4),(464,386456400,8),(464,402264000,4),(464,417992400,8),(464,433800000,4),(464,449614800,8),(464,465346800,9),(464,481071600,10),(464,496796400,9),(464,512521200,10),(464,528246000,9),(464,543970800,10),(464,559695600,9),(464,575420400,10),(464,591145200,9),(464,606870000,11),(464,622598400,12),(464,638323200,11),(464,654652800,12),(464,670377600,11),(464,686102400,12),(464,701827200,11),(464,717552000,12),(464,733276800,11),(464,749001600,12),(464,764726400,11),(464,780451200,12),(464,796176000,11),(464,811900800,12),(464,828230400,11),(464,843955200,12),(464,853797600,3),(464,859683600,13),(464,877827600,14),(464,891133200,13),(464,909277200,14),(464,922582800,13),(464,941331600,14),(464,951775200,3),(464,985482000,13),(464,1004230800,14),(464,1017536400,13),(464,1035680400,14),(464,1048986000,13),(464,1067130000,14),(464,1080435600,13),(464,1099184400,14),(464,1111885200,13),(464,1130634000,14),(464,1143334800,13),(464,1162083600,14),(464,1174784400,13),(464,1193533200,14),(464,1206838800,13),(464,1224982800,14),(464,1238288400,13),(464,1256432400,14),(464,1269738000,13),(464,1288486800,14),(464,1301187600,13),(464,1319936400,14),(464,1332637200,13),(464,1351386000,14),(464,1364691600,13),(464,1382835600,14),(464,1396141200,13),(464,1414285200,14),(464,1427590800,13),(464,1445734800,14),(464,1459040400,13),(464,1477789200,14),(464,1490490000,13),(464,1509238800,14),(464,1521939600,13),(464,1540688400,14),(464,1553994000,13),(464,1572138000,14),(464,1585443600,13),(464,1603587600,14),(464,1616893200,13),(464,1635642000,14),(464,1648342800,13),(464,1667091600,14),(464,1679792400,13),(464,1698541200,14),(464,1711846800,13),(464,1729990800,14),(464,1743296400,13),(464,1761440400,14),(464,1774746000,13),(464,1792890000,14),(464,1806195600,13),(464,1824944400,14),(464,1837645200,13),(464,1856394000,14),(464,1869094800,13),(464,1887843600,14),(464,1901149200,13),(464,1919293200,14),(464,1932598800,13),(464,1950742800,14),(464,1964048400,13),(464,1982797200,14),(464,1995498000,13),(464,2014246800,14),(464,2026947600,13),(464,2045696400,14),(464,2058397200,13),(464,2077146000,14),(464,2090451600,13),(464,2108595600,14),(464,2121901200,13),(464,2140045200,14),(465,-2147483648,2),(465,-1690765200,1),(465,-1680487200,2),(465,-1664758800,1),(465,-1648951200,2),(465,-1635123600,1),(465,-1616896800,2),(465,-1604278800,1),(465,-1585533600,2),(465,-1571014800,1),(465,-1555293600,2),(465,-932432400,1),(465,-857257200,3),(465,-844556400,4),(465,-830311200,1),(465,-828226800,3),(465,-812502000,4),(465,-807156000,1),(465,-798073200,3),(465,-781052400,1),(465,-766717200,2),(465,-750898800,4),(465,-733359600,3),(465,-719456400,4),(465,-701917200,3),(465,-689209200,4),(465,-670460400,3),(465,-114051600,4),(465,-103168800,2),(465,-81997200,4),(465,-71715600,3),(465,-50547600,4),(465,-40266000,3),(465,-18493200,4),(465,-8211600,3),(465,12956400,4),(465,23238000,3),(465,43801200,4),(465,54687600,3),(465,75855600,4),(465,86742000,3),(465,107910000,4),(465,118191600,3),(465,138754800,4),(465,149641200,3),(465,170809200,4),(465,181090800,3),(465,202258800,4),(465,212540400,3),(465,233103600,4),(465,243990000,3),(465,265158000,4),(465,276044400,3),(465,296607600,4),(465,307494000,3),(465,315529200,2),(465,323830800,5),(465,338950800,6),(465,354675600,5),(465,370400400,6),(465,386125200,5),(465,401850000,6),(465,417574800,5),(465,433299600,6),(465,449024400,5),(465,465354000,6),(465,481078800,5),(465,496803600,6),(465,512528400,5),(465,528253200,6),(465,543978000,5),(465,559702800,6),(465,575427600,5),(465,591152400,6),(465,606877200,5),(465,622602000,6),(465,638326800,5),(465,654656400,6),(465,670381200,5),(465,686106000,6),(465,701830800,5),(465,717555600,6),(465,733280400,5),(465,749005200,6),(465,764730000,5),(465,780454800,6),(465,796179600,5),(465,811904400,6),(465,828234000,5),(465,846378000,6),(465,859683600,5),(465,877827600,6),(465,891133200,5),(465,909277200,6),(465,922582800,5),(465,941331600,6),(465,954032400,5),(465,972781200,6),(465,985482000,5),(465,1004230800,6),(465,1017536400,5),(465,1035680400,6),(465,1048986000,5),(465,1067130000,6),(465,1080435600,5),(465,1099184400,6),(465,1111885200,5),(465,1130634000,6),(465,1143334800,5),(465,1162083600,6),(465,1174784400,5),(465,1193533200,6),(465,1206838800,5),(465,1224982800,6),(465,1238288400,5),(465,1256432400,6),(465,1269738000,5),(465,1288486800,6),(465,1301187600,5),(465,1319936400,6),(465,1332637200,5),(465,1351386000,6),(465,1364691600,5),(465,1382835600,6),(465,1396141200,5),(465,1414285200,6),(465,1427590800,5),(465,1445734800,6),(465,1459040400,5),(465,1477789200,6),(465,1490490000,5),(465,1509238800,6),(465,1521939600,5),(465,1540688400,6),(465,1553994000,5),(465,1572138000,6),(465,1585443600,5),(465,1603587600,6),(465,1616893200,5),(465,1635642000,6),(465,1648342800,5),(465,1667091600,6),(465,1679792400,5),(465,1698541200,6),(465,1711846800,5),(465,1729990800,6),(465,1743296400,5),(465,1761440400,6),(465,1774746000,5),(465,1792890000,6),(465,1806195600,5),(465,1824944400,6),(465,1837645200,5),(465,1856394000,6),(465,1869094800,5),(465,1887843600,6),(465,1901149200,5),(465,1919293200,6),(465,1932598800,5),(465,1950742800,6),(465,1964048400,5),(465,1982797200,6),(465,1995498000,5),(465,2014246800,6),(465,2026947600,5),(465,2045696400,6),(465,2058397200,5),(465,2077146000,6),(465,2090451600,5),(465,2108595600,6),(465,2121901200,5),(465,2140045200,6),(466,-2147483648,0),(466,-1593820800,1),(466,-1247540400,2),(466,354916800,3),(466,370724400,2),(466,386452800,3),(466,402260400,2),(466,417988800,3),(466,433796400,2),(466,449611200,3),(466,465343200,4),(466,481068000,5),(466,496792800,4),(466,512517600,5),(466,528242400,4),(466,543967200,5),(466,559692000,4),(466,575416800,5),(466,591141600,4),(466,606866400,6),(466,622594800,7),(466,638319600,6),(466,654649200,7),(466,670374000,8),(466,686102400,7),(466,687916800,2),(466,701820000,5),(466,717544800,4),(466,733269600,5),(466,748994400,4),(466,764719200,5),(466,780444000,4),(466,796168800,5),(466,811893600,4),(466,828223200,5),(466,846367200,4),(466,859672800,5),(466,877816800,4),(466,891122400,5),(466,909266400,4),(466,922572000,5),(466,941320800,4),(466,954021600,5),(466,972770400,4),(466,985471200,5),(466,1004220000,4),(466,1017525600,5),(466,1035669600,4),(466,1048975200,5),(466,1067119200,4),(466,1080424800,5),(466,1099173600,4),(466,1111874400,5),(466,1130623200,4),(466,1143324000,5),(466,1162072800,4),(466,1174773600,5),(466,1193522400,4),(466,1206828000,5),(466,1224972000,4),(466,1238277600,5),(466,1256421600,4),(466,1269727200,6),(466,1288479600,7),(466,1301180400,4),(467,-2147483648,2),(467,-1690765200,1),(467,-1680487200,2),(467,-1664758800,1),(467,-1648951200,2),(467,-1635123600,1),(467,-1616896800,2),(467,-1604278800,1),(467,-1585533600,2),(467,-1571014800,1),(467,-1555293600,2),(467,-932432400,1),(467,-857257200,3),(467,-844556400,4),(467,-830311200,1),(467,-828226800,3),(467,-812502000,4),(467,-807156000,1),(467,-798073200,3),(467,-781052400,1),(467,-766717200,2),(467,-750898800,4),(467,-733359600,3),(467,-719456400,4),(467,-701917200,3),(467,-689209200,4),(467,-670460400,3),(467,-114051600,4),(467,-103168800,2),(467,-81997200,4),(467,-71715600,3),(467,-50547600,4),(467,-40266000,3),(467,-18493200,4),(467,-8211600,3),(467,12956400,4),(467,23238000,3),(467,43801200,4),(467,54687600,3),(467,75855600,4),(467,86742000,3),(467,107910000,4),(467,118191600,3),(467,138754800,4),(467,149641200,3),(467,170809200,4),(467,181090800,3),(467,202258800,4),(467,212540400,3),(467,233103600,4),(467,243990000,3),(467,265158000,4),(467,276044400,3),(467,296607600,4),(467,307494000,3),(467,315529200,2),(467,323830800,5),(467,338950800,6),(467,354675600,5),(467,370400400,6),(467,386125200,5),(467,401850000,6),(467,417574800,5),(467,433299600,6),(467,449024400,5),(467,465354000,6),(467,481078800,5),(467,496803600,6),(467,512528400,5),(467,528253200,6),(467,543978000,5),(467,559702800,6),(467,575427600,5),(467,591152400,6),(467,606877200,5),(467,622602000,6),(467,638326800,5),(467,654656400,6),(467,670381200,5),(467,686106000,6),(467,701830800,5),(467,717555600,6),(467,733280400,5),(467,749005200,6),(467,764730000,5),(467,780454800,6),(467,796179600,5),(467,811904400,6),(467,828234000,5),(467,846378000,6),(467,859683600,5),(467,877827600,6),(467,891133200,5),(467,909277200,6),(467,922582800,5),(467,941331600,6),(467,954032400,5),(467,972781200,6),(467,985482000,5),(467,1004230800,6),(467,1017536400,5),(467,1035680400,6),(467,1048986000,5),(467,1067130000,6),(467,1080435600,5),(467,1099184400,6),(467,1111885200,5),(467,1130634000,6),(467,1143334800,5),(467,1162083600,6),(467,1174784400,5),(467,1193533200,6),(467,1206838800,5),(467,1224982800,6),(467,1238288400,5),(467,1256432400,6),(467,1269738000,5),(467,1288486800,6),(467,1301187600,5),(467,1319936400,6),(467,1332637200,5),(467,1351386000,6),(467,1364691600,5),(467,1382835600,6),(467,1396141200,5),(467,1414285200,6),(467,1427590800,5),(467,1445734800,6),(467,1459040400,5),(467,1477789200,6),(467,1490490000,5),(467,1509238800,6),(467,1521939600,5),(467,1540688400,6),(467,1553994000,5),(467,1572138000,6),(467,1585443600,5),(467,1603587600,6),(467,1616893200,5),(467,1635642000,6),(467,1648342800,5),(467,1667091600,6),(467,1679792400,5),(467,1698541200,6),(467,1711846800,5),(467,1729990800,6),(467,1743296400,5),(467,1761440400,6),(467,1774746000,5),(467,1792890000,6),(467,1806195600,5),(467,1824944400,6),(467,1837645200,5),(467,1856394000,6),(467,1869094800,5),(467,1887843600,6),(467,1901149200,5),(467,1919293200,6),(467,1932598800,5),(467,1950742800,6),(467,1964048400,5),(467,1982797200,6),(467,1995498000,5),(467,2014246800,6),(467,2026947600,5),(467,2045696400,6),(467,2058397200,5),(467,2077146000,6),(467,2090451600,5),(467,2108595600,6),(467,2121901200,5),(467,2140045200,6),(468,-2147483648,1),(468,-905824800,4),(468,-857257200,2),(468,-844556400,3),(468,-828226800,2),(468,-812502000,3),(468,-796777200,2),(468,-788922000,1),(468,-777942000,3),(468,-766623600,2),(468,407199600,1),(468,417574800,5),(468,433299600,6),(468,449024400,5),(468,465354000,6),(468,481078800,5),(468,496803600,6),(468,512528400,5),(468,528253200,6),(468,543978000,5),(468,559702800,6),(468,575427600,5),(468,591152400,6),(468,606877200,5),(468,622602000,6),(468,638326800,5),(468,654656400,6),(468,670381200,5),(468,686106000,6),(468,701830800,5),(468,717555600,6),(468,733280400,5),(468,749005200,6),(468,764730000,5),(468,780454800,6),(468,796179600,5),(468,811904400,6),(468,828234000,5),(468,846378000,6),(468,859683600,5),(468,877827600,6),(468,891133200,5),(468,909277200,6),(468,922582800,5),(468,941331600,6),(468,954032400,5),(468,972781200,6),(468,985482000,5),(468,1004230800,6),(468,1017536400,5),(468,1035680400,6),(468,1048986000,5),(468,1067130000,6),(468,1080435600,5),(468,1099184400,6),(468,1111885200,5),(468,1130634000,6),(468,1143334800,5),(468,1162083600,6),(468,1174784400,5),(468,1193533200,6),(468,1206838800,5),(468,1224982800,6),(468,1238288400,5),(468,1256432400,6),(468,1269738000,5),(468,1288486800,6),(468,1301187600,5),(468,1319936400,6),(468,1332637200,5),(468,1351386000,6),(468,1364691600,5),(468,1382835600,6),(468,1396141200,5),(468,1414285200,6),(468,1427590800,5),(468,1445734800,6),(468,1459040400,5),(468,1477789200,6),(468,1490490000,5),(468,1509238800,6),(468,1521939600,5),(468,1540688400,6),(468,1553994000,5),(468,1572138000,6),(468,1585443600,5),(468,1603587600,6),(468,1616893200,5),(468,1635642000,6),(468,1648342800,5),(468,1667091600,6),(468,1679792400,5),(468,1698541200,6),(468,1711846800,5),(468,1729990800,6),(468,1743296400,5),(468,1761440400,6),(468,1774746000,5),(468,1792890000,6),(468,1806195600,5),(468,1824944400,6),(468,1837645200,5),(468,1856394000,6),(468,1869094800,5),(468,1887843600,6),(468,1901149200,5),(468,1919293200,6),(468,1932598800,5),(468,1950742800,6),(468,1964048400,5),(468,1982797200,6),(468,1995498000,5),(468,2014246800,6),(468,2026947600,5),(468,2045696400,6),(468,2058397200,5),(468,2077146000,6),(468,2090451600,5),(468,2108595600,6),(468,2121901200,5),(468,2140045200,6),(469,-2147483648,0),(469,-1593820800,1),(469,-1247540400,3),(469,354916800,2),(469,370724400,3),(469,386452800,2),(469,402260400,3),(469,417988800,2),(469,433796400,3),(469,449611200,2),(469,465343200,4),(469,481068000,5),(469,496792800,4),(469,512517600,5),(469,528242400,4),(469,543967200,5),(469,559692000,4),(469,575416800,6),(469,591145200,7),(469,606870000,6),(469,622594800,7),(469,638319600,6),(469,654649200,7),(469,670374000,4),(469,701820000,6),(469,717548400,7),(469,733273200,6),(469,748998000,7),(469,764722800,6),(469,780447600,7),(469,796172400,6),(469,811897200,7),(469,828226800,6),(469,846370800,7),(469,859676400,6),(469,877820400,7),(469,891126000,6),(469,909270000,7),(469,922575600,6),(469,941324400,7),(469,954025200,6),(469,972774000,7),(469,985474800,6),(469,1004223600,7),(469,1017529200,6),(469,1035673200,7),(469,1048978800,6),(469,1067122800,7),(469,1080428400,6),(469,1099177200,7),(469,1111878000,6),(469,1130626800,7),(469,1143327600,6),(469,1162076400,7),(469,1174777200,6),(469,1193526000,7),(469,1206831600,6),(469,1224975600,7),(469,1238281200,6),(469,1256425200,7),(469,1269730800,6),(469,1288479600,7),(469,1301180400,4),(469,1414274400,7),(469,1480806000,4),(470,-2147483648,1),(470,-1441160160,2),(470,-1247536800,3),(470,-888894000,6),(470,-857257200,4),(470,-844556400,5),(470,-828226800,4),(470,-812502000,5),(470,-811648800,3),(470,354920400,7),(470,370728000,3),(470,386456400,7),(470,402264000,3),(470,417992400,7),(470,433800000,3),(470,449614800,7),(470,465346800,8),(470,481071600,9),(470,496796400,8),(470,512521200,9),(470,528246000,8),(470,543970800,9),(470,559695600,8),(470,575420400,9),(470,591145200,8),(470,606870000,9),(470,622594800,8),(470,631141200,3),(470,646786800,2),(470,701820000,10),(470,717541200,2),(470,733269600,10),(470,748990800,2),(470,764719200,10),(470,767739600,7),(470,780436800,3),(470,796165200,7),(470,811886400,3),(470,828219600,9),(470,846374400,8),(470,852066000,3),(470,859683600,11),(470,877827600,12),(470,891133200,11),(470,909277200,12),(470,922582800,11),(470,941331600,12),(470,954032400,11),(470,972781200,12),(470,985482000,11),(470,1004230800,12),(470,1017536400,11),(470,1035680400,12),(470,1048986000,11),(470,1067130000,12),(470,1080435600,11),(470,1099184400,12),(470,1111885200,11),(470,1130634000,12),(470,1143334800,11),(470,1162083600,12),(470,1174784400,11),(470,1193533200,12),(470,1206838800,11),(470,1224982800,12),(470,1238288400,11),(470,1256432400,12),(470,1269738000,11),(470,1288486800,12),(470,1301187600,11),(470,1319936400,12),(470,1332637200,11),(470,1351386000,12),(470,1364691600,11),(470,1382835600,12),(470,1396137600,13),(470,1414274400,8),(471,-2147483648,1),(471,-905824800,4),(471,-857257200,2),(471,-844556400,3),(471,-828226800,2),(471,-812502000,3),(471,-796777200,2),(471,-788922000,1),(471,-777942000,3),(471,-766623600,2),(471,407199600,1),(471,417574800,5),(471,433299600,6),(471,449024400,5),(471,465354000,6),(471,481078800,5),(471,496803600,6),(471,512528400,5),(471,528253200,6),(471,543978000,5),(471,559702800,6),(471,575427600,5),(471,591152400,6),(471,606877200,5),(471,622602000,6),(471,638326800,5),(471,654656400,6),(471,670381200,5),(471,686106000,6),(471,701830800,5),(471,717555600,6),(471,733280400,5),(471,749005200,6),(471,764730000,5),(471,780454800,6),(471,796179600,5),(471,811904400,6),(471,828234000,5),(471,846378000,6),(471,859683600,5),(471,877827600,6),(471,891133200,5),(471,909277200,6),(471,922582800,5),(471,941331600,6),(471,954032400,5),(471,972781200,6),(471,985482000,5),(471,1004230800,6),(471,1017536400,5),(471,1035680400,6),(471,1048986000,5),(471,1067130000,6),(471,1080435600,5),(471,1099184400,6),(471,1111885200,5),(471,1130634000,6),(471,1143334800,5),(471,1162083600,6),(471,1174784400,5),(471,1193533200,6),(471,1206838800,5),(471,1224982800,6),(471,1238288400,5),(471,1256432400,6),(471,1269738000,5),(471,1288486800,6),(471,1301187600,5),(471,1319936400,6),(471,1332637200,5),(471,1351386000,6),(471,1364691600,5),(471,1382835600,6),(471,1396141200,5),(471,1414285200,6),(471,1427590800,5),(471,1445734800,6),(471,1459040400,5),(471,1477789200,6),(471,1490490000,5),(471,1509238800,6),(471,1521939600,5),(471,1540688400,6),(471,1553994000,5),(471,1572138000,6),(471,1585443600,5),(471,1603587600,6),(471,1616893200,5),(471,1635642000,6),(471,1648342800,5),(471,1667091600,6),(471,1679792400,5),(471,1698541200,6),(471,1711846800,5),(471,1729990800,6),(471,1743296400,5),(471,1761440400,6),(471,1774746000,5),(471,1792890000,6),(471,1806195600,5),(471,1824944400,6),(471,1837645200,5),(471,1856394000,6),(471,1869094800,5),(471,1887843600,6),(471,1901149200,5),(471,1919293200,6),(471,1932598800,5),(471,1950742800,6),(471,1964048400,5),(471,1982797200,6),(471,1995498000,5),(471,2014246800,6),(471,2026947600,5),(471,2045696400,6),(471,2058397200,5),(471,2077146000,6),(471,2090451600,5),(471,2108595600,6),(471,2121901200,5),(471,2140045200,6),(472,-2147483648,1),(472,-857257200,2),(472,-844556400,3),(472,-828226800,2),(472,-812502000,3),(472,-796777200,2),(472,-788922000,4),(472,-781048800,1),(472,291762000,5),(472,307576800,1),(472,323816400,5),(472,339026400,1),(472,355266000,5),(472,370393200,1),(472,386715600,5),(472,401846400,6),(472,417571200,7),(472,433296000,6),(472,449020800,7),(472,465350400,6),(472,481075200,7),(472,496800000,6),(472,512524800,7),(472,528249600,6),(472,543974400,7),(472,559699200,6),(472,575424000,7),(472,591148800,6),(472,606873600,7),(472,622598400,6),(472,638323200,7),(472,654652800,6),(472,662680800,1),(472,670370400,5),(472,686091600,1),(472,701820000,5),(472,717541200,1),(472,733269600,5),(472,748990800,1),(472,764719200,5),(472,780440400,1),(472,796168800,5),(472,811890000,1),(472,828223200,5),(472,846363600,1),(472,859683600,8),(472,877827600,9),(472,891133200,8),(472,909277200,9),(472,922582800,8),(472,941331600,9),(472,954032400,8),(472,972781200,9),(472,985482000,8),(472,1004230800,9),(472,1017536400,8),(472,1035680400,9),(472,1048986000,8),(472,1067130000,9),(472,1080435600,8),(472,1099184400,9),(472,1111885200,8),(472,1130634000,9),(472,1143334800,8),(472,1162083600,9),(472,1174784400,8),(472,1193533200,9),(472,1206838800,8),(472,1224982800,9),(472,1238288400,8),(472,1256432400,9),(472,1269738000,8),(472,1288486800,9),(472,1301187600,8),(472,1319936400,9),(472,1332637200,8),(472,1351386000,9),(472,1364691600,8),(472,1382835600,9),(472,1396141200,8),(472,1414285200,9),(472,1427590800,8),(472,1445734800,9),(472,1459040400,8),(472,1477789200,9),(472,1490490000,8),(472,1509238800,9),(472,1521939600,8),(472,1540688400,9),(472,1553994000,8),(472,1572138000,9),(472,1585443600,8),(472,1603587600,9),(472,1616893200,8),(472,1635642000,9),(472,1648342800,8),(472,1667091600,9),(472,1679792400,8),(472,1698541200,9),(472,1711846800,8),(472,1729990800,9),(472,1743296400,8),(472,1761440400,9),(472,1774746000,8),(472,1792890000,9),(472,1806195600,8),(472,1824944400,9),(472,1837645200,8),(472,1856394000,9),(472,1869094800,8),(472,1887843600,9),(472,1901149200,8),(472,1919293200,9),(472,1932598800,8),(472,1950742800,9),(472,1964048400,8),(472,1982797200,9),(472,1995498000,8),(472,2014246800,9),(472,2026947600,8),(472,2045696400,9),(472,2058397200,8),(472,2077146000,9),(472,2090451600,8),(472,2108595600,9),(472,2121901200,8),(472,2140045200,9),(473,-2147483648,1),(473,-1692496800,2),(473,-1680483600,1),(473,323830800,3),(473,338950800,4),(473,354675600,3),(473,370400400,4),(473,386125200,3),(473,401850000,4),(473,417574800,3),(473,433299600,4),(473,449024400,3),(473,465354000,4),(473,481078800,3),(473,496803600,4),(473,512528400,3),(473,528253200,4),(473,543978000,3),(473,559702800,4),(473,575427600,3),(473,591152400,4),(473,606877200,3),(473,622602000,4),(473,638326800,3),(473,654656400,4),(473,670381200,3),(473,686106000,4),(473,701830800,3),(473,717555600,4),(473,733280400,3),(473,749005200,4),(473,764730000,3),(473,780454800,4),(473,796179600,3),(473,811904400,4),(473,828234000,3),(473,846378000,4),(473,859683600,3),(473,877827600,4),(473,891133200,3),(473,909277200,4),(473,922582800,3),(473,941331600,4),(473,954032400,3),(473,972781200,4),(473,985482000,3),(473,1004230800,4),(473,1017536400,3),(473,1035680400,4),(473,1048986000,3),(473,1067130000,4),(473,1080435600,3),(473,1099184400,4),(473,1111885200,3),(473,1130634000,4),(473,1143334800,3),(473,1162083600,4),(473,1174784400,3),(473,1193533200,4),(473,1206838800,3),(473,1224982800,4),(473,1238288400,3),(473,1256432400,4),(473,1269738000,3),(473,1288486800,4),(473,1301187600,3),(473,1319936400,4),(473,1332637200,3),(473,1351386000,4),(473,1364691600,3),(473,1382835600,4),(473,1396141200,3),(473,1414285200,4),(473,1427590800,3),(473,1445734800,4),(473,1459040400,3),(473,1477789200,4),(473,1490490000,3),(473,1509238800,4),(473,1521939600,3),(473,1540688400,4),(473,1553994000,3),(473,1572138000,4),(473,1585443600,3),(473,1603587600,4),(473,1616893200,3),(473,1635642000,4),(473,1648342800,3),(473,1667091600,4),(473,1679792400,3),(473,1698541200,4),(473,1711846800,3),(473,1729990800,4),(473,1743296400,3),(473,1761440400,4),(473,1774746000,3),(473,1792890000,4),(473,1806195600,3),(473,1824944400,4),(473,1837645200,3),(473,1856394000,4),(473,1869094800,3),(473,1887843600,4),(473,1901149200,3),(473,1919293200,4),(473,1932598800,3),(473,1950742800,4),(473,1964048400,3),(473,1982797200,4),(473,1995498000,3),(473,2014246800,4),(473,2026947600,3),(473,2045696400,4),(473,2058397200,3),(473,2077146000,4),(473,2090451600,3),(473,2108595600,4),(473,2121901200,3),(473,2140045200,4),(474,-2147483648,1),(474,-1638322740,4),(474,-1632006000,2),(474,-1618700400,3),(474,-1593824400,1),(474,-1535938740,5),(474,-927943200,6),(474,-892954800,7),(474,-857257200,3),(474,-844556400,2),(474,-828226800,3),(474,-812502000,2),(474,-797652000,6),(474,354920400,8),(474,370728000,6),(474,386456400,8),(474,402264000,6),(474,417992400,8),(474,433800000,6),(474,449614800,8),(474,465346800,9),(474,481071600,10),(474,496796400,9),(474,512521200,10),(474,528246000,9),(474,543970800,10),(474,559695600,9),(474,575420400,10),(474,591145200,9),(474,606870000,11),(474,622598400,12),(474,638323200,11),(474,654652800,12),(474,670377600,11),(474,686102400,12),(474,701827200,11),(474,717552000,12),(474,733276800,11),(474,749001600,12),(474,764726400,11),(474,780451200,12),(474,796176000,11),(474,811900800,12),(474,828230400,11),(474,846374400,12),(474,859680000,11),(474,877824000,12),(474,891129600,11),(474,906411600,15),(474,909277200,13),(474,922582800,14),(474,941331600,5),(474,1017536400,14),(474,1035680400,13),(474,1048986000,14),(474,1067130000,13),(474,1080435600,14),(474,1099184400,13),(474,1111885200,14),(474,1130634000,13),(474,1143334800,14),(474,1162083600,13),(474,1174784400,14),(474,1193533200,13),(474,1206838800,14),(474,1224982800,13),(474,1238288400,14),(474,1256432400,13),(474,1269738000,14),(474,1288486800,13),(474,1301187600,14),(474,1319936400,13),(474,1332637200,14),(474,1351386000,13),(474,1364691600,14),(474,1382835600,13),(474,1396141200,14),(474,1414285200,13),(474,1427590800,14),(474,1445734800,13),(474,1459040400,14),(474,1477789200,13),(474,1490490000,14),(474,1509238800,13),(474,1521939600,14),(474,1540688400,13),(474,1553994000,14),(474,1572138000,13),(474,1585443600,14),(474,1603587600,13),(474,1616893200,14),(474,1635642000,13),(474,1648342800,14),(474,1667091600,13),(474,1679792400,14),(474,1698541200,13),(474,1711846800,14),(474,1729990800,13),(474,1743296400,14),(474,1761440400,13),(474,1774746000,14),(474,1792890000,13),(474,1806195600,14),(474,1824944400,13),(474,1837645200,14),(474,1856394000,13),(474,1869094800,14),(474,1887843600,13),(474,1901149200,14),(474,1919293200,13),(474,1932598800,14),(474,1950742800,13),(474,1964048400,14),(474,1982797200,13),(474,1995498000,14),(474,2014246800,13),(474,2026947600,14),(474,2045696400,13),(474,2058397200,14),(474,2077146000,13),(474,2090451600,14),(474,2108595600,13),(474,2121901200,14),(474,2140045200,13),(475,-2147483648,0),(475,-1767230360,1),(475,-932346000,2),(475,-857257200,1),(475,-844556400,2),(475,-843519600,1),(475,136854000,2),(475,149896800,1),(475,168130800,2),(475,181432800,1),(475,199839600,2),(475,213141600,1),(475,231894000,2),(475,244591200,1),(475,263257200,2),(475,276040800,1),(475,294706800,2),(475,307490400,1),(475,326156400,2),(475,339458400,1),(475,357087600,2),(475,370389600,1),(475,389142000,2),(475,402444000,1),(475,419468400,2),(475,433807200,1),(475,449622000,2),(475,465354000,3),(475,481078800,4),(475,496803600,3),(475,512528400,4),(475,528253200,3),(475,543978000,4),(475,559702800,3),(475,575427600,4),(475,591152400,3),(475,606877200,4),(475,622602000,3),(475,638326800,4),(475,654656400,3),(475,670381200,4),(475,686106000,3),(475,701830800,4),(475,717555600,3),(475,733280400,4),(475,749005200,3),(475,764730000,4),(475,780454800,3),(475,796179600,4),(475,811904400,3),(475,828234000,4),(475,846378000,3),(475,859683600,4),(475,877827600,3),(475,891133200,4),(475,909277200,3),(475,922582800,4),(475,941331600,3),(475,954032400,4),(475,972781200,3),(475,985482000,4),(475,1004230800,3),(475,1017536400,4),(475,1035680400,3),(475,1048986000,4),(475,1067130000,3),(475,1080435600,4),(475,1099184400,3),(475,1111885200,4),(475,1130634000,3),(475,1143334800,4),(475,1162083600,3),(475,1174784400,4),(475,1193533200,3),(475,1206838800,4),(475,1224982800,3),(475,1238288400,4),(475,1256432400,3),(475,1269738000,4),(475,1288486800,3),(475,1301187600,4),(475,1319936400,3),(475,1332637200,4),(475,1351386000,3),(475,1364691600,4),(475,1382835600,3),(475,1396141200,4),(475,1414285200,3),(475,1427590800,4),(475,1445734800,3),(475,1459040400,4),(475,1477789200,3),(475,1490490000,4),(475,1509238800,3),(475,1521939600,4),(475,1540688400,3),(475,1553994000,4),(475,1572138000,3),(475,1585443600,4),(475,1603587600,3),(475,1616893200,4),(475,1635642000,3),(475,1648342800,4),(475,1667091600,3),(475,1679792400,4),(475,1698541200,3),(475,1711846800,4),(475,1729990800,3),(475,1743296400,4),(475,1761440400,3),(475,1774746000,4),(475,1792890000,3),(475,1806195600,4),(475,1824944400,3),(475,1837645200,4),(475,1856394000,3),(475,1869094800,4),(475,1887843600,3),(475,1901149200,4),(475,1919293200,3),(475,1932598800,4),(475,1950742800,3),(475,1964048400,4),(475,1982797200,3),(475,1995498000,4),(475,2014246800,3),(475,2026947600,4),(475,2045696400,3),(475,2058397200,4),(475,2077146000,3),(475,2090451600,4),(475,2108595600,3),(475,2121901200,4),(475,2140045200,3),(476,-2147483648,1),(476,-1637114100,2),(476,-1213148664,5),(476,-1187056800,3),(476,-1175479200,4),(476,-1159754400,3),(476,-1144029600,4),(476,-1127700000,3),(476,-1111975200,4),(476,-1096250400,3),(476,-1080525600,4),(476,-1064800800,3),(476,-1049076000,4),(476,-1033351200,3),(476,-1017626400,4),(476,-1001901600,3),(476,-986176800,4),(476,-970452000,3),(476,-954727200,4),(476,-927165600,6),(476,-898138800,9),(476,-857257200,7),(476,-844556400,8),(476,-828226800,7),(476,-812502000,8),(476,-800157600,11),(476,354920400,10),(476,370728000,11),(476,386456400,10),(476,402264000,11),(476,417992400,10),(476,433800000,11),(476,449614800,10),(476,465346800,12),(476,481071600,13),(476,496796400,12),(476,512521200,13),(476,528246000,12),(476,543970800,13),(476,559695600,12),(476,575420400,13),(476,591145200,12),(476,606870000,13),(476,622594800,12),(476,638319600,13),(476,641944800,6),(476,654652800,4),(476,670377600,3),(476,686102400,4),(476,694216800,5),(476,701820000,6),(476,717541200,5),(476,733269600,6),(476,748990800,5),(476,764719200,6),(476,780440400,5),(476,796168800,6),(476,811890000,5),(476,828223200,6),(476,846363600,5),(476,859680000,6),(476,877824000,5),(476,891129600,6),(476,909273600,5),(476,922579200,6),(476,941328000,5),(476,954028800,6),(476,972777600,5),(476,985478400,6),(476,1004227200,5),(476,1017532800,6),(476,1035676800,5),(476,1048982400,6),(476,1067126400,5),(476,1080432000,6),(476,1099180800,5),(476,1111881600,6),(476,1130630400,5),(476,1143331200,6),(476,1162080000,5),(476,1174780800,6),(476,1193529600,5),(476,1206835200,6),(476,1224979200,5),(476,1238284800,6),(476,1256428800,5),(476,1269734400,6),(476,1288483200,5),(476,1301184000,6),(476,1319932800,5),(476,1332633600,6),(476,1351382400,5),(476,1364688000,6),(476,1382832000,5),(476,1396137600,6),(476,1414281600,5),(476,1427587200,6),(476,1445731200,5),(476,1459036800,6),(476,1477785600,5),(476,1490486400,6),(476,1509235200,5),(476,1521936000,6),(476,1540684800,5),(476,1553990400,6),(476,1572134400,5),(476,1585440000,6),(476,1603584000,5),(476,1616889600,6),(476,1635638400,5),(476,1648339200,6),(476,1667088000,5),(476,1679788800,6),(476,1698537600,5),(476,1711843200,6),(476,1729987200,5),(476,1743292800,6),(476,1761436800,5),(476,1774742400,6),(476,1792886400,5),(476,1806192000,6),(476,1824940800,5),(476,1837641600,6),(476,1856390400,5),(476,1869091200,6),(476,1887840000,5),(476,1901145600,6),(476,1919289600,5),(476,1932595200,6),(476,1950739200,5),(476,1964044800,6),(476,1982793600,5),(476,1995494400,6),(476,2014243200,5),(476,2026944000,6),(476,2045692800,5),(476,2058393600,6),(476,2077142400,5),(476,2090448000,6),(476,2108592000,5),(476,2121897600,6),(476,2140041600,5),(477,-2147483648,0),(477,-1593820800,1),(477,-1247540400,3),(477,354916800,2),(477,370724400,3),(477,386452800,2),(477,402260400,3),(477,417988800,2),(477,433796400,3),(477,449611200,2),(477,465343200,4),(477,481068000,5),(477,496792800,4),(477,512517600,5),(477,528242400,4),(477,543967200,5),(477,559692000,4),(477,575416800,5),(477,591141600,4),(477,606866400,6),(477,622594800,7),(477,638319600,6),(477,654649200,7),(477,670374000,8),(477,686102400,9),(477,695779200,7),(477,701823600,6),(477,717548400,7),(477,733273200,6),(477,748998000,7),(477,764722800,6),(477,780447600,7),(477,796172400,6),(477,811897200,7),(477,828226800,6),(477,846370800,7),(477,859676400,6),(477,877820400,7),(477,891126000,6),(477,909270000,7),(477,922575600,6),(477,941324400,7),(477,954025200,6),(477,972774000,7),(477,985474800,6),(477,1004223600,7),(477,1017529200,6),(477,1035673200,7),(477,1048978800,6),(477,1067122800,7),(477,1080428400,6),(477,1099177200,7),(477,1111878000,6),(477,1130626800,7),(477,1143327600,6),(477,1162076400,7),(477,1174777200,6),(477,1193526000,7),(477,1206831600,6),(477,1224975600,7),(477,1238281200,6),(477,1256425200,7),(477,1269730800,6),(477,1288479600,7),(477,1301180400,4),(477,1414274400,7),(477,1459033200,4),(478,-2147483648,1),(478,-938905200,2),(478,-857257200,3),(478,-844556400,2),(478,-828226800,3),(478,-812502000,2),(478,-796874400,4),(478,-794714400,1),(478,-773456400,6),(478,354920400,5),(478,370728000,6),(478,386456400,5),(478,402264000,6),(478,417992400,5),(478,433800000,6),(478,449614800,5),(478,465346800,7),(478,481071600,8),(478,496796400,7),(478,512521200,8),(478,528246000,7),(478,543970800,8),(478,559695600,7),(478,575420400,8),(478,591145200,7),(478,606870000,8),(478,622594800,7),(478,631141200,6),(478,646786800,1),(478,670384800,9),(478,701820000,10),(478,717541200,9),(478,733269600,10),(478,748990800,9),(478,764719200,10),(478,780440400,9),(478,796179600,11),(478,811904400,12),(478,828234000,11),(478,846378000,12),(478,859683600,11),(478,877827600,12),(478,891133200,11),(478,909277200,12),(478,922582800,11),(478,941331600,12),(478,954032400,11),(478,972781200,12),(478,985482000,11),(478,1004230800,12),(478,1017536400,11),(478,1035680400,12),(478,1048986000,11),(478,1067130000,12),(478,1080435600,11),(478,1099184400,12),(478,1111885200,11),(478,1130634000,12),(478,1143334800,11),(478,1162083600,12),(478,1174784400,11),(478,1193533200,12),(478,1206838800,11),(478,1224982800,12),(478,1238288400,11),(478,1256432400,12),(478,1269738000,11),(478,1288486800,12),(478,1301187600,11),(478,1319936400,12),(478,1332637200,11),(478,1351386000,12),(478,1364691600,11),(478,1382835600,12),(478,1396141200,11),(478,1414285200,12),(478,1427590800,11),(478,1445734800,12),(478,1459040400,11),(478,1477789200,12),(478,1490490000,11),(478,1509238800,12),(478,1521939600,11),(478,1540688400,12),(478,1553994000,11),(478,1572138000,12),(478,1585443600,11),(478,1603587600,12),(478,1616893200,11),(478,1635642000,12),(478,1648342800,11),(478,1667091600,12),(478,1679792400,11),(478,1698541200,12),(478,1711846800,11),(478,1729990800,12),(478,1743296400,11),(478,1761440400,12),(478,1774746000,11),(478,1792890000,12),(478,1806195600,11),(478,1824944400,12),(478,1837645200,11),(478,1856394000,12),(478,1869094800,11),(478,1887843600,12),(478,1901149200,11),(478,1919293200,12),(478,1932598800,11),(478,1950742800,12),(478,1964048400,11),(478,1982797200,12),(478,1995498000,11),(478,2014246800,12),(478,2026947600,11),(478,2045696400,12),(478,2058397200,11),(478,2077146000,12),(478,2090451600,11),(478,2108595600,12),(478,2121901200,11),(478,2140045200,12),(479,-2147483648,2),(479,-904435200,1),(479,-891129600,2),(479,-872985600,1),(479,-859680000,2),(479,354675600,3),(479,370400400,4),(479,386125200,3),(479,401850000,4),(479,417574800,3),(479,433299600,4),(479,449024400,3),(479,465354000,4),(479,481078800,3),(479,496803600,4),(479,512528400,3),(479,528253200,4),(479,543978000,3),(479,559702800,4),(479,575427600,3),(479,591152400,4),(479,606877200,3),(479,622602000,4),(479,638326800,3),(479,654656400,4),(479,670381200,3),(479,686106000,4),(479,701830800,3),(479,717555600,4),(479,733280400,3),(479,749005200,4),(479,764730000,3),(479,780454800,4),(479,796179600,3),(479,811904400,4),(479,828234000,3),(479,846378000,4),(479,859683600,3),(479,877827600,4),(479,891133200,3),(479,909277200,4),(479,922582800,3),(479,941331600,4),(479,954032400,3),(479,972781200,4),(479,985482000,3),(479,1004230800,4),(479,1017536400,3),(479,1035680400,4),(479,1048986000,3),(479,1067130000,4),(479,1080435600,3),(479,1099184400,4),(479,1111885200,3),(479,1130634000,4),(479,1143334800,3),(479,1162083600,4),(479,1174784400,3),(479,1193533200,4),(479,1206838800,3),(479,1224982800,4),(479,1238288400,3),(479,1256432400,4),(479,1269738000,3),(479,1288486800,4),(479,1301187600,3),(479,1319936400,4),(479,1332637200,3),(479,1351386000,4),(479,1364691600,3),(479,1382835600,4),(479,1396141200,3),(479,1414285200,4),(479,1427590800,3),(479,1445734800,4),(479,1459040400,3),(479,1477789200,4),(479,1490490000,3),(479,1509238800,4),(479,1521939600,3),(479,1540688400,4),(479,1553994000,3),(479,1572138000,4),(479,1585443600,3),(479,1603587600,4),(479,1616893200,3),(479,1635642000,4),(479,1648342800,3),(479,1667091600,4),(479,1679792400,3),(479,1698541200,4),(479,1711846800,3),(479,1729990800,4),(479,1743296400,3),(479,1761440400,4),(479,1774746000,3),(479,1792890000,4),(479,1806195600,3),(479,1824944400,4),(479,1837645200,3),(479,1856394000,4),(479,1869094800,3),(479,1887843600,4),(479,1901149200,3),(479,1919293200,4),(479,1932598800,3),(479,1950742800,4),(479,1964048400,3),(479,1982797200,4),(479,1995498000,3),(479,2014246800,4),(479,2026947600,3),(479,2045696400,4),(479,2058397200,3),(479,2077146000,4),(479,2090451600,3),(479,2108595600,4),(479,2121901200,3),(479,2140045200,4),(480,-2147483648,2),(480,-1690765200,1),(480,-1680487200,2),(480,-1664758800,1),(480,-1648951200,2),(480,-1635123600,1),(480,-1616896800,2),(480,-1604278800,1),(480,-1585533600,2),(480,-1571014800,1),(480,-1555293600,2),(480,-932432400,1),(480,-857257200,3),(480,-844556400,4),(480,-830311200,1),(480,-828226800,3),(480,-812502000,4),(480,-807156000,1),(480,-798073200,3),(480,-781052400,1),(480,-766717200,2),(480,-750898800,4),(480,-733359600,3),(480,-719456400,4),(480,-701917200,3),(480,-689209200,4),(480,-670460400,3),(480,-114051600,4),(480,-103168800,2),(480,-81997200,4),(480,-71715600,3),(480,-50547600,4),(480,-40266000,3),(480,-18493200,4),(480,-8211600,3),(480,12956400,4),(480,23238000,3),(480,43801200,4),(480,54687600,3),(480,75855600,4),(480,86742000,3),(480,107910000,4),(480,118191600,3),(480,138754800,4),(480,149641200,3),(480,170809200,4),(480,181090800,3),(480,202258800,4),(480,212540400,3),(480,233103600,4),(480,243990000,3),(480,265158000,4),(480,276044400,3),(480,296607600,4),(480,307494000,3),(480,315529200,2),(480,323830800,5),(480,338950800,6),(480,354675600,5),(480,370400400,6),(480,386125200,5),(480,401850000,6),(480,417574800,5),(480,433299600,6),(480,449024400,5),(480,465354000,6),(480,481078800,5),(480,496803600,6),(480,512528400,5),(480,528253200,6),(480,543978000,5),(480,559702800,6),(480,575427600,5),(480,591152400,6),(480,606877200,5),(480,622602000,6),(480,638326800,5),(480,654656400,6),(480,670381200,5),(480,686106000,6),(480,701830800,5),(480,717555600,6),(480,733280400,5),(480,749005200,6),(480,764730000,5),(480,780454800,6),(480,796179600,5),(480,811904400,6),(480,828234000,5),(480,846378000,6),(480,859683600,5),(480,877827600,6),(480,891133200,5),(480,909277200,6),(480,922582800,5),(480,941331600,6),(480,954032400,5),(480,972781200,6),(480,985482000,5),(480,1004230800,6),(480,1017536400,5),(480,1035680400,6),(480,1048986000,5),(480,1067130000,6),(480,1080435600,5),(480,1099184400,6),(480,1111885200,5),(480,1130634000,6),(480,1143334800,5),(480,1162083600,6),(480,1174784400,5),(480,1193533200,6),(480,1206838800,5),(480,1224982800,6),(480,1238288400,5),(480,1256432400,6),(480,1269738000,5),(480,1288486800,6),(480,1301187600,5),(480,1319936400,6),(480,1332637200,5),(480,1351386000,6),(480,1364691600,5),(480,1382835600,6),(480,1396141200,5),(480,1414285200,6),(480,1427590800,5),(480,1445734800,6),(480,1459040400,5),(480,1477789200,6),(480,1490490000,5),(480,1509238800,6),(480,1521939600,5),(480,1540688400,6),(480,1553994000,5),(480,1572138000,6),(480,1585443600,5),(480,1603587600,6),(480,1616893200,5),(480,1635642000,6),(480,1648342800,5),(480,1667091600,6),(480,1679792400,5),(480,1698541200,6),(480,1711846800,5),(480,1729990800,6),(480,1743296400,5),(480,1761440400,6),(480,1774746000,5),(480,1792890000,6),(480,1806195600,5),(480,1824944400,6),(480,1837645200,5),(480,1856394000,6),(480,1869094800,5),(480,1887843600,6),(480,1901149200,5),(480,1919293200,6),(480,1932598800,5),(480,1950742800,6),(480,1964048400,5),(480,1982797200,6),(480,1995498000,5),(480,2014246800,6),(480,2026947600,5),(480,2045696400,6),(480,2058397200,5),(480,2077146000,6),(480,2090451600,5),(480,2108595600,6),(480,2121901200,5),(480,2140045200,6),(481,-2147483648,2),(481,-1693706400,1),(481,-1680483600,2),(481,-1663455600,3),(481,-1650150000,4),(481,-1632006000,3),(481,-1618700400,4),(481,-1577926800,2),(481,-1569711600,3),(481,-1555801200,4),(481,-938905200,3),(481,-857257200,4),(481,-844556400,3),(481,-828226800,4),(481,-812502000,3),(481,-796777200,4),(481,-781052400,3),(481,-780188400,4),(481,-757386000,2),(481,-748479600,3),(481,-733273200,4),(481,-717634800,3),(481,-701910000,4),(481,-684975600,3),(481,-670460400,4),(481,323823600,1),(481,338940000,2),(481,354675600,5),(481,370400400,6),(481,386125200,5),(481,401850000,6),(481,417574800,5),(481,433299600,6),(481,449024400,5),(481,465354000,6),(481,481078800,5),(481,496803600,6),(481,512528400,5),(481,528253200,6),(481,543978000,5),(481,559702800,6),(481,575427600,5),(481,591152400,6),(481,606877200,5),(481,622602000,6),(481,638326800,5),(481,654656400,6),(481,670381200,5),(481,686106000,6),(481,701830800,5),(481,717555600,6),(481,733280400,5),(481,749005200,6),(481,764730000,5),(481,780454800,6),(481,796179600,5),(481,811904400,6),(481,828234000,5),(481,846378000,6),(481,859683600,5),(481,877827600,6),(481,891133200,5),(481,909277200,6),(481,922582800,5),(481,941331600,6),(481,954032400,5),(481,972781200,6),(481,985482000,5),(481,1004230800,6),(481,1017536400,5),(481,1035680400,6),(481,1048986000,5),(481,1067130000,6),(481,1080435600,5),(481,1099184400,6),(481,1111885200,5),(481,1130634000,6),(481,1143334800,5),(481,1162083600,6),(481,1174784400,5),(481,1193533200,6),(481,1206838800,5),(481,1224982800,6),(481,1238288400,5),(481,1256432400,6),(481,1269738000,5),(481,1288486800,6),(481,1301187600,5),(481,1319936400,6),(481,1332637200,5),(481,1351386000,6),(481,1364691600,5),(481,1382835600,6),(481,1396141200,5),(481,1414285200,6),(481,1427590800,5),(481,1445734800,6),(481,1459040400,5),(481,1477789200,6),(481,1490490000,5),(481,1509238800,6),(481,1521939600,5),(481,1540688400,6),(481,1553994000,5),(481,1572138000,6),(481,1585443600,5),(481,1603587600,6),(481,1616893200,5),(481,1635642000,6),(481,1648342800,5),(481,1667091600,6),(481,1679792400,5),(481,1698541200,6),(481,1711846800,5),(481,1729990800,6),(481,1743296400,5),(481,1761440400,6),(481,1774746000,5),(481,1792890000,6),(481,1806195600,5),(481,1824944400,6),(481,1837645200,5),(481,1856394000,6),(481,1869094800,5),(481,1887843600,6),(481,1901149200,5),(481,1919293200,6),(481,1932598800,5),(481,1950742800,6),(481,1964048400,5),(481,1982797200,6),(481,1995498000,5),(481,2014246800,6),(481,2026947600,5),(481,2045696400,6),(481,2058397200,5),(481,2077146000,6),(481,2090451600,5),(481,2108595600,6),(481,2121901200,5),(481,2140045200,6),(482,-2147483648,1),(482,-1672536240,2),(482,-1585100136,3),(482,-1561251600,4),(482,-1553565600,3),(482,-928198800,5),(482,-900126000,8),(482,-857257200,6),(482,-844556400,7),(482,-828226800,6),(482,-812502000,7),(482,-802144800,5),(482,354920400,9),(482,370728000,5),(482,386456400,9),(482,402264000,5),(482,417992400,9),(482,433800000,5),(482,449614800,9),(482,465346800,10),(482,481071600,11),(482,496796400,10),(482,512521200,11),(482,528246000,10),(482,543970800,11),(482,559695600,10),(482,575420400,11),(482,591145200,10),(482,606870000,12),(482,622598400,13),(482,638323200,12),(482,654652800,13),(482,670377600,12),(482,686102400,13),(482,701827200,12),(482,717552000,13),(482,733276800,12),(482,749001600,13),(482,764726400,12),(482,780451200,13),(482,796176000,12),(482,811900800,13),(482,828230400,12),(482,846374400,13),(482,859680000,12),(482,877824000,13),(482,883605600,4),(482,891133200,14),(482,909277200,15),(482,922582800,14),(482,941331600,16),(482,1041372000,4),(482,1048986000,17),(482,1067130000,16),(482,1080435600,17),(482,1099184400,16),(482,1111885200,17),(482,1130634000,16),(482,1143334800,17),(482,1162083600,16),(482,1174784400,17),(482,1193533200,16),(482,1206838800,17),(482,1224982800,16),(482,1238288400,17),(482,1256432400,16),(482,1269738000,17),(482,1288486800,16),(482,1301187600,17),(482,1319936400,16),(482,1332637200,17),(482,1351386000,16),(482,1364691600,17),(482,1382835600,16),(482,1396141200,17),(482,1414285200,16),(482,1427590800,17),(482,1445734800,16),(482,1459040400,17),(482,1477789200,16),(482,1490490000,17),(482,1509238800,16),(482,1521939600,17),(482,1540688400,16),(482,1553994000,17),(482,1572138000,16),(482,1585443600,17),(482,1603587600,16),(482,1616893200,17),(482,1635642000,16),(482,1648342800,17),(482,1667091600,16),(482,1679792400,17),(482,1698541200,16),(482,1711846800,17),(482,1729990800,16),(482,1743296400,17),(482,1761440400,16),(482,1774746000,17),(482,1792890000,16),(482,1806195600,17),(482,1824944400,16),(482,1837645200,17),(482,1856394000,16),(482,1869094800,17),(482,1887843600,16),(482,1901149200,17),(482,1919293200,16),(482,1932598800,17),(482,1950742800,16),(482,1964048400,17),(482,1982797200,16),(482,1995498000,17),(482,2014246800,16),(482,2026947600,17),(482,2045696400,16),(482,2058397200,17),(482,2077146000,16),(482,2090451600,17),(482,2108595600,16),(482,2121901200,17),(482,2140045200,16),(483,-2147483648,0),(483,-1577761060,1),(483,-1247540400,2),(483,354916800,3),(483,370724400,2),(483,386452800,3),(483,402260400,2),(483,417988800,3),(483,433796400,2),(483,449611200,3),(483,465343200,4),(483,481068000,5),(483,496792800,4),(483,512517600,5),(483,528242400,4),(483,543967200,5),(483,559692000,4),(483,575416800,6),(483,591145200,7),(483,606870000,6),(483,622594800,7),(483,638319600,6),(483,654649200,7),(483,670374000,4),(483,701820000,6),(483,717548400,7),(483,733273200,6),(483,748998000,7),(483,764722800,6),(483,780447600,7),(483,796172400,6),(483,811897200,7),(483,828226800,6),(483,846370800,7),(483,859676400,6),(483,877820400,7),(483,891126000,6),(483,909270000,7),(483,922575600,6),(483,941324400,7),(483,954025200,6),(483,972774000,7),(483,985474800,6),(483,1004223600,7),(483,1017529200,6),(483,1035673200,7),(483,1048978800,6),(483,1067122800,7),(483,1080428400,6),(483,1099177200,7),(483,1111878000,6),(483,1130626800,7),(483,1143327600,6),(483,1162076400,7),(483,1174777200,6),(483,1193526000,7),(483,1206831600,6),(483,1224975600,7),(483,1238281200,6),(483,1256425200,7),(483,1269730800,6),(483,1288479600,7),(483,1301180400,4),(483,1414274400,7),(483,1540681200,4),(484,-2147483648,1),(484,-1717032240,3),(484,-1693706400,2),(484,-1680483600,3),(484,-1663455600,4),(484,-1650150000,5),(484,-1632006000,4),(484,-1618700400,8),(484,-1600473600,6),(484,-1587168000,7),(484,-1501725600,3),(484,-931734000,2),(484,-857257200,5),(484,-844556400,4),(484,-828226800,5),(484,-812502000,4),(484,-796874400,2),(484,-796608000,3),(484,-778726800,2),(484,-762660000,3),(484,-748486800,4),(484,-733273200,5),(484,-715215600,4),(484,-701910000,5),(484,-684975600,4),(484,-670460400,5),(484,-654130800,4),(484,-639010800,5),(484,-397094400,4),(484,-386812800,5),(484,-371088000,4),(484,-355363200,5),(484,-334195200,4),(484,-323308800,5),(484,-307584000,4),(484,-291859200,5),(484,-271296000,4),(484,-260409600,5),(484,-239846400,4),(484,-228960000,5),(484,-208396800,4),(484,-197510400,5),(484,-176342400,4),(484,-166060800,5),(484,220921200,3),(484,228873600,4),(484,243993600,5),(484,260323200,4),(484,276048000,5),(484,291772800,4),(484,307497600,5),(484,323827200,4),(484,338947200,5),(484,354672000,4),(484,370396800,5),(484,386121600,4),(484,401846400,5),(484,417571200,4),(484,433296000,5),(484,449020800,4),(484,465350400,5),(484,481075200,4),(484,496800000,5),(484,512524800,4),(484,528249600,5),(484,543974400,4),(484,559699200,5),(484,567990000,3),(484,575427600,9),(484,591152400,10),(484,606877200,9),(484,622602000,10),(484,638326800,9),(484,654656400,10),(484,670381200,9),(484,686106000,10),(484,701830800,9),(484,717555600,10),(484,733280400,9),(484,749005200,10),(484,764730000,9),(484,780454800,10),(484,796179600,9),(484,811904400,10),(484,828234000,9),(484,846378000,10),(484,859683600,9),(484,877827600,10),(484,891133200,9),(484,909277200,10),(484,922582800,9),(484,941331600,10),(484,954032400,9),(484,972781200,10),(484,985482000,9),(484,1004230800,10),(484,1017536400,9),(484,1035680400,10),(484,1048986000,9),(484,1067130000,10),(484,1080435600,9),(484,1099184400,10),(484,1111885200,9),(484,1130634000,10),(484,1143334800,9),(484,1162083600,10),(484,1174784400,9),(484,1193533200,10),(484,1206838800,9),(484,1224982800,10),(484,1238288400,9),(484,1256432400,10),(484,1269738000,9),(484,1288486800,10),(484,1301187600,9),(484,1319936400,10),(484,1332637200,9),(484,1351386000,10),(484,1364691600,9),(484,1382835600,10),(484,1396141200,9),(484,1414285200,10),(484,1427590800,9),(484,1445734800,10),(484,1459040400,9),(484,1477789200,10),(484,1490490000,9),(484,1509238800,10),(484,1521939600,9),(484,1540688400,10),(484,1553994000,9),(484,1572138000,10),(484,1585443600,9),(484,1603587600,10),(484,1616893200,9),(484,1635642000,10),(484,1648342800,9),(484,1667091600,10),(484,1679792400,9),(484,1698541200,10),(484,1711846800,9),(484,1729990800,10),(484,1743296400,9),(484,1761440400,10),(484,1774746000,9),(484,1792890000,10),(484,1806195600,9),(484,1824944400,10),(484,1837645200,9),(484,1856394000,10),(484,1869094800,9),(484,1887843600,10),(484,1901149200,9),(484,1919293200,10),(484,1932598800,9),(484,1950742800,10),(484,1964048400,9),(484,1982797200,10),(484,1995498000,9),(484,2014246800,10),(484,2026947600,9),(484,2045696400,10),(484,2058397200,9),(484,2077146000,10),(484,2090451600,9),(484,2108595600,10),(484,2121901200,9),(484,2140045200,10),(485,-2147483648,1),(485,-905824800,4),(485,-857257200,2),(485,-844556400,3),(485,-828226800,2),(485,-812502000,3),(485,-796777200,2),(485,-788922000,1),(485,-777942000,3),(485,-766623600,2),(485,407199600,1),(485,417574800,5),(485,433299600,6),(485,449024400,5),(485,465354000,6),(485,481078800,5),(485,496803600,6),(485,512528400,5),(485,528253200,6),(485,543978000,5),(485,559702800,6),(485,575427600,5),(485,591152400,6),(485,606877200,5),(485,622602000,6),(485,638326800,5),(485,654656400,6),(485,670381200,5),(485,686106000,6),(485,701830800,5),(485,717555600,6),(485,733280400,5),(485,749005200,6),(485,764730000,5),(485,780454800,6),(485,796179600,5),(485,811904400,6),(485,828234000,5),(485,846378000,6),(485,859683600,5),(485,877827600,6),(485,891133200,5),(485,909277200,6),(485,922582800,5),(485,941331600,6),(485,954032400,5),(485,972781200,6),(485,985482000,5),(485,1004230800,6),(485,1017536400,5),(485,1035680400,6),(485,1048986000,5),(485,1067130000,6),(485,1080435600,5),(485,1099184400,6),(485,1111885200,5),(485,1130634000,6),(485,1143334800,5),(485,1162083600,6),(485,1174784400,5),(485,1193533200,6),(485,1206838800,5),(485,1224982800,6),(485,1238288400,5),(485,1256432400,6),(485,1269738000,5),(485,1288486800,6),(485,1301187600,5),(485,1319936400,6),(485,1332637200,5),(485,1351386000,6),(485,1364691600,5),(485,1382835600,6),(485,1396141200,5),(485,1414285200,6),(485,1427590800,5),(485,1445734800,6),(485,1459040400,5),(485,1477789200,6),(485,1490490000,5),(485,1509238800,6),(485,1521939600,5),(485,1540688400,6),(485,1553994000,5),(485,1572138000,6),(485,1585443600,5),(485,1603587600,6),(485,1616893200,5),(485,1635642000,6),(485,1648342800,5),(485,1667091600,6),(485,1679792400,5),(485,1698541200,6),(485,1711846800,5),(485,1729990800,6),(485,1743296400,5),(485,1761440400,6),(485,1774746000,5),(485,1792890000,6),(485,1806195600,5),(485,1824944400,6),(485,1837645200,5),(485,1856394000,6),(485,1869094800,5),(485,1887843600,6),(485,1901149200,5),(485,1919293200,6),(485,1932598800,5),(485,1950742800,6),(485,1964048400,5),(485,1982797200,6),(485,1995498000,5),(485,2014246800,6),(485,2026947600,5),(485,2045696400,6),(485,2058397200,5),(485,2077146000,6),(485,2090451600,5),(485,2108595600,6),(485,2121901200,5),(485,2140045200,6),(486,-2147483648,1),(486,-1441160400,2),(486,-1247536800,3),(486,-894769200,6),(486,-857257200,4),(486,-844556400,5),(486,-828226800,4),(486,-826419600,3),(486,354920400,7),(486,370728000,3),(486,386456400,7),(486,402264000,3),(486,417992400,7),(486,433800000,3),(486,449614800,7),(486,465346800,8),(486,481071600,9),(486,496796400,8),(486,512521200,9),(486,528246000,8),(486,543970800,9),(486,559695600,8),(486,575420400,9),(486,591145200,8),(486,606870000,9),(486,622594800,8),(486,638319600,9),(486,654649200,8),(486,670374000,10),(486,686091600,2),(486,701820000,10),(486,717541200,2),(486,733269600,10),(486,748990800,2),(486,764719200,10),(486,780440400,2),(486,796179600,11),(486,811904400,12),(486,828234000,11),(486,846378000,12),(486,859683600,11),(486,877827600,12),(486,891133200,11),(486,909277200,12),(486,922582800,11),(486,941331600,12),(486,954032400,11),(486,972781200,12),(486,985482000,11),(486,1004230800,12),(486,1017536400,11),(486,1035680400,12),(486,1048986000,11),(486,1067130000,12),(486,1080435600,11),(486,1099184400,12),(486,1111885200,11),(486,1130634000,12),(486,1143334800,11),(486,1162083600,12),(486,1174784400,11),(486,1193533200,12),(486,1206838800,11),(486,1224982800,12),(486,1238288400,11),(486,1256432400,12),(486,1269738000,11),(486,1288486800,12),(486,1301187600,11),(486,1319936400,12),(486,1332637200,11),(486,1351386000,12),(486,1364691600,11),(486,1382835600,12),(486,1396141200,11),(486,1414285200,12),(486,1427590800,11),(486,1445734800,12),(486,1459040400,11),(486,1477789200,12),(486,1490490000,11),(486,1509238800,12),(486,1521939600,11),(486,1540688400,12),(486,1553994000,11),(486,1572138000,12),(486,1585443600,11),(486,1603587600,12),(486,1616893200,11),(486,1635642000,12),(486,1648342800,11),(486,1667091600,12),(486,1679792400,11),(486,1698541200,12),(486,1711846800,11),(486,1729990800,12),(486,1743296400,11),(486,1761440400,12),(486,1774746000,11),(486,1792890000,12),(486,1806195600,11),(486,1824944400,12),(486,1837645200,11),(486,1856394000,12),(486,1869094800,11),(486,1887843600,12),(486,1901149200,11),(486,1919293200,12),(486,1932598800,11),(486,1950742800,12),(486,1964048400,11),(486,1982797200,12),(486,1995498000,11),(486,2014246800,12),(486,2026947600,11),(486,2045696400,12),(486,2058397200,11),(486,2077146000,12),(486,2090451600,11),(486,2108595600,12),(486,2121901200,11),(486,2140045200,12),(487,-2147483648,2),(487,-904435200,1),(487,-891129600,2),(487,-872985600,1),(487,-859680000,2),(487,354675600,3),(487,370400400,4),(487,386125200,3),(487,401850000,4),(487,417574800,3),(487,433299600,4),(487,449024400,3),(487,465354000,4),(487,481078800,3),(487,496803600,4),(487,512528400,3),(487,528253200,4),(487,543978000,3),(487,559702800,4),(487,575427600,3),(487,591152400,4),(487,606877200,3),(487,622602000,4),(487,638326800,3),(487,654656400,4),(487,670381200,3),(487,686106000,4),(487,701830800,3),(487,717555600,4),(487,733280400,3),(487,749005200,4),(487,764730000,3),(487,780454800,4),(487,796179600,3),(487,811904400,4),(487,828234000,3),(487,846378000,4),(487,859683600,3),(487,877827600,4),(487,891133200,3),(487,909277200,4),(487,922582800,3),(487,941331600,4),(487,954032400,3),(487,972781200,4),(487,985482000,3),(487,1004230800,4),(487,1017536400,3),(487,1035680400,4),(487,1048986000,3),(487,1067130000,4),(487,1080435600,3),(487,1099184400,4),(487,1111885200,3),(487,1130634000,4),(487,1143334800,3),(487,1162083600,4),(487,1174784400,3),(487,1193533200,4),(487,1206838800,3),(487,1224982800,4),(487,1238288400,3),(487,1256432400,4),(487,1269738000,3),(487,1288486800,4),(487,1301187600,3),(487,1319936400,4),(487,1332637200,3),(487,1351386000,4),(487,1364691600,3),(487,1382835600,4),(487,1396141200,3),(487,1414285200,4),(487,1427590800,3),(487,1445734800,4),(487,1459040400,3),(487,1477789200,4),(487,1490490000,3),(487,1509238800,4),(487,1521939600,3),(487,1540688400,4),(487,1553994000,3),(487,1572138000,4),(487,1585443600,3),(487,1603587600,4),(487,1616893200,3),(487,1635642000,4),(487,1648342800,3),(487,1667091600,4),(487,1679792400,3),(487,1698541200,4),(487,1711846800,3),(487,1729990800,4),(487,1743296400,3),(487,1761440400,4),(487,1774746000,3),(487,1792890000,4),(487,1806195600,3),(487,1824944400,4),(487,1837645200,3),(487,1856394000,4),(487,1869094800,3),(487,1887843600,4),(487,1901149200,3),(487,1919293200,4),(487,1932598800,3),(487,1950742800,4),(487,1964048400,3),(487,1982797200,4),(487,1995498000,3),(487,2014246800,4),(487,2026947600,3),(487,2045696400,4),(487,2058397200,3),(487,2077146000,4),(487,2090451600,3),(487,2108595600,4),(487,2121901200,3),(487,2140045200,4),(489,-2147483648,2),(489,-1691964000,1),(489,-1680472800,2),(489,-1664143200,1),(489,-1650146400,2),(489,-1633903200,1),(489,-1617487200,2),(489,-1601848800,1),(489,-1586037600,2),(489,-1570399200,1),(489,-1552168800,2),(489,-1538344800,1),(489,-1522533600,2),(489,-1507500000,1),(489,-1490565600,2),(489,-1473631200,1),(489,-1460930400,2),(489,-1442786400,1),(489,-1428876000,2),(489,-1410732000,1),(489,-1396216800,2),(489,-1379282400,1),(489,-1364767200,2),(489,-1348437600,1),(489,-1333317600,2),(489,-1315778400,1),(489,-1301263200,2),(489,-1284328800,1),(489,-1269813600,2),(489,-1253484000,1),(489,-1238364000,2),(489,-1221429600,1),(489,-1206914400,2),(489,-1189980000,1),(489,-1175464800,2),(489,-1159135200,1),(489,-1143410400,2),(489,-1126476000,1),(489,-1111960800,2),(489,-1095631200,1),(489,-1080511200,2),(489,-1063576800,1),(489,-1049061600,2),(489,-1032127200,1),(489,-1017612000,2),(489,-1001282400,1),(489,-986162400,2),(489,-969228000,1),(489,-950479200,2),(489,-942012000,1),(489,-904518000,3),(489,-896050800,1),(489,-875487600,3),(489,-864601200,1),(489,-844038000,3),(489,-832546800,1),(489,-812588400,3),(489,-798073200,1),(489,-781052400,3),(489,-772066800,1),(489,-764805600,2),(489,-748476000,1),(489,-733356000,2),(489,-719445600,1),(489,-717030000,3),(489,-706748400,1),(489,-699487200,2),(489,-687996000,1),(489,-668037600,2),(489,-654732000,1),(489,-636588000,2),(489,-622072800,1),(489,-605743200,2),(489,-590623200,1),(489,-574293600,2),(489,-558568800,1),(489,-542239200,2),(489,-527119200,1),(489,-512604000,2),(489,-496274400,1),(489,-481154400,2),(489,-464220000,1),(489,-449704800,2),(489,-432165600,1),(489,-417650400,2),(489,-401320800,1),(489,-386200800,2),(489,-369266400,1),(489,-354751200,2),(489,-337816800,1),(489,-323301600,2),(489,-306972000,1),(489,-291852000,2),(489,-276732000,1),(489,-257983200,2),(489,-245282400,1),(489,-226533600,2),(489,-213228000,1),(489,-195084000,2),(489,-182383200,1),(489,-163634400,2),(489,-150933600,1),(489,-132184800,2),(489,-119484000,1),(489,-100735200,2),(489,-88034400,1),(489,-68680800,2),(489,-59004000,1),(489,-37242000,4),(489,57722400,6),(489,69818400,1),(489,89172000,2),(489,101268000,1),(489,120621600,2),(489,132717600,1),(489,152071200,2),(489,164167200,1),(489,183520800,2),(489,196221600,1),(489,214970400,2),(489,227671200,1),(489,246420000,2),(489,259120800,1),(489,278474400,2),(489,290570400,1),(489,309924000,2),(489,322020000,1),(489,341373600,2),(489,354675600,5),(489,372819600,6),(489,386125200,5),(489,404269200,6),(489,417574800,5),(489,435718800,6),(489,449024400,5),(489,467773200,6),(489,481078800,5),(489,499222800,6),(489,512528400,5),(489,530672400,6),(489,543978000,5),(489,562122000,6),(489,575427600,5),(489,593571600,6),(489,606877200,5),(489,625626000,6),(489,638326800,5),(489,657075600,6),(489,670381200,5),(489,688525200,6),(489,701830800,5),(489,719974800,6),(489,733280400,5),(489,751424400,6),(489,764730000,5),(489,782874000,6),(489,796179600,5),(489,814323600,6),(489,820454400,7),(489,828234000,5),(489,846378000,6),(489,859683600,5),(489,877827600,6),(489,891133200,5),(489,909277200,6),(489,922582800,5),(489,941331600,6),(489,954032400,5),(489,972781200,6),(489,985482000,5),(489,1004230800,6),(489,1017536400,5),(489,1035680400,6),(489,1048986000,5),(489,1067130000,6),(489,1080435600,5),(489,1099184400,6),(489,1111885200,5),(489,1130634000,6),(489,1143334800,5),(489,1162083600,6),(489,1174784400,5),(489,1193533200,6),(489,1206838800,5),(489,1224982800,6),(489,1238288400,5),(489,1256432400,6),(489,1269738000,5),(489,1288486800,6),(489,1301187600,5),(489,1319936400,6),(489,1332637200,5),(489,1351386000,6),(489,1364691600,5),(489,1382835600,6),(489,1396141200,5),(489,1414285200,6),(489,1427590800,5),(489,1445734800,6),(489,1459040400,5),(489,1477789200,6),(489,1490490000,5),(489,1509238800,6),(489,1521939600,5),(489,1540688400,6),(489,1553994000,5),(489,1572138000,6),(489,1585443600,5),(489,1603587600,6),(489,1616893200,5),(489,1635642000,6),(489,1648342800,5),(489,1667091600,6),(489,1679792400,5),(489,1698541200,6),(489,1711846800,5),(489,1729990800,6),(489,1743296400,5),(489,1761440400,6),(489,1774746000,5),(489,1792890000,6),(489,1806195600,5),(489,1824944400,6),(489,1837645200,5),(489,1856394000,6),(489,1869094800,5),(489,1887843600,6),(489,1901149200,5),(489,1919293200,6),(489,1932598800,5),(489,1950742800,6),(489,1964048400,5),(489,1982797200,6),(489,1995498000,5),(489,2014246800,6),(489,2026947600,5),(489,2045696400,6),(489,2058397200,5),(489,2077146000,6),(489,2090451600,5),(489,2108595600,6),(489,2121901200,5),(489,2140045200,6),(490,-2147483648,2),(490,-1691964000,1),(490,-1680472800,2),(490,-1664143200,1),(490,-1650146400,2),(490,-1633903200,1),(490,-1617487200,2),(490,-1601848800,1),(490,-1586037600,2),(490,-1570399200,1),(490,-1552168800,2),(490,-1538344800,1),(490,-1522533600,2),(490,-1507500000,1),(490,-1490565600,2),(490,-1473631200,1),(490,-1460930400,2),(490,-1442786400,1),(490,-1428876000,2),(490,-1410732000,1),(490,-1396216800,2),(490,-1379282400,1),(490,-1364767200,2),(490,-1348437600,1),(490,-1333317600,2),(490,-1315778400,1),(490,-1301263200,2),(490,-1284328800,1),(490,-1269813600,2),(490,-1253484000,1),(490,-1238364000,2),(490,-1221429600,1),(490,-1206914400,2),(490,-1189980000,1),(490,-1175464800,2),(490,-1159135200,1),(490,-1143410400,2),(490,-1126476000,1),(490,-1111960800,2),(490,-1095631200,1),(490,-1080511200,2),(490,-1063576800,1),(490,-1049061600,2),(490,-1032127200,1),(490,-1017612000,2),(490,-1001282400,1),(490,-986162400,2),(490,-969228000,1),(490,-950479200,2),(490,-942012000,1),(490,-904518000,3),(490,-896050800,1),(490,-875487600,3),(490,-864601200,1),(490,-844038000,3),(490,-832546800,1),(490,-812588400,3),(490,-798073200,1),(490,-781052400,3),(490,-772066800,1),(490,-764805600,2),(490,-748476000,1),(490,-733356000,2),(490,-719445600,1),(490,-717030000,3),(490,-706748400,1),(490,-699487200,2),(490,-687996000,1),(490,-668037600,2),(490,-654732000,1),(490,-636588000,2),(490,-622072800,1),(490,-605743200,2),(490,-590623200,1),(490,-574293600,2),(490,-558568800,1),(490,-542239200,2),(490,-527119200,1),(490,-512604000,2),(490,-496274400,1),(490,-481154400,2),(490,-464220000,1),(490,-449704800,2),(490,-432165600,1),(490,-417650400,2),(490,-401320800,1),(490,-386200800,2),(490,-369266400,1),(490,-354751200,2),(490,-337816800,1),(490,-323301600,2),(490,-306972000,1),(490,-291852000,2),(490,-276732000,1),(490,-257983200,2),(490,-245282400,1),(490,-226533600,2),(490,-213228000,1),(490,-195084000,2),(490,-182383200,1),(490,-163634400,2),(490,-150933600,1),(490,-132184800,2),(490,-119484000,1),(490,-100735200,2),(490,-88034400,1),(490,-68680800,2),(490,-59004000,1),(490,-37242000,4),(490,57722400,6),(490,69818400,1),(490,89172000,2),(490,101268000,1),(490,120621600,2),(490,132717600,1),(490,152071200,2),(490,164167200,1),(490,183520800,2),(490,196221600,1),(490,214970400,2),(490,227671200,1),(490,246420000,2),(490,259120800,1),(490,278474400,2),(490,290570400,1),(490,309924000,2),(490,322020000,1),(490,341373600,2),(490,354675600,5),(490,372819600,6),(490,386125200,5),(490,404269200,6),(490,417574800,5),(490,435718800,6),(490,449024400,5),(490,467773200,6),(490,481078800,5),(490,499222800,6),(490,512528400,5),(490,530672400,6),(490,543978000,5),(490,562122000,6),(490,575427600,5),(490,593571600,6),(490,606877200,5),(490,625626000,6),(490,638326800,5),(490,657075600,6),(490,670381200,5),(490,688525200,6),(490,701830800,5),(490,719974800,6),(490,733280400,5),(490,751424400,6),(490,764730000,5),(490,782874000,6),(490,796179600,5),(490,814323600,6),(490,820454400,7),(490,828234000,5),(490,846378000,6),(490,859683600,5),(490,877827600,6),(490,891133200,5),(490,909277200,6),(490,922582800,5),(490,941331600,6),(490,954032400,5),(490,972781200,6),(490,985482000,5),(490,1004230800,6),(490,1017536400,5),(490,1035680400,6),(490,1048986000,5),(490,1067130000,6),(490,1080435600,5),(490,1099184400,6),(490,1111885200,5),(490,1130634000,6),(490,1143334800,5),(490,1162083600,6),(490,1174784400,5),(490,1193533200,6),(490,1206838800,5),(490,1224982800,6),(490,1238288400,5),(490,1256432400,6),(490,1269738000,5),(490,1288486800,6),(490,1301187600,5),(490,1319936400,6),(490,1332637200,5),(490,1351386000,6),(490,1364691600,5),(490,1382835600,6),(490,1396141200,5),(490,1414285200,6),(490,1427590800,5),(490,1445734800,6),(490,1459040400,5),(490,1477789200,6),(490,1490490000,5),(490,1509238800,6),(490,1521939600,5),(490,1540688400,6),(490,1553994000,5),(490,1572138000,6),(490,1585443600,5),(490,1603587600,6),(490,1616893200,5),(490,1635642000,6),(490,1648342800,5),(490,1667091600,6),(490,1679792400,5),(490,1698541200,6),(490,1711846800,5),(490,1729990800,6),(490,1743296400,5),(490,1761440400,6),(490,1774746000,5),(490,1792890000,6),(490,1806195600,5),(490,1824944400,6),(490,1837645200,5),(490,1856394000,6),(490,1869094800,5),(490,1887843600,6),(490,1901149200,5),(490,1919293200,6),(490,1932598800,5),(490,1950742800,6),(490,1964048400,5),(490,1982797200,6),(490,1995498000,5),(490,2014246800,6),(490,2026947600,5),(490,2045696400,6),(490,2058397200,5),(490,2077146000,6),(490,2090451600,5),(490,2108595600,6),(490,2121901200,5),(490,2140045200,6),(497,-2147483648,0),(497,-2056690800,1),(497,-900910800,2),(497,-891579600,3),(497,-884248200,4),(497,-761209200,1),(497,-747907200,2),(497,-728541000,5),(497,-717049800,6),(497,-697091400,5),(497,-683785800,6),(497,-668061000,5),(497,-654755400,2),(497,-636611400,5),(497,-623305800,2),(497,-605161800,5),(497,-591856200,2),(497,-573712200,5),(497,-559801800,2),(497,-541657800,5),(497,-528352200,2),(497,-510211800,1),(497,-498112200,2),(497,-478762200,1),(497,-466662600,2),(497,-446707800,1),(497,-435213000,2),(497,-415258200,1),(497,-403158600,2),(497,-383808600,1),(497,-371709000,2),(497,-352359000,1),(497,-340259400,2),(497,-320909400,1),(497,-308809800,2),(497,-288855000,1),(497,-277360200,2),(497,-257405400,1),(497,-245910600,2),(497,-225955800,1),(497,-213856200,2),(497,-194506200,1),(497,-182406600,2),(497,-163056600,1),(497,-148537800,2),(497,-132816600,1),(497,-117088200,2),(497,-101367000,1),(497,-85638600,2),(497,-69312600,1),(497,-53584200,2),(497,-37863000,1),(497,-22134600,2),(497,-6413400,1),(497,9315000,2),(497,25036200,1),(497,40764600,2),(497,56485800,1),(497,72214200,2),(497,88540200,1),(497,104268600,2),(497,119989800,1),(497,126041400,2),(497,151439400,1),(497,167167800,2),(497,182889000,1),(497,198617400,2),(497,214338600,1),(497,295385400,2),(497,309292200,1),(498,-2147483648,0),(498,-1956609120,2),(498,-1668211200,1),(498,-1647212400,2),(498,-1636675200,1),(498,-1613430000,2),(498,-1605139200,1),(498,-1581894000,2),(498,-1539561600,1),(498,-1531350000,2),(498,-968025600,1),(498,-952293600,2),(498,-942008400,1),(498,-920239200,3),(498,-909957600,4),(498,-888789600,3),(498,-877903200,4),(498,-857944800,3),(498,-846453600,4),(498,-826495200,3),(498,-815004000,4),(498,-795045600,3),(498,-783554400,4),(498,-762991200,3),(498,-752104800,4),(498,-731541600,3),(498,-717631200,4),(498,-700092000,3),(498,-686181600,4),(498,-668642400,3),(498,-654732000,4),(498,-636588000,3),(498,-623282400,4),(498,-605743200,3),(498,-591832800,4),(498,-573688800,3),(498,-559778400,4),(498,-542239200,3),(498,-528328800,4),(498,-510789600,3),(498,-496879200,4),(498,-479340000,3),(498,-465429600,4),(498,-447890400,3),(498,-433980000,4),(498,-415836000,3),(498,-401925600,4),(498,-384386400,3),(498,-370476000,4),(498,-352936800,3),(498,-339026400,4),(498,-321487200,3),(498,-307576800,4),(498,-290037600,3),(498,-276127200,4),(498,-258588000,3),(498,-244677600,4),(498,-226533600,3),(498,-212623200,4),(498,-195084000,3),(498,-181173600,4),(498,-163634400,3),(498,-149724000,4),(498,-132184800,3),(498,-118274400,4),(498,-100735200,3),(498,-86824800,4),(498,-68680800,3),(498,-54770400,5),(499,-2147483648,0),(499,-1309746436,1),(499,-1262314800,2),(499,-946780200,3),(499,-315629100,1),(500,-2147483648,0),(500,-1988167780,1),(500,820436400,2),(503,-2147483648,0),(503,-1309746436,1),(503,-1262314800,2),(503,-946780200,3),(503,-315629100,1),(504,-2147483648,0),(504,-631152000,1),(505,-2147483648,0),(505,-2006653308,1),(506,-2147483648,1),(506,-315636840,2),(507,-2147483648,0),(507,-1988164200,2),(507,403041600,1),(507,417034800,2),(507,1224972000,1),(507,1238274000,2),(508,-2147483648,0),(508,-1309746436,1),(508,-1262314800,2),(508,-946780200,3),(508,-315629100,1),(509,-2147483648,0),(509,-1848886912,1),(510,-2147483648,0),(510,-1704165944,1),(510,-757394744,2),(510,247177800,4),(510,259272000,3),(510,277758000,4),(510,283982400,2),(510,290809800,5),(510,306531000,2),(510,322432200,5),(510,338499000,2),(510,673216200,5),(510,685481400,2),(510,701209800,5),(510,717103800,2),(510,732745800,5),(510,748639800,2),(510,764281800,5),(510,780175800,2),(510,795817800,5),(510,811711800,2),(510,827353800,5),(510,843247800,2),(510,858976200,5),(510,874870200,2),(510,890512200,5),(510,906406200,2),(510,922048200,5),(510,937942200,2),(510,953584200,5),(510,969478200,2),(510,985206600,5),(510,1001100600,2),(510,1016742600,5),(510,1032636600,2),(510,1048278600,5),(510,1064172600,2),(510,1079814600,5),(510,1095708600,2),(510,1111437000,5),(510,1127331000,2),(510,1206045000,5),(510,1221939000,2),(510,1237667400,5),(510,1253561400,2),(510,1269203400,5),(510,1285097400,2),(510,1300739400,5),(510,1316633400,2),(510,1332275400,5),(510,1348169400,2),(510,1363897800,5),(510,1379791800,2),(510,1395433800,5),(510,1411327800,2),(510,1426969800,5),(510,1442863800,2),(510,1458505800,5),(510,1474399800,2),(510,1490128200,5),(510,1506022200,2),(510,1521664200,5),(510,1537558200,2),(510,1553200200,5),(510,1569094200,2),(510,1584736200,5),(510,1600630200,2),(510,1616358600,5),(510,1632252600,2),(510,1647894600,5),(510,1663788600,2),(510,1679430600,5),(510,1695324600,2),(510,1710966600,5),(510,1726860600,2),(510,1742589000,5),(510,1758483000,2),(510,1774125000,5),(510,1790019000,2),(510,1805661000,5),(510,1821555000,2),(510,1837197000,5),(510,1853091000,2),(510,1868733000,5),(510,1884627000,2),(510,1900355400,5),(510,1916249400,2),(510,1931891400,5),(510,1947785400,2),(510,1963427400,5),(510,1979321400,2),(510,1994963400,5),(510,2010857400,2),(510,2026585800,5),(510,2042479800,2),(510,2058121800,5),(510,2074015800,2),(510,2089657800,5),(510,2105551800,2),(510,2121193800,5),(510,2137087800,2),(511,-2147483648,1),(511,-1641003640,3),(511,-933645600,2),(511,-857358000,3),(511,-844300800,2),(511,-825822000,3),(511,-812685600,2),(511,-794199600,3),(511,-779853600,2),(511,-762656400,3),(511,-748310400,2),(511,-731127600,3),(511,-681962400,4),(511,-673243200,2),(511,-667962000,3),(511,-652327200,2),(511,-636426000,3),(511,-622087200,2),(511,-608947200,3),(511,-591847200,2),(511,-572486400,3),(511,-558576000,2),(511,-542851200,3),(511,-527731200,2),(511,-514425600,3),(511,-490845600,2),(511,-482986800,3),(511,-459475200,2),(511,-451537200,3),(511,-428551200,2),(511,-418262400,3),(511,-400032000,2),(511,-387428400,3),(511,142380000,2),(511,150843600,3),(511,167176800,2),(511,178664400,3),(511,334015200,2),(511,337644000,3),(511,452556000,2),(511,462232800,3),(511,482277600,2),(511,495579600,3),(511,516751200,2),(511,526424400,3),(511,545436000,2),(511,558478800,3),(511,576626400,2),(511,589323600,3),(511,609890400,2),(511,620773200,3),(511,638316000,2),(511,651618000,3),(511,669765600,2),(511,683672400,3),(511,701820000,2),(511,715726800,3),(511,733701600,2),(511,747176400,3),(511,765151200,2),(511,778021200,3),(511,796600800,2),(511,810075600,3),(511,826840800,2),(511,842821200,3),(511,858895200,2),(511,874184400,3),(511,890344800,2),(511,905029200,3),(511,923011200,2),(511,936313200,3),(511,955670400,2),(511,970783200,3),(511,986770800,2),(511,1001282400,3),(511,1017356400,2),(511,1033941600,3),(511,1048806000,2),(511,1065132000,3),(511,1081292400,2),(511,1095804000,3),(511,1112313600,2),(511,1128812400,3),(511,1143763200,2),(511,1159657200,3),(511,1175212800,2),(511,1189897200,3),(511,1206662400,2),(511,1223161200,3),(511,1238112000,2),(511,1254006000,3),(511,1269561600,2),(511,1284246000,3),(511,1301616000,2),(511,1317510000,3),(511,1333065600,2),(511,1348354800,3),(511,1364515200,2),(511,1382828400,3),(511,1395964800,2),(511,1414278000,3),(511,1427414400,2),(511,1445727600,3),(511,1458864000,2),(511,1477782000,3),(511,1490313600,2),(511,1509231600,3),(511,1521763200,2),(511,1540681200,3),(511,1553817600,2),(511,1572130800,3),(511,1585267200,2),(511,1603580400,3),(511,1616716800,2),(511,1635634800,3),(511,1648166400,2),(511,1667084400,3),(511,1679616000,2),(511,1698534000,3),(511,1711670400,2),(511,1729983600,3),(511,1743120000,2),(511,1761433200,3),(511,1774569600,2),(511,1792882800,3),(511,1806019200,2),(511,1824937200,3),(511,1837468800,2),(511,1856386800,3),(511,1868918400,2),(511,1887836400,3),(511,1900972800,2),(511,1919286000,3),(511,1932422400,2),(511,1950735600,3),(511,1963872000,2),(511,1982790000,3),(511,1995321600,2),(511,2014239600,3),(511,2026771200,2),(511,2045689200,3),(511,2058220800,2),(511,2077138800,3),(511,2090275200,2),(511,2108588400,3),(511,2121724800,2),(511,2140038000,3),(512,-2147483648,1),(512,-1827687170,2),(512,126687600,3),(512,152085600,2),(512,162370800,3),(512,183535200,2),(512,199263600,3),(512,215589600,2),(512,230713200,3),(512,247039200,2),(512,262767600,3),(512,278488800,2),(512,294217200,3),(512,309938400,2),(512,325666800,3),(512,341388000,2),(512,357116400,3),(512,372837600,2),(512,388566000,3),(512,404892000,2),(512,420015600,3),(512,436341600,2),(513,-2147483648,3),(513,-683802000,1),(513,-672310800,2),(513,-654771600,1),(513,-640861200,2),(513,-620298000,1),(513,-609411600,2),(513,-588848400,1),(513,-577962000,2),(514,-2147483648,1),(514,-1041418800,2),(514,-907408800,3),(514,-817462800,1),(514,-7988400,4),(514,745934400,5),(515,-2147483648,0),(515,-1577926364,2),(515,-574902000,1),(515,-568087200,2),(515,-512175600,1),(515,-504928800,2),(515,-449888400,1),(515,-441856800,2),(515,-347158800,3),(515,378684000,2),(515,386463600,1),(515,402271200,2),(515,417999600,1),(515,433807200,2),(515,449622000,1),(515,465429600,2),(515,481590000,1),(515,496965600,2),(515,512953200,1),(515,528674400,2),(515,544230000,1),(515,560037600,2),(515,575852400,1),(515,591660000,2),(515,607388400,1),(515,623196000,2),(515,641775600,3),(515,844034400,2),(515,860108400,1),(515,875916000,3),(515,1352505600,2),(515,1364515200,1),(515,1382659200,3),(516,-1693706400,0),(516,-1680483600,1),(516,-1663455600,2),(516,-1650150000,3),(516,-1632006000,2),(516,-1618700400,3),(516,-938905200,2),(516,-857257200,3),(516,-844556400,2),(516,-828226800,3),(516,-812502000,2),(516,-796777200,3),(516,-781052400,2),(516,-766623600,3),(516,228877200,2),(516,243997200,3),(516,260326800,2),(516,276051600,3),(516,291776400,2),(516,307501200,3),(516,323830800,2),(516,338950800,3),(516,354675600,2),(516,370400400,3),(516,386125200,2),(516,401850000,3),(516,417574800,2),(516,433299600,3),(516,449024400,2),(516,465354000,3),(516,481078800,2),(516,496803600,3),(516,512528400,2),(516,528253200,3),(516,543978000,2),(516,559702800,3),(516,575427600,2),(516,591152400,3),(516,606877200,2),(516,622602000,3),(516,638326800,2),(516,654656400,3),(516,670381200,2),(516,686106000,3),(516,701830800,2),(516,717555600,3),(516,733280400,2),(516,749005200,3),(516,764730000,2),(516,780454800,3),(516,796179600,2),(516,811904400,3),(516,828234000,2),(516,846378000,3),(516,859683600,2),(516,877827600,3),(516,891133200,2),(516,909277200,3),(516,922582800,2),(516,941331600,3),(516,954032400,2),(516,972781200,3),(516,985482000,2),(516,1004230800,3),(516,1017536400,2),(516,1035680400,3),(516,1048986000,2),(516,1067130000,3),(516,1080435600,2),(516,1099184400,3),(516,1111885200,2),(516,1130634000,3),(516,1143334800,2),(516,1162083600,3),(516,1174784400,2),(516,1193533200,3),(516,1206838800,2),(516,1224982800,3),(516,1238288400,2),(516,1256432400,3),(516,1269738000,2),(516,1288486800,3),(516,1301187600,2),(516,1319936400,3),(516,1332637200,2),(516,1351386000,3),(516,1364691600,2),(516,1382835600,3),(516,1396141200,2),(516,1414285200,3),(516,1427590800,2),(516,1445734800,3),(516,1459040400,2),(516,1477789200,3),(516,1490490000,2),(516,1509238800,3),(516,1521939600,2),(516,1540688400,3),(516,1553994000,2),(516,1572138000,3),(516,1585443600,2),(516,1603587600,3),(516,1616893200,2),(516,1635642000,3),(516,1648342800,2),(516,1667091600,3),(516,1679792400,2),(516,1698541200,3),(516,1711846800,2),(516,1729990800,3),(516,1743296400,2),(516,1761440400,3),(516,1774746000,2),(516,1792890000,3),(516,1806195600,2),(516,1824944400,3),(516,1837645200,2),(516,1856394000,3),(516,1869094800,2),(516,1887843600,3),(516,1901149200,2),(516,1919293200,3),(516,1932598800,2),(516,1950742800,3),(516,1964048400,2),(516,1982797200,3),(516,1995498000,2),(516,2014246800,3),(516,2026947600,2),(516,2045696400,3),(516,2058397200,2),(516,2077146000,3),(516,2090451600,2),(516,2108595600,3),(516,2121901200,2),(516,2140045200,3),(518,-1633273200,0),(518,-1615132800,1),(518,-1601823600,0),(518,-1583683200,1),(518,-880210800,2),(518,-769395600,3),(518,-765388800,1),(518,-84380400,0),(518,-68659200,1),(518,-52930800,0),(518,-37209600,1),(518,-21481200,0),(518,-5760000,1),(518,9968400,0),(518,25689600,1),(518,41418000,0),(518,57744000,1),(518,73472400,0),(518,89193600,1),(518,104922000,0),(518,120643200,1),(518,126694800,0),(518,152092800,1),(518,162378000,0),(518,183542400,1),(518,199270800,0),(518,215596800,1),(518,230720400,0),(518,247046400,1),(518,262774800,0),(518,278496000,1),(518,294224400,0),(518,309945600,1),(518,325674000,0),(518,341395200,1),(518,357123600,0),(518,372844800,1),(518,388573200,0),(518,404899200,1),(518,420022800,0),(518,436348800,1),(518,452077200,0),(518,467798400,1),(518,483526800,0),(518,499248000,1),(518,514976400,0),(518,530697600,1),(518,544611600,0),(518,562147200,1),(518,576061200,0),(518,594201600,1),(518,607510800,0),(518,625651200,1),(518,638960400,0),(518,657100800,1),(518,671014800,0),(518,688550400,1),(518,702464400,0),(518,720000000,1),(518,733914000,0),(518,752054400,1),(518,765363600,0),(518,783504000,1),(518,796813200,0),(518,814953600,1),(518,828867600,0),(518,846403200,1),(518,860317200,0),(518,877852800,1),(518,891766800,0),(518,909302400,1),(518,923216400,0),(518,941356800,1),(518,954666000,0),(518,972806400,1),(518,986115600,0),(518,1004256000,1),(518,1018170000,0),(518,1035705600,1),(518,1049619600,0),(518,1067155200,1),(518,1081069200,0),(518,1099209600,1),(518,1112518800,0),(518,1130659200,1),(518,1143968400,0),(518,1162108800,1),(518,1173603600,0),(518,1194163200,1),(518,1205053200,0),(518,1225612800,1),(518,1236502800,0),(518,1257062400,1),(518,1268557200,0),(518,1289116800,1),(518,1300006800,0),(518,1320566400,1),(518,1331456400,0),(518,1352016000,1),(518,1362906000,0),(518,1383465600,1),(518,1394355600,0),(518,1414915200,1),(518,1425805200,0),(518,1446364800,1),(518,1457859600,0),(518,1478419200,1),(518,1489309200,0),(518,1509868800,1),(518,1520758800,0),(518,1541318400,1),(518,1552208400,0),(518,1572768000,1),(518,1583658000,0),(518,1604217600,1),(518,1615712400,0),(518,1636272000,1),(518,1647162000,0),(518,1667721600,1),(518,1678611600,0),(518,1699171200,1),(518,1710061200,0),(518,1730620800,1),(518,1741510800,0),(518,1762070400,1),(518,1772960400,0),(518,1793520000,1),(518,1805014800,0),(518,1825574400,1),(518,1836464400,0),(518,1857024000,1),(518,1867914000,0),(518,1888473600,1),(518,1899363600,0),(518,1919923200,1),(518,1930813200,0),(518,1951372800,1),(518,1962867600,0),(518,1983427200,1),(518,1994317200,0),(518,2014876800,1),(518,2025766800,0),(518,2046326400,1),(518,2057216400,0),(518,2077776000,1),(518,2088666000,0),(518,2109225600,1),(518,2120115600,0),(518,2140675200,1),(519,-2147483648,0),(519,-1514736000,1),(519,-1451667600,2),(519,-1343062800,1),(519,-1234803600,2),(519,-1222963200,3),(519,-1207242000,2),(519,-873820800,4),(519,-769395600,5),(519,-761677200,2),(519,-686073600,3),(519,-661539600,2),(519,-495039600,3),(519,-481734000,2),(519,-463590000,3),(519,-450284400,2),(519,-431535600,3),(519,-418230000,2),(519,-400086000,3),(519,-386780400,2),(519,-368636400,3),(519,-355330800,2),(519,-337186800,3),(519,-323881200,2),(519,-305737200,3),(519,-292431600,2),(519,199274400,3),(519,215600400,2),(519,230724000,3),(519,247050000,2),(519,262778400,3),(519,278499600,2),(519,294228000,3),(519,309949200,2),(519,325677600,3),(519,341398800,2),(519,357127200,3),(519,372848400,2),(519,388576800,3),(519,404902800,2),(519,420026400,3),(519,436352400,2),(519,452080800,3),(519,467802000,2),(519,483530400,3),(519,499251600,2),(519,514980000,3),(519,530701200,2),(519,544615200,3),(519,562150800,2),(519,576064800,3),(519,594205200,2),(519,607514400,3),(519,625654800,2),(519,638964000,3),(519,657104400,2),(519,671018400,3),(519,688554000,2),(519,702468000,3),(519,720003600,2),(519,733917600,3),(519,752058000,2),(519,765367200,3),(519,783507600,2),(519,796816800,3),(519,814957200,2),(519,828871200,3),(519,846406800,2),(519,860320800,3),(519,877856400,2),(519,891770400,3),(519,909306000,2),(519,923220000,3),(519,941360400,2),(519,954669600,3),(519,972810000,2),(519,986119200,3),(519,1004259600,2),(519,1018173600,3),(519,1035709200,2),(519,1049623200,3),(519,1067158800,2),(519,1081072800,3),(519,1099213200,2),(519,1112522400,3),(519,1130662800,2),(519,1143972000,3),(519,1162112400,2),(519,1175421600,3),(519,1193562000,2),(519,1207476000,3),(519,1225011600,2),(519,1238925600,3),(519,1256461200,2),(519,1268560800,3),(519,1289120400,2),(519,1300010400,3),(519,1320570000,2),(519,1331460000,3),(519,1352019600,2),(519,1362909600,3),(519,1383469200,2),(519,1394359200,3),(519,1414918800,2),(519,1425808800,3),(519,1446368400,2),(519,1457863200,3),(519,1478422800,2),(519,1489312800,3),(519,1509872400,2),(519,1520762400,3),(519,1541322000,2),(519,1552212000,3),(519,1572771600,2),(519,1583661600,3),(519,1604221200,2),(519,1615716000,3),(519,1636275600,2),(519,1647165600,3),(519,1667725200,2),(519,1678615200,3),(519,1699174800,2),(519,1710064800,3),(519,1730624400,2),(519,1741514400,3),(519,1762074000,2),(519,1772964000,3),(519,1793523600,2),(519,1805018400,3),(519,1825578000,2),(519,1836468000,3),(519,1857027600,2),(519,1867917600,3),(519,1888477200,2),(519,1899367200,3),(519,1919926800,2),(519,1930816800,3),(519,1951376400,2),(519,1962871200,3),(519,1983430800,2),(519,1994320800,3),(519,2014880400,2),(519,2025770400,3),(519,2046330000,2),(519,2057220000,3),(519,2077779600,2),(519,2088669600,3),(519,2109229200,2),(519,2120119200,3),(519,2140678800,2),(520,-2147483648,0),(520,-1514739600,1),(520,-1343066400,2),(520,-1234807200,1),(520,-1220292000,2),(520,-1207159200,1),(520,-1191344400,2),(520,-873828000,1),(520,-661539600,3),(520,28800,1),(520,828867600,4),(520,846403200,1),(520,860317200,4),(520,877852800,1),(520,891766800,4),(520,909302400,1),(520,923216400,4),(520,941356800,1),(520,954666000,4),(520,972806400,1),(520,989139600,4),(520,1001836800,1),(520,1018170000,4),(520,1035705600,1),(520,1049619600,4),(520,1067155200,1),(520,1081069200,4),(520,1099209600,1),(520,1112518800,4),(520,1130659200,1),(520,1143968400,4),(520,1162108800,1),(520,1175418000,4),(520,1193558400,1),(520,1207472400,4),(520,1225008000,1),(520,1238922000,4),(520,1256457600,1),(520,1270371600,4),(520,1288512000,1),(520,1301821200,4),(520,1319961600,1),(520,1333270800,4),(520,1351411200,1),(520,1365325200,4),(520,1382860800,1),(520,1396774800,4),(520,1414310400,1),(520,1428224400,4),(520,1445760000,1),(520,1459674000,4),(520,1477814400,1),(520,1491123600,4),(520,1509264000,1),(520,1522573200,4),(520,1540713600,1),(520,1554627600,4),(520,1572163200,1),(520,1586077200,4),(520,1603612800,1),(520,1617526800,4),(520,1635667200,1),(520,1648976400,4),(520,1667116800,1),(520,1680426000,4),(520,1698566400,1),(520,1712480400,4),(520,1730016000,1),(520,1743930000,4),(520,1761465600,1),(520,1775379600,4),(520,1792915200,1),(520,1806829200,4),(520,1824969600,1),(520,1838278800,4),(520,1856419200,1),(520,1869728400,4),(520,1887868800,1),(520,1901782800,4),(520,1919318400,1),(520,1933232400,4),(520,1950768000,1),(520,1964682000,4),(520,1982822400,1),(520,1996131600,4),(520,2014272000,1),(520,2027581200,4),(520,2045721600,1),(520,2059030800,4),(520,2077171200,1),(520,2091085200,4),(520,2108620800,1),(520,2122534800,4),(520,2140070400,1),(521,-2147483648,0),(521,-1514739600,1),(521,-1343066400,2),(521,-1234807200,1),(521,-1220292000,2),(521,-1207159200,1),(521,-1191344400,2),(521,-975261600,3),(521,-963169200,2),(521,-917114400,3),(521,-907354800,2),(521,-821901600,4),(521,-810068400,2),(521,-627501600,3),(521,-612990000,2),(521,828864000,3),(521,846399600,2),(521,860313600,3),(521,877849200,2),(521,891763200,3),(521,909298800,2),(521,923212800,3),(521,941353200,2),(521,954662400,3),(521,972802800,2),(521,989136000,3),(521,1001833200,2),(521,1018166400,3),(521,1035702000,2),(521,1049616000,3),(521,1067151600,2),(521,1081065600,3),(521,1099206000,2),(521,1112515200,3),(521,1130655600,2),(521,1143964800,3),(521,1162105200,2),(521,1175414400,3),(521,1193554800,2),(521,1207468800,3),(521,1225004400,2),(521,1238918400,3),(521,1256454000,2),(521,1270368000,3),(521,1288508400,2),(521,1301817600,3),(521,1319958000,2),(521,1333267200,3),(521,1351407600,2),(521,1365321600,3),(521,1382857200,2),(521,1396771200,3),(521,1414306800,2),(521,1428220800,3),(521,1445756400,2),(521,1459670400,3),(521,1477810800,2),(521,1491120000,3),(521,1509260400,2),(521,1522569600,3),(521,1540710000,2),(521,1554624000,3),(521,1572159600,2),(521,1586073600,3),(521,1603609200,2),(521,1617523200,3),(521,1635663600,2),(521,1648972800,3),(521,1667113200,2),(521,1680422400,3),(521,1698562800,2),(521,1712476800,3),(521,1730012400,2),(521,1743926400,3),(521,1761462000,2),(521,1775376000,3),(521,1792911600,2),(521,1806825600,3),(521,1824966000,2),(521,1838275200,3),(521,1856415600,2),(521,1869724800,3),(521,1887865200,2),(521,1901779200,3),(521,1919314800,2),(521,1933228800,3),(521,1950764400,2),(521,1964678400,3),(521,1982818800,2),(521,1996128000,3),(521,2014268400,2),(521,2027577600,3),(521,2045718000,2),(521,2059027200,3),(521,2077167600,2),(521,2091081600,3),(521,2108617200,2),(521,2122531200,3),(521,2140066800,2),(522,-2147483648,2),(522,-1330335000,1),(522,-1320057000,2),(522,-1300699800,3),(522,-1287396000,2),(522,-1269250200,3),(522,-1255946400,2),(522,-1237800600,3),(522,-1224496800,2),(522,-1206351000,3),(522,-1192442400,2),(522,-1174901400,3),(522,-1160992800,2),(522,-1143451800,3),(522,-1125914400,2),(522,-1112607000,3),(522,-1094464800,2),(522,-1081157400,3),(522,-1063015200,2),(522,-1049707800,3),(522,-1031565600,2),(522,-1018258200,3),(522,-1000116000,2),(522,-986808600,3),(522,-968061600,2),(522,-955359000,3),(522,-936612000,2),(522,-923304600,3),(522,-757425600,6),(522,152632800,4),(522,162309600,5),(522,183477600,4),(522,194968800,5),(522,215532000,4),(522,226418400,5),(522,246981600,4),(522,257868000,5),(522,278431200,4),(522,289317600,5),(522,309880800,4),(522,320767200,5),(522,341330400,4),(522,352216800,5),(522,372780000,4),(522,384271200,5),(522,404834400,4),(522,415720800,5),(522,436284000,4),(522,447170400,5),(522,467733600,4),(522,478620000,5),(522,499183200,4),(522,510069600,5),(522,530632800,4),(522,541519200,5),(522,562082400,4),(522,573573600,5),(522,594136800,4),(522,605023200,5),(522,623772000,4),(522,637682400,5),(522,655221600,4),(522,669132000,5),(522,686671200,4),(522,700581600,5),(522,718120800,4),(522,732636000,5),(522,749570400,4),(522,764085600,5),(522,781020000,4),(522,795535200,5),(522,812469600,4),(522,826984800,5),(522,844524000,4),(522,858434400,5),(522,875973600,4),(522,889884000,5),(522,907423200,4),(522,921938400,5),(522,938872800,4),(522,953388000,5),(522,970322400,4),(522,984837600,5),(522,1002376800,4),(522,1016287200,5),(522,1033826400,4),(522,1047736800,5),(522,1065276000,4),(522,1079791200,5),(522,1096725600,4),(522,1111240800,5),(522,1128175200,4),(522,1142690400,5),(522,1159624800,4),(522,1174140000,5),(522,1191074400,4),(522,1207404000,5),(522,1222524000,4),(522,1238853600,5),(522,1253973600,4),(522,1270303200,5),(522,1285423200,4),(522,1301752800,5),(522,1316872800,4),(522,1333202400,5),(522,1348927200,4),(522,1365256800,5),(522,1380376800,4),(522,1396706400,5),(522,1411826400,4),(522,1428156000,5),(522,1443276000,4),(522,1459605600,5),(522,1474725600,4),(522,1491055200,5),(522,1506175200,4),(522,1522504800,5),(522,1538229600,4),(522,1554559200,5),(522,1569679200,4),(522,1586008800,5),(522,1601128800,4),(522,1617458400,5),(522,1632578400,4),(522,1648908000,5),(522,1664028000,4),(522,1680357600,5),(522,1695477600,4),(522,1712412000,5),(522,1727532000,4),(522,1743861600,5),(522,1758981600,4),(522,1775311200,5),(522,1790431200,4),(522,1806760800,5),(522,1821880800,4),(522,1838210400,5),(522,1853330400,4),(522,1869660000,5),(522,1885384800,4),(522,1901714400,5),(522,1916834400,4),(522,1933164000,5),(522,1948284000,4),(522,1964613600,5),(522,1979733600,4),(522,1996063200,5),(522,2011183200,4),(522,2027512800,5),(522,2042632800,4),(522,2058962400,5),(522,2074687200,4),(522,2091016800,5),(522,2106136800,4),(522,2122466400,5),(522,2137586400,4),(523,-2147483648,1),(523,-757426500,4),(523,152632800,2),(523,162309600,3),(523,183477600,2),(523,194968800,3),(523,215532000,2),(523,226418400,3),(523,246981600,2),(523,257868000,3),(523,278431200,2),(523,289317600,3),(523,309880800,2),(523,320767200,3),(523,341330400,2),(523,352216800,3),(523,372780000,2),(523,384271200,3),(523,404834400,2),(523,415720800,3),(523,436284000,2),(523,447170400,3),(523,467733600,2),(523,478620000,3),(523,499183200,2),(523,510069600,3),(523,530632800,2),(523,541519200,3),(523,562082400,2),(523,573573600,3),(523,594136800,2),(523,605023200,3),(523,623772000,2),(523,637682400,3),(523,655221600,2),(523,669132000,3),(523,686671200,2),(523,700581600,3),(523,718120800,2),(523,732636000,3),(523,749570400,2),(523,764085600,3),(523,781020000,2),(523,795535200,3),(523,812469600,2),(523,826984800,3),(523,844524000,2),(523,858434400,3),(523,875973600,2),(523,889884000,3),(523,907423200,2),(523,921938400,3),(523,938872800,2),(523,953388000,3),(523,970322400,2),(523,984837600,3),(523,1002376800,2),(523,1016287200,3),(523,1033826400,2),(523,1047736800,3),(523,1065276000,2),(523,1079791200,3),(523,1096725600,2),(523,1111240800,3),(523,1128175200,2),(523,1142690400,3),(523,1159624800,2),(523,1174140000,3),(523,1191074400,2),(523,1207404000,3),(523,1222524000,2),(523,1238853600,3),(523,1253973600,2),(523,1270303200,3),(523,1285423200,2),(523,1301752800,3),(523,1316872800,2),(523,1333202400,3),(523,1348927200,2),(523,1365256800,3),(523,1380376800,2),(523,1396706400,3),(523,1411826400,2),(523,1428156000,3),(523,1443276000,2),(523,1459605600,3),(523,1474725600,2),(523,1491055200,3),(523,1506175200,2),(523,1522504800,3),(523,1538229600,2),(523,1554559200,3),(523,1569679200,2),(523,1586008800,3),(523,1601128800,2),(523,1617458400,3),(523,1632578400,2),(523,1648908000,3),(523,1664028000,2),(523,1680357600,3),(523,1695477600,2),(523,1712412000,3),(523,1727532000,2),(523,1743861600,3),(523,1758981600,2),(523,1775311200,3),(523,1790431200,2),(523,1806760800,3),(523,1821880800,2),(523,1838210400,3),(523,1853330400,2),(523,1869660000,3),(523,1885384800,2),(523,1901714400,3),(523,1916834400,2),(523,1933164000,3),(523,1948284000,2),(523,1964613600,3),(523,1979733600,2),(523,1996063200,3),(523,2011183200,2),(523,2027512800,3),(523,2042632800,2),(523,2058962400,3),(523,2074687200,2),(523,2091016800,3),(523,2106136800,2),(523,2122466400,3),(523,2137586400,2),(524,-2147483648,2),(524,-1633273200,1),(524,-1615132800,2),(524,-1601823600,1),(524,-1583683200,2),(524,-1570374000,1),(524,-1551628800,2),(524,-1538924400,1),(524,-1534089600,2),(524,-880210800,3),(524,-769395600,4),(524,-765388800,2),(524,-147884400,1),(524,-131558400,2),(524,-116434800,1),(524,-100108800,2),(524,-84380400,1),(524,-68659200,2),(524,-52930800,1),(524,-37209600,2),(524,-21481200,1),(524,-5760000,2),(524,9968400,1),(524,25689600,2),(524,41418000,1),(524,57744000,2),(524,73472400,1),(524,89193600,2),(524,104922000,1),(524,120643200,2),(524,126694800,1),(524,152092800,2),(524,162378000,1),(524,183542400,2),(524,199270800,1),(524,215596800,2),(524,230720400,1),(524,247046400,2),(524,262774800,1),(524,278496000,2),(524,294224400,1),(524,309945600,2),(524,325674000,1),(524,341395200,2),(524,357123600,1),(524,372844800,2),(524,388573200,1),(524,404899200,2),(524,420022800,1),(524,436348800,2),(524,452077200,1),(524,467798400,2),(524,483526800,1),(524,499248000,2),(524,514976400,1),(524,530697600,2),(524,544611600,1),(524,562147200,2),(524,576061200,1),(524,594201600,2),(524,607510800,1),(524,625651200,2),(524,638960400,1),(524,657100800,2),(524,671014800,1),(524,688550400,2),(524,702464400,1),(524,720000000,2),(524,733914000,1),(524,752054400,2),(524,765363600,1),(524,783504000,2),(524,796813200,1),(524,814953600,2),(524,828867600,1),(524,846403200,2),(524,860317200,1),(524,877852800,2),(524,891766800,1),(524,909302400,2),(524,923216400,1),(524,941356800,2),(524,954666000,1),(524,972806400,2),(524,986115600,1),(524,1004256000,2),(524,1018170000,1),(524,1035705600,2),(524,1049619600,1),(524,1067155200,2),(524,1081069200,1),(524,1099209600,2),(524,1112518800,1),(524,1130659200,2),(524,1143968400,1),(524,1162108800,2),(524,1173603600,1),(524,1194163200,2),(524,1205053200,1),(524,1225612800,2),(524,1236502800,1),(524,1257062400,2),(524,1268557200,1),(524,1289116800,2),(524,1300006800,1),(524,1320566400,2),(524,1331456400,1),(524,1352016000,2),(524,1362906000,1),(524,1383465600,2),(524,1394355600,1),(524,1414915200,2),(524,1425805200,1),(524,1446364800,2),(524,1457859600,1),(524,1478419200,2),(524,1489309200,1),(524,1509868800,2),(524,1520758800,1),(524,1541318400,2),(524,1552208400,1),(524,1572768000,2),(524,1583658000,1),(524,1604217600,2),(524,1615712400,1),(524,1636272000,2),(524,1647162000,1),(524,1667721600,2),(524,1678611600,1),(524,1699171200,2),(524,1710061200,1),(524,1730620800,2),(524,1741510800,1),(524,1762070400,2),(524,1772960400,1),(524,1793520000,2),(524,1805014800,1),(524,1825574400,2),(524,1836464400,1),(524,1857024000,2),(524,1867914000,1),(524,1888473600,2),(524,1899363600,1),(524,1919923200,2),(524,1930813200,1),(524,1951372800,2),(524,1962867600,1),(524,1983427200,2),(524,1994317200,1),(524,2014876800,2),(524,2025766800,1),(524,2046326400,2),(524,2057216400,1),(524,2077776000,2),(524,2088666000,1),(524,2109225600,2),(524,2120115600,1),(524,2140675200,2),(525,-2147483648,2),(525,-933667200,1),(525,-922093200,2),(525,-908870400,1),(525,-888829200,2),(525,-881049600,1),(525,-767869200,2),(525,-745833600,1),(525,-733827600,2),(525,-716889600,1),(525,-699613200,2),(525,-683884800,1),(525,-670669200,2),(525,-652348800,1),(525,-650019600,2),(525,515527200,1),(525,527014800,2),(525,545162400,1),(525,558464400,2),(525,577216800,1),(525,589914000,2),(525,608666400,1),(525,621968400,2),(525,640116000,1),(525,653418000,2),(525,671565600,1),(525,684867600,2),(526,-1633269600,0),(526,-1615129200,1),(526,-1601820000,0),(526,-1583679600,1),(526,-880207200,2),(526,-769395600,3),(526,-765385200,1),(526,-84376800,0),(526,-68655600,1),(526,-52927200,0),(526,-37206000,1),(526,-21477600,0),(526,-5756400,1),(526,9972000,0),(526,25693200,1),(526,41421600,0),(526,57747600,1),(526,73476000,0),(526,89197200,1),(526,104925600,0),(526,120646800,1),(526,126698400,0),(526,152096400,1),(526,162381600,0),(526,183546000,1),(526,199274400,0),(526,215600400,1),(526,230724000,0),(526,247050000,1),(526,262778400,0),(526,278499600,1),(526,294228000,0),(526,309949200,1),(526,325677600,0),(526,341398800,1),(526,357127200,0),(526,372848400,1),(526,388576800,0),(526,404902800,1),(526,420026400,0),(526,436352400,1),(526,452080800,0),(526,467802000,1),(526,483530400,0),(526,499251600,1),(526,514980000,0),(526,530701200,1),(526,544615200,0),(526,562150800,1),(526,576064800,0),(526,594205200,1),(526,607514400,0),(526,625654800,1),(526,638964000,0),(526,657104400,1),(526,671018400,0),(526,688554000,1),(526,702468000,0),(526,720003600,1),(526,733917600,0),(526,752058000,1),(526,765367200,0),(526,783507600,1),(526,796816800,0),(526,814957200,1),(526,828871200,0),(526,846406800,1),(526,860320800,0),(526,877856400,1),(526,891770400,0),(526,909306000,1),(526,923220000,0),(526,941360400,1),(526,954669600,0),(526,972810000,1),(526,986119200,0),(526,1004259600,1),(526,1018173600,0),(526,1035709200,1),(526,1049623200,0),(526,1067158800,1),(526,1081072800,0),(526,1099213200,1),(526,1112522400,0),(526,1130662800,1),(526,1143972000,0),(526,1162112400,1),(526,1173607200,0),(526,1194166800,1),(526,1205056800,0),(526,1225616400,1),(526,1236506400,0),(526,1257066000,1),(526,1268560800,0),(526,1289120400,1),(526,1300010400,0),(526,1320570000,1),(526,1331460000,0),(526,1352019600,1),(526,1362909600,0),(526,1383469200,1),(526,1394359200,0),(526,1414918800,1),(526,1425808800,0),(526,1446368400,1),(526,1457863200,0),(526,1478422800,1),(526,1489312800,0),(526,1509872400,1),(526,1520762400,0),(526,1541322000,1),(526,1552212000,0),(526,1572771600,1),(526,1583661600,0),(526,1604221200,1),(526,1615716000,0),(526,1636275600,1),(526,1647165600,0),(526,1667725200,1),(526,1678615200,0),(526,1699174800,1),(526,1710064800,0),(526,1730624400,1),(526,1741514400,0),(526,1762074000,1),(526,1772964000,0),(526,1793523600,1),(526,1805018400,0),(526,1825578000,1),(526,1836468000,0),(526,1857027600,1),(526,1867917600,0),(526,1888477200,1),(526,1899367200,0),(526,1919926800,1),(526,1930816800,0),(526,1951376400,1),(526,1962871200,0),(526,1983430800,1),(526,1994320800,0),(526,2014880400,1),(526,2025770400,0),(526,2046330000,1),(526,2057220000,0),(526,2077779600,1),(526,2088669600,0),(526,2109229200,1),(526,2120119200,0),(526,2140678800,1),(527,-2147483648,1),(527,-1861878784,2),(527,-631110600,4),(527,1285498800,3),(527,1301752800,4),(527,1316872800,3),(527,1325239200,6),(527,1333202400,5),(527,1348927200,6),(527,1365256800,5),(527,1380376800,6),(527,1396706400,5),(527,1411826400,6),(527,1428156000,5),(527,1443276000,6),(527,1459605600,5),(527,1474725600,6),(527,1491055200,5),(527,1506175200,6),(527,1522504800,5),(527,1538229600,6),(527,1554559200,5),(527,1569679200,6),(527,1586008800,5),(527,1601128800,6),(527,1617458400,5),(527,1632578400,6),(527,1648908000,5),(527,1664028000,6),(527,1680357600,5),(527,1695477600,6),(527,1712412000,5),(527,1727532000,6),(527,1743861600,5),(527,1758981600,6),(527,1775311200,5),(527,1790431200,6),(527,1806760800,5),(527,1821880800,6),(527,1838210400,5),(527,1853330400,6),(527,1869660000,5),(527,1885384800,6),(527,1901714400,5),(527,1916834400,6),(527,1933164000,5),(527,1948284000,6),(527,1964613600,5),(527,1979733600,6),(527,1996063200,5),(527,2011183200,6),(527,2027512800,5),(527,2042632800,6),(527,2058962400,5),(527,2074687200,6),(527,2091016800,5),(527,2106136800,6),(527,2122466400,5),(527,2137586400,6),(528,-2147483648,2),(528,-1330335000,1),(528,-1320057000,2),(528,-1300699800,3),(528,-1287396000,2),(528,-1269250200,3),(528,-1255946400,2),(528,-1237800600,3),(528,-1224496800,2),(528,-1206351000,3),(528,-1192442400,2),(528,-1174901400,3),(528,-1160992800,2),(528,-1143451800,3),(528,-1125914400,2),(528,-1112607000,3),(528,-1094464800,2),(528,-1081157400,3),(528,-1063015200,2),(528,-1049707800,3),(528,-1031565600,2),(528,-1018258200,3),(528,-1000116000,2),(528,-986808600,3),(528,-968061600,2),(528,-955359000,3),(528,-936612000,2),(528,-923304600,3),(528,-757425600,6),(528,152632800,4),(528,162309600,5),(528,183477600,4),(528,194968800,5),(528,215532000,4),(528,226418400,5),(528,246981600,4),(528,257868000,5),(528,278431200,4),(528,289317600,5),(528,309880800,4),(528,320767200,5),(528,341330400,4),(528,352216800,5),(528,372780000,4),(528,384271200,5),(528,404834400,4),(528,415720800,5),(528,436284000,4),(528,447170400,5),(528,467733600,4),(528,478620000,5),(528,499183200,4),(528,510069600,5),(528,530632800,4),(528,541519200,5),(528,562082400,4),(528,573573600,5),(528,594136800,4),(528,605023200,5),(528,623772000,4),(528,637682400,5),(528,655221600,4),(528,669132000,5),(528,686671200,4),(528,700581600,5),(528,718120800,4),(528,732636000,5),(528,749570400,4),(528,764085600,5),(528,781020000,4),(528,795535200,5),(528,812469600,4),(528,826984800,5),(528,844524000,4),(528,858434400,5),(528,875973600,4),(528,889884000,5),(528,907423200,4),(528,921938400,5),(528,938872800,4),(528,953388000,5),(528,970322400,4),(528,984837600,5),(528,1002376800,4),(528,1016287200,5),(528,1033826400,4),(528,1047736800,5),(528,1065276000,4),(528,1079791200,5),(528,1096725600,4),(528,1111240800,5),(528,1128175200,4),(528,1142690400,5),(528,1159624800,4),(528,1174140000,5),(528,1191074400,4),(528,1207404000,5),(528,1222524000,4),(528,1238853600,5),(528,1253973600,4),(528,1270303200,5),(528,1285423200,4),(528,1301752800,5),(528,1316872800,4),(528,1333202400,5),(528,1348927200,4),(528,1365256800,5),(528,1380376800,4),(528,1396706400,5),(528,1411826400,4),(528,1428156000,5),(528,1443276000,4),(528,1459605600,5),(528,1474725600,4),(528,1491055200,5),(528,1506175200,4),(528,1522504800,5),(528,1538229600,4),(528,1554559200,5),(528,1569679200,4),(528,1586008800,5),(528,1601128800,4),(528,1617458400,5),(528,1632578400,4),(528,1648908000,5),(528,1664028000,4),(528,1680357600,5),(528,1695477600,4),(528,1712412000,5),(528,1727532000,4),(528,1743861600,5),(528,1758981600,4),(528,1775311200,5),(528,1790431200,4),(528,1806760800,5),(528,1821880800,4),(528,1838210400,5),(528,1853330400,4),(528,1869660000,5),(528,1885384800,4),(528,1901714400,5),(528,1916834400,4),(528,1933164000,5),(528,1948284000,4),(528,1964613600,5),(528,1979733600,4),(528,1996063200,5),(528,2011183200,4),(528,2027512800,5),(528,2042632800,4),(528,2058962400,5),(528,2074687200,4),(528,2091016800,5),(528,2106136800,4),(528,2122466400,5),(528,2137586400,4),(529,-2147483648,1),(529,-868010400,2),(529,-768906000,1),(529,1419696000,3),(530,-2147483648,1),(530,-757426500,4),(530,152632800,2),(530,162309600,3),(530,183477600,2),(530,194968800,3),(530,215532000,2),(530,226418400,3),(530,246981600,2),(530,257868000,3),(530,278431200,2),(530,289317600,3),(530,309880800,2),(530,320767200,3),(530,341330400,2),(530,352216800,3),(530,372780000,2),(530,384271200,3),(530,404834400,2),(530,415720800,3),(530,436284000,2),(530,447170400,3),(530,467733600,2),(530,478620000,3),(530,499183200,2),(530,510069600,3),(530,530632800,2),(530,541519200,3),(530,562082400,2),(530,573573600,3),(530,594136800,2),(530,605023200,3),(530,623772000,2),(530,637682400,3),(530,655221600,2),(530,669132000,3),(530,686671200,2),(530,700581600,3),(530,718120800,2),(530,732636000,3),(530,749570400,2),(530,764085600,3),(530,781020000,2),(530,795535200,3),(530,812469600,2),(530,826984800,3),(530,844524000,2),(530,858434400,3),(530,875973600,2),(530,889884000,3),(530,907423200,2),(530,921938400,3),(530,938872800,2),(530,953388000,3),(530,970322400,2),(530,984837600,3),(530,1002376800,2),(530,1016287200,3),(530,1033826400,2),(530,1047736800,3),(530,1065276000,2),(530,1079791200,3),(530,1096725600,2),(530,1111240800,3),(530,1128175200,2),(530,1142690400,3),(530,1159624800,2),(530,1174140000,3),(530,1191074400,2),(530,1207404000,3),(530,1222524000,2),(530,1238853600,3),(530,1253973600,2),(530,1270303200,3),(530,1285423200,2),(530,1301752800,3),(530,1316872800,2),(530,1333202400,3),(530,1348927200,2),(530,1365256800,3),(530,1380376800,2),(530,1396706400,3),(530,1411826400,2),(530,1428156000,3),(530,1443276000,2),(530,1459605600,3),(530,1474725600,2),(530,1491055200,3),(530,1506175200,2),(530,1522504800,3),(530,1538229600,2),(530,1554559200,3),(530,1569679200,2),(530,1586008800,3),(530,1601128800,2),(530,1617458400,3),(530,1632578400,2),(530,1648908000,3),(530,1664028000,2),(530,1680357600,3),(530,1695477600,2),(530,1712412000,3),(530,1727532000,2),(530,1743861600,3),(530,1758981600,2),(530,1775311200,3),(530,1790431200,2),(530,1806760800,3),(530,1821880800,2),(530,1838210400,3),(530,1853330400,2),(530,1869660000,3),(530,1885384800,2),(530,1901714400,3),(530,1916834400,2),(530,1933164000,3),(530,1948284000,2),(530,1964613600,3),(530,1979733600,2),(530,1996063200,3),(530,2011183200,2),(530,2027512800,3),(530,2042632800,2),(530,2058962400,3),(530,2074687200,2),(530,2091016800,3),(530,2106136800,2),(530,2122466400,3),(530,2137586400,2),(531,-2147483648,1),(531,-1743674400,2),(531,-1606813200,1),(531,-907408800,2),(531,-770634000,1),(532,-2147483648,1),(532,-1178124152,4),(532,-36619200,2),(532,-23922000,3),(532,-3355200,2),(532,7527600,3),(532,24465600,2),(532,37767600,3),(532,55915200,2),(532,69217200,3),(532,87969600,2),(532,100666800,3),(532,118209600,2),(532,132116400,3),(532,150868800,2),(532,163566000,3),(532,182318400,2),(532,195620400,3),(532,213768000,2),(532,227070000,3),(532,245217600,2),(532,258519600,3),(532,277272000,2),(532,289969200,3),(532,308721600,2),(532,321418800,3),(532,340171200,2),(532,353473200,3),(532,371620800,2),(532,384922800,5),(532,403070400,6),(532,416372400,5),(532,434520000,6),(532,447822000,5),(532,466574400,6),(532,479271600,5),(532,498024000,6),(532,510721200,5),(532,529473600,6),(532,545194800,5),(532,560923200,6),(532,574225200,5),(532,592372800,6),(532,605674800,5),(532,624427200,6),(532,637124400,5),(532,653457600,6),(532,668574000,5),(532,687326400,6),(532,700628400,5),(532,718776000,6),(532,732078000,5),(532,750225600,6),(532,763527600,5),(532,781675200,6),(532,794977200,5),(532,813729600,6),(532,826426800,5),(532,845179200,6),(532,859690800,5),(532,876628800,6),(532,889930800,5),(532,906868800,6),(532,923194800,5),(532,939528000,6),(532,952830000,5),(532,971582400,6),(532,984279600,5),(532,1003032000,6),(532,1015729200,5),(532,1034481600,6),(532,1047178800,5),(532,1065931200,6),(532,1079233200,5),(532,1097380800,6),(532,1110682800,5),(532,1128830400,6),(532,1142132400,5),(532,1160884800,6),(532,1173582000,5),(532,1192334400,6),(532,1206846000,5),(532,1223784000,6),(532,1237086000,5),(532,1255233600,6),(532,1270350000,5),(532,1286683200,6),(532,1304823600,5),(532,1313899200,6),(532,1335668400,5),(532,1346558400,6),(532,1367118000,5),(532,1378612800,6),(532,1398567600,5),(532,1410062400,6),(532,1463281200,5),(532,1471147200,6),(532,1494730800,5),(532,1502596800,6),(532,1526180400,5),(532,1534046400,6),(532,1554606000,5),(532,1567915200,6),(532,1586055600,5),(532,1599364800,6),(532,1617505200,5),(532,1630814400,6),(532,1648954800,5),(532,1662264000,6),(532,1680404400,5),(532,1693713600,6),(532,1712458800,5),(532,1725768000,6),(532,1743908400,5),(532,1757217600,6),(532,1775358000,5),(532,1788667200,6),(532,1806807600,5),(532,1820116800,6),(532,1838257200,5),(532,1851566400,6),(532,1870311600,5),(532,1883016000,6),(532,1901761200,5),(532,1915070400,6),(532,1933210800,5),(532,1946520000,6),(532,1964660400,5),(532,1977969600,6),(532,1996110000,5),(532,2009419200,6),(532,2027559600,5),(532,2040868800,6),(532,2059614000,5),(532,2072318400,6),(532,2091063600,5),(532,2104372800,6),(532,2122513200,5),(532,2135822400,6),(533,-2147483648,0),(533,-1829387596,2),(533,433256400,1),(533,448977600,2),(533,467298000,1),(533,480427200,2),(533,496760400,1),(533,511876800,2),(533,528210000,1),(533,543931200,2),(533,559659600,1),(533,575380800,2),(533,591109200,1),(533,606830400,2),(533,622558800,1),(533,638280000,2),(533,654008400,1),(533,669729600,2),(533,686062800,1),(533,696340800,2),(533,719931600,1),(533,727790400,2),(534,-2147483648,1),(534,307627200,2),(534,788871600,3),(535,-2147483648,1),(535,1325242800,2),(536,-2147483648,0),(536,-1709985344,2),(536,909842400,1),(536,920124000,2),(536,941896800,1),(536,951573600,2),(536,1259416800,1),(536,1269698400,2),(536,1287842400,1),(536,1299333600,2),(536,1319292000,1),(536,1327154400,2),(536,1350741600,1),(536,1358604000,2),(536,1382796000,1),(536,1390050000,2),(536,1414850400,1),(536,1421503200,2),(536,1446300000,1),(536,1452952800,2),(536,1478354400,1),(536,1484402400,2),(536,1509804000,1),(536,1515852000,2),(536,1541253600,1),(536,1547301600,2),(536,1573308000,1),(536,1578751200,2),(536,1604757600,1),(536,1610805600,2),(536,1636812000,1),(536,1642255200,2),(536,1668261600,1),(536,1673704800,2),(536,1699711200,1),(536,1705154400,2),(536,1731160800,1),(536,1736604000,2),(536,1762610400,1),(536,1768658400,2),(536,1794060000,1),(536,1800108000,2),(536,1826114400,1),(536,1831557600,2),(536,1857564000,1),(536,1863007200,2),(536,1889013600,1),(536,1894456800,2),(536,1920463200,1),(536,1925906400,2),(536,1951912800,1),(536,1957960800,2),(536,1983967200,1),(536,1989410400,2),(536,2015416800,1),(536,2020860000,2),(536,2046866400,1),(536,2052309600,2),(536,2078316000,1),(536,2083759200,2),(536,2109765600,1),(536,2115813600,2),(536,2141215200,1),(538,-2147483648,0),(538,-1230746496,1),(538,504939600,3),(538,722930400,2),(538,728888400,3),(539,-2147483648,0),(539,-1806678012,1),(540,-2147483648,0),(540,-1806748788,1),(541,-2147483648,1),(541,-885549600,2),(541,-802256400,1),(541,-331891200,3),(541,-281610000,1),(541,-73728000,3),(541,-29415540,1),(541,-16704000,3),(541,-10659600,1),(541,9907200,3),(541,21394800,1),(541,41356800,3),(541,52844400,1),(541,124819200,3),(541,130863600,1),(541,201888000,3),(541,209487660,1),(541,230659200,3),(541,241542000,1),(541,977493600,4),(542,-2147483648,1),(542,-1157283000,2),(542,-1155436200,1),(542,-880198200,3),(542,-769395600,4),(542,-765376200,1),(542,-712150200,5),(543,-2147483648,1),(543,-1157283000,2),(543,-1155436200,1),(543,-880198200,3),(543,-769395600,4),(543,-765376200,1),(543,-712150200,5),(544,-2147483648,1),(544,307622400,2),(544,788868000,3),(545,-2147483648,1),(545,-1743678000,2),(545,-1606813200,1),(545,-1041418800,3),(545,-907408800,2),(545,-770634000,1),(545,-7988400,4),(545,915105600,1),(546,-2147483648,1),(546,-1041418800,2),(546,-907408800,3),(546,-817462800,1),(546,-7988400,4),(546,745934400,5),(547,-2147483648,1),(547,-1743678000,2),(547,-1606813200,1),(547,-1041418800,3),(547,-907408800,2),(547,-818067600,1),(547,-7988400,4),(548,-2147483648,0),(548,-1806676920,1),(549,-2147483648,1),(549,-1861879032,2),(550,-2147483648,0),(550,-1545131260,1),(550,-862918200,2),(550,-767350800,1),(550,287418600,3),(551,-2147483648,1),(551,-599575200,2),(551,276089400,3),(552,-2147483648,1),(552,-599656320,2),(552,152029800,3),(552,162916200,4),(552,1443882600,5),(552,1561899600,7),(552,1570287600,6),(552,1586012400,5),(552,1601737200,6),(552,1617462000,5),(552,1633186800,6),(552,1648911600,5),(552,1664636400,6),(552,1680361200,5),(552,1696086000,6),(552,1712415600,5),(552,1728140400,6),(552,1743865200,5),(552,1759590000,6),(552,1775314800,5),(552,1791039600,6),(552,1806764400,5),(552,1822489200,6),(552,1838214000,5),(552,1853938800,6),(552,1869663600,5),(552,1885993200,6),(552,1901718000,5),(552,1917442800,6),(552,1933167600,5),(552,1948892400,6),(552,1964617200,5),(552,1980342000,6),(552,1996066800,5),(552,2011791600,6),(552,2027516400,5),(552,2043241200,6),(552,2058966000,5),(552,2075295600,6),(552,2091020400,5),(552,2106745200,6),(552,2122470000,5),(552,2138194800,6),(553,-2147483648,0),(553,-1829387148,2),(553,250002000,1),(553,257342400,2),(553,281451600,1),(553,288878400,2),(553,849366000,3),(553,857228400,4),(554,-2147483648,1),(554,-1861879032,2),(556,-2147483648,1),(556,893665800,2),(557,-2147483648,1),(557,-1743678000,2),(557,-1606813200,1),(557,-1041418800,3),(557,-907408800,2),(557,-770634000,1),(558,-2147483648,1),(558,-1743678000,2),(558,-1606813200,1),(558,-1041418800,3),(558,-907408800,2),(558,-770634000,1),(560,-2147483648,1),(560,279714600,3),(560,289387800,2),(560,309952800,3),(560,320837400,2),(560,341402400,3),(560,352287000,2),(560,372852000,3),(560,384341400,2),(560,404906400,3),(560,415791000,2),(560,436356000,3),(560,447240600,2),(560,467805600,3),(560,478690200,2),(560,499255200,3),(560,510139800,2),(560,530704800,3),(560,541589400,2),(560,562154400,3),(560,573643800,2),(560,594208800,3),(560,605093400,2),(560,625658400,3),(560,636543000,2),(560,657108000,3),(560,667992600,2),(561,-2147483648,1),(561,-885549600,2),(561,-802256400,1),(561,-331891200,3),(561,-281610000,1),(561,-73728000,3),(561,-29415540,1),(561,-16704000,3),(561,-10659600,1),(561,9907200,3),(561,21394800,1),(561,41356800,3),(561,52844400,1),(561,124819200,3),(561,130863600,1),(561,201888000,3),(561,209487660,1),(561,230659200,3),(561,241542000,1),(561,977493600,4),(562,-2147483648,1),(562,-1861879032,2),(563,-2147483648,0),(563,-1806674504,1),(565,-2147483648,1),(565,-915193200,2),(565,939214800,3),(565,953384400,4),(565,973342800,5),(565,980596800,2),(565,1004792400,5),(565,1012046400,2),(565,1478350800,5),(565,1484398800,2),(566,-2147483648,1),(566,-1743674400,2),(566,-1606813200,1),(566,-907408800,2),(566,-770634000,1),(569,-2147483648,1),(569,-1743674400,2),(569,-1606813200,1),(569,-907408800,2),(569,-770634000,1),(570,-2147483648,1),(570,-1717032240,3),(570,-1693706400,2),(570,-1680483600,3),(570,-1663455600,4),(570,-1650150000,5),(570,-1632006000,4),(570,-1618700400,8),(570,-1600473600,6),(570,-1587168000,7),(570,-1501725600,3),(570,-931734000,2),(570,-857257200,5),(570,-844556400,4),(570,-828226800,5),(570,-812502000,4),(570,-796874400,2),(570,-796608000,3),(570,-778726800,2),(570,-762660000,3),(570,-748486800,4),(570,-733273200,5),(570,-715215600,4),(570,-701910000,5),(570,-684975600,4),(570,-670460400,5),(570,-654130800,4),(570,-639010800,5),(570,-397094400,4),(570,-386812800,5),(570,-371088000,4),(570,-355363200,5),(570,-334195200,4),(570,-323308800,5),(570,-307584000,4),(570,-291859200,5),(570,-271296000,4),(570,-260409600,5),(570,-239846400,4),(570,-228960000,5),(570,-208396800,4),(570,-197510400,5),(570,-176342400,4),(570,-166060800,5),(570,220921200,3),(570,228873600,4),(570,243993600,5),(570,260323200,4),(570,276048000,5),(570,291772800,4),(570,307497600,5),(570,323827200,4),(570,338947200,5),(570,354672000,4),(570,370396800,5),(570,386121600,4),(570,401846400,5),(570,417571200,4),(570,433296000,5),(570,449020800,4),(570,465350400,5),(570,481075200,4),(570,496800000,5),(570,512524800,4),(570,528249600,5),(570,543974400,4),(570,559699200,5),(570,567990000,3),(570,575427600,9),(570,591152400,10),(570,606877200,9),(570,622602000,10),(570,638326800,9),(570,654656400,10),(570,670381200,9),(570,686106000,10),(570,701830800,9),(570,717555600,10),(570,733280400,9),(570,749005200,10),(570,764730000,9),(570,780454800,10),(570,796179600,9),(570,811904400,10),(570,828234000,9),(570,846378000,10),(570,859683600,9),(570,877827600,10),(570,891133200,9),(570,909277200,10),(570,922582800,9),(570,941331600,10),(570,954032400,9),(570,972781200,10),(570,985482000,9),(570,1004230800,10),(570,1017536400,9),(570,1035680400,10),(570,1048986000,9),(570,1067130000,10),(570,1080435600,9),(570,1099184400,10),(570,1111885200,9),(570,1130634000,10),(570,1143334800,9),(570,1162083600,10),(570,1174784400,9),(570,1193533200,10),(570,1206838800,9),(570,1224982800,10),(570,1238288400,9),(570,1256432400,10),(570,1269738000,9),(570,1288486800,10),(570,1301187600,9),(570,1319936400,10),(570,1332637200,9),(570,1351386000,10),(570,1364691600,9),(570,1382835600,10),(570,1396141200,9),(570,1414285200,10),(570,1427590800,9),(570,1445734800,10),(570,1459040400,9),(570,1477789200,10),(570,1490490000,9),(570,1509238800,10),(570,1521939600,9),(570,1540688400,10),(570,1553994000,9),(570,1572138000,10),(570,1585443600,9),(570,1603587600,10),(570,1616893200,9),(570,1635642000,10),(570,1648342800,9),(570,1667091600,10),(570,1679792400,9),(570,1698541200,10),(570,1711846800,9),(570,1729990800,10),(570,1743296400,9),(570,1761440400,10),(570,1774746000,9),(570,1792890000,10),(570,1806195600,9),(570,1824944400,10),(570,1837645200,9),(570,1856394000,10),(570,1869094800,9),(570,1887843600,10),(570,1901149200,9),(570,1919293200,10),(570,1932598800,9),(570,1950742800,10),(570,1964048400,9),(570,1982797200,10),(570,1995498000,9),(570,2014246800,10),(570,2026947600,9),(570,2045696400,10),(570,2058397200,9),(570,2077146000,10),(570,2090451600,9),(570,2108595600,10),(570,2121901200,9),(570,2140045200,10),(571,-2147483648,0),(571,-1830384000,6),(571,-1689555600,1),(571,-1677801600,2),(571,-1667437200,3),(571,-1647738000,4),(571,-1635814800,3),(571,-1616202000,4),(571,-1604365200,3),(571,-1584666000,4),(571,-1572742800,3),(571,-1553043600,4),(571,-1541206800,3),(571,-1521507600,4),(571,-1442451600,3),(571,-1426813200,4),(571,-1379293200,3),(571,-1364778000,4),(571,-1348448400,3),(571,-1333328400,4),(571,-1316394000,3),(571,-1301274000,4),(571,-1284339600,3),(571,-1269824400,4),(571,-1221440400,3),(571,-1206925200,4),(571,-1191200400,3),(571,-1175475600,4),(571,-1127696400,3),(571,-1111971600,4),(571,-1096851600,3),(571,-1080522000,4),(571,-1063587600,3),(571,-1049072400,4),(571,-1033347600,3),(571,-1017622800,4),(571,-1002502800,3),(571,-986173200,4),(571,-969238800,3),(571,-950490000,4),(571,-942022800,3),(571,-922669200,4),(571,-906944400,3),(571,-891133200,4),(571,-877309200,3),(571,-873684000,5),(571,-864007200,3),(571,-857955600,4),(571,-845859600,3),(571,-842839200,5),(571,-831348000,3),(571,-825901200,4),(571,-814410000,3),(571,-810784800,5),(571,-799898400,3),(571,-794451600,4),(571,-782960400,3),(571,-779335200,5),(571,-768448800,3),(571,-763002000,4),(571,-749091600,3),(571,-733366800,4),(571,-717631200,3),(571,-701906400,4),(571,-686181600,3),(571,-670456800,4),(571,-654732000,3),(571,-639007200,4),(571,-591832800,3),(571,-575503200,4),(571,-559778400,3),(571,-544053600,4),(571,-528328800,3),(571,-512604000,4),(571,-496879200,3),(571,-481154400,4),(571,-465429600,3),(571,-449704800,4),(571,-433980000,3),(571,-417650400,4),(571,-401925600,3),(571,-386200800,4),(571,-370476000,3),(571,-354751200,4),(571,-339026400,3),(571,-323301600,4),(571,-307576800,3),(571,-291852000,4),(571,-276127200,3),(571,-260402400,4),(571,-244677600,3),(571,-228348000,4),(571,-212623200,3),(571,-196898400,4),(571,-181173600,3),(571,-165448800,4),(571,-149724000,3),(571,-133999200,4),(571,-118274400,7),(571,212544000,2),(571,228268800,3),(571,243993600,4),(571,260323200,3),(571,276048000,4),(571,291772800,3),(571,307501200,4),(571,323222400,3),(571,338950800,4),(571,354675600,3),(571,370400400,4),(571,386125200,3),(571,401850000,4),(571,417578400,3),(571,433299600,4),(571,449024400,3),(571,465354000,4),(571,481078800,3),(571,496803600,4),(571,512528400,3),(571,528253200,4),(571,543978000,3),(571,559702800,4),(571,575427600,3),(571,591152400,4),(571,606877200,3),(571,622602000,4),(571,638326800,3),(571,654656400,4),(571,670381200,3),(571,686106000,4),(571,701830800,3),(571,717555600,8),(571,733280400,9),(571,749005200,8),(571,764730000,9),(571,780454800,8),(571,796179600,9),(571,811904400,8),(571,828234000,10),(571,846378000,6),(571,859683600,10),(571,877827600,6),(571,891133200,10),(571,909277200,6),(571,922582800,10),(571,941331600,6),(571,954032400,10),(571,972781200,6),(571,985482000,10),(571,1004230800,6),(571,1017536400,10),(571,1035680400,6),(571,1048986000,10),(571,1067130000,6),(571,1080435600,10),(571,1099184400,6),(571,1111885200,10),(571,1130634000,6),(571,1143334800,10),(571,1162083600,6),(571,1174784400,10),(571,1193533200,6),(571,1206838800,10),(571,1224982800,6),(571,1238288400,10),(571,1256432400,6),(571,1269738000,10),(571,1288486800,6),(571,1301187600,10),(571,1319936400,6),(571,1332637200,10),(571,1351386000,6),(571,1364691600,10),(571,1382835600,6),(571,1396141200,10),(571,1414285200,6),(571,1427590800,10),(571,1445734800,6),(571,1459040400,10),(571,1477789200,6),(571,1490490000,10),(571,1509238800,6),(571,1521939600,10),(571,1540688400,6),(571,1553994000,10),(571,1572138000,6),(571,1585443600,10),(571,1603587600,6),(571,1616893200,10),(571,1635642000,6),(571,1648342800,10),(571,1667091600,6),(571,1679792400,10),(571,1698541200,6),(571,1711846800,10),(571,1729990800,6),(571,1743296400,10),(571,1761440400,6),(571,1774746000,10),(571,1792890000,6),(571,1806195600,10),(571,1824944400,6),(571,1837645200,10),(571,1856394000,6),(571,1869094800,10),(571,1887843600,6),(571,1901149200,10),(571,1919293200,6),(571,1932598800,10),(571,1950742800,6),(571,1964048400,10),(571,1982797200,6),(571,1995498000,10),(571,2014246800,6),(571,2026947600,10),(571,2045696400,6),(571,2058397200,10),(571,2077146000,6),(571,2090451600,10),(571,2108595600,6),(571,2121901200,10),(571,2140045200,6),(572,-2147483648,1),(572,-1017820800,2),(572,-766224000,1),(572,-745833600,3),(572,-733827600,1),(572,-716889600,3),(572,-699613200,1),(572,-683884800,3),(572,-670669200,1),(572,-652348800,3),(572,-639133200,1),(572,-620812800,3),(572,-607597200,1),(572,-589276800,3),(572,-576061200,1),(572,-562924800,3),(572,-541760400,1),(572,-528710400,3),(572,-510224400,1),(572,-497174400,3),(572,-478688400,1),(572,-465638400,3),(572,-449830800,1),(572,-434016000,3),(572,-418208400,1),(572,-402480000,3),(572,-386672400,1),(572,-370944000,3),(572,-355136400,1),(572,-339408000,3),(572,-323600400,1),(572,-302515200,3),(572,-291978000,1),(572,-270979200,3),(572,-260442000,1),(572,133977600,3),(572,149785200,1),(572,165513600,3),(572,181321200,1),(572,299606400,3),(572,307551600,1),(573,-2147483648,0),(573,-1948782472,1),(573,-1830414600,2),(573,-767350800,4),(573,-681210000,3),(573,-672228000,4),(573,-654771600,3),(573,-640864800,4),(573,-623408400,3),(573,-609415200,4),(573,-588848400,3),(573,-577965600,4),(573,-498128400,1),(573,-462702600,5),(573,-451733400,1),(573,-429784200,5),(573,-418296600,1),(573,-399544200,5),(573,-387451800,1),(573,-368094600,5),(573,-356002200,1),(573,-336645000,5),(573,-324552600,1),(573,-305195400,5),(573,-293103000,1),(573,-264933000,4),(573,547578000,3),(573,560883600,4),(573,579027600,3),(573,592333200,4),(574,-2147483648,1),(574,-2038200925,2),(574,-1167634800,3),(574,-1073028000,4),(574,-894180000,5),(574,-879665400,6),(574,-767005200,5),(574,378664200,7),(575,-2147483648,1),(575,-873057600,3),(575,-769395600,2),(575,-765399600,1),(576,-2147483648,0),(576,-2131645536,2),(576,-1696276800,1),(576,-1680469200,2),(576,-1632074400,1),(576,-1615143600,2),(576,-1566763200,1),(576,-1557090000,2),(576,-1535486400,1),(576,-1524949200,2),(576,-1504468800,1),(576,-1493413200,2),(576,-1472414400,1),(576,-1461963600,2),(576,-1440964800,1),(576,-1429390800,2),(576,-1409515200,1),(576,-1396731600,2),(576,-1376856000,1),(576,-1366491600,2),(576,-1346616000,1),(576,-1333832400,2),(576,-1313956800,1),(576,-1303678800,2),(576,-1282507200,1),(576,-1272661200,2),(576,-1251057600,1),(576,-1240088400,2),(576,-1219608000,1),(576,-1207429200,2),(576,-1188763200,1),(576,-1175979600,2),(576,-1157313600,1),(576,-1143925200,2),(576,-1124049600,1),(576,-1113771600,2),(576,-1091390400,1),(576,-1081026000,2),(576,-1059854400,1),(576,-1050786000,2),(576,-1030910400,1),(576,-1018126800,2),(576,-999460800,1),(576,-986677200,2),(576,-965592000,1),(576,-955227600,2),(576,-935956800,1),(576,-923173200,2),(576,-904507200,1),(576,-891723600,2),(576,-880221600,3),(576,-769395600,4),(576,-765399600,2),(576,-747252000,1),(576,-733950000,2),(576,-715802400,1),(576,-702500400,2),(576,-684352800,1),(576,-671050800,2),(576,-652903200,1),(576,-639601200,2),(576,-589399200,1),(576,-576097200,2),(576,-557949600,1),(576,-544647600,2),(576,-526500000,1),(576,-513198000,2),(576,-495050400,1),(576,-481748400,2),(576,-431546400,1),(576,-418244400,2),(576,-400096800,1),(576,-386794800,2),(576,-368647200,1),(576,-355345200,2),(576,-337197600,1),(576,-323895600,2),(576,-242244000,1),(576,-226522800,2),(576,-210794400,1),(576,-195073200,2),(576,-179344800,1),(576,-163623600,2),(576,-147895200,1),(576,-131569200,2),(576,-116445600,1),(576,-100119600,2),(576,-84391200,1),(576,-68670000,2),(576,-52941600,1),(576,-37220400,2),(576,-21492000,1),(576,-5770800,2),(576,9957600,1),(576,25678800,2),(576,41407200,1),(576,57733200,2),(576,73461600,1),(576,89182800,2),(576,104911200,1),(576,120632400,2),(576,136360800,1),(576,152082000,2),(576,167810400,1),(576,183531600,2),(576,199260000,1),(576,215586000,2),(576,230709600,1),(576,247035600,2),(576,262764000,1),(576,278485200,2),(576,294213600,1),(576,309934800,2),(576,325663200,1),(576,341384400,2),(576,357112800,1),(576,372834000,2),(576,388562400,1),(576,404888400,2),(576,420012000,1),(576,436338000,2),(576,452066400,1),(576,467787600,2),(576,483516000,1),(576,499237200,2),(576,514965600,1),(576,530686800,2),(576,544600800,1),(576,562136400,2),(576,576050400,1),(576,594190800,2),(576,607500000,1),(576,625640400,2),(576,638949600,1),(576,657090000,2),(576,671004000,1),(576,688539600,2),(576,702453600,1),(576,719989200,2),(576,733903200,1),(576,752043600,2),(576,765352800,1),(576,783493200,2),(576,796802400,1),(576,814942800,2),(576,828856800,1),(576,846392400,2),(576,860306400,1),(576,877842000,2),(576,891756000,1),(576,909291600,2),(576,923205600,1),(576,941346000,2),(576,954655200,1),(576,972795600,2),(576,986104800,1),(576,1004245200,2),(576,1018159200,1),(576,1035694800,2),(576,1049608800,1),(576,1067144400,2),(576,1081058400,1),(576,1099198800,2),(576,1112508000,1),(576,1130648400,2),(576,1143957600,1),(576,1162098000,2),(576,1173592800,1),(576,1194152400,2),(576,1205042400,1),(576,1225602000,2),(576,1236492000,1),(576,1257051600,2),(576,1268546400,1),(576,1289106000,2),(576,1299996000,1),(576,1320555600,2),(576,1331445600,1),(576,1352005200,2),(576,1362895200,1),(576,1383454800,2),(576,1394344800,1),(576,1414904400,2),(576,1425794400,1),(576,1446354000,2),(576,1457848800,1),(576,1478408400,2),(576,1489298400,1),(576,1509858000,2),(576,1520748000,1),(576,1541307600,2),(576,1552197600,1),(576,1572757200,2),(576,1583647200,1),(576,1604206800,2),(576,1615701600,1),(576,1636261200,2),(576,1647151200,1),(576,1667710800,2),(576,1678600800,1),(576,1699160400,2),(576,1710050400,1),(576,1730610000,2),(576,1741500000,1),(576,1762059600,2),(576,1772949600,1),(576,1793509200,2),(576,1805004000,1),(576,1825563600,2),(576,1836453600,1),(576,1857013200,2),(576,1867903200,1),(576,1888462800,2),(576,1899352800,1),(576,1919912400,2),(576,1930802400,1),(576,1951362000,2),(576,1962856800,1),(576,1983416400,2),(576,1994306400,1),(576,2014866000,2),(576,2025756000,1),(576,2046315600,2),(576,2057205600,1),(576,2077765200,2),(576,2088655200,1),(576,2109214800,2),(576,2120104800,1),(576,2140664400,2),(577,-2147483648,0),(577,-2030202084,2),(577,-1632063600,1),(577,-1615132800,2),(577,-1251651600,1),(577,-1238349600,2),(577,-1220202000,1),(577,-1206900000,2),(577,-1188752400,1),(577,-1175450400,2),(577,-1156698000,1),(577,-1144000800,2),(577,-1125248400,1),(577,-1111946400,2),(577,-1032714000,1),(577,-1016992800,2),(577,-1001264400,1),(577,-986148000,2),(577,-969814800,1),(577,-954093600,2),(577,-937760400,1),(577,-922039200,2),(577,-906310800,1),(577,-890589600,2),(577,-880210800,3),(577,-769395600,4),(577,-765388800,2),(577,-748450800,1),(577,-732729600,2),(577,-715791600,1),(577,-702489600,2),(577,-684342000,1),(577,-671040000,2),(577,-652892400,1),(577,-639590400,2),(577,-620838000,1),(577,-608140800,2),(577,-589388400,1),(577,-576086400,2),(577,-557938800,1),(577,-544636800,2),(577,-526489200,1),(577,-513187200,2),(577,-495039600,1),(577,-481737600,2),(577,-463590000,1),(577,-450288000,2),(577,-431535600,1),(577,-418233600,2),(577,-400086000,1),(577,-386784000,2),(577,-337186800,1),(577,-321465600,2),(577,-305737200,5),(578,-2147483648,2),(578,-1633276800,1),(578,-1615136400,2),(578,-1601827200,1),(578,-1583686800,2),(578,-1563724800,1),(578,-1551632400,2),(578,-1538928000,1),(578,-1520182800,2),(578,-1504454400,1),(578,-1491757200,2),(578,-1473004800,1),(578,-1459702800,2),(578,-1441555200,1),(578,-1428253200,2),(578,-1410105600,1),(578,-1396803600,2),(578,-1378656000,1),(578,-1365354000,2),(578,-1347206400,1),(578,-1333904400,2),(578,-1315152000,1),(578,-1301850000,2),(578,-1283702400,1),(578,-1270400400,2),(578,-1252252800,1),(578,-1238950800,2),(578,-1220803200,1),(578,-1207501200,2),(578,-1189353600,1),(578,-1176051600,2),(578,-1157299200,1),(578,-1144602000,2),(578,-1125849600,1),(578,-1112547600,2),(578,-1094400000,1),(578,-1081098000,2),(578,-1067788800,3),(578,-1045414800,2),(578,-1031500800,1),(578,-1018198800,2),(578,-1000051200,1),(578,-986749200,2),(578,-967996800,1),(578,-955299600,2),(578,-936547200,1),(578,-923245200,2),(578,-905097600,1),(578,-891795600,2),(578,-880214400,4),(578,-769395600,5),(578,-765392400,2),(578,-747244800,1),(578,-733942800,2),(578,-715795200,1),(578,-702493200,2),(578,-684345600,1),(578,-671043600,2),(578,-652896000,1),(578,-639594000,2),(578,-620841600,1),(578,-608144400,2),(578,-589392000,1),(578,-576090000,2),(578,-557942400,1),(578,-544640400,2),(578,-526492800,1),(578,-513190800,2),(578,-495043200,1),(578,-481741200,2),(578,-463593600,1),(578,-447267600,2),(578,-431539200,1),(578,-415818000,2),(578,-400089600,1),(578,-384368400,2),(578,-368640000,1),(578,-352918800,2),(578,-337190400,1),(578,-321469200,2),(578,-305740800,1),(578,-289414800,2),(578,-273686400,1),(578,-257965200,2),(578,-242236800,1),(578,-226515600,2),(578,-210787200,1),(578,-195066000,2),(578,-179337600,1),(578,-163616400,2),(578,-147888000,1),(578,-131562000,2),(578,-116438400,1),(578,-100112400,2),(578,-84384000,1),(578,-68662800,2),(578,-52934400,1),(578,-37213200,2),(578,-21484800,1),(578,-5763600,2),(578,9964800,1),(578,25686000,2),(578,41414400,1),(578,57740400,2),(578,73468800,1),(578,89190000,2),(578,104918400,1),(578,120639600,2),(578,126691200,1),(578,152089200,2),(578,162374400,1),(578,183538800,2),(578,199267200,1),(578,215593200,2),(578,230716800,1),(578,247042800,2),(578,262771200,1),(578,278492400,2),(578,294220800,1),(578,309942000,2),(578,325670400,1),(578,341391600,2),(578,357120000,1),(578,372841200,2),(578,388569600,1),(578,404895600,2),(578,420019200,1),(578,436345200,2),(578,452073600,1),(578,467794800,2),(578,483523200,1),(578,499244400,2),(578,514972800,1),(578,530694000,2),(578,544608000,1),(578,562143600,2),(578,576057600,1),(578,594198000,2),(578,607507200,1),(578,625647600,2),(578,638956800,1),(578,657097200,2),(578,671011200,1),(578,688546800,2),(578,702460800,1),(578,719996400,2),(578,733910400,1),(578,752050800,2),(578,765360000,1),(578,783500400,2),(578,796809600,1),(578,814950000,2),(578,828864000,1),(578,846399600,2),(578,860313600,1),(578,877849200,2),(578,891763200,1),(578,909298800,2),(578,923212800,1),(578,941353200,2),(578,954662400,1),(578,972802800,2),(578,986112000,1),(578,1004252400,2),(578,1018166400,1),(578,1035702000,2),(578,1049616000,1),(578,1067151600,2),(578,1081065600,1),(578,1099206000,2),(578,1112515200,1),(578,1130655600,2),(578,1143964800,1),(578,1162105200,2),(578,1173600000,1),(578,1194159600,2),(578,1205049600,1),(578,1225609200,2),(578,1236499200,1),(578,1257058800,2),(578,1268553600,1),(578,1289113200,2),(578,1300003200,1),(578,1320562800,2),(578,1331452800,1),(578,1352012400,2),(578,1362902400,1),(578,1383462000,2),(578,1394352000,1),(578,1414911600,2),(578,1425801600,1),(578,1446361200,2),(578,1457856000,1),(578,1478415600,2),(578,1489305600,1),(578,1509865200,2),(578,1520755200,1),(578,1541314800,2),(578,1552204800,1),(578,1572764400,2),(578,1583654400,1),(578,1604214000,2),(578,1615708800,1),(578,1636268400,2),(578,1647158400,1),(578,1667718000,2),(578,1678608000,1),(578,1699167600,2),(578,1710057600,1),(578,1730617200,2),(578,1741507200,1),(578,1762066800,2),(578,1772956800,1),(578,1793516400,2),(578,1805011200,1),(578,1825570800,2),(578,1836460800,1),(578,1857020400,2),(578,1867910400,1),(578,1888470000,2),(578,1899360000,1),(578,1919919600,2),(578,1930809600,1),(578,1951369200,2),(578,1962864000,1),(578,1983423600,2),(578,1994313600,1),(578,2014873200,2),(578,2025763200,1),(578,2046322800,2),(578,2057212800,1),(578,2077772400,2),(578,2088662400,1),(578,2109222000,2),(578,2120112000,1),(578,2140671600,2),(579,-2147483648,1),(579,-1946918424,2),(580,-2147483648,2),(580,-1633280400,1),(580,-1615140000,2),(580,-1601830800,1),(580,-1583690400,2),(580,-1570381200,1),(580,-1551636000,2),(580,-1536512400,1),(580,-1523210400,2),(580,-1504458000,1),(580,-1491760800,2),(580,-1473008400,1),(580,-1459706400,2),(580,-1441558800,1),(580,-1428256800,2),(580,-1410109200,1),(580,-1396807200,2),(580,-1378659600,1),(580,-1365357600,2),(580,-1347210000,1),(580,-1333908000,2),(580,-1315155600,1),(580,-1301853600,2),(580,-1283706000,1),(580,-1270404000,2),(580,-1252256400,1),(580,-1238954400,2),(580,-1220806800,1),(580,-1207504800,2),(580,-1189357200,1),(580,-1176055200,2),(580,-1157302800,1),(580,-1144605600,2),(580,-1125853200,1),(580,-1112551200,2),(580,-1094403600,1),(580,-1081101600,2),(580,-1062954000,1),(580,-1049652000,2),(580,-1031504400,1),(580,-1018202400,2),(580,-1000054800,1),(580,-986752800,2),(580,-968000400,1),(580,-955303200,2),(580,-936550800,1),(580,-923248800,2),(580,-905101200,1),(580,-891799200,2),(580,-880218000,3),(580,-769395600,4),(580,-765396000,2),(580,-747248400,1),(580,-733946400,2),(580,-715798800,1),(580,-702496800,2),(580,-684349200,1),(580,-671047200,2),(580,-652899600,1),(580,-639597600,2),(580,-620845200,1),(580,-608148000,2),(580,-589395600,1),(580,-576093600,2),(580,-557946000,1),(580,-544644000,2),(580,-526496400,1),(580,-513194400,2),(580,-495046800,1),(580,-481744800,2),(580,-463597200,1),(580,-447271200,2),(580,-431542800,1),(580,-415821600,2),(580,-400093200,1),(580,-384372000,2),(580,-368643600,1),(580,-352922400,2),(580,-337194000,1),(580,-321472800,2),(580,-305744400,1),(580,-289418400,2),(580,-273690000,1),(580,-257968800,2),(580,-242240400,1),(580,-226519200,2),(580,-210790800,1),(580,-195069600,2),(580,-179341200,1),(580,-163620000,2),(580,-147891600,1),(580,-131565600,2),(580,-116442000,1),(580,-100116000,2),(580,-84387600,1),(580,-68666400,2),(580,-52938000,1),(580,-37216800,2),(580,-21488400,1),(580,-5767200,2),(580,9961200,1),(580,25682400,2),(580,41410800,1),(580,57736800,2),(580,73465200,1),(580,89186400,2),(580,104914800,1),(580,120636000,2),(580,126687600,1),(580,152085600,2),(580,162370800,1),(580,183535200,2),(580,199263600,1),(580,215589600,2),(580,230713200,1),(580,247039200,2),(580,262767600,1),(580,278488800,2),(580,294217200,1),(580,309938400,2),(580,325666800,1),(580,341388000,2),(580,357116400,1),(580,372837600,2),(580,388566000,1),(580,404892000,2),(580,420015600,1),(580,436341600,2),(580,452070000,1),(580,467791200,2),(580,483519600,1),(580,499240800,2),(580,514969200,1),(580,530690400,2),(580,544604400,1),(580,562140000,2),(580,576054000,1),(580,594194400,2),(580,607503600,1),(580,625644000,2),(580,638953200,1),(580,657093600,2),(580,671007600,1),(580,688543200,2),(580,702457200,1),(580,719992800,2),(580,733906800,1),(580,752047200,2),(580,765356400,1),(580,783496800,2),(580,796806000,1),(580,814946400,2),(580,828860400,1),(580,846396000,2),(580,860310000,1),(580,877845600,2),(580,891759600,1),(580,909295200,2),(580,923209200,1),(580,941349600,2),(580,954658800,1),(580,972799200,2),(580,986108400,1),(580,1004248800,2),(580,1018162800,1),(580,1035698400,2),(580,1049612400,1),(580,1067148000,2),(580,1081062000,1),(580,1099202400,2),(580,1112511600,1),(580,1130652000,2),(580,1143961200,1),(580,1162101600,2),(580,1173596400,1),(580,1194156000,2),(580,1205046000,1),(580,1225605600,2),(580,1236495600,1),(580,1257055200,2),(580,1268550000,1),(580,1289109600,2),(580,1299999600,1),(580,1320559200,2),(580,1331449200,1),(580,1352008800,2),(580,1362898800,1),(580,1383458400,2),(580,1394348400,1),(580,1414908000,2),(580,1425798000,1),(580,1446357600,2),(580,1457852400,1),(580,1478412000,2),(580,1489302000,1),(580,1509861600,2),(580,1520751600,1),(580,1541311200,2),(580,1552201200,1),(580,1572760800,2),(580,1583650800,1),(580,1604210400,2),(580,1615705200,1),(580,1636264800,2),(580,1647154800,1),(580,1667714400,2),(580,1678604400,1),(580,1699164000,2),(580,1710054000,1),(580,1730613600,2),(580,1741503600,1),(580,1762063200,2),(580,1772953200,1),(580,1793512800,2),(580,1805007600,1),(580,1825567200,2),(580,1836457200,1),(580,1857016800,2),(580,1867906800,1),(580,1888466400,2),(580,1899356400,1),(580,1919916000,2),(580,1930806000,1),(580,1951365600,2),(580,1962860400,1),(580,1983420000,2),(580,1994310000,1),(580,2014869600,2),(580,2025759600,1),(580,2046319200,2),(580,2057209200,1),(580,2077768800,2),(580,2088658800,1),(580,2109218400,2),(580,2120108400,1),(580,2140668000,2),(581,-2147483648,1),(581,-1157283000,2),(581,-1155436200,1),(581,-880198200,3),(581,-769395600,4),(581,-765376200,1),(581,-712150200,5),(582,-2147483648,2),(582,-1633273200,1),(582,-1615132800,2),(582,-1601823600,1),(582,-1583683200,2),(582,-880210800,3),(582,-820519140,2),(582,-812653140,3),(582,-796845540,2),(582,-84380400,1),(582,-68659200,2),(583,-2147483648,2),(583,-1633273200,1),(583,-1615132800,2),(583,-1601823600,1),(583,-1583683200,2),(583,-1570374000,1),(583,-1551628800,2),(583,-1538924400,1),(583,-1534089600,2),(583,-880210800,3),(583,-769395600,4),(583,-765388800,2),(583,-147884400,1),(583,-131558400,2),(583,-116434800,1),(583,-100108800,2),(583,-84380400,1),(583,-68659200,2),(583,-52930800,1),(583,-37209600,2),(583,-21481200,1),(583,-5760000,2),(583,9968400,1),(583,25689600,2),(583,41418000,1),(583,57744000,2),(583,73472400,1),(583,89193600,2),(583,104922000,1),(583,120643200,2),(583,126694800,1),(583,152092800,2),(583,162378000,1),(583,183542400,2),(583,199270800,1),(583,215596800,2),(583,230720400,1),(583,247046400,2),(583,262774800,1),(583,278496000,2),(583,294224400,1),(583,309945600,2),(583,325674000,1),(583,341395200,2),(583,357123600,1),(583,372844800,2),(583,388573200,1),(583,404899200,2),(583,420022800,1),(583,436348800,2),(583,452077200,1),(583,467798400,2),(583,483526800,1),(583,499248000,2),(583,514976400,1),(583,530697600,2),(583,544611600,1),(583,562147200,2),(583,576061200,1),(583,594201600,2),(583,607510800,1),(583,625651200,2),(583,638960400,1),(583,657100800,2),(583,671014800,1),(583,688550400,2),(583,702464400,1),(583,720000000,2),(583,733914000,1),(583,752054400,2),(583,765363600,1),(583,783504000,2),(583,796813200,1),(583,814953600,2),(583,828867600,1),(583,846403200,2),(583,860317200,1),(583,877852800,2),(583,891766800,1),(583,909302400,2),(583,923216400,1),(583,941356800,2),(583,954666000,1),(583,972806400,2),(583,986115600,1),(583,1004256000,2),(583,1018170000,1),(583,1035705600,2),(583,1049619600,1),(583,1067155200,2),(583,1081069200,1),(583,1099209600,2),(583,1112518800,1),(583,1130659200,2),(583,1143968400,1),(583,1162108800,2),(583,1173603600,1),(583,1194163200,2),(583,1205053200,1),(583,1225612800,2),(583,1236502800,1),(583,1257062400,2),(583,1268557200,1),(583,1289116800,2),(583,1300006800,1),(583,1320566400,2),(583,1331456400,1),(583,1352016000,2),(583,1362906000,1),(583,1383465600,2),(583,1394355600,1),(583,1414915200,2),(583,1425805200,1),(583,1446364800,2),(583,1457859600,1),(583,1478419200,2),(583,1489309200,1),(583,1509868800,2),(583,1520758800,1),(583,1541318400,2),(583,1552208400,1),(583,1572768000,2),(583,1583658000,1),(583,1604217600,2),(583,1615712400,1),(583,1636272000,2),(583,1647162000,1),(583,1667721600,2),(583,1678611600,1),(583,1699171200,2),(583,1710061200,1),(583,1730620800,2),(583,1741510800,1),(583,1762070400,2),(583,1772960400,1),(583,1793520000,2),(583,1805014800,1),(583,1825574400,2),(583,1836464400,1),(583,1857024000,2),(583,1867914000,1),(583,1888473600,2),(583,1899363600,1),(583,1919923200,2),(583,1930813200,1),(583,1951372800,2),(583,1962867600,1),(583,1983427200,2),(583,1994317200,1),(583,2014876800,2),(583,2025766800,1),(583,2046326400,2),(583,2057216400,1),(583,2077776000,2),(583,2088666000,1),(583,2109225600,2),(583,2120115600,1),(583,2140675200,2),(584,-2147483648,1),(584,893665800,2),(585,-2147483648,2),(585,-1633269600,1),(585,-1615129200,2),(585,-1601820000,1),(585,-1583679600,2),(585,-880207200,3),(585,-769395600,4),(585,-765385200,2),(585,-687967140,1),(585,-662655600,2),(585,-620838000,1),(585,-608137200,2),(585,-589388400,1),(585,-576082800,2),(585,-557938800,1),(585,-544633200,2),(585,-526489200,1),(585,-513183600,2),(585,-495039600,1),(585,-481734000,2),(585,-463590000,1),(585,-450284400,2),(585,-431535600,1),(585,-418230000,2),(585,-400086000,1),(585,-386780400,2),(585,-368636400,1),(585,-355330800,2),(585,-337186800,1),(585,-323881200,2),(585,-305737200,1),(585,-292431600,2),(585,-273682800,1),(585,-260982000,2),(585,-242233200,1),(585,-226508400,2),(585,-210783600,1),(585,-195058800,2),(585,-179334000,1),(585,-163609200,2),(585,-147884400,1),(585,-131554800,2),(585,-116434800,1),(585,-100105200,2),(585,-84376800,1),(585,-68655600,2),(585,-52927200,1),(585,-37206000,2),(585,-21477600,1),(585,-5756400,2),(585,9972000,1),(585,25693200,2),(585,41421600,1),(585,57747600,2),(585,73476000,1),(585,89197200,2),(585,104925600,1),(585,120646800,2),(585,126698400,1),(585,152096400,2),(585,162381600,1),(585,183546000,2),(585,199274400,1),(585,215600400,2),(585,230724000,1),(585,247050000,2),(585,262778400,1),(585,278499600,2),(585,294228000,1),(585,309949200,2),(585,325677600,1),(585,341398800,2),(585,357127200,1),(585,372848400,2),(585,388576800,1),(585,404902800,2),(585,420026400,1),(585,436352400,2),(585,452080800,1),(585,467802000,2),(585,483530400,1),(585,499251600,2),(585,514980000,1),(585,530701200,2),(585,544615200,1),(585,562150800,2),(585,576064800,1),(585,594205200,2),(585,607514400,1),(585,625654800,2),(585,638964000,1),(585,657104400,2),(585,671018400,1),(585,688554000,2),(585,702468000,1),(585,720003600,2),(585,733917600,1),(585,752058000,2),(585,765367200,1),(585,783507600,2),(585,796816800,1),(585,814957200,2),(585,828871200,1),(585,846406800,2),(585,860320800,1),(585,877856400,2),(585,891770400,1),(585,909306000,2),(585,923220000,1),(585,941360400,2),(585,954669600,1),(585,972810000,2),(585,986119200,1),(585,1004259600,2),(585,1018173600,1),(585,1035709200,2),(585,1049623200,1),(585,1067158800,2),(585,1081072800,1),(585,1099213200,2),(585,1112522400,1),(585,1130662800,2),(585,1143972000,1),(585,1162112400,2),(585,1173607200,1),(585,1194166800,2),(585,1205056800,1),(585,1225616400,2),(585,1236506400,1),(585,1257066000,2),(585,1268560800,1),(585,1289120400,2),(585,1300010400,1),(585,1320570000,2),(585,1331460000,1),(585,1352019600,2),(585,1362909600,1),(585,1383469200,2),(585,1394359200,1),(585,1414918800,2),(585,1425808800,1),(585,1446368400,2),(585,1457863200,1),(585,1478422800,2),(585,1489312800,1),(585,1509872400,2),(585,1520762400,1),(585,1541322000,2),(585,1552212000,1),(585,1572771600,2),(585,1583661600,1),(585,1604221200,2),(585,1615716000,1),(585,1636275600,2),(585,1647165600,1),(585,1667725200,2),(585,1678615200,1),(585,1699174800,2),(585,1710064800,1),(585,1730624400,2),(585,1741514400,1),(585,1762074000,2),(585,1772964000,1),(585,1793523600,2),(585,1805018400,1),(585,1825578000,2),(585,1836468000,1),(585,1857027600,2),(585,1867917600,1),(585,1888477200,2),(585,1899367200,1),(585,1919926800,2),(585,1930816800,1),(585,1951376400,2),(585,1962871200,1),(585,1983430800,2),(585,1994320800,1),(585,2014880400,2),(585,2025770400,1),(585,2046330000,2),(585,2057220000,1),(585,2077779600,2),(585,2088669600,1),(585,2109229200,2),(585,2120119200,1),(585,2140678800,2),(586,-2147483648,0),(586,-1806678012,1),(587,-2147483648,1),(587,-880200000,2),(587,-769395600,3),(587,-765378000,1),(587,-86882400,4),(587,-21470400,5),(587,-5749200,4),(587,9979200,5),(587,25700400,4),(587,41428800,5),(587,57754800,4),(587,73483200,5),(587,89204400,4),(587,104932800,5),(587,120654000,4),(587,126705600,5),(587,152103600,4),(587,162388800,5),(587,183553200,4),(587,199281600,5),(587,215607600,4),(587,230731200,5),(587,247057200,4),(587,262785600,5),(587,278506800,4),(587,294235200,5),(587,309956400,4),(587,325684800,5),(587,341406000,4),(587,357134400,5),(587,372855600,4),(587,388584000,5),(587,404910000,4),(587,420033600,5),(587,436359600,6),(587,439030800,8),(587,452084400,7),(587,467805600,8),(587,483534000,7),(587,499255200,8),(587,514983600,7),(587,530704800,8),(587,544618800,7),(587,562154400,8),(587,576068400,7),(587,594208800,8),(587,607518000,7),(587,625658400,8),(587,638967600,7),(587,657108000,8),(587,671022000,7),(587,688557600,8),(587,702471600,7),(587,720007200,8),(587,733921200,7),(587,752061600,8),(587,765370800,7),(587,783511200,8),(587,796820400,7),(587,814960800,8),(587,828874800,7),(587,846410400,8),(587,860324400,7),(587,877860000,8),(587,891774000,7),(587,909309600,8),(587,923223600,7),(587,941364000,8),(587,954673200,7),(587,972813600,8),(587,986122800,7),(587,1004263200,8),(587,1018177200,7),(587,1035712800,8),(587,1049626800,7),(587,1067162400,8),(587,1081076400,7),(587,1099216800,8),(587,1112526000,7),(587,1130666400,8),(587,1143975600,7),(587,1162116000,8),(587,1173610800,7),(587,1194170400,8),(587,1205060400,7),(587,1225620000,8),(587,1236510000,7),(587,1257069600,8),(587,1268564400,7),(587,1289124000,8),(587,1300014000,7),(587,1320573600,8),(587,1331463600,7),(587,1352023200,8),(587,1362913200,7),(587,1383472800,8),(587,1394362800,7),(587,1414922400,8),(587,1425812400,7),(587,1446372000,8),(587,1457866800,7),(587,1478426400,8),(587,1489316400,7),(587,1509876000,8),(587,1520766000,7),(587,1541325600,8),(587,1552215600,7),(587,1572775200,8),(587,1583665200,7),(587,1604224800,8),(587,1615719600,7),(587,1636279200,8),(587,1647169200,7),(587,1667728800,8),(587,1678618800,7),(587,1699178400,8),(587,1710068400,7),(587,1730628000,8),(587,1741518000,7),(587,1762077600,8),(587,1772967600,7),(587,1793527200,8),(587,1805022000,7),(587,1825581600,8),(587,1836471600,7),(587,1857031200,8),(587,1867921200,7),(587,1888480800,8),(587,1899370800,7),(587,1919930400,8),(587,1930820400,7),(587,1951380000,8),(587,1962874800,7),(587,1983434400,8),(587,1994324400,7),(587,2014884000,8),(587,2025774000,7),(587,2046333600,8),(587,2057223600,7),(587,2077783200,8),(587,2088673200,7),(587,2109232800,8),(587,2120122800,7),(587,2140682400,8),(588,-2147483648,1),(588,-1869875816,3),(588,-1693706400,2),(588,-1680490800,3),(588,-1570413600,2),(588,-1552186800,3),(588,-1538359200,2),(588,-1522551600,3),(588,-1507514400,2),(588,-1490583600,3),(588,-1440208800,2),(588,-1428030000,3),(588,-1409709600,2),(588,-1396494000,3),(588,-931053600,2),(588,-922676400,3),(588,-917834400,2),(588,-892436400,3),(588,-875844000,2),(588,-764737200,3),(588,-744343200,2),(588,-733806000,3),(588,-716436000,2),(588,-701924400,3),(588,-684986400,2),(588,-670474800,3),(588,-654141600,2),(588,-639025200,3),(588,-622087200,2),(588,-606970800,3),(588,-590032800,2),(588,-575521200,3),(588,-235620000,2),(588,-194842800,3),(588,-177732000,2),(588,-165726000,3),(588,107910000,2),(588,121215600,3),(588,133920000,2),(588,152665200,3),(588,164678400,2),(588,184114800,3),(588,196214400,2),(588,215564400,3),(588,228873600,2),(588,245804400,3),(588,260323200,2),(588,267915600,4),(588,428454000,5),(588,433893600,4),(588,468111600,3),(588,482799600,6),(588,496710000,7),(588,512521200,6),(588,528246000,7),(588,543970800,6),(588,559695600,7),(588,575420400,6),(588,591145200,7),(588,606870000,6),(588,622594800,7),(588,638319600,6),(588,654649200,7),(588,670374000,6),(588,686098800,7),(588,701823600,6),(588,717548400,7),(588,733273200,6),(588,748998000,7),(588,764118000,6),(588,780447600,7),(588,796172400,6),(588,811897200,7),(588,828226800,6),(588,846370800,7),(588,859676400,6),(588,877820400,7),(588,891126000,6),(588,909270000,7),(588,922575600,6),(588,941324400,7),(588,954025200,6),(588,972774000,7),(588,985474800,6),(588,1004223600,7),(588,1017529200,6),(588,1035673200,7),(588,1048978800,6),(588,1067122800,7),(588,1080428400,6),(588,1099177200,7),(588,1111878000,6),(588,1130626800,7),(588,1143327600,6),(588,1162076400,7),(588,1167602400,3),(588,1174784400,8),(588,1193533200,9),(588,1206838800,8),(588,1224982800,9),(588,1238288400,8),(588,1256432400,9),(588,1269738000,8),(588,1288486800,9),(588,1301274000,8),(588,1319936400,9),(588,1332637200,8),(588,1351386000,9),(588,1364691600,8),(588,1382835600,9),(588,1396227600,8),(588,1414285200,9),(588,1427590800,8),(588,1446944400,9),(588,1459040400,8),(588,1473195600,4),(590,-2147483648,1),(590,-880200000,2),(590,-769395600,3),(590,-765378000,1),(590,-86882400,4),(590,-21470400,5),(590,-5749200,4),(590,9979200,5),(590,25700400,4),(590,41428800,5),(590,57754800,4),(590,73483200,5),(590,89204400,4),(590,104932800,5),(590,120654000,4),(590,126705600,5),(590,152103600,4),(590,162388800,5),(590,183553200,4),(590,199281600,5),(590,215607600,4),(590,230731200,5),(590,247057200,4),(590,262785600,5),(590,278506800,4),(590,294235200,5),(590,309956400,4),(590,325684800,5),(590,341406000,4),(590,357134400,5),(590,372855600,4),(590,388584000,5),(590,404910000,4),(590,420033600,5),(590,436359600,6),(590,439030800,8),(590,452084400,7),(590,467805600,8),(590,483534000,7),(590,499255200,8),(590,514983600,7),(590,530704800,8),(590,544618800,7),(590,562154400,8),(590,576068400,7),(590,594208800,8),(590,607518000,7),(590,625658400,8),(590,638967600,7),(590,657108000,8),(590,671022000,7),(590,688557600,8),(590,702471600,7),(590,720007200,8),(590,733921200,7),(590,752061600,8),(590,765370800,7),(590,783511200,8),(590,796820400,7),(590,814960800,8),(590,828874800,7),(590,846410400,8),(590,860324400,7),(590,877860000,8),(590,891774000,7),(590,909309600,8),(590,923223600,7),(590,941364000,8),(590,954673200,7),(590,972813600,8),(590,986122800,7),(590,1004263200,8),(590,1018177200,7),(590,1035712800,8),(590,1049626800,7),(590,1067162400,8),(590,1081076400,7),(590,1099216800,8),(590,1112526000,7),(590,1130666400,8),(590,1143975600,7),(590,1162116000,8),(590,1173610800,7),(590,1194170400,8),(590,1205060400,7),(590,1225620000,8),(590,1236510000,7),(590,1257069600,8),(590,1268564400,7),(590,1289124000,8),(590,1300014000,7),(590,1320573600,8),(590,1331463600,7),(590,1352023200,8),(590,1362913200,7),(590,1383472800,8),(590,1394362800,7),(590,1414922400,8),(590,1425812400,7),(590,1446372000,8),(590,1457866800,7),(590,1478426400,8),(590,1489316400,7),(590,1509876000,8),(590,1520766000,7),(590,1541325600,8),(590,1552215600,7),(590,1572775200,8),(590,1583665200,7),(590,1604224800,8),(590,1615719600,7),(590,1636279200,8),(590,1647169200,7),(590,1667728800,8),(590,1678618800,7),(590,1699178400,8),(590,1710068400,7),(590,1730628000,8),(590,1741518000,7),(590,1762077600,8),(590,1772967600,7),(590,1793527200,8),(590,1805022000,7),(590,1825581600,8),(590,1836471600,7),(590,1857031200,8),(590,1867921200,7),(590,1888480800,8),(590,1899370800,7),(590,1919930400,8),(590,1930820400,7),(590,1951380000,8),(590,1962874800,7),(590,1983434400,8),(590,1994324400,7),(590,2014884000,8),(590,2025774000,7),(590,2046333600,8),(590,2057223600,7),(590,2077783200,8),(590,2088673200,7),(590,2109232800,8),(590,2120122800,7),(590,2140682400,8),(591,-2147483648,1),(591,-880196400,2),(591,-769395600,3),(591,-765374400,1),(591,-86878800,4),(591,-21466800,5),(591,-5745600,4),(591,9982800,5),(591,25704000,4),(591,41432400,5),(591,57758400,4),(591,73486800,5),(591,89208000,4),(591,104936400,5),(591,120657600,4),(591,126709200,5),(591,152107200,4),(591,162392400,5),(591,183556800,4),(591,199285200,5),(591,215611200,4),(591,230734800,5),(591,247060800,4),(591,262789200,5),(591,278510400,4),(591,294238800,5),(591,309960000,4),(591,325688400,5),(591,341409600,4),(591,357138000,5),(591,372859200,4),(591,388587600,5),(591,404913600,4),(591,420037200,5),(591,436363200,6),(591,439034400,8),(591,452088000,7),(591,467809200,8),(591,483537600,7),(591,499258800,8),(591,514987200,7),(591,530708400,8),(591,544622400,7),(591,562158000,8),(591,576072000,7),(591,594212400,8),(591,607521600,7),(591,625662000,8),(591,638971200,7),(591,657111600,8),(591,671025600,7),(591,688561200,8),(591,702475200,7),(591,720010800,8),(591,733924800,7),(591,752065200,8),(591,765374400,7),(591,783514800,8),(591,796824000,7),(591,814964400,8),(591,828878400,7),(591,846414000,8),(591,860328000,7),(591,877863600,8),(591,891777600,7),(591,909313200,8),(591,923227200,7),(591,941367600,8),(591,954676800,7),(591,972817200,8),(591,986126400,7),(591,1004266800,8),(591,1018180800,7),(591,1035716400,8),(591,1049630400,7),(591,1067166000,8),(591,1081080000,7),(591,1099220400,8),(591,1112529600,7),(591,1130670000,8),(591,1143979200,7),(591,1162119600,8),(591,1173614400,7),(591,1194174000,8),(591,1205064000,7),(591,1225623600,8),(591,1236513600,7),(591,1257073200,8),(591,1268568000,7),(591,1289127600,8),(591,1300017600,7),(591,1320577200,8),(591,1331467200,7),(591,1352026800,8),(591,1362916800,7),(591,1383476400,8),(591,1394366400,7),(591,1414926000,8),(591,1425816000,7),(591,1446375600,8),(591,1457870400,7),(591,1478430000,8),(591,1489320000,7),(591,1509879600,8),(591,1520769600,7),(591,1541329200,8),(591,1552219200,7),(591,1572778800,8),(591,1583668800,7),(591,1604228400,8),(591,1615723200,7),(591,1636282800,8),(591,1647172800,7),(591,1667732400,8),(591,1678622400,7),(591,1699182000,8),(591,1710072000,7),(591,1730631600,8),(591,1741521600,7),(591,1762081200,8),(591,1772971200,7),(591,1793530800,8),(591,1805025600,7),(591,1825585200,8),(591,1836475200,7),(591,1857034800,8),(591,1867924800,7),(591,1888484400,8),(591,1899374400,7),(591,1919934000,8),(591,1930824000,7),(591,1951383600,8),(591,1962878400,7),(591,1983438000,8),(591,1994328000,7),(591,2014887600,8),(591,2025777600,7),(591,2046337200,8),(591,2057227200,7),(591,2077786800,8),(591,2088676800,7),(591,2109236400,8),(591,2120126400,7),(591,2140686000,8),(592,-2147483648,2),(592,-1633273200,1),(592,-1615132800,2),(592,-1601823600,1),(592,-1583683200,2),(592,-880210800,3),(592,-820519140,2),(592,-812653140,3),(592,-796845540,2),(592,-84380400,1),(592,-68659200,2),(593,-2147483648,2),(593,-1633276800,1),(593,-1615136400,2),(593,-1601827200,1),(593,-1583686800,2),(593,-1563724800,1),(593,-1551632400,2),(593,-1538928000,1),(593,-1520182800,2),(593,-1504454400,1),(593,-1491757200,2),(593,-1473004800,1),(593,-1459702800,2),(593,-1441555200,1),(593,-1428253200,2),(593,-1410105600,1),(593,-1396803600,2),(593,-1378656000,1),(593,-1365354000,2),(593,-1347206400,1),(593,-1333904400,2),(593,-1315152000,1),(593,-1301850000,2),(593,-1283702400,1),(593,-1270400400,2),(593,-1252252800,1),(593,-1238950800,2),(593,-1220803200,1),(593,-1207501200,2),(593,-1189353600,1),(593,-1176051600,2),(593,-1157299200,1),(593,-1144602000,2),(593,-1125849600,1),(593,-1112547600,2),(593,-1094400000,1),(593,-1081098000,2),(593,-1067788800,3),(593,-1045414800,2),(593,-1031500800,1),(593,-1018198800,2),(593,-1000051200,1),(593,-986749200,2),(593,-967996800,1),(593,-955299600,2),(593,-936547200,1),(593,-923245200,2),(593,-905097600,1),(593,-891795600,2),(593,-880214400,4),(593,-769395600,5),(593,-765392400,2),(593,-747244800,1),(593,-733942800,2),(593,-715795200,1),(593,-702493200,2),(593,-684345600,1),(593,-671043600,2),(593,-652896000,1),(593,-639594000,2),(593,-620841600,1),(593,-608144400,2),(593,-589392000,1),(593,-576090000,2),(593,-557942400,1),(593,-544640400,2),(593,-526492800,1),(593,-513190800,2),(593,-495043200,1),(593,-481741200,2),(593,-463593600,1),(593,-447267600,2),(593,-431539200,1),(593,-415818000,2),(593,-400089600,1),(593,-384368400,2),(593,-368640000,1),(593,-352918800,2),(593,-337190400,1),(593,-321469200,2),(593,-305740800,1),(593,-289414800,2),(593,-273686400,1),(593,-257965200,2),(593,-242236800,1),(593,-226515600,2),(593,-210787200,1),(593,-195066000,2),(593,-179337600,1),(593,-163616400,2),(593,-147888000,1),(593,-131562000,2),(593,-116438400,1),(593,-100112400,2),(593,-84384000,1),(593,-68662800,2),(593,-52934400,1),(593,-37213200,2),(593,-21484800,1),(593,-5763600,2),(593,9964800,1),(593,25686000,2),(593,41414400,1),(593,57740400,2),(593,73468800,1),(593,89190000,2),(593,104918400,1),(593,120639600,2),(593,126691200,1),(593,152089200,2),(593,162374400,1),(593,183538800,2),(593,199267200,1),(593,215593200,2),(593,230716800,1),(593,247042800,2),(593,262771200,1),(593,278492400,2),(593,294220800,1),(593,309942000,2),(593,325670400,1),(593,341391600,2),(593,357120000,1),(593,372841200,2),(593,388569600,1),(593,404895600,2),(593,420019200,1),(593,436345200,2),(593,452073600,1),(593,467794800,2),(593,483523200,1),(593,499244400,2),(593,514972800,1),(593,530694000,2),(593,544608000,1),(593,562143600,2),(593,576057600,1),(593,594198000,2),(593,607507200,1),(593,625647600,2),(593,638956800,1),(593,657097200,2),(593,671011200,1),(593,688546800,2),(593,702460800,1),(593,719996400,2),(593,733910400,1),(593,752050800,2),(593,765360000,1),(593,783500400,2),(593,796809600,1),(593,814950000,2),(593,828864000,1),(593,846399600,2),(593,860313600,1),(593,877849200,2),(593,891763200,1),(593,909298800,2),(593,923212800,1),(593,941353200,2),(593,954662400,1),(593,972802800,2),(593,986112000,1),(593,1004252400,2),(593,1018166400,1),(593,1035702000,2),(593,1049616000,1),(593,1067151600,2),(593,1081065600,1),(593,1099206000,2),(593,1112515200,1),(593,1130655600,2),(593,1143964800,1),(593,1162105200,2),(593,1173600000,1),(593,1194159600,2),(593,1205049600,1),(593,1225609200,2),(593,1236499200,1),(593,1257058800,2),(593,1268553600,1),(593,1289113200,2),(593,1300003200,1),(593,1320562800,2),(593,1331452800,1),(593,1352012400,2),(593,1362902400,1),(593,1383462000,2),(593,1394352000,1),(593,1414911600,2),(593,1425801600,1),(593,1446361200,2),(593,1457856000,1),(593,1478415600,2),(593,1489305600,1),(593,1509865200,2),(593,1520755200,1),(593,1541314800,2),(593,1552204800,1),(593,1572764400,2),(593,1583654400,1),(593,1604214000,2),(593,1615708800,1),(593,1636268400,2),(593,1647158400,1),(593,1667718000,2),(593,1678608000,1),(593,1699167600,2),(593,1710057600,1),(593,1730617200,2),(593,1741507200,1),(593,1762066800,2),(593,1772956800,1),(593,1793516400,2),(593,1805011200,1),(593,1825570800,2),(593,1836460800,1),(593,1857020400,2),(593,1867910400,1),(593,1888470000,2),(593,1899360000,1),(593,1919919600,2),(593,1930809600,1),(593,1951369200,2),(593,1962864000,1),(593,1983423600,2),(593,1994313600,1),(593,2014873200,2),(593,2025763200,1),(593,2046322800,2),(593,2057212800,1),(593,2077772400,2),(593,2088662400,1),(593,2109222000,2),(593,2120112000,1),(593,2140671600,2),(594,-2147483648,2),(594,-1633276800,1),(594,-1615136400,2),(594,-1601827200,1),(594,-1583686800,2),(594,-900259200,1),(594,-891795600,2),(594,-880214400,3),(594,-769395600,4),(594,-765392400,2),(594,-747244800,1),(594,-733942800,2),(594,-715795200,1),(594,-702493200,2),(594,-684345600,1),(594,-671043600,2),(594,-652896000,1),(594,-639594000,2),(594,-620841600,1),(594,-608144400,2),(594,-589392000,1),(594,-576090000,2),(594,-557942400,1),(594,-544640400,2),(594,-526492800,1),(594,-513190800,2),(594,-495043200,1),(594,-481741200,2),(594,-463593600,5),(594,-386787600,2),(594,-368640000,5),(594,-21488400,6),(594,-5767200,5),(594,9961200,6),(594,25682400,5),(594,1143961200,6),(594,1162101600,5),(594,1173596400,6),(594,1194156000,5),(594,1205046000,6),(594,1225605600,5),(594,1236495600,6),(594,1257055200,5),(594,1268550000,6),(594,1289109600,5),(594,1299999600,6),(594,1320559200,5),(594,1331449200,6),(594,1352008800,5),(594,1362898800,6),(594,1383458400,5),(594,1394348400,6),(594,1414908000,5),(594,1425798000,6),(594,1446357600,5),(594,1457852400,6),(594,1478412000,5),(594,1489302000,6),(594,1509861600,5),(594,1520751600,6),(594,1541311200,5),(594,1552201200,6),(594,1572760800,5),(594,1583650800,6),(594,1604210400,5),(594,1615705200,6),(594,1636264800,5),(594,1647154800,6),(594,1667714400,5),(594,1678604400,6),(594,1699164000,5),(594,1710054000,6),(594,1730613600,5),(594,1741503600,6),(594,1762063200,5),(594,1772953200,6),(594,1793512800,5),(594,1805007600,6),(594,1825567200,5),(594,1836457200,6),(594,1857016800,5),(594,1867906800,6),(594,1888466400,5),(594,1899356400,6),(594,1919916000,5),(594,1930806000,6),(594,1951365600,5),(594,1962860400,6),(594,1983420000,5),(594,1994310000,6),(594,2014869600,5),(594,2025759600,6),(594,2046319200,5),(594,2057209200,6),(594,2077768800,5),(594,2088658800,6),(594,2109218400,5),(594,2120108400,6),(594,2140668000,5),(595,-2147483648,2),(595,-1633280400,1),(595,-1615140000,2),(595,-1601830800,1),(595,-1583690400,2),(595,-1570381200,1),(595,-1551636000,2),(595,-1536512400,1),(595,-1523210400,2),(595,-1504458000,1),(595,-1491760800,2),(595,-1473008400,1),(595,-1459706400,2),(595,-1441558800,1),(595,-1428256800,2),(595,-1410109200,1),(595,-1396807200,2),(595,-1378659600,1),(595,-1365357600,2),(595,-1347210000,1),(595,-1333908000,2),(595,-1315155600,1),(595,-1301853600,2),(595,-1283706000,1),(595,-1270404000,2),(595,-1252256400,1),(595,-1238954400,2),(595,-1220806800,1),(595,-1207504800,2),(595,-1189357200,1),(595,-1176055200,2),(595,-1157302800,1),(595,-1144605600,2),(595,-1125853200,1),(595,-1112551200,2),(595,-1094403600,1),(595,-1081101600,2),(595,-1062954000,1),(595,-1049652000,2),(595,-1031504400,1),(595,-1018202400,2),(595,-1000054800,1),(595,-986752800,2),(595,-968000400,1),(595,-955303200,2),(595,-936550800,1),(595,-923248800,2),(595,-905101200,1),(595,-891799200,2),(595,-880218000,3),(595,-769395600,4),(595,-765396000,2),(595,-747248400,1),(595,-733946400,2),(595,-715798800,1),(595,-702496800,2),(595,-684349200,1),(595,-671047200,2),(595,-652899600,1),(595,-639597600,2),(595,-620845200,1),(595,-608148000,2),(595,-589395600,1),(595,-576093600,2),(595,-557946000,1),(595,-544644000,2),(595,-526496400,1),(595,-513194400,2),(595,-495046800,1),(595,-481744800,2),(595,-463597200,1),(595,-447271200,2),(595,-431542800,1),(595,-415821600,2),(595,-400093200,1),(595,-384372000,2),(595,-368643600,1),(595,-352922400,2),(595,-337194000,1),(595,-321472800,2),(595,-305744400,1),(595,-289418400,2),(595,-273690000,1),(595,-257968800,2),(595,-242240400,1),(595,-226519200,2),(595,-210790800,1),(595,-195069600,2),(595,-179341200,1),(595,-163620000,2),(595,-147891600,1),(595,-131565600,2),(595,-116442000,1),(595,-100116000,2),(595,-84387600,1),(595,-68666400,2),(595,-52938000,1),(595,-37216800,2),(595,-21488400,1),(595,-5767200,2),(595,9961200,1),(595,25682400,2),(595,41410800,1),(595,57736800,2),(595,73465200,1),(595,89186400,2),(595,104914800,1),(595,120636000,2),(595,126687600,1),(595,152085600,2),(595,162370800,1),(595,183535200,2),(595,199263600,1),(595,215589600,2),(595,230713200,1),(595,247039200,2),(595,262767600,1),(595,278488800,2),(595,294217200,1),(595,309938400,2),(595,325666800,1),(595,341388000,2),(595,357116400,1),(595,372837600,2),(595,388566000,1),(595,404892000,2),(595,420015600,1),(595,436341600,2),(595,452070000,1),(595,467791200,2),(595,483519600,1),(595,499240800,2),(595,514969200,1),(595,530690400,2),(595,544604400,1),(595,562140000,2),(595,576054000,1),(595,594194400,2),(595,607503600,1),(595,625644000,2),(595,638953200,1),(595,657093600,2),(595,671007600,1),(595,688543200,2),(595,702457200,1),(595,719992800,2),(595,733906800,1),(595,752047200,2),(595,765356400,1),(595,783496800,2),(595,796806000,1),(595,814946400,2),(595,828860400,1),(595,846396000,2),(595,860310000,1),(595,877845600,2),(595,891759600,1),(595,909295200,2),(595,923209200,1),(595,941349600,2),(595,954658800,1),(595,972799200,2),(595,986108400,1),(595,1004248800,2),(595,1018162800,1),(595,1035698400,2),(595,1049612400,1),(595,1067148000,2),(595,1081062000,1),(595,1099202400,2),(595,1112511600,1),(595,1130652000,2),(595,1143961200,1),(595,1162101600,2),(595,1173596400,1),(595,1194156000,2),(595,1205046000,1),(595,1225605600,2),(595,1236495600,1),(595,1257055200,2),(595,1268550000,1),(595,1289109600,2),(595,1299999600,1),(595,1320559200,2),(595,1331449200,1),(595,1352008800,2),(595,1362898800,1),(595,1383458400,2),(595,1394348400,1),(595,1414908000,2),(595,1425798000,1),(595,1446357600,2),(595,1457852400,1),(595,1478412000,2),(595,1489302000,1),(595,1509861600,2),(595,1520751600,1),(595,1541311200,2),(595,1552201200,1),(595,1572760800,2),(595,1583650800,1),(595,1604210400,2),(595,1615705200,1),(595,1636264800,2),(595,1647154800,1),(595,1667714400,2),(595,1678604400,1),(595,1699164000,2),(595,1710054000,1),(595,1730613600,2),(595,1741503600,1),(595,1762063200,2),(595,1772953200,1),(595,1793512800,2),(595,1805007600,1),(595,1825567200,2),(595,1836457200,1),(595,1857016800,2),(595,1867906800,1),(595,1888466400,2),(595,1899356400,1),(595,1919916000,2),(595,1930806000,1),(595,1951365600,2),(595,1962860400,1),(595,1983420000,2),(595,1994310000,1),(595,2014869600,2),(595,2025759600,1),(595,2046319200,2),(595,2057209200,1),(595,2077768800,2),(595,2088658800,1),(595,2109218400,2),(595,2120108400,1),(595,2140668000,2),(596,-2147483648,1),(596,-1157283000,2),(596,-1155436200,1),(596,-880198200,3),(596,-769395600,4),(596,-765376200,1),(596,-712150200,5),(597,-2147483648,2),(597,-1633276800,1),(597,-1615136400,2),(597,-1601827200,1),(597,-1583686800,2),(597,-880214400,3),(597,-769395600,4),(597,-765392400,2),(597,-715795200,1),(597,-702493200,2),(597,-684345600,1),(597,-671043600,2),(597,-652896000,1),(597,-639594000,2),(597,-620841600,1),(597,-608144400,2),(597,-589392000,1),(597,-576090000,2),(597,-557942400,1),(597,-544640400,2),(597,-526492800,1),(597,-513190800,2),(597,-495043200,1),(597,-481741200,2),(597,-463593600,1),(597,-447267600,2),(597,-431539200,1),(597,-415818000,2),(597,-400089600,1),(597,-386787600,2),(597,-368640000,1),(597,-355338000,2),(597,-337190400,1),(597,-321469200,2),(597,-305740800,1),(597,-289414800,2),(597,-273686400,1),(597,-257965200,2),(597,-242236800,5),(597,-195066000,2),(597,-84384000,1),(597,-68662800,2),(597,-52934400,1),(597,-37213200,2),(597,-21484800,1),(597,-5763600,2),(597,9964800,1),(597,25686000,2),(597,41414400,1),(597,57740400,2),(597,73468800,1),(597,89190000,2),(597,104918400,1),(597,120639600,2),(597,126691200,1),(597,152089200,2),(597,162374400,1),(597,183538800,2),(597,199267200,1),(597,215593200,2),(597,230716800,1),(597,247042800,2),(597,262771200,1),(597,278492400,2),(597,294220800,1),(597,309942000,2),(597,325670400,1),(597,341391600,2),(597,357120000,1),(597,372841200,2),(597,388569600,1),(597,404895600,2),(597,420019200,1),(597,436345200,2),(597,452073600,1),(597,467794800,2),(597,483523200,1),(597,499244400,2),(597,514972800,1),(597,530694000,2),(597,544608000,1),(597,562143600,2),(597,576057600,1),(597,594198000,2),(597,607507200,1),(597,625647600,2),(597,638956800,1),(597,657097200,2),(597,671011200,1),(597,688546800,5),(597,1143961200,1),(597,1162105200,2),(597,1173600000,1),(597,1194159600,2),(597,1205049600,1),(597,1225609200,2),(597,1236499200,1),(597,1257058800,2),(597,1268553600,1),(597,1289113200,2),(597,1300003200,1),(597,1320562800,2),(597,1331452800,1),(597,1352012400,2),(597,1362902400,1),(597,1383462000,2),(597,1394352000,1),(597,1414911600,2),(597,1425801600,1),(597,1446361200,2),(597,1457856000,1),(597,1478415600,2),(597,1489305600,1),(597,1509865200,2),(597,1520755200,1),(597,1541314800,2),(597,1552204800,1),(597,1572764400,2),(597,1583654400,1),(597,1604214000,2),(597,1615708800,1),(597,1636268400,2),(597,1647158400,1),(597,1667718000,2),(597,1678608000,1),(597,1699167600,2),(597,1710057600,1),(597,1730617200,2),(597,1741507200,1),(597,1762066800,2),(597,1772956800,1),(597,1793516400,2),(597,1805011200,1),(597,1825570800,2),(597,1836460800,1),(597,1857020400,2),(597,1867910400,1),(597,1888470000,2),(597,1899360000,1),(597,1919919600,2),(597,1930809600,1),(597,1951369200,2),(597,1962864000,1),(597,1983423600,2),(597,1994313600,1),(597,2014873200,2),(597,2025763200,1),(597,2046322800,2),(597,2057212800,1),(597,2077772400,2),(597,2088662400,1),(597,2109222000,2),(597,2120112000,1),(597,2140671600,2),(598,-2147483648,0),(598,-2051202469,1),(598,-1724083200,2),(598,-880218000,3),(598,-769395600,4),(598,-765396000,2),(598,-684349200,5),(598,-671047200,2),(598,-80506740,5),(598,-68666400,2),(598,-52938000,5),(598,-37216800,2),(598,104914800,5),(598,120636000,2),(598,126687600,5),(598,152085600,2),(598,167814000,5),(598,183535200,2),(598,199263600,5),(598,215589600,2),(598,230713200,5),(598,247039200,2),(598,262767600,5),(598,278488800,2),(598,294217200,5),(598,309938400,2),(598,325666800,5),(598,341388000,2),(598,357116400,5),(598,372837600,2),(598,388566000,5),(598,404892000,2),(598,420015600,5),(598,436341600,2),(598,452070000,5),(598,467791200,2),(598,483519600,5),(598,499240800,2),(598,514969200,5),(598,530690400,2),(598,544604400,5),(598,562140000,2),(598,576054000,5),(598,594194400,2),(598,607503600,5),(598,625644000,2),(598,638953200,5),(598,657093600,2),(598,671007600,5),(598,688543200,2),(598,702457200,5),(598,719992800,2),(598,733906800,5),(598,752047200,2),(598,765356400,5),(598,783496800,2),(598,796806000,5),(598,814946400,2),(598,828860400,5),(598,846396000,2),(598,860310000,5),(598,877845600,2),(598,891759600,5),(598,909295200,2),(598,923209200,5),(598,941349600,2),(598,954658800,5),(598,972799200,2),(598,986108400,5),(598,1004248800,2),(598,1018162800,5),(598,1035698400,2),(598,1049612400,5),(598,1067148000,2),(598,1081062000,5),(598,1099202400,2),(598,1112511600,5),(598,1130652000,2),(598,1143961200,5),(598,1162101600,2),(598,1173596400,5),(598,1194156000,2),(598,1205046000,5),(598,1225605600,2),(598,1236495600,5),(598,1257055200,2),(598,1268550000,5),(598,1289109600,2),(598,1299999600,5),(598,1320559200,2),(598,1331449200,5),(598,1352008800,2),(598,1362898800,5),(598,1383458400,2),(598,1394348400,5),(598,1414908000,2),(598,1425798000,5),(598,1446357600,2),(598,1457852400,5),(598,1478412000,2),(598,1489302000,5),(598,1509861600,2),(598,1520751600,5),(598,1541311200,2),(598,1552201200,5),(598,1572760800,2),(598,1583650800,5),(598,1604210400,2),(598,1615705200,5),(598,1636264800,2),(598,1647154800,5),(598,1667714400,2),(598,1678604400,5),(598,1699164000,2),(598,1710054000,5),(598,1730613600,2),(598,1741503600,5),(598,1762063200,2),(598,1772953200,5),(598,1793512800,2),(598,1805007600,5),(598,1825567200,2),(598,1836457200,5),(598,1857016800,2),(598,1867906800,5),(598,1888466400,2),(598,1899356400,5),(598,1919916000,2),(598,1930806000,5),(598,1951365600,2),(598,1962860400,5),(598,1983420000,2),(598,1994310000,5),(598,2014869600,2),(598,2025759600,5),(598,2046319200,2),(598,2057209200,5),(598,2077768800,2),(598,2088658800,5),(598,2109218400,2),(598,2120108400,5),(598,2140668000,2),(599,-2147483648,2),(599,-1633273200,1),(599,-1615132800,2),(599,-1601823600,1),(599,-1583683200,2),(599,-1570374000,1),(599,-1551628800,2),(599,-1538924400,1),(599,-1534089600,2),(599,-880210800,3),(599,-769395600,4),(599,-765388800,2),(599,-147884400,1),(599,-131558400,2),(599,-116434800,1),(599,-100108800,2),(599,-84380400,1),(599,-68659200,2),(599,-52930800,1),(599,-37209600,2),(599,-21481200,1),(599,-5760000,2),(599,9968400,1),(599,25689600,2),(599,41418000,1),(599,57744000,2),(599,73472400,1),(599,89193600,2),(599,104922000,1),(599,120643200,2),(599,126694800,1),(599,152092800,2),(599,162378000,1),(599,183542400,2),(599,199270800,1),(599,215596800,2),(599,230720400,1),(599,247046400,2),(599,262774800,1),(599,278496000,2),(599,294224400,1),(599,309945600,2),(599,325674000,1),(599,341395200,2),(599,357123600,1),(599,372844800,2),(599,388573200,1),(599,404899200,2),(599,420022800,1),(599,436348800,2),(599,452077200,1),(599,467798400,2),(599,483526800,1),(599,499248000,2),(599,514976400,1),(599,530697600,2),(599,544611600,1),(599,562147200,2),(599,576061200,1),(599,594201600,2),(599,607510800,1),(599,625651200,2),(599,638960400,1),(599,657100800,2),(599,671014800,1),(599,688550400,2),(599,702464400,1),(599,720000000,2),(599,733914000,1),(599,752054400,2),(599,765363600,1),(599,783504000,2),(599,796813200,1),(599,814953600,2),(599,828867600,1),(599,846403200,2),(599,860317200,1),(599,877852800,2),(599,891766800,1),(599,909302400,2),(599,923216400,1),(599,941356800,2),(599,954666000,1),(599,972806400,2),(599,986115600,1),(599,1004256000,2),(599,1018170000,1),(599,1035705600,2),(599,1049619600,1),(599,1067155200,2),(599,1081069200,1),(599,1099209600,2),(599,1112518800,1),(599,1130659200,2),(599,1143968400,1),(599,1162108800,2),(599,1173603600,1),(599,1194163200,2),(599,1205053200,1),(599,1225612800,2),(599,1236502800,1),(599,1257062400,2),(599,1268557200,1),(599,1289116800,2),(599,1300006800,1),(599,1320566400,2),(599,1331456400,1),(599,1352016000,2),(599,1362906000,1),(599,1383465600,2),(599,1394355600,1),(599,1414915200,2),(599,1425805200,1),(599,1446364800,2),(599,1457859600,1),(599,1478419200,2),(599,1489309200,1),(599,1509868800,2),(599,1520758800,1),(599,1541318400,2),(599,1552208400,1),(599,1572768000,2),(599,1583658000,1),(599,1604217600,2),(599,1615712400,1),(599,1636272000,2),(599,1647162000,1),(599,1667721600,2),(599,1678611600,1),(599,1699171200,2),(599,1710061200,1),(599,1730620800,2),(599,1741510800,1),(599,1762070400,2),(599,1772960400,1),(599,1793520000,2),(599,1805014800,1),(599,1825574400,2),(599,1836464400,1),(599,1857024000,2),(599,1867914000,1),(599,1888473600,2),(599,1899363600,1),(599,1919923200,2),(599,1930813200,1),(599,1951372800,2),(599,1962867600,1),(599,1983427200,2),(599,1994317200,1),(599,2014876800,2),(599,2025766800,1),(599,2046326400,2),(599,2057216400,1),(599,2077776000,2),(599,2088666000,1),(599,2109225600,2),(599,2120115600,1),(599,2140675200,2),(600,-2147483648,2),(600,-1633269600,1),(600,-1615129200,2),(600,-1601820000,1),(600,-1583679600,2),(600,-880207200,3),(600,-769395600,4),(600,-765385200,2),(600,-687967140,1),(600,-662655600,2),(600,-620838000,1),(600,-608137200,2),(600,-589388400,1),(600,-576082800,2),(600,-557938800,1),(600,-544633200,2),(600,-526489200,1),(600,-513183600,2),(600,-495039600,1),(600,-481734000,2),(600,-463590000,1),(600,-450284400,2),(600,-431535600,1),(600,-418230000,2),(600,-400086000,1),(600,-386780400,2),(600,-368636400,1),(600,-355330800,2),(600,-337186800,1),(600,-323881200,2),(600,-305737200,1),(600,-292431600,2),(600,-273682800,1),(600,-260982000,2),(600,-242233200,1),(600,-226508400,2),(600,-210783600,1),(600,-195058800,2),(600,-179334000,1),(600,-163609200,2),(600,-147884400,1),(600,-131554800,2),(600,-116434800,1),(600,-100105200,2),(600,-84376800,1),(600,-68655600,2),(600,-52927200,1),(600,-37206000,2),(600,-21477600,1),(600,-5756400,2),(600,9972000,1),(600,25693200,2),(600,41421600,1),(600,57747600,2),(600,73476000,1),(600,89197200,2),(600,104925600,1),(600,120646800,2),(600,126698400,1),(600,152096400,2),(600,162381600,1),(600,183546000,2),(600,199274400,1),(600,215600400,2),(600,230724000,1),(600,247050000,2),(600,262778400,1),(600,278499600,2),(600,294228000,1),(600,309949200,2),(600,325677600,1),(600,341398800,2),(600,357127200,1),(600,372848400,2),(600,388576800,1),(600,404902800,2),(600,420026400,1),(600,436352400,2),(600,452080800,1),(600,467802000,2),(600,483530400,1),(600,499251600,2),(600,514980000,1),(600,530701200,2),(600,544615200,1),(600,562150800,2),(600,576064800,1),(600,594205200,2),(600,607514400,1),(600,625654800,2),(600,638964000,1),(600,657104400,2),(600,671018400,1),(600,688554000,2),(600,702468000,1),(600,720003600,2),(600,733917600,1),(600,752058000,2),(600,765367200,1),(600,783507600,2),(600,796816800,1),(600,814957200,2),(600,828871200,1),(600,846406800,2),(600,860320800,1),(600,877856400,2),(600,891770400,1),(600,909306000,2),(600,923220000,1),(600,941360400,2),(600,954669600,1),(600,972810000,2),(600,986119200,1),(600,1004259600,2),(600,1018173600,1),(600,1035709200,2),(600,1049623200,1),(600,1067158800,2),(600,1081072800,1),(600,1099213200,2),(600,1112522400,1),(600,1130662800,2),(600,1143972000,1),(600,1162112400,2),(600,1173607200,1),(600,1194166800,2),(600,1205056800,1),(600,1225616400,2),(600,1236506400,1),(600,1257066000,2),(600,1268560800,1),(600,1289120400,2),(600,1300010400,1),(600,1320570000,2),(600,1331460000,1),(600,1352019600,2),(600,1362909600,1),(600,1383469200,2),(600,1394359200,1),(600,1414918800,2),(600,1425808800,1),(600,1446368400,2),(600,1457863200,1),(600,1478422800,2),(600,1489312800,1),(600,1509872400,2),(600,1520762400,1),(600,1541322000,2),(600,1552212000,1),(600,1572771600,2),(600,1583661600,1),(600,1604221200,2),(600,1615716000,1),(600,1636275600,2),(600,1647165600,1),(600,1667725200,2),(600,1678615200,1),(600,1699174800,2),(600,1710064800,1),(600,1730624400,2),(600,1741514400,1),(600,1762074000,2),(600,1772964000,1),(600,1793523600,2),(600,1805018400,1),(600,1825578000,2),(600,1836468000,1),(600,1857027600,2),(600,1867917600,1),(600,1888477200,2),(600,1899367200,1),(600,1919926800,2),(600,1930816800,1),(600,1951376400,2),(600,1962871200,1),(600,1983430800,2),(600,1994320800,1),(600,2014880400,2),(600,2025770400,1),(600,2046330000,2),(600,2057220000,1),(600,2077779600,2),(600,2088669600,1),(600,2109229200,2),(600,2120119200,1),(600,2140678800,2),(601,-2147483648,2),(601,-1633269600,1),(601,-1615129200,2),(601,-1601820000,1),(601,-1583679600,2),(601,-880207200,3),(601,-769395600,4),(601,-765385200,2),(601,-687967140,1),(601,-662655600,2),(601,-620838000,1),(601,-608137200,2),(601,-589388400,1),(601,-576082800,2),(601,-557938800,1),(601,-544633200,2),(601,-526489200,1),(601,-513183600,2),(601,-495039600,1),(601,-481734000,2),(601,-463590000,1),(601,-450284400,2),(601,-431535600,1),(601,-418230000,2),(601,-400086000,1),(601,-386780400,2),(601,-368636400,1),(601,-355330800,2),(601,-337186800,1),(601,-323881200,2),(601,-305737200,1),(601,-292431600,2),(601,-273682800,1),(601,-260982000,2),(601,-242233200,1),(601,-226508400,2),(601,-210783600,1),(601,-195058800,2),(601,-179334000,1),(601,-163609200,2),(601,-147884400,1),(601,-131554800,2),(601,-116434800,1),(601,-100105200,2),(601,-84376800,1),(601,-68655600,2),(601,-52927200,1),(601,-37206000,2),(601,-21477600,1),(601,-5756400,2),(601,9972000,1),(601,25693200,2),(601,41421600,1),(601,57747600,2),(601,73476000,1),(601,89197200,2),(601,104925600,1),(601,120646800,2),(601,126698400,1),(601,152096400,2),(601,162381600,1),(601,183546000,2),(601,199274400,1),(601,215600400,2),(601,230724000,1),(601,247050000,2),(601,262778400,1),(601,278499600,2),(601,294228000,1),(601,309949200,2),(601,325677600,1),(601,341398800,2),(601,357127200,1),(601,372848400,2),(601,388576800,1),(601,404902800,2),(601,420026400,1),(601,436352400,2),(601,452080800,1),(601,467802000,2),(601,483530400,1),(601,499251600,2),(601,514980000,1),(601,530701200,2),(601,544615200,1),(601,562150800,2),(601,576064800,1),(601,594205200,2),(601,607514400,1),(601,625654800,2),(601,638964000,1),(601,657104400,2),(601,671018400,1),(601,688554000,2),(601,702468000,1),(601,720003600,2),(601,733917600,1),(601,752058000,2),(601,765367200,1),(601,783507600,2),(601,796816800,1),(601,814957200,2),(601,828871200,1),(601,846406800,2),(601,860320800,1),(601,877856400,2),(601,891770400,1),(601,909306000,2),(601,923220000,1),(601,941360400,2),(601,954669600,1),(601,972810000,2),(601,986119200,1),(601,1004259600,2),(601,1018173600,1),(601,1035709200,2),(601,1049623200,1),(601,1067158800,2),(601,1081072800,1),(601,1099213200,2),(601,1112522400,1),(601,1130662800,2),(601,1143972000,1),(601,1162112400,2),(601,1173607200,1),(601,1194166800,2),(601,1205056800,1),(601,1225616400,2),(601,1236506400,1),(601,1257066000,2),(601,1268560800,1),(601,1289120400,2),(601,1300010400,1),(601,1320570000,2),(601,1331460000,1),(601,1352019600,2),(601,1362909600,1),(601,1383469200,2),(601,1394359200,1),(601,1414918800,2),(601,1425808800,1),(601,1446368400,2),(601,1457863200,1),(601,1478422800,2),(601,1489312800,1),(601,1509872400,2),(601,1520762400,1),(601,1541322000,2),(601,1552212000,1),(601,1572771600,2),(601,1583661600,1),(601,1604221200,2),(601,1615716000,1),(601,1636275600,2),(601,1647165600,1),(601,1667725200,2),(601,1678615200,1),(601,1699174800,2),(601,1710064800,1),(601,1730624400,2),(601,1741514400,1),(601,1762074000,2),(601,1772964000,1),(601,1793523600,2),(601,1805018400,1),(601,1825578000,2),(601,1836468000,1),(601,1857027600,2),(601,1867917600,1),(601,1888477200,2),(601,1899367200,1),(601,1919926800,2),(601,1930816800,1),(601,1951376400,2),(601,1962871200,1),(601,1983430800,2),(601,1994320800,1),(601,2014880400,2),(601,2025770400,1),(601,2046330000,2),(601,2057220000,1),(601,2077779600,2),(601,2088669600,1),(601,2109229200,2),(601,2120119200,1),(601,2140678800,2),(602,-2147483648,1),(602,-1861879032,2),(605,-2147483648,1),(605,-1688265017,3),(605,-1656819079,2),(605,-1641353479,3),(605,-1627965079,4),(605,-1618716679,2),(605,-1596429079,4),(605,-1593820800,5),(605,-1589860800,6),(605,-1542427200,7),(605,-1539493200,8),(605,-1525323600,7),(605,-1522728000,6),(605,-1491188400,9),(605,-1247536800,6),(605,354920400,7),(605,370728000,6),(605,386456400,7),(605,402264000,6),(605,417992400,7),(605,433800000,6),(605,449614800,7),(605,465346800,10),(605,481071600,11),(605,496796400,10),(605,512521200,11),(605,528246000,10),(605,543970800,11),(605,559695600,10),(605,575420400,11),(605,591145200,10),(605,606870000,11),(605,622594800,10),(605,638319600,11),(605,654649200,10),(605,670374000,12),(605,686102400,13),(605,695779200,10),(605,701823600,11),(605,717548400,10),(605,733273200,11),(605,748998000,10),(605,764722800,11),(605,780447600,10),(605,796172400,11),(605,811897200,10),(605,828226800,11),(605,846370800,10),(605,859676400,11),(605,877820400,10),(605,891126000,11),(605,909270000,10),(605,922575600,11),(605,941324400,10),(605,954025200,11),(605,972774000,10),(605,985474800,11),(605,1004223600,10),(605,1017529200,11),(605,1035673200,10),(605,1048978800,11),(605,1067122800,10),(605,1080428400,11),(605,1099177200,10),(605,1111878000,11),(605,1130626800,10),(605,1143327600,11),(605,1162076400,10),(605,1174777200,11),(605,1193526000,10),(605,1206831600,11),(605,1224975600,10),(605,1238281200,11),(605,1256425200,10),(605,1269730800,11),(605,1288479600,10),(605,1301180400,14),(605,1414274400,10),(606,228877200,0),(606,243997200,1),(606,260326800,0),(606,276051600,1),(606,291776400,0),(606,307501200,1),(606,323830800,0),(606,338950800,1),(606,354675600,0),(606,370400400,1),(606,386125200,0),(606,401850000,1),(606,417574800,0),(606,433299600,1),(606,449024400,0),(606,465354000,1),(606,481078800,0),(606,496803600,1),(606,512528400,0),(606,528253200,1),(606,543978000,0),(606,559702800,1),(606,575427600,0),(606,591152400,1),(606,606877200,0),(606,622602000,1),(606,638326800,0),(606,654656400,1),(606,670381200,0),(606,686106000,1),(606,701830800,0),(606,717555600,1),(606,733280400,0),(606,749005200,1),(606,764730000,0),(606,780454800,1),(606,796179600,0),(606,811904400,1),(606,828234000,0),(606,846378000,1),(606,859683600,0),(606,877827600,1),(606,891133200,0),(606,909277200,1),(606,922582800,0),(606,941331600,1),(606,954032400,0),(606,972781200,1),(606,985482000,0),(606,1004230800,1),(606,1017536400,0),(606,1035680400,1),(606,1048986000,0),(606,1067130000,1),(606,1080435600,0),(606,1099184400,1),(606,1111885200,0),(606,1130634000,1),(606,1143334800,0),(606,1162083600,1),(606,1174784400,0),(606,1193533200,1),(606,1206838800,0),(606,1224982800,1),(606,1238288400,0),(606,1256432400,1),(606,1269738000,0),(606,1288486800,1),(606,1301187600,0),(606,1319936400,1),(606,1332637200,0),(606,1351386000,1),(606,1364691600,0),(606,1382835600,1),(606,1396141200,0),(606,1414285200,1),(606,1427590800,0),(606,1445734800,1),(606,1459040400,0),(606,1477789200,1),(606,1490490000,0),(606,1509238800,1),(606,1521939600,0),(606,1540688400,1),(606,1553994000,0),(606,1572138000,1),(606,1585443600,0),(606,1603587600,1),(606,1616893200,0),(606,1635642000,1),(606,1648342800,0),(606,1667091600,1),(606,1679792400,0),(606,1698541200,1),(606,1711846800,0),(606,1729990800,1),(606,1743296400,0),(606,1761440400,1),(606,1774746000,0),(606,1792890000,1),(606,1806195600,0),(606,1824944400,1),(606,1837645200,0),(606,1856394000,1),(606,1869094800,0),(606,1887843600,1),(606,1901149200,0),(606,1919293200,1),(606,1932598800,0),(606,1950742800,1),(606,1964048400,0),(606,1982797200,1),(606,1995498000,0),(606,2014246800,1),(606,2026947600,0),(606,2045696400,1),(606,2058397200,0),(606,2077146000,1),(606,2090451600,0),(606,2108595600,1),(606,2121901200,0),(606,2140045200,1),(609,-2147483648,0),(609,-1830383032,1),(610,-2147483648,0),(610,-1640995148,2),(610,-1556841600,1),(610,-1546388400,2),(610,-1525305600,1),(610,-1514852400,2),(610,-1493769600,1),(610,-1483316400,2),(610,-1462233600,1),(610,-1451780400,2),(610,-1430611200,1),(610,-1420158000,2),(610,-1399075200,1),(610,-1388622000,2),(610,-1367539200,1),(610,-1357086000,2),(610,-1336003200,1),(610,-1325550000,2),(610,-1304380800,1),(610,-1293927600,2),(610,-1272844800,1),(610,-1262391600,2),(610,-1241308800,1),(610,-1230855600,2),(610,-1209772800,1),(610,-1199319600,2),(610,-1178150400,1),(610,-1167697200,2),(610,-1146614400,1),(610,-1136161200,2),(610,-1115078400,1),(610,-1104625200,2),(610,-1083542400,1),(610,-1073089200,2),(610,-1051920000,1),(610,-1041466800,2),(610,-1020384000,1),(610,-1009930800,2),(610,-988848000,1),(610,-978394800,2),(610,-957312000,1),(610,-946858800,2),(610,-925689600,1),(610,-915236400,2),(610,-894153600,1),(610,-883700400,2),(610,-862617600,1),(610,-852164400,2),(611,-2147483648,0),(611,-1309746436,1),(611,-1262314800,2),(611,-946780200,3),(611,-315629100,1),(612,-2147483648,1),(612,-1855958961,4),(612,-1689814800,2),(612,-1680397200,3),(612,-1665363600,2),(612,-1648342800,3),(612,-1635123600,2),(612,-1616893200,3),(612,-1604278800,2),(612,-1585443600,3),(612,-1574038800,2),(612,-1552266000,3),(612,-1539997200,2),(612,-1531443600,3),(612,-956365200,2),(612,-950486400,4),(612,-942012000,6),(612,-812502000,5),(612,-796262400,6),(612,-781052400,5),(612,-766630800,6),(612,-733280400,4),(612,-439430400,6),(612,-212029200,4),(612,41468400,2),(612,54774000,3),(612,231724800,7),(612,246236400,6),(612,259545600,5),(612,275274000,6),(612,309740400,4),(612,325468800,7),(612,341802000,4),(612,357523200,6),(613,-2147483648,0),(613,-1309746436,1),(613,-1262314800,2),(613,-946780200,3),(613,-315629100,1),(614,-2147483648,0),(614,-1309746436,1),(614,-1262314800,2),(614,-946780200,3),(614,-315629100,1),(615,-2147483648,0),(615,-1830383032,1),(616,-2147483648,0),(616,-1588464816,1),(617,-2147483648,0),(617,-1830383032,1),(618,-2147483648,0),(618,-1830380400,1),(618,157770000,2),(619,-2147483648,0),(619,-2109291020,1),(620,-2147483648,0),(620,-1588464816,1),(621,-2147483648,0),(621,-2109291020,1),(622,-2147483648,2),(622,-929844000,1),(622,-923108400,2),(622,-906170400,1),(622,-892868400,2),(622,-875844000,1),(622,-857790000,2),(622,-844308000,1),(622,-825822000,2),(622,-812685600,1),(622,-794199600,2),(622,-779853600,1),(622,-762663600,2),(622,-399088800,1),(622,-386650800,2),(622,-368330400,1),(622,-355114800,2),(622,-336790800,1),(622,-323654400,2),(622,-305168400,1),(622,-292032000,2),(622,-273632400,1),(622,-260496000,2),(622,-242096400,1),(622,-228960000,2),(622,-210560400,1),(622,-197424000,2),(622,-178938000,1),(622,-165801600,2),(622,-147402000,1),(622,-134265600,2),(622,-115866000,1),(622,-102643200,2),(622,-84330000,1),(622,-71107200,2),(622,-52707600,1),(622,-39484800,2),(622,-21171600,1),(622,-7948800,2),(622,10364400,1),(622,23587200,2),(622,41900400,1),(622,55123200,2),(622,73522800,1),(622,86745600,2),(622,105058800,1),(622,118281600,2),(622,136594800,1),(622,149817600,2),(622,168130800,1),(622,181353600,2),(622,199753200,1),(622,212976000,2),(622,231289200,1),(622,244512000,2),(622,262825200,1),(622,276048000,2),(622,294361200,1),(622,307584000,2),(622,325983600,1),(622,339206400,2),(622,357519600,1),(622,370742400,2),(622,396399600,1),(622,402278400,2),(622,426812400,1),(622,433814400,2),(622,452214000,1),(622,465436800,2),(622,483750000,1),(622,496972800,2),(622,515286000,1),(622,528508800,2),(622,546822000,1),(622,560044800,2),(622,578444400,1),(622,591667200,2),(622,610412400,1),(622,623203200,2),(622,641516400,1),(622,654739200,2),(622,673052400,1),(622,686275200,2),(622,704674800,1),(622,717897600,2),(622,736210800,1),(622,749433600,2),(622,767746800,1),(622,780969600,2),(622,799020000,3),(622,812322000,2),(622,830469600,3),(622,843771600,2),(622,861919200,3),(622,875221200,2),(622,893368800,3),(622,906670800,2),(622,925423200,3),(622,938725200,2),(622,956872800,3),(622,970174800,2),(622,988322400,3),(622,1001624400,2),(622,1019772000,3),(622,1033074000,2),(622,1051221600,3),(622,1064523600,2),(622,1083276000,3),(622,1096578000,2),(622,1114725600,3),(622,1128027600,2),(622,1146175200,3),(622,1158872400,2),(622,1177624800,3),(622,1189112400,2),(622,1209074400,3),(622,1219957200,2),(622,1240524000,3),(622,1250802000,2),(622,1272578400,3),(622,1281474000,2),(622,1284069600,1),(622,1285880400,2),(622,1400191200,1),(622,1403816400,2),(622,1406844000,1),(622,1411678800,2),(623,-2147483648,0),(623,-1773012580,2),(623,-956361600,1),(623,-950490000,2),(623,-942019200,1),(623,-761187600,2),(623,-617241600,1),(623,-605149200,2),(623,-81432000,1),(623,-71110800,2),(623,141264000,1),(623,147222000,2),(623,199756800,1),(623,207702000,2),(623,231292800,1),(623,244249200,2),(623,265507200,1),(623,271033200,2),(623,448243200,3),(623,504918000,2),(623,1212278400,1),(623,1220223600,2),(623,1243814400,1),(623,1250809200,2),(623,1272758400,1),(623,1281222000,2),(623,1301788800,1),(623,1312066800,2),(623,1335664800,1),(623,1342749600,2),(623,1345428000,1),(623,1348970400,2),(623,1367114400,1),(623,1373162400,2),(623,1376100000,1),(623,1382839200,2),(623,1396144800,1),(623,1403920800,2),(623,1406944800,1),(623,1414288800,2),(623,1427594400,1),(623,1434247200,2),(623,1437271200,1),(623,1445738400,2),(623,1459044000,1),(623,1465092000,2),(623,1468116000,1),(623,1477792800,2),(623,1490493600,1),(623,1495332000,2),(623,1498960800,1),(623,1509242400,2),(623,1521943200,1),(623,1526176800,2),(623,1529200800,1),(623,1540692000,3),(623,1557021600,4),(623,1560045600,3),(623,1587261600,4),(623,1590285600,3),(623,1618106400,4),(623,1621130400,3),(623,1648346400,4),(623,1651975200,3),(623,1679191200,4),(623,1682215200,3),(623,1710036000,4),(623,1713060000,3),(623,1740276000,4),(623,1743904800,3),(623,1771120800,4),(623,1774144800,3),(623,1801965600,4),(623,1804989600,3),(623,1832205600,4),(623,1835229600,3),(623,1863050400,4),(623,1866074400,3),(623,1893290400,4),(623,1896919200,3),(623,1924135200,4),(623,1927159200,3),(623,1954980000,4),(623,1958004000,3),(623,1985220000,4),(623,1988848800,3),(623,2016064800,4),(623,2019088800,3),(623,2046304800,4),(623,2049933600,3),(623,2077149600,4),(623,2080173600,3),(623,2107994400,4),(623,2111018400,3),(623,2138234400,4),(623,2141863200,3),(624,-2147483648,1),(624,-1630112400,2),(624,-1616810400,1),(624,-1442451600,2),(624,-1427673600,3),(624,-1379293200,2),(624,-1364774400,3),(624,-1348448400,2),(624,-1333324800,3),(624,-1316390400,2),(624,-1301270400,3),(624,-1293840000,1),(624,-81432000,2),(624,-71110800,1),(624,141264000,2),(624,147222000,1),(624,199756800,2),(624,207702000,1),(624,231292800,2),(624,244249200,1),(624,265507200,2),(624,271033200,1),(624,448243200,4),(624,512528400,5),(624,528253200,6),(624,543978000,5),(624,559702800,6),(624,575427600,5),(624,591152400,6),(624,606877200,5),(624,622602000,6),(624,638326800,5),(624,654656400,6),(624,670381200,5),(624,686106000,6),(624,701830800,5),(624,717555600,6),(624,733280400,5),(624,749005200,6),(624,764730000,5),(624,780454800,6),(624,796179600,5),(624,811904400,6),(624,828234000,5),(624,846378000,6),(624,859683600,5),(624,877827600,6),(624,891133200,5),(624,909277200,6),(624,922582800,5),(624,941331600,6),(624,954032400,5),(624,972781200,6),(624,985482000,5),(624,1004230800,6),(624,1017536400,5),(624,1035680400,6),(624,1048986000,5),(624,1067130000,6),(624,1080435600,5),(624,1099184400,6),(624,1111885200,5),(624,1130634000,6),(624,1143334800,5),(624,1162083600,6),(624,1174784400,5),(624,1193533200,6),(624,1206838800,5),(624,1224982800,6),(624,1238288400,5),(624,1256432400,6),(624,1269738000,5),(624,1288486800,6),(624,1301187600,5),(624,1319936400,6),(624,1332637200,5),(624,1351386000,6),(624,1364691600,5),(624,1382835600,6),(624,1396141200,5),(624,1414285200,6),(624,1427590800,5),(624,1445734800,6),(624,1459040400,5),(624,1477789200,6),(624,1490490000,5),(624,1509238800,6),(624,1521939600,5),(624,1540688400,6),(624,1553994000,5),(624,1572138000,6),(624,1585443600,5),(624,1603587600,6),(624,1616893200,5),(624,1635642000,6),(624,1648342800,5),(624,1667091600,6),(624,1679792400,5),(624,1698541200,6),(624,1711846800,5),(624,1729990800,6),(624,1743296400,5),(624,1761440400,6),(624,1774746000,5),(624,1792890000,6),(624,1806195600,5),(624,1824944400,6),(624,1837645200,5),(624,1856394000,6),(624,1869094800,5),(624,1887843600,6),(624,1901149200,5),(624,1919293200,6),(624,1932598800,5),(624,1950742800,6),(624,1964048400,5),(624,1982797200,6),(624,1995498000,5),(624,2014246800,6),(624,2026947600,5),(624,2045696400,6),(624,2058397200,5),(624,2077146000,6),(624,2090451600,5),(624,2108595600,6),(624,2121901200,5),(624,2140045200,6),(625,-2147483648,0),(625,-1830383032,1),(626,-2147483648,0),(626,-1830383032,1),(627,-2147483648,0),(627,-1309746436,1),(627,-1262314800,2),(627,-946780200,3),(627,-315629100,1),(628,-2147483648,0),(628,-1309746436,1),(628,-1262314800,2),(628,-946780200,3),(628,-315629100,1),(629,-2147483648,0),(629,-1588464816,1),(630,-2147483648,0),(630,-1136070432,1),(630,198291600,3),(630,199756800,2),(630,207702000,3),(630,231292800,2),(630,244249200,3),(630,265507200,2),(630,271033200,3),(630,1212278400,2),(630,1220223600,3),(630,1243814400,2),(630,1250809200,3),(630,1272758400,2),(630,1281222000,3),(630,1301788800,2),(630,1312066800,3),(630,1335664800,2),(630,1342749600,3),(630,1345428000,2),(630,1348970400,3),(630,1367114400,2),(630,1373162400,3),(630,1376100000,2),(630,1382839200,3),(630,1396144800,2),(630,1403920800,3),(630,1406944800,2),(630,1414288800,3),(630,1427594400,2),(630,1434247200,3),(630,1437271200,2),(630,1445738400,3),(630,1459044000,2),(630,1465092000,3),(630,1468116000,2),(630,1477792800,3),(630,1490493600,2),(630,1495332000,3),(630,1498960800,2),(630,1509242400,3),(630,1521943200,2),(630,1526176800,3),(630,1529200800,2),(630,1540692000,5),(630,1557021600,4),(630,1560045600,5),(630,1587261600,4),(630,1590285600,5),(630,1618106400,4),(630,1621130400,5),(630,1648346400,4),(630,1651975200,5),(630,1679191200,4),(630,1682215200,5),(630,1710036000,4),(630,1713060000,5),(630,1740276000,4),(630,1743904800,5),(630,1771120800,4),(630,1774144800,5),(630,1801965600,4),(630,1804989600,5),(630,1832205600,4),(630,1835229600,5),(630,1863050400,4),(630,1866074400,5),(630,1893290400,4),(630,1896919200,5),(630,1924135200,4),(630,1927159200,5),(630,1954980000,4),(630,1958004000,5),(630,1985220000,4),(630,1988848800,5),(630,2016064800,4),(630,2019088800,5),(630,2046304800,4),(630,2049933600,5),(630,2077149600,4),(630,2080173600,5),(630,2107994400,4),(630,2111018400,5),(630,2138234400,4),(630,2141863200,5),(631,-2147483648,0),(631,-1830383032,1),(632,-2147483648,0),(632,-2109291020,1),(633,-2147483648,0),(633,-2109291020,1),(634,-2147483648,1),(634,-2109288600,3),(634,-860976000,2),(634,-845254800,3),(634,-829526400,2),(634,-813805200,3),(635,-2147483648,0),(635,-1230775588,2),(635,10360800,1),(635,24786000,2),(635,41810400,1),(635,56322000,2),(635,73432800,1),(635,87944400,2),(635,104882400,1),(635,119480400,2),(635,136332000,1),(635,151016400,2),(635,167781600,1),(635,182552400,2),(635,199231200,1),(635,214174800,2),(635,230680800,1),(635,245710800,2),(635,262735200,1),(635,277246800,2),(635,294184800,1),(635,308782800,2),(635,325634400,1),(635,340405200,2),(635,357084000,1),(635,371941200,2),(635,388533600,1),(635,403477200,2),(635,419983200,1),(635,435013200,2),(635,452037600,1),(635,466635600,2),(635,483487200,1),(635,498171600,2),(635,947930400,3),(636,-2147483648,0),(636,-1309746436,1),(636,-1262314800,2),(636,-946780200,3),(636,-315629100,1),(637,-2147483648,0),(637,-1230775808,2),(637,10360800,1),(637,24786000,2),(637,41810400,1),(637,56322000,2),(637,73432800,1),(637,87944400,2),(637,104882400,1),(637,119480400,2),(637,136332000,1),(637,151016400,2),(637,167781600,1),(637,182552400,2),(637,199231200,1),(637,214174800,2),(637,230680800,1),(637,245710800,2),(637,262735200,1),(637,277246800,2),(637,294184800,1),(637,308782800,2),(637,325634400,1),(637,340405200,2),(637,357084000,1),(637,371941200,2),(637,388533600,1),(637,403477200,2),(637,419983200,1),(637,435013200,2),(637,452037600,1),(637,466635600,2),(637,483487200,1),(637,498171600,2),(637,947930400,3),(637,1509483600,2),(638,-2147483648,0),(638,-2109291020,1),(639,-2147483648,0),(639,-1588464816,1),(640,-2147483648,0),(640,-1588464816,1),(641,-2147483648,0),(641,-1588464816,1),(642,-2147483648,0),(642,-1830383032,1),(643,-2147483648,0),(643,-1588464816,1),(644,-2147483648,0),(644,-2109291020,1),(645,-2147483648,0),(645,-2109291020,1),(646,-2147483648,0),(646,-1588464816,1),(647,-2147483648,0),(647,-2109291020,1),(648,-2147483648,1),(648,-2109288600,3),(648,-860976000,2),(648,-845254800,3),(648,-829526400,2),(648,-813805200,3),(649,-2147483648,1),(649,-2109288600,3),(649,-860976000,2),(649,-845254800,3),(649,-829526400,2),(649,-813805200,3),(650,-2147483648,0),(650,-1309746436,1),(650,-1262314800,2),(650,-946780200,3),(650,-315629100,1),(651,-2147483648,1),(651,-1604359012,2),(651,63593070,3),(652,-2147483648,0),(652,-1309746436,1),(652,-1262314800,2),(652,-946780200,3),(652,-315629100,1),(653,-2147483648,0),(653,-1830387612,1),(653,308703600,2),(653,321314400,1),(654,-2147483648,0),(654,-1588464816,1),(655,-2147483648,0),(655,-1830383032,1),(656,-2147483648,0),(656,-1830383032,1),(657,-2147483648,0),(657,-1588464816,1),(658,-2147483648,1),(658,-1830384000,2),(658,1514768400,3),(658,1546304400,4),(659,-2147483648,0),(659,-1830383032,1),(660,-2147483648,0),(660,-1577926364,2),(660,-574902000,1),(660,-568087200,2),(660,-512175600,1),(660,-504928800,2),(660,-449888400,1),(660,-441856800,2),(660,-347158800,3),(660,378684000,2),(660,386463600,1),(660,402271200,2),(660,417999600,1),(660,433807200,2),(660,449622000,1),(660,465429600,2),(660,481590000,1),(660,496965600,2),(660,512953200,1),(660,528674400,2),(660,544230000,1),(660,560037600,2),(660,575852400,1),(660,591660000,2),(660,607388400,1),(660,623196000,2),(660,641775600,3),(660,844034400,2),(660,860108400,1),(660,875916000,3),(660,1352505600,2),(660,1364515200,1),(660,1382659200,3),(661,-2147483648,1),(661,-1855958961,4),(661,-969242400,2),(661,-950493600,3),(661,-941940000,2),(661,-891136800,4),(661,-877827600,5),(661,-857257200,4),(661,-844556400,5),(661,-842918400,4),(661,-842223600,5),(661,-828230400,4),(661,-812502000,5),(661,-796269600,4),(661,-781052400,5),(661,-766634400,4),(661,231202800,2),(661,243903600,3),(661,262825200,2),(661,276044400,3),(661,581122800,2),(661,591145200,3),(661,606870000,2),(661,622594800,3),(661,641516400,2),(661,654649200,3),(661,1114902000,2),(661,1128038400,3),(661,1143334800,2),(661,1162083600,3),(661,1174784400,2),(661,1193533200,3),(661,1206838800,2),(661,1224982800,3),(662,-2147483648,1),(662,-2109288600,2),(662,-860976000,3),(662,-845254800,2),(662,637970400,5),(662,764200800,4),(662,778640400,5),(662,796780800,4),(662,810090000,5),(662,828835200,4),(662,841539600,5),(662,860284800,4),(662,873594000,5),(662,891734400,4),(662,905043600,5),(662,923184000,4),(662,936493200,5),(662,954633600,4),(662,967942800,5),(662,986083200,4),(662,999392400,5),(662,1018137600,4),(662,1030842000,5),(662,1049587200,4),(662,1062896400,5),(662,1081036800,4),(662,1094346000,5),(662,1112486400,4),(662,1125795600,5),(662,1143936000,4),(662,1157245200,5),(662,1175385600,4),(662,1188694800,5),(662,1207440000,4),(662,1220749200,5),(662,1238889600,4),(662,1252198800,5),(662,1270339200,4),(662,1283648400,5),(662,1301788800,4),(662,1315098000,5),(662,1333238400,4),(662,1346547600,5),(662,1365292800,4),(662,1377997200,5),(662,1396742400,4),(662,1410051600,5),(662,1428192000,4),(662,1441501200,5),(662,1459641600,4),(662,1472950800,5),(662,1491091200,4),(662,1504400400,5),(663,-2147483648,1),(663,-880196400,2),(663,-769395600,3),(663,-765374400,1),(663,-86878800,4),(663,-21466800,5),(663,-5745600,4),(663,9982800,5),(663,25704000,4),(663,41432400,5),(663,57758400,4),(663,73486800,5),(663,89208000,4),(663,104936400,5),(663,120657600,4),(663,126709200,5),(663,152107200,4),(663,162392400,5),(663,183556800,4),(663,199285200,5),(663,215611200,4),(663,230734800,5),(663,247060800,4),(663,262789200,5),(663,278510400,4),(663,294238800,5),(663,309960000,4),(663,325688400,5),(663,341409600,4),(663,357138000,5),(663,372859200,4),(663,388587600,5),(663,404913600,4),(663,420037200,5),(663,436363200,6),(663,439034400,8),(663,452088000,7),(663,467809200,8),(663,483537600,7),(663,499258800,8),(663,514987200,7),(663,530708400,8),(663,544622400,7),(663,562158000,8),(663,576072000,7),(663,594212400,8),(663,607521600,7),(663,625662000,8),(663,638971200,7),(663,657111600,8),(663,671025600,7),(663,688561200,8),(663,702475200,7),(663,720010800,8),(663,733924800,7),(663,752065200,8),(663,765374400,7),(663,783514800,8),(663,796824000,7),(663,814964400,8),(663,828878400,7),(663,846414000,8),(663,860328000,7),(663,877863600,8),(663,891777600,7),(663,909313200,8),(663,923227200,7),(663,941367600,8),(663,954676800,7),(663,972817200,8),(663,986126400,7),(663,1004266800,8),(663,1018180800,7),(663,1035716400,8),(663,1049630400,7),(663,1067166000,8),(663,1081080000,7),(663,1099220400,8),(663,1112529600,7),(663,1130670000,8),(663,1143979200,7),(663,1162119600,8),(663,1173614400,7),(663,1194174000,8),(663,1205064000,7),(663,1225623600,8),(663,1236513600,7),(663,1257073200,8),(663,1268568000,7),(663,1289127600,8),(663,1300017600,7),(663,1320577200,8),(663,1331467200,7),(663,1352026800,8),(663,1362916800,7),(663,1383476400,8),(663,1394366400,7),(663,1414926000,8),(663,1425816000,7),(663,1446375600,8),(663,1457870400,7),(663,1478430000,8),(663,1489320000,7),(663,1509879600,8),(663,1520769600,7),(663,1541329200,8),(663,1552219200,7),(663,1572778800,8),(663,1583668800,7),(663,1604228400,8),(663,1615723200,7),(663,1636282800,8),(663,1647172800,7),(663,1667732400,8),(663,1678622400,7),(663,1699182000,8),(663,1710072000,7),(663,1730631600,8),(663,1741521600,7),(663,1762081200,8),(663,1772971200,7),(663,1793530800,8),(663,1805025600,7),(663,1825585200,8),(663,1836475200,7),(663,1857034800,8),(663,1867924800,7),(663,1888484400,8),(663,1899374400,7),(663,1919934000,8),(663,1930824000,7),(663,1951383600,8),(663,1962878400,7),(663,1983438000,8),(663,1994328000,7),(663,2014887600,8),(663,2025777600,7),(663,2046337200,8),(663,2057227200,7),(663,2077786800,8),(663,2088676800,7),(663,2109236400,8),(663,2120126400,7),(663,2140686000,8),(664,-2147483648,1),(664,-880200000,2),(664,-769395600,3),(664,-765378000,1),(664,-86882400,4),(664,-21470400,5),(664,-5749200,4),(664,9979200,5),(664,25700400,4),(664,41428800,5),(664,57754800,4),(664,73483200,5),(664,89204400,4),(664,104932800,5),(664,120654000,4),(664,126705600,5),(664,152103600,4),(664,162388800,5),(664,183553200,4),(664,199281600,5),(664,215607600,4),(664,230731200,5),(664,247057200,4),(664,262785600,5),(664,278506800,4),(664,294235200,5),(664,309956400,4),(664,325684800,5),(664,341406000,4),(664,357134400,5),(664,372855600,4),(664,388584000,5),(664,404910000,4),(664,420033600,5),(664,436359600,6),(664,439030800,8),(664,452084400,7),(664,467805600,8),(664,483534000,7),(664,499255200,8),(664,514983600,7),(664,530704800,8),(664,544618800,7),(664,562154400,8),(664,576068400,7),(664,594208800,8),(664,607518000,7),(664,625658400,8),(664,638967600,7),(664,657108000,8),(664,671022000,7),(664,688557600,8),(664,702471600,7),(664,720007200,8),(664,733921200,7),(664,752061600,8),(664,765370800,7),(664,783511200,8),(664,796820400,7),(664,814960800,8),(664,828874800,7),(664,846410400,8),(664,860324400,7),(664,877860000,8),(664,891774000,7),(664,909309600,8),(664,923223600,7),(664,941364000,8),(664,954673200,7),(664,972813600,8),(664,986122800,7),(664,1004263200,8),(664,1018177200,7),(664,1035712800,8),(664,1049626800,7),(664,1067162400,8),(664,1081076400,7),(664,1099216800,8),(664,1112526000,7),(664,1130666400,8),(664,1143975600,7),(664,1162116000,8),(664,1173610800,7),(664,1194170400,8),(664,1205060400,7),(664,1225620000,8),(664,1236510000,7),(664,1257069600,8),(664,1268564400,7),(664,1289124000,8),(664,1300014000,7),(664,1320573600,8),(664,1331463600,7),(664,1352023200,8),(664,1362913200,7),(664,1383472800,8),(664,1394362800,7),(664,1414922400,8),(664,1425812400,7),(664,1446372000,8),(664,1457866800,7),(664,1478426400,8),(664,1489316400,7),(664,1509876000,8),(664,1520766000,7),(664,1541325600,8),(664,1552215600,7),(664,1572775200,8),(664,1583665200,7),(664,1604224800,8),(664,1615719600,7),(664,1636279200,8),(664,1647169200,7),(664,1667728800,8),(664,1678618800,7),(664,1699178400,8),(664,1710068400,7),(664,1730628000,8),(664,1741518000,7),(664,1762077600,8),(664,1772967600,7),(664,1793527200,8),(664,1805022000,7),(664,1825581600,8),(664,1836471600,7),(664,1857031200,8),(664,1867921200,7),(664,1888480800,8),(664,1899370800,7),(664,1919930400,8),(664,1930820400,7),(664,1951380000,8),(664,1962874800,7),(664,1983434400,8),(664,1994324400,7),(664,2014884000,8),(664,2025774000,7),(664,2046333600,8),(664,2057223600,7),(664,2077783200,8),(664,2088673200,7),(664,2109232800,8),(664,2120122800,7),(664,2140682400,8),(665,-2147483648,0),(665,-1825098836,1),(666,-2147483648,0),(666,-1825098836,1),(667,-2147483648,0),(667,-1767214032,2),(667,-1206957600,1),(667,-1191362400,2),(667,-1175374800,1),(667,-1159826400,2),(667,-633819600,1),(667,-622069200,2),(667,-602283600,1),(667,-591832800,2),(667,-570747600,1),(667,-560210400,2),(667,-539125200,1),(667,-531352800,2),(667,-191365200,1),(667,-184197600,2),(667,-155163600,1),(667,-150069600,2),(667,-128898000,1),(667,-121125600,2),(667,-99954000,1),(667,-89589600,2),(667,-68418000,1),(667,-57967200,2),(667,499748400,1),(667,511236000,2),(667,530593200,1),(667,540266400,2),(667,562129200,1),(667,571197600,2),(667,592974000,1),(667,602042400,2),(667,624423600,1),(667,634701600,2),(667,813726000,1),(667,824004000,2),(667,844570800,1),(667,856058400,2),(667,876106800,1),(667,888717600,2),(667,908074800,1),(667,919562400,2),(667,938919600,1),(667,951616800,2),(667,970974000,1),(667,982461600,2),(667,1003028400,1),(667,1013911200,2),(667,1036292400,1),(667,1045360800,2),(667,1350788400,1),(667,1361066400,2),(668,-2147483648,1),(668,-1567453392,2),(668,-1233432000,3),(668,-1222981200,2),(668,-1205956800,3),(668,-1194037200,2),(668,-1172865600,3),(668,-1162501200,2),(668,-1141329600,3),(668,-1130965200,2),(668,-1109793600,3),(668,-1099429200,2),(668,-1078257600,3),(668,-1067806800,2),(668,-1046635200,3),(668,-1036270800,2),(668,-1015099200,3),(668,-1004734800,2),(668,-983563200,3),(668,-973198800,2),(668,-952027200,3),(668,-941576400,2),(668,-931032000,3),(668,-900882000,2),(668,-890337600,3),(668,-833749200,2),(668,-827265600,3),(668,-752274000,2),(668,-733780800,3),(668,-197326800,2),(668,-190843200,3),(668,-184194000,2),(668,-164491200,3),(668,-152658000,2),(668,-132955200,3),(668,-121122000,2),(668,-101419200,3),(668,-86821200,2),(668,-71092800,3),(668,-54766800,2),(668,-39038400,3),(668,-23317200,2),(668,-7588800,5),(668,128142000,4),(668,136605600,5),(668,596948400,4),(668,605066400,5),(668,624423600,4),(668,636516000,5),(668,656478000,4),(668,667965600,5),(668,687927600,4),(668,699415200,5),(668,719377200,4),(668,731469600,5),(668,938919600,3),(668,952052400,5),(668,1198983600,4),(668,1205632800,5),(668,1224385200,4),(668,1237082400,5),(669,-2147483648,1),(669,-1567453392,2),(669,-1233432000,3),(669,-1222981200,2),(669,-1205956800,3),(669,-1194037200,2),(669,-1172865600,3),(669,-1162501200,2),(669,-1141329600,3),(669,-1130965200,2),(669,-1109793600,3),(669,-1099429200,2),(669,-1078257600,3),(669,-1067806800,2),(669,-1046635200,3),(669,-1036270800,2),(669,-1015099200,3),(669,-1004734800,2),(669,-983563200,3),(669,-973198800,2),(669,-952027200,3),(669,-941576400,2),(669,-931032000,3),(669,-900882000,2),(669,-890337600,3),(669,-833749200,2),(669,-827265600,3),(669,-752274000,2),(669,-733780800,3),(669,-197326800,2),(669,-190843200,3),(669,-184194000,2),(669,-164491200,3),(669,-152658000,2),(669,-132955200,3),(669,-121122000,2),(669,-101419200,3),(669,-86821200,2),(669,-71092800,3),(669,-54766800,2),(669,-39038400,3),(669,-23317200,2),(669,-7588800,5),(669,128142000,4),(669,136605600,5),(669,596948400,4),(669,605066400,5),(669,624423600,4),(669,636516000,5),(669,656478000,4),(669,667965600,2),(669,687931200,4),(669,699415200,5),(669,719377200,4),(669,731469600,5),(669,938919600,3),(669,952052400,5),(669,1086058800,2),(669,1087704000,5),(669,1198983600,4),(669,1205632800,5),(670,-2147483648,1),(670,-1567453392,2),(670,-1233432000,3),(670,-1222981200,2),(670,-1205956800,3),(670,-1194037200,2),(670,-1172865600,3),(670,-1162501200,2),(670,-1141329600,3),(670,-1130965200,2),(670,-1109793600,3),(670,-1099429200,2),(670,-1078257600,3),(670,-1067806800,2),(670,-1046635200,3),(670,-1036270800,2),(670,-1015099200,3),(670,-1004734800,2),(670,-983563200,3),(670,-973198800,2),(670,-952027200,3),(670,-941576400,2),(670,-931032000,3),(670,-900882000,2),(670,-890337600,3),(670,-833749200,2),(670,-827265600,3),(670,-752274000,2),(670,-733780800,3),(670,-197326800,2),(670,-190843200,3),(670,-184194000,2),(670,-164491200,3),(670,-152658000,2),(670,-132955200,3),(670,-121122000,2),(670,-101419200,3),(670,-86821200,2),(670,-71092800,3),(670,-54766800,2),(670,-39038400,3),(670,-23317200,2),(670,-7588800,5),(670,128142000,4),(670,136605600,5),(670,596948400,4),(670,605066400,5),(670,624423600,4),(670,636516000,5),(670,656478000,4),(670,667965600,2),(670,687931200,4),(670,699415200,5),(670,719377200,4),(670,731469600,5),(670,938919600,3),(670,952052400,5),(670,1086058800,2),(670,1087704000,5),(670,1198983600,4),(670,1205632800,5),(671,-2147483648,1),(671,-1567453392,2),(671,-1233432000,3),(671,-1222981200,2),(671,-1205956800,3),(671,-1194037200,2),(671,-1172865600,3),(671,-1162501200,2),(671,-1141329600,3),(671,-1130965200,2),(671,-1109793600,3),(671,-1099429200,2),(671,-1078257600,3),(671,-1067806800,2),(671,-1046635200,3),(671,-1036270800,2),(671,-1015099200,3),(671,-1004734800,2),(671,-983563200,3),(671,-973198800,2),(671,-952027200,3),(671,-941576400,2),(671,-931032000,3),(671,-900882000,2),(671,-890337600,3),(671,-833749200,2),(671,-827265600,3),(671,-752274000,2),(671,-733780800,3),(671,-197326800,2),(671,-190843200,3),(671,-184194000,2),(671,-164491200,3),(671,-152658000,2),(671,-132955200,3),(671,-121122000,2),(671,-101419200,3),(671,-86821200,2),(671,-71092800,3),(671,-54766800,2),(671,-39038400,3),(671,-23317200,2),(671,-7588800,5),(671,128142000,4),(671,136605600,5),(671,596948400,4),(671,605066400,5),(671,624423600,4),(671,636516000,5),(671,656478000,4),(671,667965600,2),(671,687931200,4),(671,699415200,5),(671,719377200,4),(671,731469600,5),(671,938919600,3),(671,952052400,5),(671,1198983600,4),(671,1205632800,5),(671,1224385200,4),(671,1237082400,5),(672,-2147483648,1),(672,-1567453392,2),(672,-1233432000,3),(672,-1222981200,2),(672,-1205956800,3),(672,-1194037200,2),(672,-1172865600,3),(672,-1162501200,2),(672,-1141329600,3),(672,-1130965200,2),(672,-1109793600,3),(672,-1099429200,2),(672,-1078257600,3),(672,-1067806800,2),(672,-1046635200,3),(672,-1036270800,2),(672,-1015099200,3),(672,-1004734800,2),(672,-983563200,3),(672,-973198800,2),(672,-952027200,3),(672,-941576400,2),(672,-931032000,3),(672,-900882000,2),(672,-890337600,3),(672,-833749200,2),(672,-827265600,3),(672,-752274000,2),(672,-733780800,3),(672,-197326800,2),(672,-190843200,3),(672,-184194000,2),(672,-164491200,3),(672,-152658000,2),(672,-132955200,3),(672,-121122000,2),(672,-101419200,3),(672,-86821200,2),(672,-71092800,3),(672,-54766800,2),(672,-39038400,3),(672,-23317200,2),(672,-7588800,5),(672,128142000,4),(672,136605600,5),(672,596948400,4),(672,605066400,5),(672,624423600,4),(672,636516000,2),(672,657086400,3),(672,669178800,2),(672,686721600,4),(672,699415200,5),(672,719377200,4),(672,731469600,5),(672,938919600,3),(672,952052400,5),(672,1198983600,4),(672,1205632800,5),(673,-2147483648,1),(673,-1567453392,2),(673,-1233432000,3),(673,-1222981200,2),(673,-1205956800,3),(673,-1194037200,2),(673,-1172865600,3),(673,-1162501200,2),(673,-1141329600,3),(673,-1130965200,2),(673,-1109793600,3),(673,-1099429200,2),(673,-1078257600,3),(673,-1067806800,2),(673,-1046635200,3),(673,-1036270800,2),(673,-1015099200,3),(673,-1004734800,2),(673,-983563200,3),(673,-973198800,2),(673,-952027200,3),(673,-941576400,2),(673,-931032000,3),(673,-900882000,2),(673,-890337600,3),(673,-833749200,2),(673,-827265600,3),(673,-752274000,2),(673,-733780800,3),(673,-197326800,2),(673,-190843200,3),(673,-184194000,2),(673,-164491200,3),(673,-152658000,2),(673,-132955200,3),(673,-121122000,2),(673,-101419200,3),(673,-86821200,2),(673,-71092800,3),(673,-54766800,2),(673,-39038400,3),(673,-23317200,2),(673,-7588800,5),(673,128142000,4),(673,136605600,5),(673,596948400,4),(673,605066400,5),(673,624423600,4),(673,636516000,5),(673,656478000,4),(673,667792800,2),(673,673588800,5),(673,687927600,4),(673,699415200,5),(673,719377200,4),(673,731469600,5),(673,938919600,3),(673,952052400,5),(673,1086058800,2),(673,1087704000,5),(673,1198983600,4),(673,1205632800,5),(674,-2147483648,1),(674,-1567453392,2),(674,-1233432000,3),(674,-1222981200,2),(674,-1205956800,3),(674,-1194037200,2),(674,-1172865600,3),(674,-1162501200,2),(674,-1141329600,3),(674,-1130965200,2),(674,-1109793600,3),(674,-1099429200,2),(674,-1078257600,3),(674,-1067806800,2),(674,-1046635200,3),(674,-1036270800,2),(674,-1015099200,3),(674,-1004734800,2),(674,-983563200,3),(674,-973198800,2),(674,-952027200,3),(674,-941576400,2),(674,-931032000,3),(674,-900882000,2),(674,-890337600,3),(674,-833749200,2),(674,-827265600,3),(674,-752274000,2),(674,-733780800,3),(674,-197326800,2),(674,-190843200,3),(674,-184194000,2),(674,-164491200,3),(674,-152658000,2),(674,-132955200,3),(674,-121122000,2),(674,-101419200,3),(674,-86821200,2),(674,-71092800,3),(674,-54766800,2),(674,-39038400,3),(674,-23317200,2),(674,-7588800,5),(674,128142000,4),(674,136605600,5),(674,596948400,4),(674,605066400,5),(674,624423600,4),(674,636516000,2),(674,655963200,3),(674,667796400,2),(674,687499200,3),(674,699418800,2),(674,719380800,4),(674,731469600,5),(674,938919600,3),(674,952052400,5),(674,1085281200,2),(674,1096171200,5),(674,1198983600,4),(674,1205632800,5),(675,-2147483648,1),(675,-1567453392,2),(675,-1233432000,3),(675,-1222981200,2),(675,-1205956800,3),(675,-1194037200,2),(675,-1172865600,3),(675,-1162501200,2),(675,-1141329600,3),(675,-1130965200,2),(675,-1109793600,3),(675,-1099429200,2),(675,-1078257600,3),(675,-1067806800,2),(675,-1046635200,3),(675,-1036270800,2),(675,-1015099200,3),(675,-1004734800,2),(675,-983563200,3),(675,-973198800,2),(675,-952027200,3),(675,-941576400,2),(675,-931032000,3),(675,-900882000,2),(675,-890337600,3),(675,-833749200,2),(675,-827265600,3),(675,-752274000,2),(675,-733780800,3),(675,-197326800,2),(675,-190843200,3),(675,-184194000,2),(675,-164491200,3),(675,-152658000,2),(675,-132955200,3),(675,-121122000,2),(675,-101419200,3),(675,-86821200,2),(675,-71092800,3),(675,-54766800,2),(675,-39038400,3),(675,-23317200,2),(675,-7588800,5),(675,128142000,4),(675,136605600,5),(675,596948400,4),(675,605066400,5),(675,624423600,4),(675,636516000,5),(675,656478000,4),(675,667965600,5),(675,687927600,4),(675,699415200,5),(675,719377200,4),(675,731469600,5),(675,938919600,3),(675,952052400,5),(675,1086058800,2),(675,1087704000,5),(675,1198983600,4),(675,1205632800,5),(676,-2147483648,1),(676,-1567453392,2),(676,-1233432000,3),(676,-1222981200,2),(676,-1205956800,3),(676,-1194037200,2),(676,-1172865600,3),(676,-1162501200,2),(676,-1141329600,3),(676,-1130965200,2),(676,-1109793600,3),(676,-1099429200,2),(676,-1078257600,3),(676,-1067806800,2),(676,-1046635200,3),(676,-1036270800,2),(676,-1015099200,3),(676,-1004734800,2),(676,-983563200,3),(676,-973198800,2),(676,-952027200,3),(676,-941576400,2),(676,-931032000,3),(676,-900882000,2),(676,-890337600,3),(676,-833749200,2),(676,-827265600,3),(676,-752274000,2),(676,-733780800,3),(676,-197326800,2),(676,-190843200,3),(676,-184194000,2),(676,-164491200,3),(676,-152658000,2),(676,-132955200,3),(676,-121122000,2),(676,-101419200,3),(676,-86821200,2),(676,-71092800,3),(676,-54766800,2),(676,-39038400,3),(676,-23317200,2),(676,-7588800,5),(676,128142000,4),(676,136605600,5),(676,596948400,4),(676,605066400,5),(676,624423600,4),(676,636516000,5),(676,656478000,4),(676,667965600,2),(676,687931200,4),(676,699415200,5),(676,719377200,4),(676,731469600,5),(676,938919600,3),(676,952052400,5),(676,1198983600,4),(676,1205632800,5),(677,-2147483648,1),(677,-1567453392,2),(677,-1233432000,3),(677,-1222981200,2),(677,-1205956800,3),(677,-1194037200,2),(677,-1172865600,3),(677,-1162501200,2),(677,-1141329600,3),(677,-1130965200,2),(677,-1109793600,3),(677,-1099429200,2),(677,-1078257600,3),(677,-1067806800,2),(677,-1046635200,3),(677,-1036270800,2),(677,-1015099200,3),(677,-1004734800,2),(677,-983563200,3),(677,-973198800,2),(677,-952027200,3),(677,-941576400,2),(677,-931032000,3),(677,-900882000,2),(677,-890337600,3),(677,-833749200,2),(677,-827265600,3),(677,-752274000,2),(677,-733780800,3),(677,-197326800,2),(677,-190843200,3),(677,-184194000,2),(677,-164491200,3),(677,-152658000,2),(677,-132955200,3),(677,-121122000,2),(677,-101419200,3),(677,-86821200,2),(677,-71092800,3),(677,-54766800,2),(677,-39038400,3),(677,-23317200,2),(677,-7588800,5),(677,128142000,4),(677,136605600,5),(677,596948400,4),(677,605066400,5),(677,624423600,4),(677,636516000,5),(677,656478000,4),(677,667792800,2),(677,673588800,5),(677,687927600,4),(677,699415200,5),(677,719377200,4),(677,731469600,5),(677,938919600,3),(677,952052400,5),(677,1085972400,2),(677,1090728000,5),(677,1198983600,4),(677,1205632800,5),(678,-2147483648,1),(678,-1567453392,2),(678,-1233432000,3),(678,-1222981200,2),(678,-1205956800,3),(678,-1194037200,2),(678,-1172865600,3),(678,-1162501200,2),(678,-1141329600,3),(678,-1130965200,2),(678,-1109793600,3),(678,-1099429200,2),(678,-1078257600,3),(678,-1067806800,2),(678,-1046635200,3),(678,-1036270800,2),(678,-1015099200,3),(678,-1004734800,2),(678,-983563200,3),(678,-973198800,2),(678,-952027200,3),(678,-941576400,2),(678,-931032000,3),(678,-900882000,2),(678,-890337600,3),(678,-833749200,2),(678,-827265600,3),(678,-752274000,2),(678,-733780800,3),(678,-197326800,2),(678,-190843200,3),(678,-184194000,2),(678,-164491200,3),(678,-152658000,2),(678,-132955200,3),(678,-121122000,2),(678,-101419200,3),(678,-86821200,2),(678,-71092800,3),(678,-54766800,2),(678,-39038400,3),(678,-23317200,2),(678,-7588800,5),(678,128142000,4),(678,136605600,5),(678,596948400,4),(678,605066400,5),(678,624423600,4),(678,637380000,2),(678,655963200,3),(678,667796400,2),(678,675748800,5),(678,938919600,3),(678,952052400,5),(678,1085972400,2),(678,1090728000,5),(678,1198983600,4),(678,1200880800,3),(678,1205031600,2),(678,1223784000,3),(678,1236481200,2),(678,1255233600,5),(679,-2147483648,1),(679,-1567453392,2),(679,-1233432000,3),(679,-1222981200,2),(679,-1205956800,3),(679,-1194037200,2),(679,-1172865600,3),(679,-1162501200,2),(679,-1141329600,3),(679,-1130965200,2),(679,-1109793600,3),(679,-1099429200,2),(679,-1078257600,3),(679,-1067806800,2),(679,-1046635200,3),(679,-1036270800,2),(679,-1015099200,3),(679,-1004734800,2),(679,-983563200,3),(679,-973198800,2),(679,-952027200,3),(679,-941576400,2),(679,-931032000,3),(679,-900882000,2),(679,-890337600,3),(679,-833749200,2),(679,-827265600,3),(679,-752274000,2),(679,-733780800,3),(679,-197326800,2),(679,-190843200,3),(679,-184194000,2),(679,-164491200,3),(679,-152658000,2),(679,-132955200,3),(679,-121122000,2),(679,-101419200,3),(679,-86821200,2),(679,-71092800,3),(679,-54766800,2),(679,-39038400,3),(679,-23317200,2),(679,-7588800,5),(679,128142000,4),(679,136605600,5),(679,596948400,4),(679,605066400,5),(679,624423600,4),(679,636516000,5),(679,656478000,4),(679,667965600,2),(679,687931200,4),(679,699415200,5),(679,719377200,4),(679,731469600,5),(679,938919600,3),(679,952052400,5),(679,1086058800,2),(679,1087099200,5),(679,1198983600,4),(679,1205632800,5),(679,1224385200,4),(679,1237082400,5),(680,-2147483648,1),(680,-1567453392,2),(680,-1233432000,3),(680,-1222981200,2),(680,-1205956800,3),(680,-1194037200,2),(680,-1172865600,3),(680,-1162501200,2),(680,-1141329600,3),(680,-1130965200,2),(680,-1109793600,3),(680,-1099429200,2),(680,-1078257600,3),(680,-1067806800,2),(680,-1046635200,3),(680,-1036270800,2),(680,-1015099200,3),(680,-1004734800,2),(680,-983563200,3),(680,-973198800,2),(680,-952027200,3),(680,-941576400,2),(680,-931032000,3),(680,-900882000,2),(680,-890337600,3),(680,-833749200,2),(680,-827265600,3),(680,-752274000,2),(680,-733780800,3),(680,-197326800,2),(680,-190843200,3),(680,-184194000,2),(680,-164491200,3),(680,-152658000,2),(680,-132955200,3),(680,-121122000,2),(680,-101419200,3),(680,-86821200,2),(680,-71092800,3),(680,-54766800,2),(680,-39038400,3),(680,-23317200,2),(680,-7588800,5),(680,128142000,4),(680,136605600,5),(680,596948400,4),(680,605066400,5),(680,624423600,4),(680,636516000,5),(680,656478000,4),(680,667965600,5),(680,687927600,4),(680,699415200,5),(680,719377200,4),(680,731469600,5),(680,938919600,3),(680,952052400,5),(680,1085886000,2),(680,1087704000,5),(680,1198983600,4),(680,1205632800,5),(681,-2147483648,0),(681,-1826738653,1),(681,-157750200,2),(682,-2147483648,1),(682,-1206389360,2),(682,86760000,3),(682,134017200,2),(682,181368000,4),(682,194497200,2),(682,212990400,4),(682,226033200,2),(682,244526400,4),(682,257569200,2),(682,276062400,4),(682,291783600,2),(682,307598400,4),(682,323406000,2),(682,339220800,4),(682,354942000,2),(682,370756800,4),(682,386478000,2),(682,402292800,4),(682,418014000,2),(682,433828800,4),(682,449636400,2),(682,465451200,4),(682,481172400,2),(682,496987200,4),(682,512708400,2),(682,528523200,4),(682,544244400,2),(682,560059200,4),(682,575866800,2),(682,591681600,4),(682,607402800,2),(682,625032000,4),(682,638938800,2),(682,654753600,4),(682,670474800,2),(682,686721600,4),(682,699418800,2),(682,718257600,4),(682,733546800,2),(682,749448000,4),(682,762318000,2),(682,780984000,4),(682,793767600,2),(682,812520000,4),(682,825649200,2),(682,844574400,4),(682,856666800,2),(682,876024000,4),(682,888721200,2),(682,907473600,4),(682,920775600,2),(682,938923200,4),(682,952225200,2),(682,970372800,4),(682,983674800,2),(682,1002427200,4),(682,1018148400,2),(682,1030852800,4),(682,1049598000,2),(682,1062907200,4),(682,1081047600,2),(682,1097985600,4),(682,1110682800,2),(682,1129435200,4),(682,1142132400,2),(682,1160884800,4),(682,1173582000,2),(682,1192939200,4),(682,1205031600,2),(682,1224388800,4),(682,1236481200,2),(682,1255838400,4),(682,1270954800,2),(682,1286078400,4),(682,1302404400,2),(682,1317528000,4),(682,1333854000,2),(682,1349582400,4),(682,1364094000,2),(682,1381032000,4),(682,1395543600,2),(682,1412481600,4),(682,1426993200,2),(682,1443931200,4),(682,1459047600,2),(682,1475380800,4),(682,1490497200,2),(682,1506830400,4),(682,1521946800,2),(682,1538884800,4),(682,1553396400,2),(682,1570334400,4),(682,1584846000,2),(682,1601784000,4),(682,1616900400,2),(682,1633233600,4),(682,1648350000,2),(682,1664683200,4),(682,1679799600,2),(682,1696132800,4),(682,1711249200,2),(682,1728187200,4),(682,1742698800,2),(682,1759636800,4),(682,1774148400,2),(682,1791086400,4),(682,1806202800,2),(682,1822536000,4),(682,1837652400,2),(682,1853985600,4),(682,1869102000,2),(682,1886040000,4),(682,1900551600,2),(682,1917489600,4),(682,1932001200,2),(682,1948939200,4),(682,1964055600,2),(682,1980388800,4),(682,1995505200,2),(682,2011838400,4),(682,2026954800,2),(682,2043288000,4),(682,2058404400,2),(682,2075342400,4),(682,2089854000,2),(682,2106792000,4),(682,2121303600,2),(682,2138241600,4),(683,-2147483648,2),(683,-1632067200,1),(683,-1615136400,2),(683,-923248800,1),(683,-880214400,3),(683,-769395600,4),(683,-765392400,5),(684,-2147483648,1),(684,-880196400,2),(684,-769395600,3),(684,-765374400,1),(684,-86878800,4),(684,-21466800,5),(684,-5745600,4),(684,9982800,5),(684,25704000,4),(684,41432400,5),(684,57758400,4),(684,73486800,5),(684,89208000,4),(684,104936400,5),(684,120657600,4),(684,126709200,5),(684,152107200,4),(684,162392400,5),(684,183556800,4),(684,199285200,5),(684,215611200,4),(684,230734800,5),(684,247060800,4),(684,262789200,5),(684,278510400,4),(684,294238800,5),(684,309960000,4),(684,325688400,5),(684,341409600,4),(684,357138000,5),(684,372859200,4),(684,388587600,5),(684,404913600,4),(684,420037200,5),(684,436363200,6),(684,439034400,8),(684,452088000,7),(684,467809200,8),(684,483537600,7),(684,499258800,8),(684,514987200,7),(684,530708400,8),(684,544622400,7),(684,562158000,8),(684,576072000,7),(684,594212400,8),(684,607521600,7),(684,625662000,8),(684,638971200,7),(684,657111600,8),(684,671025600,7),(684,688561200,8),(684,702475200,7),(684,720010800,8),(684,733924800,7),(684,752065200,8),(684,765374400,7),(684,783514800,8),(684,796824000,7),(684,814964400,8),(684,828878400,7),(684,846414000,8),(684,860328000,7),(684,877863600,8),(684,891777600,7),(684,909313200,8),(684,923227200,7),(684,941367600,8),(684,954676800,7),(684,972817200,8),(684,986126400,7),(684,1004266800,8),(684,1018180800,7),(684,1035716400,8),(684,1049630400,7),(684,1067166000,8),(684,1081080000,7),(684,1099220400,8),(684,1112529600,7),(684,1130670000,8),(684,1143979200,7),(684,1162119600,8),(684,1173614400,7),(684,1194174000,8),(684,1205064000,7),(684,1225623600,8),(684,1236513600,7),(684,1257073200,8),(684,1268568000,7),(684,1289127600,8),(684,1300017600,7),(684,1320577200,8),(684,1331467200,7),(684,1352026800,8),(684,1362916800,7),(684,1383476400,8),(684,1394366400,7),(684,1414926000,8),(684,1425816000,7),(684,1446375600,8),(684,1457870400,7),(684,1478430000,8),(684,1489320000,7),(684,1509879600,8),(684,1520769600,7),(684,1541329200,8),(684,1552219200,7),(684,1572778800,8),(684,1583668800,7),(684,1604228400,8),(684,1615723200,7),(684,1636282800,8),(684,1647172800,7),(684,1667732400,8),(684,1678622400,7),(684,1699182000,8),(684,1710072000,7),(684,1730631600,8),(684,1741521600,7),(684,1762081200,8),(684,1772971200,7),(684,1793530800,8),(684,1805025600,7),(684,1825585200,8),(684,1836475200,7),(684,1857034800,8),(684,1867924800,7),(684,1888484400,8),(684,1899374400,7),(684,1919934000,8),(684,1930824000,7),(684,1951383600,8),(684,1962878400,7),(684,1983438000,8),(684,1994328000,7),(684,2014887600,8),(684,2025777600,7),(684,2046337200,8),(684,2057227200,7),(684,2077786800,8),(684,2088676800,7),(684,2109236400,8),(684,2120126400,7),(684,2140686000,8),(685,-2147483648,0),(685,-1767216356,2),(685,-1206957600,1),(685,-1191362400,2),(685,-1175374800,1),(685,-1159826400,2),(685,-633819600,1),(685,-622069200,2),(685,-602283600,1),(685,-591832800,2),(685,-570747600,1),(685,-560210400,2),(685,-539125200,1),(685,-531352800,2),(685,-191365200,1),(685,-184197600,2),(685,-155163600,1),(685,-150069600,2),(685,-128898000,1),(685,-121125600,2),(685,-99954000,1),(685,-89589600,2),(685,-68418000,1),(685,-57967200,2),(685,499748400,1),(685,511236000,2),(685,530593200,1),(685,540266400,2),(685,562129200,1),(685,571197600,2),(685,592974000,1),(685,602042400,2),(685,624423600,1),(685,634701600,2),(685,656478000,1),(685,666756000,2),(685,687927600,1),(685,697600800,2),(685,719982000,1),(685,728445600,2),(685,750826800,1),(685,761709600,2),(685,782276400,1),(685,793159200,2),(685,813726000,1),(685,824004000,2),(685,844570800,1),(685,856058400,2),(685,876106800,1),(685,888717600,2),(685,908074800,1),(685,919562400,2),(685,938919600,1),(685,951616800,2),(685,970974000,1),(685,982461600,2),(685,1003028400,1),(685,1013911200,2),(685,1036292400,1),(685,1045360800,2),(685,1318734000,1),(685,1330221600,2),(686,-2147483648,0),(686,-1514739600,1),(686,-1343066400,2),(686,-1234807200,1),(686,-1220292000,2),(686,-1207159200,1),(686,-1191344400,2),(686,-873828000,1),(686,-661539600,3),(686,28800,1),(686,828867600,4),(686,846403200,1),(686,860317200,4),(686,877852800,1),(686,891766800,4),(686,909302400,1),(686,923216400,4),(686,941356800,1),(686,954666000,4),(686,972806400,1),(686,989139600,4),(686,1001836800,1),(686,1018170000,4),(686,1035705600,1),(686,1049619600,4),(686,1067155200,1),(686,1081069200,4),(686,1099209600,1),(686,1112518800,4),(686,1130659200,1),(686,1143968400,4),(686,1162108800,1),(686,1175418000,4),(686,1193558400,1),(686,1207472400,4),(686,1225008000,1),(686,1238922000,4),(686,1256457600,1),(686,1270371600,5),(686,1288508400,2),(686,1301817600,5),(686,1319958000,2),(686,1333267200,5),(686,1351407600,2),(686,1365321600,5),(686,1382857200,2),(686,1396771200,5),(686,1414306800,2),(686,1428220800,5),(686,1445756400,2),(686,1459670400,5),(686,1477810800,2),(686,1491120000,5),(686,1509260400,2),(686,1522569600,5),(686,1540710000,2),(686,1554624000,5),(686,1572159600,2),(686,1586073600,5),(686,1603609200,2),(686,1617523200,5),(686,1635663600,2),(686,1648972800,5),(686,1667113200,2),(686,1680422400,5),(686,1698562800,2),(686,1712476800,5),(686,1730012400,2),(686,1743926400,5),(686,1761462000,2),(686,1775376000,5),(686,1792911600,2),(686,1806825600,5),(686,1824966000,2),(686,1838275200,5),(686,1856415600,2),(686,1869724800,5),(686,1887865200,2),(686,1901779200,5),(686,1919314800,2),(686,1933228800,5),(686,1950764400,2),(686,1964678400,5),(686,1982818800,2),(686,1996128000,5),(686,2014268400,2),(686,2027577600,5),(686,2045718000,2),(686,2059027200,5),(686,2077167600,2),(686,2091081600,5),(686,2108617200,2),(686,2122531200,5),(686,2140066800,2),(687,-2147483648,0),(687,-1451678491,1),(687,-1199217691,3),(687,234943200,2),(687,244616400,3),(687,261554400,2),(687,276066000,3),(687,293004000,2),(687,307515600,3),(687,325058400,2),(687,338706000,3),(688,-2147483648,0),(688,-1767213964,2),(688,-1206957600,1),(688,-1191362400,2),(688,-1175374800,1),(688,-1159826400,2),(688,-633819600,1),(688,-622069200,2),(688,-602283600,1),(688,-591832800,2),(688,-570747600,1),(688,-560210400,2),(688,-539125200,1),(688,-531352800,2),(688,-191365200,1),(688,-184197600,2),(688,-155163600,1),(688,-150069600,2),(688,-128898000,1),(688,-121125600,2),(688,-99954000,1),(688,-89589600,2),(688,-68418000,1),(688,-57967200,2),(688,499748400,1),(688,511236000,2),(688,530593200,1),(688,540266400,2),(688,562129200,1),(688,571197600,2),(689,-2147483648,0),(689,-1822500432,2),(689,-1616954400,1),(689,-1606069800,2),(689,-1585504800,1),(689,-1574015400,2),(689,-1554055200,1),(689,-1542565800,2),(689,-1522605600,1),(689,-1511116200,2),(689,-1490551200,1),(689,-1479666600,2),(689,-1459101600,1),(689,-1448217000,2),(689,-1427652000,1),(689,-1416162600,2),(689,-1396202400,1),(689,-1384713000,2),(689,-1364752800,1),(689,-1353263400,2),(689,-1333303200,1),(689,-1321813800,2),(689,-1301248800,1),(689,-1290364200,2),(689,-1269799200,1),(689,-1258914600,2),(689,-1238349600,1),(689,-1226860200,2),(689,-1206900000,1),(689,-1195410600,2),(689,-1175450400,1),(689,-1163961000,2),(689,-1143396000,1),(689,-1132511400,2),(689,-1111946400,1),(689,-1101061800,2),(689,-1080496800,1),(689,-1069612200,2),(689,-1049047200,1),(689,-1037557800,2),(689,-1017597600,1),(689,-1006108200,2),(689,-986148000,1),(689,-974658600,2),(689,-954093600,1),(689,-943209000,2),(689,-922644000,1),(689,-911759400,2),(689,-891194400,1),(689,-879705000,2),(689,-859744800,1),(689,-848255400,2),(689,123919200,3),(689,129618000,2),(689,409039200,3),(689,413874000,2),(690,-2147483648,2),(690,-1632074400,1),(690,-1615143600,2),(690,-880221600,3),(690,-769395600,4),(690,-765399600,2),(691,-2147483648,0),(691,-1767211040,2),(691,-1206954000,1),(691,-1191358800,2),(691,-1175371200,1),(691,-1159822800,2),(691,-633816000,1),(691,-622065600,2),(691,-602280000,1),(691,-591829200,2),(691,-570744000,1),(691,-560206800,2),(691,-539121600,1),(691,-531349200,2),(691,-191361600,1),(691,-184194000,2),(691,-155160000,1),(691,-150066000,2),(691,-128894400,1),(691,-121122000,2),(691,-99950400,1),(691,-89586000,2),(691,-68414400,1),(691,-57963600,2),(691,499752000,1),(691,511239600,2),(691,530596800,1),(691,540270000,2),(691,562132800,1),(691,571201200,2),(691,938923200,1),(691,951620400,2),(691,970977600,1),(691,971578800,2),(692,-2147483648,1),(692,-1739041424,3),(692,704869200,2),(692,733896000,3),(693,-2147483648,2),(693,-1633269600,1),(693,-1615129200,2),(693,-1601820000,1),(693,-1583679600,2),(693,-1471788000,5),(693,-880210800,3),(693,-769395600,4),(693,-765388800,5),(693,-84380400,6),(693,-68659200,5),(693,-52930800,6),(693,-37209600,5),(693,-21481200,6),(693,-5760000,5),(693,9968400,6),(693,25689600,5),(693,41418000,6),(693,57744000,5),(693,73472400,6),(693,89193600,5),(693,104922000,6),(693,120643200,5),(693,129114000,6),(693,152092800,5),(693,162378000,6),(693,183542400,5),(693,199270800,6),(693,215596800,5),(693,230720400,6),(693,247046400,5),(693,262774800,6),(693,278496000,5),(693,294224400,6),(693,309945600,5),(693,325674000,6),(693,341395200,5),(693,357123600,6),(693,372844800,5),(693,388573200,6),(693,404899200,5),(693,420022800,6),(693,436348800,5),(693,452077200,6),(693,467798400,5),(693,483526800,6),(693,499248000,5),(693,514976400,6),(693,530697600,5),(693,544611600,6),(693,562147200,5),(693,576061200,6),(693,594201600,5),(693,607510800,6),(693,625651200,5),(693,638960400,6),(693,657100800,5),(693,671014800,6),(693,688550400,5),(693,702464400,6),(693,720000000,5),(693,733914000,6),(693,752054400,5),(693,765363600,6),(693,783504000,5),(693,796813200,6),(693,814953600,5),(693,828867600,6),(693,846403200,5),(693,860317200,6),(693,877852800,5),(693,891766800,6),(693,909302400,5),(693,923216400,6),(693,941356800,5),(693,954666000,6),(693,972806400,5),(693,986115600,6),(693,1004256000,5),(693,1018170000,6),(693,1035705600,5),(693,1049619600,6),(693,1067155200,5),(693,1081069200,6),(693,1099209600,5),(693,1112518800,6),(693,1130659200,5),(693,1143968400,6),(693,1162108800,5),(693,1173603600,6),(693,1194163200,5),(693,1205053200,6),(693,1225612800,5),(693,1236502800,6),(693,1257062400,5),(693,1268557200,6),(693,1289116800,5),(693,1300006800,6),(693,1320566400,5),(693,1331456400,6),(693,1352016000,5),(693,1362906000,6),(693,1383465600,5),(693,1394355600,6),(693,1414915200,5),(693,1425805200,6),(693,1446364800,5),(693,1457859600,6),(693,1478419200,5),(693,1489309200,6),(693,1509868800,5),(693,1520758800,6),(693,1541318400,5),(693,1552208400,6),(693,1572768000,5),(693,1583658000,6),(693,1604217600,5),(693,1615712400,6),(693,1636272000,5),(693,1647162000,6),(693,1667721600,5),(693,1678611600,6),(693,1699171200,5),(693,1710061200,6),(693,1730620800,5),(693,1741510800,6),(693,1762070400,5),(693,1772960400,6),(693,1793520000,5),(693,1805014800,6),(693,1825574400,5),(693,1836464400,6),(693,1857024000,5),(693,1867914000,6),(693,1888473600,5),(693,1899363600,6),(693,1919923200,5),(693,1930813200,6),(693,1951372800,5),(693,1962867600,6),(693,1983427200,5),(693,1994317200,6),(693,2014876800,5),(693,2025766800,6),(693,2046326400,5),(693,2057216400,6),(693,2077776000,5),(693,2088666000,6),(693,2109225600,5),(693,2120115600,6),(693,2140675200,5),(694,-2147483648,1),(694,-1567453392,2),(694,-1233432000,3),(694,-1222981200,2),(694,-1205956800,3),(694,-1194037200,2),(694,-1172865600,3),(694,-1162501200,2),(694,-1141329600,3),(694,-1130965200,2),(694,-1109793600,3),(694,-1099429200,2),(694,-1078257600,3),(694,-1067806800,2),(694,-1046635200,3),(694,-1036270800,2),(694,-1015099200,3),(694,-1004734800,2),(694,-983563200,3),(694,-973198800,2),(694,-952027200,3),(694,-941576400,2),(694,-931032000,3),(694,-900882000,2),(694,-890337600,3),(694,-833749200,2),(694,-827265600,3),(694,-752274000,2),(694,-733780800,3),(694,-197326800,2),(694,-190843200,3),(694,-184194000,2),(694,-164491200,3),(694,-152658000,2),(694,-132955200,3),(694,-121122000,2),(694,-101419200,3),(694,-86821200,2),(694,-71092800,3),(694,-54766800,2),(694,-39038400,3),(694,-23317200,2),(694,-7588800,5),(694,128142000,4),(694,136605600,5),(694,596948400,4),(694,605066400,5),(694,624423600,4),(694,636516000,5),(694,656478000,4),(694,667965600,5),(694,687927600,4),(694,699415200,5),(694,719377200,4),(694,731469600,5),(694,938919600,3),(694,952052400,5),(694,1198983600,4),(694,1205632800,5),(694,1224385200,4),(694,1237082400,5),(695,-2147483648,0),(695,-1577923200,3),(695,-880210800,1),(695,-769395600,2),(695,-765388800,3),(695,-147891600,4),(695,-131562000,3),(695,325674000,5),(695,341395200,3),(695,357123600,5),(695,372844800,3),(695,388573200,5),(695,404899200,3),(695,420022800,5),(695,436348800,3),(695,452077200,5),(695,467798400,3),(695,483526800,5),(695,499248000,3),(695,514976400,5),(695,530697600,3),(695,544611600,5),(695,562147200,3),(695,576061200,5),(695,594201600,3),(695,607510800,5),(695,625651200,3),(695,638960400,5),(695,657100800,3),(695,671014800,5),(695,688550400,3),(695,702464400,5),(695,720000000,3),(695,733914000,5),(695,752054400,3),(695,765363600,5),(695,783504000,3),(695,796813200,5),(695,814953600,3),(695,828867600,5),(695,846403200,3),(695,860317200,5),(695,877852800,3),(695,891766800,5),(695,909302400,3),(695,923216400,5),(695,941356800,7),(695,954662400,6),(695,972802800,8),(695,973400400,7),(695,986115600,5),(695,1004256000,3),(695,1018170000,5),(695,1035705600,3),(695,1049619600,5),(695,1067155200,3),(695,1081069200,5),(695,1099209600,3),(695,1112518800,5),(695,1130659200,3),(695,1143968400,5),(695,1162108800,3),(695,1173603600,5),(695,1194163200,3),(695,1205053200,5),(695,1225612800,3),(695,1236502800,5),(695,1257062400,3),(695,1268557200,5),(695,1289116800,3),(695,1300006800,5),(695,1320566400,3),(695,1331456400,5),(695,1352016000,3),(695,1362906000,5),(695,1383465600,3),(695,1394355600,5),(695,1414915200,3),(695,1425805200,5),(695,1446364800,3),(695,1457859600,5),(695,1478419200,3),(695,1489309200,5),(695,1509868800,3),(695,1520758800,5),(695,1541318400,3),(695,1552208400,5),(695,1572768000,3),(695,1583658000,5),(695,1604217600,3),(695,1615712400,5),(695,1636272000,3),(695,1647162000,5),(695,1667721600,3),(695,1678611600,5),(695,1699171200,3),(695,1710061200,5),(695,1730620800,3),(695,1741510800,5),(695,1762070400,3),(695,1772960400,5),(695,1793520000,3),(695,1805014800,5),(695,1825574400,3),(695,1836464400,5),(695,1857024000,3),(695,1867914000,5),(695,1888473600,3),(695,1899363600,5),(695,1919923200,3),(695,1930813200,5),(695,1951372800,3),(695,1962867600,5),(695,1983427200,3),(695,1994317200,5),(695,2014876800,3),(695,2025766800,5),(695,2046326400,3),(695,2057216400,5),(695,2077776000,3),(695,2088666000,5),(695,2109225600,3),(695,2120115600,5),(695,2140675200,3),(696,-2147483648,0),(696,-1767212492,2),(696,-1206954000,1),(696,-1191358800,2),(696,-1175371200,1),(696,-1159822800,2),(696,-633816000,1),(696,-622065600,2),(696,-602280000,1),(696,-591829200,2),(696,-570744000,1),(696,-560206800,2),(696,-539121600,1),(696,-531349200,2),(696,-191361600,1),(696,-184194000,2),(696,-155160000,1),(696,-150066000,2),(696,-128894400,1),(696,-121122000,2),(696,-99950400,1),(696,-89586000,2),(696,-68414400,1),(696,-57963600,2),(696,499752000,1),(696,511239600,2),(696,530596800,1),(696,540270000,2),(696,562132800,1),(696,571201200,2),(696,592977600,1),(696,602046000,2),(696,624427200,1),(696,634705200,2),(696,656481600,1),(696,666759600,2),(696,687931200,1),(696,697604400,2),(696,719985600,1),(696,728449200,2),(696,750830400,1),(696,761713200,2),(696,782280000,1),(696,793162800,2),(696,813729600,1),(696,824007600,2),(696,844574400,1),(696,856062000,2),(696,876110400,1),(696,888721200,2),(696,908078400,1),(696,919566000,2),(696,938923200,1),(696,951620400,2),(696,970977600,1),(696,982465200,2),(696,1003032000,1),(696,1013914800,2),(696,1036296000,1),(696,1045364400,2),(696,1066536000,1),(696,1076814000,2),(696,1099368000,1),(696,1108868400,2),(696,1129435200,1),(696,1140318000,2),(696,1162699200,1),(696,1172372400,2),(696,1192334400,1),(696,1203217200,2),(696,1224388800,1),(696,1234666800,2),(696,1255838400,1),(696,1266721200,2),(696,1287288000,1),(696,1298170800,2),(696,1318737600,1),(696,1330225200,2),(696,1350792000,1),(696,1361070000,2),(696,1382241600,1),(696,1392519600,2),(696,1413691200,1),(696,1424574000,2),(696,1445140800,1),(696,1456023600,2),(696,1476590400,1),(696,1487473200,2),(696,1508040000,1),(696,1518922800,2),(696,1541304000,1),(696,1550372400,2),(697,-2147483648,0),(697,-1514743200,1),(697,377935200,3),(697,828860400,2),(697,846396000,3),(697,860310000,2),(697,877845600,3),(697,891759600,2),(697,902037600,4),(697,909298800,1),(697,923212800,4),(697,941353200,1),(697,954662400,4),(697,972802800,1),(697,989136000,4),(697,1001833200,1),(697,1018166400,4),(697,1035702000,1),(697,1049616000,4),(697,1067151600,1),(697,1081065600,4),(697,1099206000,1),(697,1112515200,4),(697,1130655600,1),(697,1143964800,4),(697,1162105200,1),(697,1175414400,4),(697,1193554800,1),(697,1207468800,4),(697,1225004400,1),(697,1238918400,4),(697,1256454000,1),(697,1270368000,4),(697,1288508400,1),(697,1301817600,4),(697,1319958000,1),(697,1333267200,4),(697,1351407600,1),(697,1365321600,4),(697,1382857200,1),(697,1396771200,4),(697,1414306800,1),(697,1422777600,3),(698,-2147483648,1),(698,-1826739140,2),(698,-157750200,3),(698,1197183600,2),(698,1462086000,3),(699,-2147483648,1),(699,-1567453392,2),(699,-1233432000,3),(699,-1222981200,2),(699,-1205956800,3),(699,-1194037200,2),(699,-1172865600,3),(699,-1162501200,2),(699,-1141329600,3),(699,-1130965200,2),(699,-1109793600,3),(699,-1099429200,2),(699,-1078257600,3),(699,-1067806800,2),(699,-1046635200,3),(699,-1036270800,2),(699,-1015099200,3),(699,-1004734800,2),(699,-983563200,3),(699,-973198800,2),(699,-952027200,3),(699,-941576400,2),(699,-931032000,3),(699,-900882000,2),(699,-890337600,3),(699,-833749200,2),(699,-827265600,3),(699,-752274000,2),(699,-733780800,3),(699,-197326800,2),(699,-190843200,3),(699,-184194000,2),(699,-164491200,3),(699,-152658000,2),(699,-132955200,3),(699,-121122000,2),(699,-101419200,3),(699,-86821200,2),(699,-71092800,3),(699,-54766800,2),(699,-39038400,3),(699,-23317200,2),(699,-7588800,5),(699,128142000,4),(699,136605600,5),(699,596948400,4),(699,605066400,5),(699,624423600,4),(699,636516000,5),(699,656478000,4),(699,667965600,2),(699,687931200,4),(699,699415200,5),(699,719377200,4),(699,731469600,5),(699,938919600,3),(699,952052400,5),(699,1086058800,2),(699,1087704000,5),(699,1198983600,4),(699,1205632800,5),(700,-2147483648,0),(700,-1846269040,1),(700,-71092800,2),(701,-2147483648,1),(701,-1946918424,2),(702,-2147483648,2),(702,-1633276800,1),(702,-1615136400,2),(702,-1601827200,1),(702,-1583686800,2),(702,-1563724800,1),(702,-1551632400,2),(702,-1538928000,1),(702,-1520182800,2),(702,-1504454400,1),(702,-1491757200,2),(702,-1473004800,1),(702,-1459702800,2),(702,-1441555200,1),(702,-1428253200,2),(702,-1410105600,1),(702,-1396803600,2),(702,-1378656000,1),(702,-1365354000,2),(702,-1347206400,1),(702,-1333904400,2),(702,-1315152000,1),(702,-1301850000,2),(702,-1283702400,1),(702,-1270400400,2),(702,-1252252800,1),(702,-1238950800,2),(702,-1220803200,1),(702,-1207501200,2),(702,-1189353600,1),(702,-1176051600,2),(702,-1157299200,1),(702,-1144602000,2),(702,-1125849600,1),(702,-1112547600,2),(702,-1094400000,1),(702,-1081098000,2),(702,-1067788800,3),(702,-1045414800,2),(702,-1031500800,1),(702,-1018198800,2),(702,-1000051200,1),(702,-986749200,2),(702,-967996800,1),(702,-955299600,2),(702,-936547200,1),(702,-923245200,2),(702,-905097600,1),(702,-891795600,2),(702,-880214400,4),(702,-769395600,5),(702,-765392400,2),(702,-747244800,1),(702,-733942800,2),(702,-715795200,1),(702,-702493200,2),(702,-684345600,1),(702,-671043600,2),(702,-652896000,1),(702,-639594000,2),(702,-620841600,1),(702,-608144400,2),(702,-589392000,1),(702,-576090000,2),(702,-557942400,1),(702,-544640400,2),(702,-526492800,1),(702,-513190800,2),(702,-495043200,1),(702,-481741200,2),(702,-463593600,1),(702,-447267600,2),(702,-431539200,1),(702,-415818000,2),(702,-400089600,1),(702,-384368400,2),(702,-368640000,1),(702,-352918800,2),(702,-337190400,1),(702,-321469200,2),(702,-305740800,1),(702,-289414800,2),(702,-273686400,1),(702,-257965200,2),(702,-242236800,1),(702,-226515600,2),(702,-210787200,1),(702,-195066000,2),(702,-179337600,1),(702,-163616400,2),(702,-147888000,1),(702,-131562000,2),(702,-116438400,1),(702,-100112400,2),(702,-84384000,1),(702,-68662800,2),(702,-52934400,1),(702,-37213200,2),(702,-21484800,1),(702,-5763600,2),(702,9964800,1),(702,25686000,2),(702,41414400,1),(702,57740400,2),(702,73468800,1),(702,89190000,2),(702,104918400,1),(702,120639600,2),(702,126691200,1),(702,152089200,2),(702,162374400,1),(702,183538800,2),(702,199267200,1),(702,215593200,2),(702,230716800,1),(702,247042800,2),(702,262771200,1),(702,278492400,2),(702,294220800,1),(702,309942000,2),(702,325670400,1),(702,341391600,2),(702,357120000,1),(702,372841200,2),(702,388569600,1),(702,404895600,2),(702,420019200,1),(702,436345200,2),(702,452073600,1),(702,467794800,2),(702,483523200,1),(702,499244400,2),(702,514972800,1),(702,530694000,2),(702,544608000,1),(702,562143600,2),(702,576057600,1),(702,594198000,2),(702,607507200,1),(702,625647600,2),(702,638956800,1),(702,657097200,2),(702,671011200,1),(702,688546800,2),(702,702460800,1),(702,719996400,2),(702,733910400,1),(702,752050800,2),(702,765360000,1),(702,783500400,2),(702,796809600,1),(702,814950000,2),(702,828864000,1),(702,846399600,2),(702,860313600,1),(702,877849200,2),(702,891763200,1),(702,909298800,2),(702,923212800,1),(702,941353200,2),(702,954662400,1),(702,972802800,2),(702,986112000,1),(702,1004252400,2),(702,1018166400,1),(702,1035702000,2),(702,1049616000,1),(702,1067151600,2),(702,1081065600,1),(702,1099206000,2),(702,1112515200,1),(702,1130655600,2),(702,1143964800,1),(702,1162105200,2),(702,1173600000,1),(702,1194159600,2),(702,1205049600,1),(702,1225609200,2),(702,1236499200,1),(702,1257058800,2),(702,1268553600,1),(702,1289113200,2),(702,1300003200,1),(702,1320562800,2),(702,1331452800,1),(702,1352012400,2),(702,1362902400,1),(702,1383462000,2),(702,1394352000,1),(702,1414911600,2),(702,1425801600,1),(702,1446361200,2),(702,1457856000,1),(702,1478415600,2),(702,1489305600,1),(702,1509865200,2),(702,1520755200,1),(702,1541314800,2),(702,1552204800,1),(702,1572764400,2),(702,1583654400,1),(702,1604214000,2),(702,1615708800,1),(702,1636268400,2),(702,1647158400,1),(702,1667718000,2),(702,1678608000,1),(702,1699167600,2),(702,1710057600,1),(702,1730617200,2),(702,1741507200,1),(702,1762066800,2),(702,1772956800,1),(702,1793516400,2),(702,1805011200,1),(702,1825570800,2),(702,1836460800,1),(702,1857020400,2),(702,1867910400,1),(702,1888470000,2),(702,1899360000,1),(702,1919919600,2),(702,1930809600,1),(702,1951369200,2),(702,1962864000,1),(702,1983423600,2),(702,1994313600,1),(702,2014873200,2),(702,2025763200,1),(702,2046322800,2),(702,2057212800,1),(702,2077772400,2),(702,2088662400,1),(702,2109222000,2),(702,2120112000,1),(702,2140671600,2),(703,-2147483648,0),(703,-1514739600,1),(703,-1343066400,2),(703,-1234807200,1),(703,-1220292000,2),(703,-1207159200,1),(703,-1191344400,2),(703,828864000,3),(703,846399600,2),(703,860313600,3),(703,877849200,2),(703,891766800,4),(703,909302400,1),(703,923216400,4),(703,941356800,1),(703,954666000,4),(703,972806400,1),(703,989139600,4),(703,1001836800,1),(703,1018170000,4),(703,1035705600,1),(703,1049619600,4),(703,1067155200,1),(703,1081069200,4),(703,1099209600,1),(703,1112518800,4),(703,1130659200,1),(703,1143968400,4),(703,1162108800,1),(703,1175418000,4),(703,1193558400,1),(703,1207472400,4),(703,1225008000,1),(703,1238922000,4),(703,1256457600,1),(703,1270371600,4),(703,1288512000,1),(703,1301821200,4),(703,1319961600,1),(703,1333270800,4),(703,1351411200,1),(703,1365325200,4),(703,1382860800,1),(703,1396774800,4),(703,1414310400,1),(703,1428224400,4),(703,1445760000,1),(703,1459674000,4),(703,1477814400,1),(703,1491123600,4),(703,1509264000,1),(703,1522573200,4),(703,1540713600,1),(703,1554627600,4),(703,1572163200,1),(703,1586077200,4),(703,1603612800,1),(703,1617526800,4),(703,1635667200,1),(703,1648976400,4),(703,1667116800,1),(703,1680426000,4),(703,1698566400,1),(703,1712480400,4),(703,1730016000,1),(703,1743930000,4),(703,1761465600,1),(703,1775379600,4),(703,1792915200,1),(703,1806829200,4),(703,1824969600,1),(703,1838278800,4),(703,1856419200,1),(703,1869728400,4),(703,1887868800,1),(703,1901782800,4),(703,1919318400,1),(703,1933232400,4),(703,1950768000,1),(703,1964682000,4),(703,1982822400,1),(703,1996131600,4),(703,2014272000,1),(703,2027581200,4),(703,2045721600,1),(703,2059030800,4),(703,2077171200,1),(703,2091085200,4),(703,2108620800,1),(703,2122534800,4),(703,2140070400,1),(704,-2147483648,2),(704,-1632067200,1),(704,-1615136400,2),(704,-923248800,1),(704,-880214400,3),(704,-769395600,4),(704,-765392400,5),(705,-2147483648,1),(705,-1567453392,2),(705,-1233432000,3),(705,-1222981200,2),(705,-1205956800,3),(705,-1194037200,2),(705,-1172865600,3),(705,-1162501200,2),(705,-1141329600,3),(705,-1130965200,2),(705,-1109793600,3),(705,-1099429200,2),(705,-1078257600,3),(705,-1067806800,2),(705,-1046635200,3),(705,-1036270800,2),(705,-1015099200,3),(705,-1004734800,2),(705,-983563200,3),(705,-973198800,2),(705,-952027200,3),(705,-941576400,2),(705,-931032000,3),(705,-900882000,2),(705,-890337600,3),(705,-833749200,2),(705,-827265600,3),(705,-752274000,2),(705,-733780800,3),(705,-197326800,2),(705,-190843200,3),(705,-184194000,2),(705,-164491200,3),(705,-152658000,2),(705,-132955200,3),(705,-121122000,2),(705,-101419200,3),(705,-86821200,2),(705,-71092800,3),(705,-54766800,2),(705,-39038400,3),(705,-23317200,2),(705,-7588800,5),(705,128142000,4),(705,136605600,5),(705,596948400,4),(705,605066400,5),(705,624423600,4),(705,636516000,5),(705,656478000,4),(705,667965600,2),(705,687931200,4),(705,699415200,5),(705,719377200,4),(705,731469600,5),(705,938919600,3),(705,952052400,5),(705,1198983600,4),(705,1205632800,5),(705,1224385200,4),(705,1237082400,5),(706,-2147483648,1),(706,-1545071027,3),(706,288770400,2),(706,297234000,3),(706,320220000,2),(706,328683600,3),(706,664264800,2),(706,678344400,3),(706,695714400,2),(706,700635600,3),(707,-2147483648,1),(707,-1680454800,2),(707,-1627833600,1),(708,-2147483648,0),(708,-1767212140,2),(708,-1206954000,1),(708,-1191358800,2),(708,-1175371200,1),(708,-1159822800,2),(708,-633816000,1),(708,-622065600,2),(708,-602280000,1),(708,-591829200,2),(708,-570744000,1),(708,-560206800,2),(708,-539121600,1),(708,-531349200,2),(708,-191361600,1),(708,-184194000,2),(708,-155160000,1),(708,-150066000,2),(708,-128894400,1),(708,-121122000,2),(708,-99950400,1),(708,-89586000,2),(708,-68414400,1),(708,-57963600,2),(708,499752000,1),(708,511239600,2),(708,530596800,1),(708,540270000,2),(708,562132800,1),(708,571201200,2),(708,592977600,1),(708,602046000,2),(708,624427200,1),(708,634705200,2),(708,656481600,1),(708,666759600,2),(708,687931200,1),(708,697604400,2),(708,719985600,1),(708,728449200,2),(708,750830400,1),(708,761713200,2),(708,782280000,1),(708,793162800,2),(708,813729600,1),(708,824007600,2),(708,844574400,1),(708,856062000,2),(708,876110400,1),(708,888721200,2),(708,908078400,1),(708,919566000,2),(708,938923200,1),(708,951620400,2),(708,970977600,1),(708,982465200,2),(708,1003032000,1),(708,1013914800,2),(708,1036296000,1),(708,1045364400,2),(708,1099368000,1),(708,1108868400,2),(708,1129435200,1),(708,1140318000,2),(708,1162699200,1),(708,1172372400,2),(708,1192334400,1),(708,1203217200,2),(708,1224388800,1),(708,1234666800,2),(708,1255838400,1),(708,1266721200,2),(708,1287288000,1),(708,1298170800,2),(708,1318737600,1),(708,1330225200,2),(708,1350792000,1),(708,1361070000,2),(708,1382241600,1),(708,1392519600,2),(708,1413691200,1),(708,1424574000,2),(708,1445140800,1),(708,1456023600,2),(708,1476590400,1),(708,1487473200,2),(708,1508040000,1),(708,1518922800,2),(708,1541304000,1),(708,1550372400,2),(709,-2147483648,0),(709,-1826738653,1),(709,-157750200,2),(710,-2147483648,0),(710,-1686091520,1),(710,323845200,4),(710,338950800,2),(710,354675600,3),(710,370400400,2),(710,386125200,3),(710,401850000,2),(710,417574800,3),(710,433299600,2),(710,449024400,3),(710,465354000,2),(710,481078800,3),(710,496803600,2),(710,512528400,3),(710,528253200,2),(710,543978000,3),(710,559702800,2),(710,575427600,3),(710,591152400,2),(710,606877200,3),(710,622602000,2),(710,638326800,3),(710,654656400,2),(710,670381200,3),(710,686106000,2),(710,701830800,3),(710,717555600,2),(710,733280400,3),(710,749005200,2),(710,764730000,3),(710,780454800,2),(710,796179600,3),(710,811904400,2),(710,820465200,5),(711,-2147483648,2),(711,-1632056400,1),(711,-1615125600,2),(711,-1596978000,1),(711,-1583164800,2),(711,-880203600,3),(711,-769395600,4),(711,-765381600,2),(711,-147884400,5),(711,-131554800,2),(711,120646800,6),(711,325677600,7),(711,341398800,6),(711,357127200,7),(711,372848400,6),(711,388576800,7),(711,404902800,6),(711,420026400,7),(711,436352400,6),(711,452080800,7),(711,467802000,6),(711,483530400,7),(711,499251600,6),(711,514980000,7),(711,530701200,6),(711,544615200,7),(711,562150800,6),(711,576064800,7),(711,594205200,6),(711,607514400,7),(711,625654800,6),(711,638964000,7),(711,657104400,6),(711,671018400,7),(711,688554000,6),(711,702468000,7),(711,720003600,6),(711,733917600,7),(711,752058000,6),(711,765367200,7),(711,783507600,6),(711,796816800,7),(711,814957200,6),(711,828871200,7),(711,846406800,6),(711,860320800,7),(711,877856400,6),(711,891770400,7),(711,909306000,6),(711,923220000,7),(711,941360400,6),(711,954669600,7),(711,972810000,6),(711,986119200,7),(711,1004259600,6),(711,1018173600,7),(711,1035709200,6),(711,1049623200,7),(711,1067158800,6),(711,1081072800,7),(711,1099213200,6),(711,1112522400,7),(711,1130662800,6),(711,1143972000,7),(711,1162112400,6),(711,1173607200,7),(711,1194166800,6),(711,1205056800,7),(711,1225616400,6),(711,1236506400,7),(711,1257066000,6),(711,1268560800,7),(711,1289120400,6),(711,1300010400,7),(711,1320570000,6),(711,1331460000,7),(711,1352019600,6),(711,1362909600,7),(711,1383469200,6),(711,1394359200,7),(711,1414918800,6),(711,1425808800,7),(711,1446368400,6),(711,1457863200,7),(711,1478422800,6),(711,1489312800,7),(711,1509872400,6),(711,1520762400,7),(711,1541322000,6),(711,1552212000,7),(711,1572771600,6),(711,1583661600,7),(711,1604221200,6),(711,1615716000,7),(711,1636275600,6),(711,1647165600,7),(711,1667725200,6),(711,1678615200,7),(711,1699174800,6),(711,1710064800,7),(711,1730624400,6),(711,1741514400,7),(711,1762074000,6),(711,1772964000,7),(711,1793523600,6),(711,1805018400,7),(711,1825578000,6),(711,1836468000,7),(711,1857027600,6),(711,1867917600,7),(711,1888477200,6),(711,1899367200,7),(711,1919926800,6),(711,1930816800,7),(711,1951376400,6),(711,1962871200,7),(711,1983430800,6),(711,1994320800,7),(711,2014880400,6),(711,2025770400,7),(711,2046330000,6),(711,2057220000,7),(711,2077779600,6),(711,2088669600,7),(711,2109229200,6),(711,2120119200,7),(711,2140678800,6),(712,-2147483648,2),(712,-1632060000,1),(712,-1615129200,2),(712,-880207200,3),(712,-769395600,4),(712,-765385200,2),(712,-715788000,1),(712,-702486000,2),(712,-684338400,1),(712,-671036400,2),(712,-652888800,1),(712,-639586800,2),(712,-620834400,1),(712,-608137200,2),(712,-589384800,1),(712,-576082800,2),(712,-557935200,1),(712,-544633200,2),(712,-526485600,1),(712,-513183600,2),(712,-495036000,1),(712,-481734000,2),(712,-463586400,1),(712,-450284400,2),(712,-431532000,1),(712,-418230000,2),(712,-400082400,1),(712,-386780400,2),(712,-368632800,1),(712,-355330800,2),(712,-337183200,1),(712,-323881200,2),(712,-305733600,1),(712,-292431600,2),(712,-273679200,1),(712,-260982000,2),(712,-242229600,1),(712,-226508400,2),(712,-210780000,1),(712,-195058800,2),(712,-179330400,1),(712,-163609200,2),(712,-147880800,1),(712,-131554800,2),(712,-116431200,1),(712,-100105200,2),(712,-84376800,1),(712,-68655600,2),(712,-52927200,1),(712,-37206000,2),(712,-21477600,1),(712,-5756400,2),(712,9972000,1),(712,25693200,2),(712,41421600,1),(712,57747600,2),(712,73476000,1),(712,84013200,5),(713,-2147483648,2),(713,-1633273200,1),(713,-1615132800,2),(713,-1601823600,1),(713,-1583683200,2),(713,-1570374000,1),(713,-1551628800,2),(713,-1538924400,1),(713,-1534089600,2),(713,-880210800,3),(713,-769395600,4),(713,-765388800,2),(713,-147884400,1),(713,-131558400,2),(713,-116434800,1),(713,-100108800,2),(713,-84380400,1),(713,-68659200,2),(713,-52930800,1),(713,-37209600,2),(713,-21481200,1),(713,-5760000,2),(713,9968400,1),(713,25689600,2),(713,41418000,1),(713,57744000,2),(713,73472400,1),(713,89193600,2),(713,104922000,1),(713,120643200,2),(713,126694800,1),(713,152092800,2),(713,162378000,1),(713,183542400,2),(713,199270800,1),(713,215596800,2),(713,230720400,1),(713,247046400,2),(713,262774800,1),(713,278496000,2),(713,294224400,1),(713,309945600,2),(713,325674000,1),(713,341395200,2),(713,357123600,1),(713,372844800,2),(713,388573200,1),(713,404899200,2),(713,420022800,1),(713,436348800,2),(713,452077200,1),(713,467798400,2),(713,483526800,1),(713,499248000,2),(713,514976400,1),(713,530697600,2),(713,544611600,1),(713,562147200,2),(713,576061200,1),(713,594201600,2),(713,607510800,1),(713,625651200,2),(713,638960400,1),(713,657100800,2),(713,671014800,1),(713,688550400,2),(713,702464400,1),(713,720000000,2),(713,733914000,1),(713,752054400,2),(713,765363600,1),(713,783504000,2),(713,796813200,1),(713,814953600,2),(713,828867600,1),(713,846403200,2),(713,860317200,1),(713,877852800,2),(713,891766800,1),(713,909302400,2),(713,923216400,1),(713,941356800,2),(713,954666000,1),(713,972806400,2),(713,986115600,1),(713,1004256000,2),(713,1018170000,1),(713,1035705600,2),(713,1049619600,1),(713,1067155200,2),(713,1081069200,1),(713,1099209600,2),(713,1112518800,1),(713,1130659200,2),(713,1143968400,1),(713,1162108800,2),(713,1173603600,1),(713,1194163200,2),(713,1205053200,1),(713,1225612800,2),(713,1236502800,1),(713,1257062400,2),(713,1268557200,1),(713,1289116800,2),(713,1300006800,1),(713,1320566400,2),(713,1331456400,1),(713,1352016000,2),(713,1362906000,1),(713,1383465600,2),(713,1394355600,1),(713,1414915200,2),(713,1425805200,1),(713,1446364800,2),(713,1457859600,1),(713,1478419200,2),(713,1489309200,1),(713,1509868800,2),(713,1520758800,1),(713,1541318400,2),(713,1552208400,1),(713,1572768000,2),(713,1583658000,1),(713,1604217600,2),(713,1615712400,1),(713,1636272000,2),(713,1647162000,1),(713,1667721600,2),(713,1678611600,1),(713,1699171200,2),(713,1710061200,1),(713,1730620800,2),(713,1741510800,1),(713,1762070400,2),(713,1772960400,1),(713,1793520000,2),(713,1805014800,1),(713,1825574400,2),(713,1836464400,1),(713,1857024000,2),(713,1867914000,1),(713,1888473600,2),(713,1899363600,1),(713,1919923200,2),(713,1930813200,1),(713,1951372800,2),(713,1962867600,1),(713,1983427200,2),(713,1994317200,1),(713,2014876800,2),(713,2025766800,1),(713,2046326400,2),(713,2057216400,1),(713,2077776000,2),(713,2088666000,1),(713,2109225600,2),(713,2120115600,1),(713,2140675200,2),(714,-2147483648,0),(714,-2051202469,1),(714,-1724083200,2),(714,-880218000,3),(714,-769395600,4),(714,-765396000,2),(714,-684349200,5),(714,-671047200,2),(714,-80506740,5),(714,-68666400,2),(714,-52938000,5),(714,-37216800,2),(714,104914800,5),(714,120636000,2),(714,126687600,5),(714,152085600,2),(714,167814000,5),(714,183535200,2),(714,199263600,5),(714,215589600,2),(714,230713200,5),(714,247039200,2),(714,262767600,5),(714,278488800,2),(714,294217200,5),(714,309938400,2),(714,325666800,5),(714,341388000,2),(714,357116400,5),(714,372837600,2),(714,388566000,5),(714,404892000,2),(714,420015600,5),(714,436341600,2),(714,452070000,5),(714,467791200,2),(714,483519600,5),(714,499240800,2),(714,514969200,5),(714,530690400,2),(714,544604400,5),(714,562140000,2),(714,576054000,5),(714,594194400,2),(714,607503600,5),(714,625644000,2),(714,638953200,5),(714,657093600,2),(714,671007600,5),(714,688543200,2),(714,702457200,5),(714,719992800,2),(714,733906800,5),(714,752047200,2),(714,765356400,5),(714,783496800,2),(714,796806000,5),(714,814946400,2),(714,828860400,5),(714,846396000,2),(714,860310000,5),(714,877845600,2),(714,891759600,5),(714,909295200,2),(714,923209200,5),(714,941349600,2),(714,954658800,5),(714,972799200,2),(714,986108400,5),(714,1004248800,2),(714,1018162800,5),(714,1035698400,2),(714,1049612400,5),(714,1067148000,2),(714,1081062000,5),(714,1099202400,2),(714,1112511600,5),(714,1130652000,2),(714,1143961200,5),(714,1162101600,2),(714,1173596400,5),(714,1194156000,2),(714,1205046000,5),(714,1225605600,2),(714,1236495600,5),(714,1257055200,2),(714,1268550000,5),(714,1289109600,2),(714,1299999600,5),(714,1320559200,2),(714,1331449200,5),(714,1352008800,2),(714,1362898800,5),(714,1383458400,2),(714,1394348400,5),(714,1414908000,2),(714,1425798000,5),(714,1446357600,2),(714,1457852400,5),(714,1478412000,2),(714,1489302000,5),(714,1509861600,2),(714,1520751600,5),(714,1541311200,2),(714,1552201200,5),(714,1572760800,2),(714,1583650800,5),(714,1604210400,2),(714,1615705200,5),(714,1636264800,2),(714,1647154800,5),(714,1667714400,2),(714,1678604400,5),(714,1699164000,2),(714,1710054000,5),(714,1730613600,2),(714,1741503600,5),(714,1762063200,2),(714,1772953200,5),(714,1793512800,2),(714,1805007600,5),(714,1825567200,2),(714,1836457200,5),(714,1857016800,2),(714,1867906800,5),(714,1888466400,2),(714,1899356400,5),(714,1919916000,2),(714,1930806000,5),(714,1951365600,2),(714,1962860400,5),(714,1983420000,2),(714,1994310000,5),(714,2014869600,2),(714,2025759600,5),(714,2046319200,2),(714,2057209200,5),(714,2077768800,2),(714,2088658800,5),(714,2109218400,2),(714,2120108400,5),(714,2140668000,2),(715,-2147483648,0),(715,-1825098836,1),(716,-2147483648,0),(716,-1998663968,2),(716,-1632063600,1),(716,-1615132800,2),(716,-1600614000,1),(716,-1596816000,2),(716,-1567954800,1),(716,-1551628800,2),(716,-1536505200,1),(716,-1523203200,2),(716,-1504450800,1),(716,-1491753600,2),(716,-1473001200,1),(716,-1459699200,2),(716,-880210800,3),(716,-769395600,4),(716,-765388800,2),(716,-715791600,1),(716,-702489600,2),(716,73472400,1),(716,89193600,2),(716,104922000,1),(716,120643200,2),(716,136371600,1),(716,152092800,2),(716,167821200,1),(716,183542400,2),(716,199270800,1),(716,215596800,2),(716,230720400,1),(716,247046400,2),(716,262774800,1),(716,278496000,2),(716,294224400,1),(716,309945600,2),(716,325674000,1),(716,341395200,2),(716,357123600,1),(716,372844800,2),(716,388573200,1),(716,404899200,2),(716,420022800,1),(716,436348800,2),(716,452077200,1),(716,467798400,2),(716,483526800,1),(716,499248000,2),(716,514976400,1),(716,530697600,2),(716,544611600,1),(716,562147200,2),(716,576061200,1),(716,594201600,2),(716,607510800,1),(716,625651200,2),(716,638960400,1),(716,657100800,2),(716,671014800,1),(716,688550400,2),(716,702464400,1),(716,720000000,2),(716,733914000,1),(716,752054400,2),(716,765363600,1),(716,783504000,2),(716,796813200,1),(716,814953600,2),(716,828867600,1),(716,846403200,2),(716,860317200,1),(716,877852800,2),(716,891766800,1),(716,909302400,2),(716,923216400,1),(716,941356800,2),(716,954666000,1),(716,972806400,2),(716,986115600,1),(716,1004256000,2),(716,1018170000,1),(716,1035705600,2),(716,1049619600,1),(716,1067155200,2),(716,1081069200,1),(716,1099209600,2),(716,1112518800,1),(716,1130659200,2),(716,1143968400,1),(716,1162108800,2),(716,1173603600,1),(716,1194163200,2),(716,1205053200,1),(716,1225612800,2),(716,1236502800,1),(716,1257062400,2),(716,1268557200,1),(716,1289116800,2),(716,1300006800,1),(716,1320566400,2),(716,1331456400,1),(716,1352016000,2),(716,1362906000,1),(716,1383465600,2),(716,1394355600,1),(716,1414915200,2),(716,1425805200,1),(716,1446364800,2),(716,1457859600,1),(716,1478419200,2),(716,1489309200,1),(716,1509868800,2),(716,1520758800,1),(716,1541318400,2),(716,1552208400,1),(716,1572768000,2),(716,1583658000,1),(716,1604217600,2),(716,1615712400,1),(716,1636272000,2),(716,1647162000,1),(716,1667721600,2),(716,1678611600,1),(716,1699171200,2),(716,1710061200,1),(716,1730620800,2),(716,1741510800,1),(716,1762070400,2),(716,1772960400,1),(716,1793520000,2),(716,1805014800,1),(716,1825574400,2),(716,1836464400,1),(716,1857024000,2),(716,1867914000,1),(716,1888473600,2),(716,1899363600,1),(716,1919923200,2),(716,1930813200,1),(716,1951372800,2),(716,1962867600,1),(716,1983427200,2),(716,1994317200,1),(716,2014876800,2),(716,2025766800,1),(716,2046326400,2),(716,2057216400,1),(716,2077776000,2),(716,2088666000,1),(716,2109225600,2),(716,2120115600,1),(716,2140675200,2),(717,-2147483648,0),(717,-1767208832,2),(717,-1206950400,1),(717,-1191355200,2),(717,-1175367600,1),(717,-1159819200,2),(717,-633812400,1),(717,-622062000,2),(717,-602276400,1),(717,-591825600,2),(717,-570740400,1),(717,-560203200,2),(717,-539118000,1),(717,-531345600,2),(717,-191358000,1),(717,-184190400,2),(717,-155156400,1),(717,-150062400,2),(717,-128890800,1),(717,-121118400,2),(717,-99946800,1),(717,-89582400,2),(717,-68410800,1),(717,-57960000,2),(717,499755600,1),(717,511243200,2),(717,530600400,1),(717,540273600,2),(717,562136400,1),(717,571204800,2),(717,750834000,1),(717,761716800,2),(717,1214283600,3),(717,1384056000,2),(718,-2147483648,0),(718,-1546279392,2),(718,547020000,1),(718,559717200,2),(718,578469600,1),(718,591166800,2),(719,-2147483648,0),(719,-1514736000,1),(719,-1451667600,2),(719,-1343062800,1),(719,-1234803600,2),(719,-1222963200,3),(719,-1207242000,2),(719,-873820800,4),(719,-769395600,5),(719,-761677200,2),(719,-686073600,3),(719,-661539600,2),(719,-495039600,3),(719,-481734000,2),(719,-463590000,3),(719,-450284400,2),(719,-431535600,3),(719,-418230000,2),(719,-400086000,3),(719,-386780400,2),(719,-368636400,3),(719,-355330800,2),(719,-337186800,3),(719,-323881200,2),(719,-305737200,3),(719,-292431600,2),(719,199274400,3),(719,215600400,2),(719,230724000,3),(719,247050000,2),(719,262778400,3),(719,278499600,2),(719,294228000,3),(719,309949200,2),(719,325677600,3),(719,341398800,2),(719,357127200,3),(719,372848400,2),(719,388576800,3),(719,404902800,2),(719,420026400,3),(719,436352400,2),(719,452080800,3),(719,467802000,2),(719,483530400,3),(719,499251600,2),(719,514980000,3),(719,530701200,2),(719,544615200,3),(719,562150800,2),(719,576064800,3),(719,594205200,2),(719,607514400,3),(719,625654800,2),(719,638964000,3),(719,657104400,2),(719,671018400,3),(719,688554000,2),(719,702468000,3),(719,720003600,2),(719,733917600,3),(719,752058000,2),(719,765367200,3),(719,783507600,2),(719,796816800,3),(719,814957200,2),(719,828871200,3),(719,846406800,2),(719,860320800,3),(719,877856400,2),(719,891770400,3),(719,909306000,2),(719,923220000,3),(719,941360400,2),(719,954669600,3),(719,972810000,2),(719,986119200,3),(719,1004259600,2),(719,1018173600,3),(719,1035709200,2),(719,1049623200,3),(719,1067158800,2),(719,1081072800,3),(719,1099213200,2),(719,1112522400,3),(719,1130662800,2),(719,1143972000,3),(719,1162112400,2),(719,1175421600,3),(719,1193562000,2),(719,1207476000,3),(719,1225011600,2),(719,1238925600,3),(719,1256461200,2),(719,1268560800,3),(719,1289120400,2),(719,1300010400,3),(719,1320570000,2),(719,1331460000,3),(719,1352019600,2),(719,1362909600,3),(719,1383469200,2),(719,1394359200,3),(719,1414918800,2),(719,1425808800,3),(719,1446368400,2),(719,1457863200,3),(719,1478422800,2),(719,1489312800,3),(719,1509872400,2),(719,1520762400,3),(719,1541322000,2),(719,1552212000,3),(719,1572771600,2),(719,1583661600,3),(719,1604221200,2),(719,1615716000,3),(719,1636275600,2),(719,1647165600,3),(719,1667725200,2),(719,1678615200,3),(719,1699174800,2),(719,1710064800,3),(719,1730624400,2),(719,1741514400,3),(719,1762074000,2),(719,1772964000,3),(719,1793523600,2),(719,1805018400,3),(719,1825578000,2),(719,1836468000,3),(719,1857027600,2),(719,1867917600,3),(719,1888477200,2),(719,1899367200,3),(719,1919926800,2),(719,1930816800,3),(719,1951376400,2),(719,1962871200,3),(719,1983430800,2),(719,1994320800,3),(719,2014880400,2),(719,2025770400,3),(719,2046330000,2),(719,2057220000,3),(719,2077779600,2),(719,2088669600,3),(719,2109229200,2),(719,2120119200,3),(719,2140678800,2),(720,-2147483648,2),(720,-1632060000,1),(720,-1615129200,2),(720,-880207200,3),(720,-769395600,4),(720,-765385200,2),(720,-715788000,1),(720,-702486000,2),(720,-684338400,1),(720,-671036400,2),(720,-652888800,1),(720,-639586800,2),(720,-620834400,1),(720,-608137200,2),(720,-589384800,1),(720,-576082800,2),(720,-557935200,1),(720,-544633200,2),(720,-526485600,1),(720,-513183600,2),(720,-495036000,1),(720,-481734000,2),(720,-463586400,1),(720,-450284400,2),(720,-431532000,1),(720,-418230000,2),(720,-400082400,1),(720,-386780400,2),(720,-368632800,1),(720,-355330800,2),(720,-337183200,1),(720,-323881200,2),(720,-305733600,1),(720,-292431600,2),(720,-273679200,1),(720,-260982000,2),(720,-242229600,1),(720,-226508400,2),(720,-210780000,1),(720,-195058800,2),(720,-179330400,1),(720,-163609200,2),(720,-147880800,1),(720,-131554800,2),(720,-116431200,1),(720,-100105200,2),(720,-84376800,1),(720,-68655600,2),(720,-52927200,1),(720,-37206000,2),(720,-21477600,1),(720,-5756400,2),(720,9972000,1),(720,25693200,2),(720,41421600,1),(720,57747600,2),(720,73476000,1),(720,89197200,2),(720,104925600,1),(720,120646800,2),(720,136375200,1),(720,152096400,2),(720,167824800,1),(720,183546000,2),(720,199274400,1),(720,215600400,2),(720,230724000,1),(720,247050000,2),(720,262778400,1),(720,278499600,2),(720,294228000,1),(720,309949200,2),(720,325677600,1),(720,341398800,2),(720,357127200,1),(720,372848400,2),(720,388576800,1),(720,404902800,2),(720,420026400,1),(720,436352400,2),(720,452080800,1),(720,467802000,2),(720,483530400,1),(720,499251600,2),(720,514980000,1),(720,530701200,2),(720,544615200,1),(720,562150800,2),(720,576064800,1),(720,594205200,2),(720,607514400,1),(720,625654800,2),(720,638964000,1),(720,657104400,2),(720,671018400,1),(720,688554000,2),(720,702468000,1),(720,720003600,2),(720,733917600,1),(720,752058000,2),(720,765367200,1),(720,783507600,2),(720,796816800,1),(720,814957200,2),(720,828871200,1),(720,846406800,2),(720,860320800,1),(720,877856400,2),(720,891770400,1),(720,909306000,2),(720,923220000,1),(720,941360400,2),(720,954669600,1),(720,972810000,2),(720,986119200,1),(720,1004259600,2),(720,1018173600,1),(720,1035709200,2),(720,1049623200,1),(720,1067158800,2),(720,1081072800,1),(720,1099213200,2),(720,1112522400,1),(720,1130662800,2),(720,1143972000,1),(720,1162112400,2),(720,1173607200,1),(720,1194166800,2),(720,1205056800,1),(720,1225616400,2),(720,1236506400,1),(720,1257066000,2),(720,1268560800,1),(720,1289120400,2),(720,1300010400,1),(720,1320570000,2),(720,1331460000,1),(720,1352019600,2),(720,1362909600,1),(720,1383469200,2),(720,1394359200,1),(720,1414918800,2),(720,1425808800,5),(721,-2147483648,2),(721,-1633276800,1),(721,-1615136400,2),(721,-1601827200,1),(721,-1583686800,2),(721,-900259200,1),(721,-891795600,2),(721,-880214400,3),(721,-769395600,4),(721,-765392400,2),(721,-747244800,1),(721,-733942800,2),(721,-715795200,1),(721,-702493200,2),(721,-684345600,1),(721,-671043600,2),(721,-652896000,1),(721,-639594000,2),(721,-620841600,1),(721,-608144400,2),(721,-589392000,1),(721,-576090000,2),(721,-557942400,1),(721,-544640400,2),(721,-526492800,1),(721,-513190800,2),(721,-495043200,1),(721,-481741200,2),(721,-463593600,5),(721,-386787600,2),(721,-368640000,5),(721,-21488400,6),(721,-5767200,5),(721,9961200,6),(721,25682400,5),(721,1143961200,6),(721,1162101600,5),(721,1173596400,6),(721,1194156000,5),(721,1205046000,6),(721,1225605600,5),(721,1236495600,6),(721,1257055200,5),(721,1268550000,6),(721,1289109600,5),(721,1299999600,6),(721,1320559200,5),(721,1331449200,6),(721,1352008800,5),(721,1362898800,6),(721,1383458400,5),(721,1394348400,6),(721,1414908000,5),(721,1425798000,6),(721,1446357600,5),(721,1457852400,6),(721,1478412000,5),(721,1489302000,6),(721,1509861600,5),(721,1520751600,6),(721,1541311200,5),(721,1552201200,6),(721,1572760800,5),(721,1583650800,6),(721,1604210400,5),(721,1615705200,6),(721,1636264800,5),(721,1647154800,6),(721,1667714400,5),(721,1678604400,6),(721,1699164000,5),(721,1710054000,6),(721,1730613600,5),(721,1741503600,6),(721,1762063200,5),(721,1772953200,6),(721,1793512800,5),(721,1805007600,6),(721,1825567200,5),(721,1836457200,6),(721,1857016800,5),(721,1867906800,6),(721,1888466400,5),(721,1899356400,6),(721,1919916000,5),(721,1930806000,6),(721,1951365600,5),(721,1962860400,6),(721,1983420000,5),(721,1994310000,6),(721,2014869600,5),(721,2025759600,6),(721,2046319200,5),(721,2057209200,6),(721,2077768800,5),(721,2088658800,6),(721,2109218400,5),(721,2120108400,6),(721,2140668000,5),(722,-2147483648,0),(722,-1767216360,2),(722,-1206957600,1),(722,-1191362400,2),(722,-1175374800,1),(722,-1159826400,2),(722,-633819600,1),(722,-622069200,2),(722,-602283600,1),(722,-591832800,2),(722,-570747600,1),(722,-560210400,2),(722,-539125200,1),(722,-531352800,2),(722,-191365200,1),(722,-184197600,2),(722,-155163600,1),(722,-150069600,2),(722,-128898000,1),(722,-121125600,2),(722,-99954000,1),(722,-89589600,2),(722,-68418000,1),(722,-57967200,2),(722,499748400,1),(722,511236000,2),(722,530593200,1),(722,540266400,2),(722,562129200,1),(722,571197600,2),(722,592974000,1),(722,602042400,2),(722,624423600,1),(722,634701600,2),(722,938919600,1),(722,951616800,2),(722,970974000,1),(722,972180000,2),(722,1003028400,1),(722,1013911200,2),(723,-2147483648,0),(723,-2131646412,2),(723,-1632074400,1),(723,-1615143600,2),(723,-880221600,3),(723,-769395600,4),(723,-765399600,2),(723,-526500000,1),(723,-513198000,2),(723,73461600,1),(723,89182800,2),(723,104911200,1),(723,120632400,2),(723,136360800,1),(723,152082000,2),(723,167810400,1),(723,183531600,2),(723,199260000,1),(723,215586000,2),(723,230709600,1),(723,247035600,2),(723,262764000,1),(723,278485200,2),(723,294213600,1),(723,309934800,2),(723,325663200,1),(723,341384400,2),(723,357112800,1),(723,372834000,2),(723,388562400,1),(723,404888400,2),(723,420012000,1),(723,436338000,2),(723,452066400,1),(723,467787600,2),(723,483516000,1),(723,499237200,2),(723,514965600,1),(723,530686800,2),(723,544600800,1),(723,562136400,2),(723,576050400,1),(723,594190800,2),(723,607500000,1),(723,625640400,2),(723,638949600,1),(723,657090000,2),(723,671004000,1),(723,688539600,2),(723,702453600,1),(723,719989200,2),(723,733903200,1),(723,752043600,2),(723,765352800,1),(723,783493200,2),(723,796802400,1),(723,814942800,2),(723,828856800,1),(723,846392400,2),(723,860306400,1),(723,877842000,2),(723,891756000,1),(723,909291600,2),(723,923205600,1),(723,941346000,2),(723,954655200,1),(723,972795600,2),(723,986104800,1),(723,1004245200,2),(723,1018159200,1),(723,1035694800,2),(723,1049608800,1),(723,1067144400,2),(723,1081058400,1),(723,1099198800,2),(723,1112508000,1),(723,1130648400,2),(723,1143957600,1),(723,1162098000,2),(723,1173592800,1),(723,1194152400,2),(723,1205042400,1),(723,1225602000,2),(723,1236492000,1),(723,1257051600,2),(723,1268546400,1),(723,1289106000,2),(723,1299996000,1),(723,1320555600,2),(723,1331445600,1),(723,1352005200,2),(723,1362895200,1),(723,1383454800,2),(723,1394344800,1),(723,1414904400,2),(723,1425794400,1),(723,1446354000,2),(723,1457848800,1),(723,1478408400,2),(723,1489298400,1),(723,1509858000,2),(723,1520748000,1),(723,1541307600,2),(723,1552197600,1),(723,1572757200,2),(723,1583647200,1),(723,1604206800,2),(723,1615701600,1),(723,1636261200,2),(723,1647151200,1),(723,1667710800,2),(723,1678600800,1),(723,1699160400,2),(723,1710050400,1),(723,1730610000,2),(723,1741500000,1),(723,1762059600,2),(723,1772949600,1),(723,1793509200,2),(723,1805004000,1),(723,1825563600,2),(723,1836453600,1),(723,1857013200,2),(723,1867903200,1),(723,1888462800,2),(723,1899352800,1),(723,1919912400,2),(723,1930802400,1),(723,1951362000,2),(723,1962856800,1),(723,1983416400,2),(723,1994306400,1),(723,2014866000,2),(723,2025756000,1),(723,2046315600,2),(723,2057205600,1),(723,2077765200,2),(723,2088655200,1),(723,2109214800,2),(723,2120104800,1),(723,2140664400,2),(724,-2147483648,0),(724,-1686083584,1),(724,323845200,4),(724,338950800,2),(724,354675600,3),(724,370400400,2),(724,386125200,3),(724,401850000,2),(724,417574800,3),(724,433299600,2),(724,449024400,3),(724,465354000,2),(724,481078800,3),(724,496803600,2),(724,512528400,3),(724,528253200,2),(724,543978000,3),(724,559702800,2),(724,575427600,3),(724,591152400,2),(724,606877200,3),(724,622602000,2),(724,638326800,3),(724,654656400,2),(724,670381200,3),(724,686106000,2),(724,701830800,3),(724,717555600,2),(724,733280400,3),(724,749005200,2),(724,764730000,3),(724,780454800,2),(724,796179600,3),(724,811904400,2),(724,828234000,3),(724,846378000,2),(724,859683600,3),(724,877827600,2),(724,891133200,3),(724,909277200,2),(724,922582800,3),(724,941331600,2),(724,954032400,3),(724,972781200,2),(724,985482000,3),(724,1004230800,2),(724,1017536400,3),(724,1035680400,2),(724,1048986000,3),(724,1067130000,2),(724,1080435600,3),(724,1099184400,2),(724,1111885200,3),(724,1130634000,2),(724,1143334800,3),(724,1162083600,2),(724,1174784400,3),(724,1193533200,2),(724,1206838800,3),(724,1224982800,2),(724,1238288400,3),(724,1256432400,2),(724,1269738000,3),(724,1288486800,2),(724,1301187600,3),(724,1319936400,2),(724,1332637200,3),(724,1351386000,2),(724,1364691600,3),(724,1382835600,2),(724,1396141200,3),(724,1414285200,2),(724,1427590800,3),(724,1445734800,2),(724,1459040400,3),(724,1477789200,2),(724,1490490000,3),(724,1509238800,2),(724,1521939600,3),(724,1540688400,2),(724,1553994000,3),(724,1572138000,2),(724,1585443600,3),(724,1603587600,2),(724,1616893200,3),(724,1635642000,2),(724,1648342800,3),(724,1667091600,2),(724,1679792400,3),(724,1698541200,2),(724,1711846800,3),(724,1729990800,2),(724,1743296400,3),(724,1761440400,2),(724,1774746000,3),(724,1792890000,2),(724,1806195600,3),(724,1824944400,2),(724,1837645200,3),(724,1856394000,2),(724,1869094800,3),(724,1887843600,2),(724,1901149200,3),(724,1919293200,2),(724,1932598800,3),(724,1950742800,2),(724,1964048400,3),(724,1982797200,2),(724,1995498000,3),(724,2014246800,2),(724,2026947600,3),(724,2045696400,2),(724,2058397200,3),(724,2077146000,2),(724,2090451600,3),(724,2108595600,2),(724,2121901200,3),(724,2140045200,2),(725,-2147483648,1),(725,-1632076148,2),(725,-1615145348,1),(725,-1096921748,3),(725,-1061670600,4),(725,-1048973400,3),(725,-1030221000,4),(725,-1017523800,3),(725,-998771400,4),(725,-986074200,3),(725,-966717000,4),(725,-954624600,3),(725,-935267400,4),(725,-922570200,3),(725,-903817800,4),(725,-891120600,3),(725,-872368200,6),(725,-769395600,5),(725,-765401400,3),(725,-746044200,4),(725,-733347000,3),(725,-714594600,4),(725,-701897400,3),(725,-683145000,4),(725,-670447800,3),(725,-651695400,4),(725,-638998200,3),(725,-619641000,4),(725,-606943800,3),(725,-589401000,4),(725,-576099000,3),(725,-557951400,4),(725,-544649400,3),(725,-526501800,4),(725,-513199800,3),(725,-495052200,4),(725,-481750200,3),(725,-463602600,4),(725,-450300600,3),(725,-431548200,4),(725,-418246200,3),(725,-400098600,4),(725,-386796600,3),(725,-368649000,4),(725,-355347000,3),(725,-337199400,4),(725,-323897400,3),(725,-305749800,4),(725,-289423800,3),(725,-273695400,4),(725,-257974200,3),(725,-242245800,4),(725,-226524600,3),(725,-210796200,4),(725,-195075000,3),(725,-179346600,4),(725,-163625400,3),(725,-147897000,4),(725,-131571000,3),(725,-119903400,8),(725,-116445600,7),(725,-100119600,8),(725,-84391200,7),(725,-68670000,8),(725,-52941600,7),(725,-37220400,8),(725,-21492000,7),(725,-5770800,8),(725,9957600,7),(725,25678800,8),(725,41407200,7),(725,57733200,8),(725,73461600,7),(725,89182800,8),(725,104911200,7),(725,120632400,8),(725,136360800,7),(725,152082000,8),(725,167810400,7),(725,183531600,8),(725,199260000,7),(725,215586000,8),(725,230709600,7),(725,247035600,8),(725,262764000,7),(725,278485200,8),(725,294213600,7),(725,309934800,8),(725,325663200,7),(725,341384400,8),(725,357112800,7),(725,372834000,8),(725,388562400,7),(725,404888400,8),(725,420012000,7),(725,436338000,8),(725,452066400,7),(725,467787600,8),(725,483516000,7),(725,499237200,8),(725,514965600,7),(725,530686800,8),(725,544593660,7),(725,562129260,8),(725,576043260,9),(725,594180060,8),(725,607492860,7),(725,625633260,8),(725,638942460,7),(725,657082860,8),(725,670996860,7),(725,688532460,8),(725,702446460,7),(725,719982060,8),(725,733896060,7),(725,752036460,8),(725,765345660,7),(725,783486060,8),(725,796795260,7),(725,814935660,8),(725,828849660,7),(725,846385260,8),(725,860299260,7),(725,877834860,8),(725,891748860,7),(725,909284460,8),(725,923198460,7),(725,941338860,8),(725,954648060,7),(725,972788460,8),(725,986097660,7),(725,1004238060,8),(725,1018152060,7),(725,1035687660,8),(725,1049601660,7),(725,1067137260,8),(725,1081051260,7),(725,1099191660,8),(725,1112500860,7),(725,1130641260,8),(725,1143950460,7),(725,1162090860,8),(725,1173585660,7),(725,1194145260,8),(725,1205035260,7),(725,1225594860,8),(725,1236484860,7),(725,1257044460,8),(725,1268539260,7),(725,1289098860,8),(725,1299988860,7),(725,1320555600,8),(725,1331445600,7),(725,1352005200,8),(725,1362895200,7),(725,1383454800,8),(725,1394344800,7),(725,1414904400,8),(725,1425794400,7),(725,1446354000,8),(725,1457848800,7),(725,1478408400,8),(725,1489298400,7),(725,1509858000,8),(725,1520748000,7),(725,1541307600,8),(725,1552197600,7),(725,1572757200,8),(725,1583647200,7),(725,1604206800,8),(725,1615701600,7),(725,1636261200,8),(725,1647151200,7),(725,1667710800,8),(725,1678600800,7),(725,1699160400,8),(725,1710050400,7),(725,1730610000,8),(725,1741500000,7),(725,1762059600,8),(725,1772949600,7),(725,1793509200,8),(725,1805004000,7),(725,1825563600,8),(725,1836453600,7),(725,1857013200,8),(725,1867903200,7),(725,1888462800,8),(725,1899352800,7),(725,1919912400,8),(725,1930802400,7),(725,1951362000,8),(725,1962856800,7),(725,1983416400,8),(725,1994306400,7),(725,2014866000,8),(725,2025756000,7),(725,2046315600,8),(725,2057205600,7),(725,2077765200,8),(725,2088655200,7),(725,2109214800,8),(725,2120104800,7),(725,2140664400,8),(726,-2147483648,1),(726,-1827687170,2),(726,294217200,3),(726,309938400,2),(726,325666800,3),(726,341388000,2),(726,357116400,3),(726,372837600,2),(726,388566000,3),(726,404892000,2),(726,420015600,3),(726,436341600,2),(726,452070000,3),(726,467791200,2),(726,483519600,3),(726,499240800,2),(726,514969200,3),(726,530690400,2),(726,544604400,3),(726,562140000,2),(726,576054000,3),(726,594194400,2),(726,607503600,3),(726,625644000,2),(726,638953200,3),(726,657093600,2),(726,671007600,3),(726,688543200,2),(726,702457200,3),(726,719992800,2),(726,733906800,3),(726,752047200,2),(726,765356400,3),(726,783496800,2),(726,796806000,3),(726,814946400,2),(726,828860400,3),(726,846396000,2),(726,860310000,3),(726,877845600,2),(726,891759600,3),(726,909295200,2),(726,923209200,3),(726,941349600,2),(726,954658800,3),(726,972799200,2),(726,986108400,3),(726,1004248800,2),(726,1018162800,3),(726,1035698400,2),(726,1049612400,3),(726,1067148000,2),(726,1081062000,3),(726,1099202400,2),(726,1112511600,3),(726,1130652000,2),(726,1143961200,3),(726,1162101600,2),(726,1173596400,3),(726,1194156000,2),(726,1205046000,3),(726,1225605600,2),(726,1236495600,3),(726,1257055200,2),(726,1268550000,3),(726,1289109600,2),(726,1299999600,3),(726,1320559200,2),(726,1331449200,3),(726,1352008800,2),(726,1362898800,3),(726,1383458400,2),(726,1394348400,3),(726,1414908000,2),(726,1425798000,3),(726,1446357600,4),(726,1520751600,3),(726,1541311200,2),(726,1552201200,3),(726,1572760800,2),(726,1583650800,3),(726,1604210400,2),(726,1615705200,3),(726,1636264800,2),(726,1647154800,3),(726,1667714400,2),(726,1678604400,3),(726,1699164000,2),(726,1710054000,3),(726,1730613600,2),(726,1741503600,3),(726,1762063200,2),(726,1772953200,3),(726,1793512800,2),(726,1805007600,3),(726,1825567200,2),(726,1836457200,3),(726,1857016800,2),(726,1867906800,3),(726,1888466400,2),(726,1899356400,3),(726,1919916000,2),(726,1930806000,3),(726,1951365600,2),(726,1962860400,3),(726,1983420000,2),(726,1994310000,3),(726,2014869600,2),(726,2025759600,3),(726,2046319200,2),(726,2057209200,3),(726,2077768800,2),(726,2088658800,3),(726,2109218400,2),(726,2120108400,3),(726,2140668000,2),(727,-2147483648,0),(727,-1825098836,1),(728,-2147483648,0),(728,-1825098836,1),(729,-2147483648,0),(729,-1617040676,2),(729,123055200,1),(729,130914000,2),(729,422344800,1),(729,433054800,2),(729,669708000,1),(729,684219600,2),(729,1146376800,1),(729,1159678800,2),(730,-2147483648,1),(730,-1230749160,3),(730,722926800,2),(730,728884800,3),(731,-2147483648,0),(731,-1730578040,1),(731,176010300,2),(731,662698800,3),(732,-2147483648,0),(732,-2131645536,2),(732,-1696276800,1),(732,-1680469200,2),(732,-1632074400,1),(732,-1615143600,2),(732,-1566763200,1),(732,-1557090000,2),(732,-1535486400,1),(732,-1524949200,2),(732,-1504468800,1),(732,-1493413200,2),(732,-1472414400,1),(732,-1461963600,2),(732,-1440964800,1),(732,-1429390800,2),(732,-1409515200,1),(732,-1396731600,2),(732,-1376856000,1),(732,-1366491600,2),(732,-1346616000,1),(732,-1333832400,2),(732,-1313956800,1),(732,-1303678800,2),(732,-1282507200,1),(732,-1272661200,2),(732,-1251057600,1),(732,-1240088400,2),(732,-1219608000,1),(732,-1207429200,2),(732,-1188763200,1),(732,-1175979600,2),(732,-1157313600,1),(732,-1143925200,2),(732,-1124049600,1),(732,-1113771600,2),(732,-1091390400,1),(732,-1081026000,2),(732,-1059854400,1),(732,-1050786000,2),(732,-1030910400,1),(732,-1018126800,2),(732,-999460800,1),(732,-986677200,2),(732,-965592000,1),(732,-955227600,2),(732,-935956800,1),(732,-923173200,2),(732,-904507200,1),(732,-891723600,2),(732,-880221600,3),(732,-769395600,4),(732,-765399600,2),(732,-747252000,1),(732,-733950000,2),(732,-715802400,1),(732,-702500400,2),(732,-684352800,1),(732,-671050800,2),(732,-652903200,1),(732,-639601200,2),(732,-589399200,1),(732,-576097200,2),(732,-557949600,1),(732,-544647600,2),(732,-526500000,1),(732,-513198000,2),(732,-495050400,1),(732,-481748400,2),(732,-431546400,1),(732,-418244400,2),(732,-400096800,1),(732,-386794800,2),(732,-368647200,1),(732,-355345200,2),(732,-337197600,1),(732,-323895600,2),(732,-242244000,1),(732,-226522800,2),(732,-210794400,1),(732,-195073200,2),(732,-179344800,1),(732,-163623600,2),(732,-147895200,1),(732,-131569200,2),(732,-116445600,1),(732,-100119600,2),(732,-84391200,1),(732,-68670000,2),(732,-52941600,1),(732,-37220400,2),(732,-21492000,1),(732,-5770800,2),(732,9957600,1),(732,25678800,2),(732,41407200,1),(732,57733200,2),(732,73461600,1),(732,89182800,2),(732,104911200,1),(732,120632400,2),(732,136360800,1),(732,152082000,2),(732,167810400,1),(732,183531600,2),(732,199260000,1),(732,215586000,2),(732,230709600,1),(732,247035600,2),(732,262764000,1),(732,278485200,2),(732,294213600,1),(732,309934800,2),(732,325663200,1),(732,341384400,2),(732,357112800,1),(732,372834000,2),(732,388562400,1),(732,404888400,2),(732,420012000,1),(732,436338000,2),(732,452066400,1),(732,467787600,2),(732,483516000,1),(732,499237200,2),(732,514965600,1),(732,530686800,2),(732,544600800,1),(732,562136400,2),(732,576050400,1),(732,594190800,2),(732,607500000,1),(732,625640400,2),(732,638949600,1),(732,657090000,2),(732,671004000,1),(732,688539600,2),(732,702453600,1),(732,719989200,2),(732,733903200,1),(732,752043600,2),(732,765352800,1),(732,783493200,2),(732,796802400,1),(732,814942800,2),(732,828856800,1),(732,846392400,2),(732,860306400,1),(732,877842000,2),(732,891756000,1),(732,909291600,2),(732,923205600,1),(732,941346000,2),(732,954655200,1),(732,972795600,2),(732,986104800,1),(732,1004245200,2),(732,1018159200,1),(732,1035694800,2),(732,1049608800,1),(732,1067144400,2),(732,1081058400,1),(732,1099198800,2),(732,1112508000,1),(732,1130648400,2),(732,1143957600,1),(732,1162098000,2),(732,1173592800,1),(732,1194152400,2),(732,1205042400,1),(732,1225602000,2),(732,1236492000,1),(732,1257051600,2),(732,1268546400,1),(732,1289106000,2),(732,1299996000,1),(732,1320555600,2),(732,1331445600,1),(732,1352005200,2),(732,1362895200,1),(732,1383454800,2),(732,1394344800,1),(732,1414904400,2),(732,1425794400,1),(732,1446354000,2),(732,1457848800,1),(732,1478408400,2),(732,1489298400,1),(732,1509858000,2),(732,1520748000,1),(732,1541307600,2),(732,1552197600,1),(732,1572757200,2),(732,1583647200,1),(732,1604206800,2),(732,1615701600,1),(732,1636261200,2),(732,1647151200,1),(732,1667710800,2),(732,1678600800,1),(732,1699160400,2),(732,1710050400,1),(732,1730610000,2),(732,1741500000,1),(732,1762059600,2),(732,1772949600,1),(732,1793509200,2),(732,1805004000,1),(732,1825563600,2),(732,1836453600,1),(732,1857013200,2),(732,1867903200,1),(732,1888462800,2),(732,1899352800,1),(732,1919912400,2),(732,1930802400,1),(732,1951362000,2),(732,1962856800,1),(732,1983416400,2),(732,1994306400,1),(732,2014866000,2),(732,2025756000,1),(732,2046315600,2),(732,2057205600,1),(732,2077765200,2),(732,2088655200,1),(732,2109214800,2),(732,2120104800,1),(732,2140664400,2),(733,-2147483648,1),(733,-1402813824,3),(733,-1311534000,2),(733,-1300996800,3),(733,-933534000,2),(733,-925675200,3),(733,-902084400,2),(733,-893620800,3),(733,-870030000,2),(733,-862171200,3),(733,-775681200,2),(733,-767822400,3),(733,-744231600,2),(733,-736372800,3),(733,-144702000,2),(733,-134251200,3),(733,-113425200,2),(733,-102542400,3),(733,-86295600,2),(733,-72907200,3),(733,-54154800,2),(733,-41457600,3),(733,-21495600,2),(733,-5774400,3),(733,9954000,2),(733,25675200,3),(733,41403600,2),(733,57729600,3),(733,73458000,2),(733,87364800,3),(733,104907600,2),(733,118900800,3),(733,136357200,2),(733,150436800,3),(733,167806800,2),(733,183528000,3),(733,199256400,2),(733,215582400,3),(733,230706000,2),(733,247032000,3),(733,263365200,2),(733,276667200,3),(733,290581200,2),(733,308721600,3),(733,322030800,2),(733,340171200,3),(733,358318800,2),(733,371620800,3),(733,389768400,2),(733,403070400,3),(733,421218000,2),(733,434520000,3),(733,452667600,2),(733,466574400,3),(733,484117200,2),(733,498024000,3),(733,511333200,2),(733,529473600,3),(733,542782800,2),(733,560923200,3),(733,574837200,2),(733,592372800,3),(733,606286800,2),(733,623822400,3),(733,638946000,2),(733,655876800,3),(733,671000400,2),(733,687330000,4),(733,702450000,2),(733,718779600,4),(733,733899600,2),(733,750229200,4),(733,765349200,2),(733,781678800,4),(733,796798800,2),(733,813128400,4),(733,828853200,2),(733,844578000,4),(733,860302800,2),(733,876632400,4),(733,891147600,5),(733,909291600,4),(733,922597200,5),(733,941346000,4),(733,954651600,5),(733,972795600,4),(733,986101200,5),(733,1004245200,4),(733,1018155600,5),(733,1035694800,4),(733,1049605200,5),(733,1067144400,4),(733,1080450000,5),(733,1162098000,4),(733,1173589200,5),(733,1193547600,4),(733,1205643600,5),(733,1224997200,4),(733,1236488400,5),(733,1256446800,4),(733,1268542800,5),(733,1288501200,4),(733,1300597200,5),(733,1321160400,4),(733,1333256400,5),(733,1352005200,4),(733,1362891600,5),(733,1383454800,4),(733,1394341200,5),(733,1414904400,4),(733,1425790800,5),(733,1446354000,4),(733,1457845200,5),(733,1478408400,4),(733,1489294800,5),(733,1509858000,4),(733,1520744400,5),(733,1541307600,4),(733,1552194000,5),(733,1572757200,4),(733,1583643600,5),(733,1604206800,4),(733,1615698000,5),(733,1636261200,4),(733,1647147600,5),(733,1667710800,4),(733,1678597200,5),(733,1699160400,4),(733,1710046800,5),(733,1730610000,4),(733,1741496400,5),(733,1762059600,4),(733,1772946000,5),(733,1793509200,4),(733,1805000400,5),(733,1825563600,4),(733,1836450000,5),(733,1857013200,4),(733,1867899600,5),(733,1888462800,4),(733,1899349200,5),(733,1919912400,4),(733,1930798800,5),(733,1951362000,4),(733,1962853200,5),(733,1983416400,4),(733,1994302800,5),(733,2014866000,4),(733,2025752400,5),(733,2046315600,4),(733,2057202000,5),(733,2077765200,4),(733,2088651600,5),(733,2109214800,4),(733,2120101200,5),(733,2140664400,4),(734,-2147483648,0),(734,-1514739600,1),(734,-1343066400,2),(734,-1234807200,1),(734,-1220292000,2),(734,-1207159200,1),(734,-1191344400,2),(734,-873828000,1),(734,-661539600,3),(734,28800,1),(734,828867600,4),(734,846403200,1),(734,860317200,4),(734,877852800,1),(734,891766800,4),(734,909302400,1),(735,-2147483648,2),(735,-1633276800,1),(735,-1615136400,2),(735,-1601827200,1),(735,-1583686800,2),(735,-900259200,1),(735,-891795600,2),(735,-880214400,3),(735,-769395600,4),(735,-765392400,2),(735,-747244800,1),(735,-733942800,2),(735,-715795200,1),(735,-702493200,2),(735,-684345600,1),(735,-671043600,2),(735,-652896000,1),(735,-639594000,2),(735,-620841600,1),(735,-608144400,2),(735,-589392000,1),(735,-576090000,2),(735,-557942400,1),(735,-544640400,2),(735,-526492800,1),(735,-513190800,2),(735,-495043200,1),(735,-481741200,2),(735,-463593600,5),(735,-386787600,2),(735,-368640000,5),(735,-21488400,6),(735,-5767200,5),(735,9961200,6),(735,25682400,5),(735,1143961200,6),(735,1162101600,5),(735,1173596400,6),(735,1194156000,5),(735,1205046000,6),(735,1225605600,5),(735,1236495600,6),(735,1257055200,5),(735,1268550000,6),(735,1289109600,5),(735,1299999600,6),(735,1320559200,5),(735,1331449200,6),(735,1352008800,5),(735,1362898800,6),(735,1383458400,5),(735,1394348400,6),(735,1414908000,5),(735,1425798000,6),(735,1446357600,5),(735,1457852400,6),(735,1478412000,5),(735,1489302000,6),(735,1509861600,5),(735,1520751600,6),(735,1541311200,5),(735,1552201200,6),(735,1572760800,5),(735,1583650800,6),(735,1604210400,5),(735,1615705200,6),(735,1636264800,5),(735,1647154800,6),(735,1667714400,5),(735,1678604400,6),(735,1699164000,5),(735,1710054000,6),(735,1730613600,5),(735,1741503600,6),(735,1762063200,5),(735,1772953200,6),(735,1793512800,5),(735,1805007600,6),(735,1825567200,5),(735,1836457200,6),(735,1857016800,5),(735,1867906800,6),(735,1888466400,5),(735,1899356400,6),(735,1919916000,5),(735,1930806000,6),(735,1951365600,5),(735,1962860400,6),(735,1983420000,5),(735,1994310000,6),(735,2014869600,5),(735,2025759600,6),(735,2046319200,5),(735,2057209200,6),(735,2077768800,5),(735,2088658800,6),(735,2109218400,5),(735,2120108400,6),(735,2140668000,5),(736,-2147483648,2),(736,-1633276800,1),(736,-1615136400,2),(736,-1601827200,1),(736,-1583686800,2),(736,-880214400,3),(736,-769395600,4),(736,-765392400,2),(736,-715795200,1),(736,-702493200,2),(736,-684345600,1),(736,-671043600,2),(736,-652896000,1),(736,-639594000,2),(736,-620841600,1),(736,-608144400,2),(736,-589392000,1),(736,-576090000,2),(736,-557942400,1),(736,-544640400,2),(736,-526492800,1),(736,-513190800,2),(736,-495043200,1),(736,-481741200,2),(736,-463593600,1),(736,-447267600,2),(736,-431539200,1),(736,-415818000,2),(736,-400089600,1),(736,-386787600,2),(736,-368640000,1),(736,-355338000,2),(736,-337190400,1),(736,-321469200,2),(736,-305740800,1),(736,-289414800,2),(736,-273686400,1),(736,-257965200,2),(736,-242236800,5),(736,-195066000,2),(736,-84384000,1),(736,-68662800,2),(736,-52934400,1),(736,-37213200,2),(736,-21484800,1),(736,-5763600,2),(736,9964800,1),(736,25686000,2),(736,41414400,1),(736,57740400,2),(736,73468800,1),(736,89190000,2),(736,104918400,1),(736,120639600,2),(736,126691200,1),(736,152089200,2),(736,162374400,1),(736,183538800,2),(736,199267200,1),(736,215593200,2),(736,230716800,1),(736,247042800,2),(736,262771200,1),(736,278492400,2),(736,294220800,1),(736,309942000,2),(736,325670400,1),(736,341391600,2),(736,357120000,1),(736,372841200,2),(736,388569600,1),(736,404895600,2),(736,420019200,1),(736,436345200,2),(736,452073600,1),(736,467794800,2),(736,483523200,1),(736,499244400,2),(736,514972800,1),(736,530694000,2),(736,544608000,1),(736,562143600,2),(736,576057600,1),(736,594198000,2),(736,607507200,1),(736,625647600,2),(736,638956800,1),(736,657097200,2),(736,671011200,1),(736,688546800,5),(736,1143961200,1),(736,1162105200,2),(736,1173600000,1),(736,1194159600,2),(736,1205049600,1),(736,1225609200,2),(736,1236499200,1),(736,1257058800,2),(736,1268553600,1),(736,1289113200,2),(736,1300003200,1),(736,1320562800,2),(736,1331452800,1),(736,1352012400,2),(736,1362902400,1),(736,1383462000,2),(736,1394352000,1),(736,1414911600,2),(736,1425801600,1),(736,1446361200,2),(736,1457856000,1),(736,1478415600,2),(736,1489305600,1),(736,1509865200,2),(736,1520755200,1),(736,1541314800,2),(736,1552204800,1),(736,1572764400,2),(736,1583654400,1),(736,1604214000,2),(736,1615708800,1),(736,1636268400,2),(736,1647158400,1),(736,1667718000,2),(736,1678608000,1),(736,1699167600,2),(736,1710057600,1),(736,1730617200,2),(736,1741507200,1),(736,1762066800,2),(736,1772956800,1),(736,1793516400,2),(736,1805011200,1),(736,1825570800,2),(736,1836460800,1),(736,1857020400,2),(736,1867910400,1),(736,1888470000,2),(736,1899360000,1),(736,1919919600,2),(736,1930809600,1),(736,1951369200,2),(736,1962864000,1),(736,1983423600,2),(736,1994313600,1),(736,2014873200,2),(736,2025763200,1),(736,2046322800,2),(736,2057212800,1),(736,2077772400,2),(736,2088662400,1),(736,2109222000,2),(736,2120112000,1),(736,2140671600,2),(737,-2147483648,2),(737,-1633276800,1),(737,-1615136400,2),(737,-1601827200,1),(737,-1583686800,2),(737,-880214400,3),(737,-769395600,4),(737,-765392400,2),(737,-589392000,1),(737,-576090000,2),(737,-495043200,1),(737,-481741200,2),(737,-463593600,1),(737,-450291600,2),(737,-431539200,1),(737,-418237200,2),(737,-400089600,1),(737,-386787600,2),(737,-368640000,1),(737,-355338000,2),(737,-337190400,1),(737,-323888400,2),(737,-305740800,1),(737,-292438800,2),(737,-273686400,5),(737,-21488400,6),(737,-5767200,5),(737,9961200,6),(737,25682400,5),(737,41410800,6),(737,57736800,5),(737,73465200,6),(737,89186400,5),(737,104914800,6),(737,120636000,5),(737,126687600,1),(737,152089200,5),(737,162370800,6),(737,183535200,5),(737,1143961200,6),(737,1162101600,5),(737,1173596400,6),(737,1194156000,5),(737,1205046000,6),(737,1225605600,5),(737,1236495600,6),(737,1257055200,5),(737,1268550000,6),(737,1289109600,5),(737,1299999600,6),(737,1320559200,5),(737,1331449200,6),(737,1352008800,5),(737,1362898800,6),(737,1383458400,5),(737,1394348400,6),(737,1414908000,5),(737,1425798000,6),(737,1446357600,5),(737,1457852400,6),(737,1478412000,5),(737,1489302000,6),(737,1509861600,5),(737,1520751600,6),(737,1541311200,5),(737,1552201200,6),(737,1572760800,5),(737,1583650800,6),(737,1604210400,5),(737,1615705200,6),(737,1636264800,5),(737,1647154800,6),(737,1667714400,5),(737,1678604400,6),(737,1699164000,5),(737,1710054000,6),(737,1730613600,5),(737,1741503600,6),(737,1762063200,5),(737,1772953200,6),(737,1793512800,5),(737,1805007600,6),(737,1825567200,5),(737,1836457200,6),(737,1857016800,5),(737,1867906800,6),(737,1888466400,5),(737,1899356400,6),(737,1919916000,5),(737,1930806000,6),(737,1951365600,5),(737,1962860400,6),(737,1983420000,5),(737,1994310000,6),(737,2014869600,5),(737,2025759600,6),(737,2046319200,5),(737,2057209200,6),(737,2077768800,5),(737,2088658800,6),(737,2109218400,5),(737,2120108400,6),(737,2140668000,5),(738,-2147483648,2),(738,-1633276800,1),(738,-1615136400,2),(738,-1601827200,1),(738,-1583686800,2),(738,-880214400,3),(738,-769395600,4),(738,-765392400,2),(738,-462996000,1),(738,-450291600,2),(738,-431539200,1),(738,-418237200,2),(738,-400089600,1),(738,-386787600,2),(738,-368640000,1),(738,-355338000,2),(738,-337190400,1),(738,-323888400,2),(738,-305740800,1),(738,-292438800,2),(738,-273686400,1),(738,-257965200,2),(738,-242236800,1),(738,-226515600,2),(738,-210787200,1),(738,-195066000,2),(738,-179337600,1),(738,-163616400,2),(738,-147888000,5),(738,-100112400,2),(738,-84384000,1),(738,-68662800,2),(738,-52934400,1),(738,-37213200,2),(738,-21484800,1),(738,-5763600,2),(738,9964800,1),(738,25686000,2),(738,41414400,1),(738,57740400,2),(738,73468800,1),(738,89190000,2),(738,104918400,1),(738,120639600,2),(738,126691200,1),(738,152089200,2),(738,162374400,1),(738,183538800,2),(738,199267200,1),(738,215593200,2),(738,230716800,1),(738,247042800,5),(738,1143961200,1),(738,1162105200,2),(738,1173600000,1),(738,1194159600,5),(738,1205046000,6),(738,1225605600,5),(738,1236495600,6),(738,1257055200,5),(738,1268550000,6),(738,1289109600,5),(738,1299999600,6),(738,1320559200,5),(738,1331449200,6),(738,1352008800,5),(738,1362898800,6),(738,1383458400,5),(738,1394348400,6),(738,1414908000,5),(738,1425798000,6),(738,1446357600,5),(738,1457852400,6),(738,1478412000,5),(738,1489302000,6),(738,1509861600,5),(738,1520751600,6),(738,1541311200,5),(738,1552201200,6),(738,1572760800,5),(738,1583650800,6),(738,1604210400,5),(738,1615705200,6),(738,1636264800,5),(738,1647154800,6),(738,1667714400,5),(738,1678604400,6),(738,1699164000,5),(738,1710054000,6),(738,1730613600,5),(738,1741503600,6),(738,1762063200,5),(738,1772953200,6),(738,1793512800,5),(738,1805007600,6),(738,1825567200,5),(738,1836457200,6),(738,1857016800,5),(738,1867906800,6),(738,1888466400,5),(738,1899356400,6),(738,1919916000,5),(738,1930806000,6),(738,1951365600,5),(738,1962860400,6),(738,1983420000,5),(738,1994310000,6),(738,2014869600,5),(738,2025759600,6),(738,2046319200,5),(738,2057209200,6),(738,2077768800,5),(738,2088658800,6),(738,2109218400,5),(738,2120108400,6),(738,2140668000,5),(739,-2147483648,2),(739,-1633276800,1),(739,-1615136400,2),(739,-1601827200,1),(739,-1583686800,2),(739,-880214400,3),(739,-769395600,4),(739,-765392400,2),(739,-462996000,1),(739,-450291600,2),(739,-431539200,1),(739,-418237200,2),(739,-400089600,1),(739,-386787600,2),(739,-368640000,1),(739,-355338000,2),(739,-337190400,1),(739,-323888400,2),(739,-305740800,1),(739,-292438800,2),(739,-273686400,1),(739,-257965200,2),(739,-242236800,1),(739,-226515600,2),(739,-210787200,1),(739,-195066000,2),(739,-179337600,5),(739,-68662800,2),(739,-52934400,1),(739,-37213200,2),(739,-21484800,6),(739,-5767200,5),(739,9961200,6),(739,25682400,5),(739,1143961200,1),(739,1162105200,2),(739,1173600000,1),(739,1194159600,2),(739,1205049600,1),(739,1225609200,2),(739,1236499200,1),(739,1257058800,2),(739,1268553600,1),(739,1289113200,2),(739,1300003200,1),(739,1320562800,2),(739,1331452800,1),(739,1352012400,2),(739,1362902400,1),(739,1383462000,2),(739,1394352000,1),(739,1414911600,2),(739,1425801600,1),(739,1446361200,2),(739,1457856000,1),(739,1478415600,2),(739,1489305600,1),(739,1509865200,2),(739,1520755200,1),(739,1541314800,2),(739,1552204800,1),(739,1572764400,2),(739,1583654400,1),(739,1604214000,2),(739,1615708800,1),(739,1636268400,2),(739,1647158400,1),(739,1667718000,2),(739,1678608000,1),(739,1699167600,2),(739,1710057600,1),(739,1730617200,2),(739,1741507200,1),(739,1762066800,2),(739,1772956800,1),(739,1793516400,2),(739,1805011200,1),(739,1825570800,2),(739,1836460800,1),(739,1857020400,2),(739,1867910400,1),(739,1888470000,2),(739,1899360000,1),(739,1919919600,2),(739,1930809600,1),(739,1951369200,2),(739,1962864000,1),(739,1983423600,2),(739,1994313600,1),(739,2014873200,2),(739,2025763200,1),(739,2046322800,2),(739,2057212800,1),(739,2077772400,2),(739,2088662400,1),(739,2109222000,2),(739,2120112000,1),(739,2140671600,2),(740,-2147483648,2),(740,-1633276800,1),(740,-1615136400,2),(740,-1601827200,1),(740,-1583686800,2),(740,-880214400,3),(740,-769395600,4),(740,-765392400,2),(740,-495043200,5),(740,-21488400,6),(740,-5767200,5),(740,9961200,6),(740,25682400,5),(740,41410800,6),(740,57736800,5),(740,73465200,6),(740,89186400,5),(740,1143961200,6),(740,1162101600,5),(740,1173596400,6),(740,1194156000,5),(740,1205046000,6),(740,1225605600,5),(740,1236495600,6),(740,1257055200,5),(740,1268550000,6),(740,1289109600,5),(740,1299999600,6),(740,1320559200,5),(740,1331449200,6),(740,1352008800,5),(740,1362898800,6),(740,1383458400,5),(740,1394348400,6),(740,1414908000,5),(740,1425798000,6),(740,1446357600,5),(740,1457852400,6),(740,1478412000,5),(740,1489302000,6),(740,1509861600,5),(740,1520751600,6),(740,1541311200,5),(740,1552201200,6),(740,1572760800,5),(740,1583650800,6),(740,1604210400,5),(740,1615705200,6),(740,1636264800,5),(740,1647154800,6),(740,1667714400,5),(740,1678604400,6),(740,1699164000,5),(740,1710054000,6),(740,1730613600,5),(740,1741503600,6),(740,1762063200,5),(740,1772953200,6),(740,1793512800,5),(740,1805007600,6),(740,1825567200,5),(740,1836457200,6),(740,1857016800,5),(740,1867906800,6),(740,1888466400,5),(740,1899356400,6),(740,1919916000,5),(740,1930806000,6),(740,1951365600,5),(740,1962860400,6),(740,1983420000,5),(740,1994310000,6),(740,2014869600,5),(740,2025759600,6),(740,2046319200,5),(740,2057209200,6),(740,2077768800,5),(740,2088658800,6),(740,2109218400,5),(740,2120108400,6),(740,2140668000,5),(741,-2147483648,2),(741,-1633276800,1),(741,-1615136400,2),(741,-1601827200,1),(741,-1583686800,2),(741,-880214400,3),(741,-769395600,4),(741,-765392400,2),(741,-747244800,1),(741,-733942800,2),(741,-526492800,1),(741,-513190800,2),(741,-495043200,1),(741,-481741200,2),(741,-462996000,1),(741,-450291600,2),(741,-431539200,1),(741,-418237200,2),(741,-400089600,1),(741,-386787600,2),(741,-368640000,1),(741,-355338000,2),(741,-337190400,1),(741,-323888400,2),(741,-305740800,1),(741,-289414800,2),(741,-273686400,1),(741,-260989200,2),(741,-242236800,1),(741,-226515600,2),(741,-210787200,1),(741,-195066000,2),(741,-179337600,5),(741,-21488400,6),(741,-5767200,5),(741,9961200,6),(741,25682400,5),(741,1143961200,1),(741,1162105200,2),(741,1173600000,1),(741,1194159600,5),(741,1205046000,6),(741,1225605600,5),(741,1236495600,6),(741,1257055200,5),(741,1268550000,6),(741,1289109600,5),(741,1299999600,6),(741,1320559200,5),(741,1331449200,6),(741,1352008800,5),(741,1362898800,6),(741,1383458400,5),(741,1394348400,6),(741,1414908000,5),(741,1425798000,6),(741,1446357600,5),(741,1457852400,6),(741,1478412000,5),(741,1489302000,6),(741,1509861600,5),(741,1520751600,6),(741,1541311200,5),(741,1552201200,6),(741,1572760800,5),(741,1583650800,6),(741,1604210400,5),(741,1615705200,6),(741,1636264800,5),(741,1647154800,6),(741,1667714400,5),(741,1678604400,6),(741,1699164000,5),(741,1710054000,6),(741,1730613600,5),(741,1741503600,6),(741,1762063200,5),(741,1772953200,6),(741,1793512800,5),(741,1805007600,6),(741,1825567200,5),(741,1836457200,6),(741,1857016800,5),(741,1867906800,6),(741,1888466400,5),(741,1899356400,6),(741,1919916000,5),(741,1930806000,6),(741,1951365600,5),(741,1962860400,6),(741,1983420000,5),(741,1994310000,6),(741,2014869600,5),(741,2025759600,6),(741,2046319200,5),(741,2057209200,6),(741,2077768800,5),(741,2088658800,6),(741,2109218400,5),(741,2120108400,6),(741,2140668000,5),(742,-2147483648,2),(742,-1633276800,1),(742,-1615136400,2),(742,-1601827200,1),(742,-1583686800,2),(742,-880214400,3),(742,-769395600,4),(742,-765392400,2),(742,-747244800,1),(742,-733942800,2),(742,-715795200,1),(742,-702493200,2),(742,-684345600,1),(742,-671043600,2),(742,-652896000,1),(742,-639594000,2),(742,-620841600,1),(742,-608144400,2),(742,-589392000,1),(742,-576090000,2),(742,-557942400,1),(742,-544640400,2),(742,-526492800,1),(742,-513190800,2),(742,-495043200,1),(742,-481741200,2),(742,-463593600,1),(742,-447267600,2),(742,-431539200,1),(742,-415818000,2),(742,-400089600,1),(742,-386787600,2),(742,-368640000,1),(742,-355338000,2),(742,-337190400,1),(742,-323888400,2),(742,-305740800,1),(742,-292438800,2),(742,-273686400,5),(742,-21488400,6),(742,-5767200,5),(742,9961200,6),(742,25682400,5),(742,1143961200,1),(742,1162105200,2),(742,1173600000,6),(742,1194156000,5),(742,1205046000,6),(742,1225605600,5),(742,1236495600,6),(742,1257055200,5),(742,1268550000,6),(742,1289109600,5),(742,1299999600,6),(742,1320559200,5),(742,1331449200,6),(742,1352008800,5),(742,1362898800,6),(742,1383458400,5),(742,1394348400,6),(742,1414908000,5),(742,1425798000,6),(742,1446357600,5),(742,1457852400,6),(742,1478412000,5),(742,1489302000,6),(742,1509861600,5),(742,1520751600,6),(742,1541311200,5),(742,1552201200,6),(742,1572760800,5),(742,1583650800,6),(742,1604210400,5),(742,1615705200,6),(742,1636264800,5),(742,1647154800,6),(742,1667714400,5),(742,1678604400,6),(742,1699164000,5),(742,1710054000,6),(742,1730613600,5),(742,1741503600,6),(742,1762063200,5),(742,1772953200,6),(742,1793512800,5),(742,1805007600,6),(742,1825567200,5),(742,1836457200,6),(742,1857016800,5),(742,1867906800,6),(742,1888466400,5),(742,1899356400,6),(742,1919916000,5),(742,1930806000,6),(742,1951365600,5),(742,1962860400,6),(742,1983420000,5),(742,1994310000,6),(742,2014869600,5),(742,2025759600,6),(742,2046319200,5),(742,2057209200,6),(742,2077768800,5),(742,2088658800,6),(742,2109218400,5),(742,2120108400,6),(742,2140668000,5),(743,-2147483648,2),(743,-1633276800,1),(743,-1615136400,2),(743,-1601827200,1),(743,-1583686800,2),(743,-900259200,1),(743,-891795600,2),(743,-880214400,3),(743,-769395600,4),(743,-765392400,2),(743,-747244800,1),(743,-733942800,2),(743,-715795200,1),(743,-702493200,2),(743,-684345600,1),(743,-671043600,2),(743,-652896000,1),(743,-639594000,2),(743,-620841600,1),(743,-608144400,2),(743,-589392000,1),(743,-576090000,2),(743,-557942400,1),(743,-544640400,2),(743,-526492800,1),(743,-513190800,2),(743,-495043200,1),(743,-481741200,2),(743,-463593600,5),(743,-386787600,2),(743,-368640000,5),(743,-21488400,6),(743,-5767200,5),(743,9961200,6),(743,25682400,5),(743,1143961200,6),(743,1162101600,5),(743,1173596400,6),(743,1194156000,5),(743,1205046000,6),(743,1225605600,5),(743,1236495600,6),(743,1257055200,5),(743,1268550000,6),(743,1289109600,5),(743,1299999600,6),(743,1320559200,5),(743,1331449200,6),(743,1352008800,5),(743,1362898800,6),(743,1383458400,5),(743,1394348400,6),(743,1414908000,5),(743,1425798000,6),(743,1446357600,5),(743,1457852400,6),(743,1478412000,5),(743,1489302000,6),(743,1509861600,5),(743,1520751600,6),(743,1541311200,5),(743,1552201200,6),(743,1572760800,5),(743,1583650800,6),(743,1604210400,5),(743,1615705200,6),(743,1636264800,5),(743,1647154800,6),(743,1667714400,5),(743,1678604400,6),(743,1699164000,5),(743,1710054000,6),(743,1730613600,5),(743,1741503600,6),(743,1762063200,5),(743,1772953200,6),(743,1793512800,5),(743,1805007600,6),(743,1825567200,5),(743,1836457200,6),(743,1857016800,5),(743,1867906800,6),(743,1888466400,5),(743,1899356400,6),(743,1919916000,5),(743,1930806000,6),(743,1951365600,5),(743,1962860400,6),(743,1983420000,5),(743,1994310000,6),(743,2014869600,5),(743,2025759600,6),(743,2046319200,5),(743,2057209200,6),(743,2077768800,5),(743,2088658800,6),(743,2109218400,5),(743,2120108400,6),(743,2140668000,5),(744,-2147483648,0),(744,-536457600,2),(744,-147888000,1),(744,-131558400,2),(744,294228000,3),(744,325674000,4),(744,341395200,3),(744,357123600,4),(744,372844800,3),(744,388573200,4),(744,404899200,3),(744,420022800,4),(744,436348800,3),(744,452077200,4),(744,467798400,3),(744,483526800,4),(744,499248000,3),(744,514976400,4),(744,530697600,3),(744,544611600,4),(744,562147200,3),(744,576061200,4),(744,594201600,3),(744,607510800,4),(744,625651200,3),(744,638960400,4),(744,657100800,3),(744,671014800,4),(744,688550400,3),(744,702464400,4),(744,720000000,3),(744,733914000,4),(744,752054400,3),(744,765363600,4),(744,783504000,3),(744,796813200,4),(744,814953600,3),(744,828867600,4),(744,846403200,3),(744,860317200,4),(744,877852800,3),(744,891766800,4),(744,909302400,3),(744,923216400,4),(744,941356800,3),(744,954666000,4),(744,972806400,3),(744,986115600,4),(744,1004256000,3),(744,1018170000,4),(744,1035705600,3),(744,1049619600,4),(744,1067155200,3),(744,1081069200,4),(744,1099209600,3),(744,1112518800,4),(744,1130659200,3),(744,1143968400,4),(744,1162108800,3),(744,1173603600,4),(744,1194163200,3),(744,1205053200,4),(744,1225612800,3),(744,1236502800,4),(744,1257062400,3),(744,1268557200,4),(744,1289116800,3),(744,1300006800,4),(744,1320566400,3),(744,1331456400,4),(744,1352016000,3),(744,1362906000,4),(744,1383465600,3),(744,1394355600,4),(744,1414915200,3),(744,1425805200,4),(744,1446364800,3),(744,1457859600,4),(744,1478419200,3),(744,1489309200,4),(744,1509868800,3),(744,1520758800,4),(744,1541318400,3),(744,1552208400,4),(744,1572768000,3),(744,1583658000,4),(744,1604217600,3),(744,1615712400,4),(744,1636272000,3),(744,1647162000,4),(744,1667721600,3),(744,1678611600,4),(744,1699171200,3),(744,1710061200,4),(744,1730620800,3),(744,1741510800,4),(744,1762070400,3),(744,1772960400,4),(744,1793520000,3),(744,1805014800,4),(744,1825574400,3),(744,1836464400,4),(744,1857024000,3),(744,1867914000,4),(744,1888473600,3),(744,1899363600,4),(744,1919923200,3),(744,1930813200,4),(744,1951372800,3),(744,1962867600,4),(744,1983427200,3),(744,1994317200,4),(744,2014876800,3),(744,2025766800,4),(744,2046326400,3),(744,2057216400,4),(744,2077776000,3),(744,2088666000,4),(744,2109225600,3),(744,2120115600,4),(744,2140675200,3),(745,-2147483648,0),(745,-865296000,5),(745,-769395600,1),(745,-765396000,2),(745,-147898800,3),(745,-131569200,2),(745,325666800,4),(745,341388000,2),(745,357116400,4),(745,372837600,2),(745,388566000,4),(745,404892000,2),(745,420015600,4),(745,436341600,2),(745,452070000,4),(745,467791200,2),(745,483519600,4),(745,499240800,2),(745,514969200,4),(745,530690400,2),(745,544604400,4),(745,562140000,2),(745,576054000,4),(745,594194400,2),(745,607503600,4),(745,625644000,2),(745,638953200,4),(745,657093600,2),(745,671007600,4),(745,688543200,2),(745,702457200,4),(745,719992800,2),(745,733906800,4),(745,752047200,2),(745,765356400,4),(745,783496800,2),(745,796806000,4),(745,814946400,2),(745,828860400,4),(745,846396000,2),(745,860310000,4),(745,877845600,2),(745,891759600,4),(745,909295200,2),(745,923209200,4),(745,941349600,6),(745,954662400,7),(745,972802800,2),(745,986108400,4),(745,1004248800,2),(745,1018162800,4),(745,1035698400,2),(745,1049612400,4),(745,1067148000,2),(745,1081062000,4),(745,1099202400,2),(745,1112511600,4),(745,1130652000,2),(745,1143961200,4),(745,1162101600,2),(745,1173596400,4),(745,1194156000,2),(745,1205046000,4),(745,1225605600,2),(745,1236495600,4),(745,1257055200,2),(745,1268550000,4),(745,1289109600,2),(745,1299999600,4),(745,1320559200,2),(745,1331449200,4),(745,1352008800,2),(745,1362898800,4),(745,1383458400,2),(745,1394348400,4),(745,1414908000,2),(745,1425798000,4),(745,1446357600,2),(745,1457852400,4),(745,1478412000,2),(745,1489302000,4),(745,1509861600,2),(745,1520751600,4),(745,1541311200,2),(745,1552201200,4),(745,1572760800,2),(745,1583650800,4),(745,1604210400,2),(745,1615705200,4),(745,1636264800,2),(745,1647154800,4),(745,1667714400,2),(745,1678604400,4),(745,1699164000,2),(745,1710054000,4),(745,1730613600,2),(745,1741503600,4),(745,1762063200,2),(745,1772953200,4),(745,1793512800,2),(745,1805007600,4),(745,1825567200,2),(745,1836457200,4),(745,1857016800,2),(745,1867906800,4),(745,1888466400,2),(745,1899356400,4),(745,1919916000,2),(745,1930806000,4),(745,1951365600,2),(745,1962860400,4),(745,1983420000,2),(745,1994310000,4),(745,2014869600,2),(745,2025759600,4),(745,2046319200,2),(745,2057209200,4),(745,2077768800,2),(745,2088658800,4),(745,2109218400,2),(745,2120108400,4),(745,2140668000,2),(746,-2147483648,1),(746,-1827687170,2),(746,126687600,3),(746,152085600,2),(746,162370800,3),(746,183535200,2),(746,199263600,3),(746,215589600,2),(746,230713200,3),(746,247039200,2),(746,262767600,3),(746,278488800,2),(746,294217200,3),(746,309938400,2),(746,325666800,3),(746,341388000,2),(746,357116400,3),(746,372837600,2),(746,388566000,3),(746,404892000,2),(746,420015600,3),(746,436341600,2),(747,-2147483648,1),(747,-1567453392,2),(747,-1233432000,3),(747,-1222981200,2),(747,-1205956800,3),(747,-1194037200,2),(747,-1172865600,3),(747,-1162501200,2),(747,-1141329600,3),(747,-1130965200,2),(747,-1109793600,3),(747,-1099429200,2),(747,-1078257600,3),(747,-1067806800,2),(747,-1046635200,3),(747,-1036270800,2),(747,-1015099200,3),(747,-1004734800,2),(747,-983563200,3),(747,-973198800,2),(747,-952027200,3),(747,-941576400,2),(747,-931032000,3),(747,-900882000,2),(747,-890337600,3),(747,-833749200,2),(747,-827265600,3),(747,-752274000,2),(747,-733780800,3),(747,-197326800,2),(747,-190843200,3),(747,-184194000,2),(747,-164491200,3),(747,-152658000,2),(747,-132955200,3),(747,-121122000,2),(747,-101419200,3),(747,-86821200,2),(747,-71092800,3),(747,-54766800,2),(747,-39038400,3),(747,-23317200,2),(747,-7588800,5),(747,128142000,4),(747,136605600,5),(747,596948400,4),(747,605066400,5),(747,624423600,4),(747,636516000,2),(747,657086400,3),(747,669178800,2),(747,686721600,4),(747,699415200,5),(747,719377200,4),(747,731469600,5),(747,938919600,3),(747,952052400,5),(747,1198983600,4),(747,1205632800,5),(748,-2147483648,1),(748,-880207200,2),(748,-769395600,3),(748,-765385200,1),(748,-21477600,4),(748,-5756400,1),(748,9972000,4),(748,25693200,1),(748,41421600,4),(748,57747600,1),(748,73476000,4),(748,89197200,1),(748,104925600,4),(748,120646800,1),(748,126698400,4),(748,152096400,1),(748,162381600,4),(748,183546000,1),(748,199274400,4),(748,215600400,1),(748,230724000,4),(748,247050000,1),(748,262778400,4),(748,278499600,1),(748,294228000,4),(748,309949200,1),(748,325677600,5),(748,341402400,1),(748,357127200,4),(748,372848400,1),(748,388576800,4),(748,404902800,1),(748,420026400,4),(748,436352400,6),(748,439030800,8),(748,452084400,7),(748,467805600,8),(748,483534000,7),(748,499255200,8),(748,514983600,7),(748,530704800,8),(748,544618800,7),(748,562154400,8),(748,576068400,7),(748,594208800,8),(748,607518000,7),(748,625658400,8),(748,638967600,7),(748,657108000,8),(748,671022000,7),(748,688557600,8),(748,702471600,7),(748,720007200,8),(748,733921200,7),(748,752061600,8),(748,765370800,7),(748,783511200,8),(748,796820400,7),(748,814960800,8),(748,828874800,7),(748,846410400,8),(748,860324400,7),(748,877860000,8),(748,891774000,7),(748,909309600,8),(748,923223600,7),(748,941364000,8),(748,954673200,7),(748,972813600,8),(748,986122800,7),(748,1004263200,8),(748,1018177200,7),(748,1035712800,8),(748,1049626800,7),(748,1067162400,8),(748,1081076400,7),(748,1099216800,8),(748,1112526000,7),(748,1130666400,8),(748,1143975600,7),(748,1162116000,8),(748,1173610800,7),(748,1194170400,8),(748,1205060400,7),(748,1225620000,8),(748,1236510000,7),(748,1257069600,8),(748,1268564400,7),(748,1289124000,8),(748,1300014000,7),(748,1320573600,8),(748,1331463600,7),(748,1352023200,8),(748,1362913200,7),(748,1383472800,8),(748,1394362800,7),(748,1414922400,8),(748,1425812400,7),(748,1446372000,8),(748,1457866800,7),(748,1478426400,8),(748,1489316400,7),(748,1509876000,8),(748,1520766000,7),(748,1541325600,8),(748,1552215600,7),(748,1572775200,8),(748,1583665200,7),(748,1604224800,8),(748,1615719600,7),(748,1636279200,8),(748,1647169200,7),(748,1667728800,8),(748,1678618800,7),(748,1699178400,8),(748,1710068400,7),(748,1730628000,8),(748,1741518000,7),(748,1762077600,8),(748,1772967600,7),(748,1793527200,8),(748,1805022000,7),(748,1825581600,8),(748,1836471600,7),(748,1857031200,8),(748,1867921200,7),(748,1888480800,8),(748,1899370800,7),(748,1919930400,8),(748,1930820400,7),(748,1951380000,8),(748,1962874800,7),(748,1983434400,8),(748,1994324400,7),(748,2014884000,8),(748,2025774000,7),(748,2046333600,8),(748,2057223600,7),(748,2077783200,8),(748,2088673200,7),(748,2109232800,8),(748,2120122800,7),(748,2140682400,8),(749,-2147483648,2),(749,-1633276800,1),(749,-1615136400,2),(749,-1601827200,1),(749,-1583686800,2),(749,-1535904000,1),(749,-1525280400,2),(749,-905097600,1),(749,-891795600,2),(749,-880214400,3),(749,-769395600,4),(749,-765392400,2),(749,-747251940,1),(749,-744224400,2),(749,-620841600,1),(749,-608144400,2),(749,-589392000,1),(749,-576090000,2),(749,-557942400,1),(749,-544640400,2),(749,-526492800,1),(749,-513190800,2),(749,-495043200,1),(749,-481741200,2),(749,-463593600,1),(749,-450291600,2),(749,-431539200,1),(749,-415818000,2),(749,-400089600,1),(749,-384368400,2),(749,-368640000,1),(749,-352918800,2),(749,-337190400,1),(749,-321469200,2),(749,-305740800,1),(749,-289414800,2),(749,-273686400,1),(749,-266432400,5),(749,-52938000,6),(749,-37216800,5),(749,-21488400,6),(749,-5767200,5),(749,9961200,6),(749,25682400,5),(749,41410800,6),(749,57736800,5),(749,73465200,6),(749,89186400,5),(749,104914800,6),(749,120636000,5),(749,126687600,1),(749,152089200,5),(749,162370800,6),(749,183535200,5),(749,199263600,6),(749,215589600,5),(749,230713200,6),(749,247039200,5),(749,262767600,6),(749,278488800,5),(749,294217200,6),(749,309938400,5),(749,325666800,6),(749,341388000,5),(749,357116400,6),(749,372837600,5),(749,388566000,6),(749,404892000,5),(749,420015600,6),(749,436341600,5),(749,452070000,6),(749,467791200,5),(749,483519600,6),(749,499240800,5),(749,514969200,6),(749,530690400,5),(749,544604400,6),(749,562140000,5),(749,576054000,6),(749,594194400,5),(749,607503600,6),(749,625644000,5),(749,638953200,6),(749,657093600,5),(749,671007600,6),(749,688543200,5),(749,702457200,6),(749,719992800,5),(749,733906800,6),(749,752047200,5),(749,765356400,6),(749,783496800,5),(749,796806000,6),(749,814946400,5),(749,828860400,6),(749,846396000,5),(749,860310000,6),(749,877845600,5),(749,891759600,6),(749,909295200,5),(749,923209200,6),(749,941349600,5),(749,954658800,6),(749,972799200,5),(749,986108400,6),(749,1004248800,5),(749,1018162800,6),(749,1035698400,5),(749,1049612400,6),(749,1067148000,5),(749,1081062000,6),(749,1099202400,5),(749,1112511600,6),(749,1130652000,5),(749,1143961200,6),(749,1162101600,5),(749,1173596400,6),(749,1194156000,5),(749,1205046000,6),(749,1225605600,5),(749,1236495600,6),(749,1257055200,5),(749,1268550000,6),(749,1289109600,5),(749,1299999600,6),(749,1320559200,5),(749,1331449200,6),(749,1352008800,5),(749,1362898800,6),(749,1383458400,5),(749,1394348400,6),(749,1414908000,5),(749,1425798000,6),(749,1446357600,5),(749,1457852400,6),(749,1478412000,5),(749,1489302000,6),(749,1509861600,5),(749,1520751600,6),(749,1541311200,5),(749,1552201200,6),(749,1572760800,5),(749,1583650800,6),(749,1604210400,5),(749,1615705200,6),(749,1636264800,5),(749,1647154800,6),(749,1667714400,5),(749,1678604400,6),(749,1699164000,5),(749,1710054000,6),(749,1730613600,5),(749,1741503600,6),(749,1762063200,5),(749,1772953200,6),(749,1793512800,5),(749,1805007600,6),(749,1825567200,5),(749,1836457200,6),(749,1857016800,5),(749,1867906800,6),(749,1888466400,5),(749,1899356400,6),(749,1919916000,5),(749,1930806000,6),(749,1951365600,5),(749,1962860400,6),(749,1983420000,5),(749,1994310000,6),(749,2014869600,5),(749,2025759600,6),(749,2046319200,5),(749,2057209200,6),(749,2077768800,5),(749,2088658800,6),(749,2109218400,5),(749,2120108400,6),(749,2140668000,5),(750,-2147483648,2),(750,-1633276800,1),(750,-1615136400,2),(750,-1601827200,1),(750,-1583686800,2),(750,-880214400,3),(750,-769395600,4),(750,-765392400,2),(750,-52934400,1),(750,-37213200,2),(750,-21484800,1),(750,-5763600,2),(750,9964800,1),(750,25686000,2),(750,41414400,1),(750,57740400,2),(750,73468800,1),(750,89190000,2),(750,104918400,1),(750,120639600,2),(750,126691200,1),(750,152089200,2),(750,162374400,1),(750,183538800,2),(750,199267200,1),(750,215593200,2),(750,230716800,1),(750,247042800,2),(750,262771200,1),(750,278492400,2),(750,294220800,1),(750,309942000,2),(750,325670400,1),(750,341391600,2),(750,357120000,1),(750,372841200,2),(750,388569600,1),(750,404895600,2),(750,420019200,1),(750,436345200,2),(750,452073600,1),(750,467794800,2),(750,483523200,1),(750,499244400,2),(750,514972800,1),(750,530694000,2),(750,544608000,1),(750,562143600,2),(750,576057600,1),(750,594198000,2),(750,607507200,1),(750,625647600,2),(750,638956800,1),(750,657097200,2),(750,671011200,1),(750,688546800,2),(750,702460800,1),(750,719996400,2),(750,733910400,1),(750,752050800,2),(750,765360000,1),(750,783500400,2),(750,796809600,1),(750,814950000,2),(750,828864000,1),(750,846399600,2),(750,860313600,1),(750,877849200,2),(750,891763200,1),(750,909298800,2),(750,923212800,1),(750,941353200,2),(750,954662400,1),(750,972802800,6),(750,986108400,5),(750,1004248800,6),(750,1018162800,5),(750,1035698400,6),(750,1049612400,5),(750,1067148000,6),(750,1081062000,5),(750,1099202400,6),(750,1112511600,5),(750,1130652000,6),(750,1143961200,5),(750,1162101600,6),(750,1173596400,5),(750,1194156000,6),(750,1205046000,5),(750,1225605600,6),(750,1236495600,5),(750,1257055200,6),(750,1268550000,5),(750,1289109600,6),(750,1299999600,5),(750,1320559200,6),(750,1331449200,5),(750,1352008800,6),(750,1362898800,5),(750,1383458400,6),(750,1394348400,5),(750,1414908000,6),(750,1425798000,5),(750,1446357600,6),(750,1457852400,5),(750,1478412000,6),(750,1489302000,5),(750,1509861600,6),(750,1520751600,5),(750,1541311200,6),(750,1552201200,5),(750,1572760800,6),(750,1583650800,5),(750,1604210400,6),(750,1615705200,5),(750,1636264800,6),(750,1647154800,5),(750,1667714400,6),(750,1678604400,5),(750,1699164000,6),(750,1710054000,5),(750,1730613600,6),(750,1741503600,5),(750,1762063200,6),(750,1772953200,5),(750,1793512800,6),(750,1805007600,5),(750,1825567200,6),(750,1836457200,5),(750,1857016800,6),(750,1867906800,5),(750,1888466400,6),(750,1899356400,5),(750,1919916000,6),(750,1930806000,5),(750,1951365600,6),(750,1962860400,5),(750,1983420000,6),(750,1994310000,5),(750,2014869600,6),(750,2025759600,5),(750,2046319200,6),(750,2057209200,5),(750,2077768800,6),(750,2088658800,5),(750,2109218400,6),(750,2120108400,5),(750,2140668000,6),(751,-2147483648,2),(751,-1633276800,1),(751,-1615136400,2),(751,-1601827200,1),(751,-1583686800,2),(751,-880214400,3),(751,-769395600,4),(751,-765392400,2),(751,-715795200,1),(751,-702493200,2),(751,-684345600,1),(751,-671043600,2),(751,-652896000,1),(751,-639594000,2),(751,-620841600,1),(751,-608144400,2),(751,-589392000,1),(751,-576090000,2),(751,-557942400,1),(751,-544640400,2),(751,-526492800,1),(751,-513190800,2),(751,-495043200,1),(751,-481741200,2),(751,-463593600,1),(751,-447267600,2),(751,-431539200,1),(751,-415818000,2),(751,-400089600,1),(751,-386787600,2),(751,-368640000,1),(751,-355338000,2),(751,-337190400,1),(751,-321469200,2),(751,-305740800,1),(751,-289414800,2),(751,-273686400,1),(751,-257965200,2),(751,-242236800,5),(751,-195066000,2),(751,-84384000,1),(751,-68662800,2),(751,-52934400,1),(751,-37213200,2),(751,-21484800,1),(751,-5763600,2),(751,9964800,1),(751,25686000,2),(751,41414400,1),(751,57740400,2),(751,73468800,1),(751,89190000,2),(751,104918400,1),(751,120639600,2),(751,126691200,1),(751,152089200,2),(751,162374400,1),(751,183538800,2),(751,199267200,1),(751,215593200,2),(751,230716800,1),(751,247042800,2),(751,262771200,1),(751,278492400,2),(751,294220800,1),(751,309942000,2),(751,325670400,1),(751,341391600,2),(751,357120000,1),(751,372841200,2),(751,388569600,1),(751,404895600,2),(751,420019200,1),(751,436345200,2),(751,452073600,1),(751,467794800,2),(751,483523200,1),(751,499244400,2),(751,514972800,1),(751,530694000,2),(751,544608000,1),(751,562143600,2),(751,576057600,1),(751,594198000,2),(751,607507200,1),(751,625647600,2),(751,638956800,1),(751,657097200,2),(751,671011200,1),(751,688546800,5),(751,1143961200,1),(751,1162105200,2),(751,1173600000,1),(751,1194159600,2),(751,1205049600,1),(751,1225609200,2),(751,1236499200,1),(751,1257058800,2),(751,1268553600,1),(751,1289113200,2),(751,1300003200,1),(751,1320562800,2),(751,1331452800,1),(751,1352012400,2),(751,1362902400,1),(751,1383462000,2),(751,1394352000,1),(751,1414911600,2),(751,1425801600,1),(751,1446361200,2),(751,1457856000,1),(751,1478415600,2),(751,1489305600,1),(751,1509865200,2),(751,1520755200,1),(751,1541314800,2),(751,1552204800,1),(751,1572764400,2),(751,1583654400,1),(751,1604214000,2),(751,1615708800,1),(751,1636268400,2),(751,1647158400,1),(751,1667718000,2),(751,1678608000,1),(751,1699167600,2),(751,1710057600,1),(751,1730617200,2),(751,1741507200,1),(751,1762066800,2),(751,1772956800,1),(751,1793516400,2),(751,1805011200,1),(751,1825570800,2),(751,1836460800,1),(751,1857020400,2),(751,1867910400,1),(751,1888470000,2),(751,1899360000,1),(751,1919919600,2),(751,1930809600,1),(751,1951369200,2),(751,1962864000,1),(751,1983423600,2),(751,1994313600,1),(751,2014873200,2),(751,2025763200,1),(751,2046322800,2),(751,2057212800,1),(751,2077772400,2),(751,2088662400,1),(751,2109222000,2),(751,2120112000,1),(751,2140671600,2),(752,-2147483648,0),(752,-1826738653,1),(752,-157750200,2),(753,-2147483648,1),(753,-1205954844,2),(753,-1192307244,3),(754,-2147483648,1),(754,-1938538284,3),(754,-1009825200,2),(754,-1002052800,3),(754,-986756400,2),(754,-971035200,3),(754,-955306800,2),(754,-939585600,3),(754,504939600,2),(754,512712000,3),(754,536475600,2),(754,544248000,3),(754,631170000,2),(754,638942400,3),(754,757400400,2),(754,765172800,3),(755,-2147483648,2),(755,-1633269600,1),(755,-1615129200,2),(755,-1601820000,1),(755,-1583679600,2),(755,-880207200,3),(755,-769395600,4),(755,-765385200,2),(755,-687967140,1),(755,-662655600,2),(755,-620838000,1),(755,-608137200,2),(755,-589388400,1),(755,-576082800,2),(755,-557938800,1),(755,-544633200,2),(755,-526489200,1),(755,-513183600,2),(755,-495039600,1),(755,-481734000,2),(755,-463590000,1),(755,-450284400,2),(755,-431535600,1),(755,-418230000,2),(755,-400086000,1),(755,-386780400,2),(755,-368636400,1),(755,-355330800,2),(755,-337186800,1),(755,-323881200,2),(755,-305737200,1),(755,-292431600,2),(755,-273682800,1),(755,-260982000,2),(755,-242233200,1),(755,-226508400,2),(755,-210783600,1),(755,-195058800,2),(755,-179334000,1),(755,-163609200,2),(755,-147884400,1),(755,-131554800,2),(755,-116434800,1),(755,-100105200,2),(755,-84376800,1),(755,-68655600,2),(755,-52927200,1),(755,-37206000,2),(755,-21477600,1),(755,-5756400,2),(755,9972000,1),(755,25693200,2),(755,41421600,1),(755,57747600,2),(755,73476000,1),(755,89197200,2),(755,104925600,1),(755,120646800,2),(755,126698400,1),(755,152096400,2),(755,162381600,1),(755,183546000,2),(755,199274400,1),(755,215600400,2),(755,230724000,1),(755,247050000,2),(755,262778400,1),(755,278499600,2),(755,294228000,1),(755,309949200,2),(755,325677600,1),(755,341398800,2),(755,357127200,1),(755,372848400,2),(755,388576800,1),(755,404902800,2),(755,420026400,1),(755,436352400,2),(755,452080800,1),(755,467802000,2),(755,483530400,1),(755,499251600,2),(755,514980000,1),(755,530701200,2),(755,544615200,1),(755,562150800,2),(755,576064800,1),(755,594205200,2),(755,607514400,1),(755,625654800,2),(755,638964000,1),(755,657104400,2),(755,671018400,1),(755,688554000,2),(755,702468000,1),(755,720003600,2),(755,733917600,1),(755,752058000,2),(755,765367200,1),(755,783507600,2),(755,796816800,1),(755,814957200,2),(755,828871200,1),(755,846406800,2),(755,860320800,1),(755,877856400,2),(755,891770400,1),(755,909306000,2),(755,923220000,1),(755,941360400,2),(755,954669600,1),(755,972810000,2),(755,986119200,1),(755,1004259600,2),(755,1018173600,1),(755,1035709200,2),(755,1049623200,1),(755,1067158800,2),(755,1081072800,1),(755,1099213200,2),(755,1112522400,1),(755,1130662800,2),(755,1143972000,1),(755,1162112400,2),(755,1173607200,1),(755,1194166800,2),(755,1205056800,1),(755,1225616400,2),(755,1236506400,1),(755,1257066000,2),(755,1268560800,1),(755,1289120400,2),(755,1300010400,1),(755,1320570000,2),(755,1331460000,1),(755,1352019600,2),(755,1362909600,1),(755,1383469200,2),(755,1394359200,1),(755,1414918800,2),(755,1425808800,1),(755,1446368400,2),(755,1457863200,1),(755,1478422800,2),(755,1489312800,1),(755,1509872400,2),(755,1520762400,1),(755,1541322000,2),(755,1552212000,1),(755,1572771600,2),(755,1583661600,1),(755,1604221200,2),(755,1615716000,1),(755,1636275600,2),(755,1647165600,1),(755,1667725200,2),(755,1678615200,1),(755,1699174800,2),(755,1710064800,1),(755,1730624400,2),(755,1741514400,1),(755,1762074000,2),(755,1772964000,1),(755,1793523600,2),(755,1805018400,1),(755,1825578000,2),(755,1836468000,1),(755,1857027600,2),(755,1867917600,1),(755,1888477200,2),(755,1899367200,1),(755,1919926800,2),(755,1930816800,1),(755,1951376400,2),(755,1962871200,1),(755,1983430800,2),(755,1994320800,1),(755,2014880400,2),(755,2025770400,1),(755,2046330000,2),(755,2057220000,1),(755,2077779600,2),(755,2088669600,1),(755,2109229200,2),(755,2120119200,1),(755,2140678800,2),(756,-2147483648,2),(756,-1633276800,1),(756,-1615136400,2),(756,-1601827200,1),(756,-1583686800,2),(756,-1535904000,1),(756,-1525280400,2),(756,-905097600,1),(756,-891795600,2),(756,-880214400,3),(756,-769395600,4),(756,-765392400,2),(756,-747251940,1),(756,-744224400,2),(756,-620841600,1),(756,-608144400,2),(756,-589392000,1),(756,-576090000,2),(756,-557942400,1),(756,-544640400,2),(756,-526492800,1),(756,-513190800,2),(756,-495043200,1),(756,-481741200,2),(756,-463593600,1),(756,-450291600,2),(756,-431539200,1),(756,-415818000,2),(756,-400089600,1),(756,-384368400,2),(756,-368640000,1),(756,-352918800,2),(756,-337190400,1),(756,-321469200,2),(756,-305740800,1),(756,-289414800,2),(756,-273686400,1),(756,-266432400,5),(756,-52938000,6),(756,-37216800,5),(756,-21488400,6),(756,-5767200,5),(756,9961200,6),(756,25682400,5),(756,41410800,6),(756,57736800,5),(756,73465200,6),(756,89186400,5),(756,104914800,6),(756,120636000,5),(756,126687600,1),(756,152089200,5),(756,162370800,6),(756,183535200,5),(756,199263600,6),(756,215589600,5),(756,230713200,6),(756,247039200,5),(756,262767600,6),(756,278488800,5),(756,294217200,6),(756,309938400,5),(756,325666800,6),(756,341388000,5),(756,357116400,6),(756,372837600,5),(756,388566000,6),(756,404892000,5),(756,420015600,6),(756,436341600,5),(756,452070000,6),(756,467791200,5),(756,483519600,6),(756,499240800,5),(756,514969200,6),(756,530690400,5),(756,544604400,6),(756,562140000,5),(756,576054000,6),(756,594194400,5),(756,607503600,6),(756,625644000,5),(756,638953200,6),(756,657093600,5),(756,671007600,6),(756,688543200,5),(756,702457200,6),(756,719992800,5),(756,733906800,6),(756,752047200,5),(756,765356400,6),(756,783496800,5),(756,796806000,6),(756,814946400,5),(756,828860400,6),(756,846396000,5),(756,860310000,6),(756,877845600,5),(756,891759600,6),(756,909295200,5),(756,923209200,6),(756,941349600,5),(756,954658800,6),(756,972799200,5),(756,986108400,6),(756,1004248800,5),(756,1018162800,6),(756,1035698400,5),(756,1049612400,6),(756,1067148000,5),(756,1081062000,6),(756,1099202400,5),(756,1112511600,6),(756,1130652000,5),(756,1143961200,6),(756,1162101600,5),(756,1173596400,6),(756,1194156000,5),(756,1205046000,6),(756,1225605600,5),(756,1236495600,6),(756,1257055200,5),(756,1268550000,6),(756,1289109600,5),(756,1299999600,6),(756,1320559200,5),(756,1331449200,6),(756,1352008800,5),(756,1362898800,6),(756,1383458400,5),(756,1394348400,6),(756,1414908000,5),(756,1425798000,6),(756,1446357600,5),(756,1457852400,6),(756,1478412000,5),(756,1489302000,6),(756,1509861600,5),(756,1520751600,6),(756,1541311200,5),(756,1552201200,6),(756,1572760800,5),(756,1583650800,6),(756,1604210400,5),(756,1615705200,6),(756,1636264800,5),(756,1647154800,6),(756,1667714400,5),(756,1678604400,6),(756,1699164000,5),(756,1710054000,6),(756,1730613600,5),(756,1741503600,6),(756,1762063200,5),(756,1772953200,6),(756,1793512800,5),(756,1805007600,6),(756,1825567200,5),(756,1836457200,6),(756,1857016800,5),(756,1867906800,6),(756,1888466400,5),(756,1899356400,6),(756,1919916000,5),(756,1930806000,6),(756,1951365600,5),(756,1962860400,6),(756,1983420000,5),(756,1994310000,6),(756,2014869600,5),(756,2025759600,6),(756,2046319200,5),(756,2057209200,6),(756,2077768800,5),(756,2088658800,6),(756,2109218400,5),(756,2120108400,6),(756,2140668000,5),(757,-2147483648,0),(757,-1826738653,1),(757,-157750200,2),(758,-2147483648,0),(758,-1767217028,2),(758,-1206957600,1),(758,-1191362400,2),(758,-1175374800,1),(758,-1159826400,2),(758,-633819600,1),(758,-622069200,2),(758,-602283600,1),(758,-591832800,2),(758,-570747600,1),(758,-560210400,2),(758,-539125200,1),(758,-531352800,2),(758,-191365200,1),(758,-184197600,2),(758,-155163600,1),(758,-150069600,2),(758,-128898000,1),(758,-121125600,2),(758,-99954000,1),(758,-89589600,2),(758,-68418000,1),(758,-57967200,2),(758,499748400,1),(758,511236000,2),(758,530593200,1),(758,540266400,2),(758,562129200,1),(758,571197600,2),(758,592974000,1),(758,602042400,2),(758,624423600,1),(758,634701600,2),(758,813726000,1),(758,824004000,2),(758,938919600,1),(758,951616800,2),(758,970974000,1),(758,972180000,2),(758,1003028400,1),(758,1013911200,2),(759,-2147483648,1),(759,-1121105688,2),(759,105084000,3),(759,161758800,2),(759,290584800,4),(759,299134800,2),(759,322034400,4),(759,330584400,2),(759,694260000,3),(759,717310800,2),(759,725868000,3),(759,852094800,2),(759,1113112800,4),(759,1128229200,2),(759,1146384000,4),(759,1159682400,2),(760,-2147483648,0),(760,-1767211196,2),(760,-1206954000,1),(760,-1191358800,2),(760,-1175371200,1),(760,-1159822800,2),(760,-633816000,1),(760,-622065600,2),(760,-602280000,1),(760,-591829200,2),(760,-570744000,1),(760,-560206800,2),(760,-539121600,1),(760,-531349200,2),(760,-191361600,1),(760,-184194000,2),(760,-155160000,1),(760,-150066000,2),(760,-128894400,1),(760,-121122000,2),(760,-99950400,1),(760,-89586000,2),(760,-68414400,1),(760,-57963600,2),(760,499752000,1),(760,511239600,2),(760,530596800,1),(760,540270000,2),(760,562132800,1),(760,571201200,2),(760,750830400,1),(760,761713200,2),(761,-2147483648,0),(761,-1825098836,1),(762,-2147483648,1),(762,-1851537340,2),(762,323841600,3),(762,338958000,2),(763,-2147483648,0),(763,-1514743200,1),(763,576057600,2),(763,594198000,1),(763,828864000,2),(763,846399600,1),(763,860313600,2),(763,877849200,1),(763,891763200,2),(763,909298800,1),(763,923212800,2),(763,941353200,1),(763,954662400,2),(763,972802800,1),(763,989136000,2),(763,1001833200,1),(763,1018166400,2),(763,1035702000,1),(763,1049616000,2),(763,1067151600,1),(763,1081065600,2),(763,1099206000,1),(763,1112515200,2),(763,1130655600,1),(763,1143964800,2),(763,1162105200,1),(763,1175414400,2),(763,1193554800,1),(763,1207468800,2),(763,1225004400,1),(763,1238918400,2),(763,1256454000,1),(763,1268553600,2),(763,1289113200,1),(763,1300003200,2),(763,1320562800,1),(763,1331452800,2),(763,1352012400,1),(763,1362902400,2),(763,1383462000,1),(763,1394352000,2),(763,1414911600,1),(763,1425801600,2),(763,1446361200,1),(763,1457856000,2),(763,1478415600,1),(763,1489305600,2),(763,1509865200,1),(763,1520755200,2),(763,1541314800,1),(763,1552204800,2),(763,1572764400,1),(763,1583654400,2),(763,1604214000,1),(763,1615708800,2),(763,1636268400,1),(763,1647158400,2),(763,1667718000,1),(763,1678608000,2),(763,1699167600,1),(763,1710057600,2),(763,1730617200,1),(763,1741507200,2),(763,1762066800,1),(763,1772956800,2),(763,1793516400,1),(763,1805011200,2),(763,1825570800,1),(763,1836460800,2),(763,1857020400,1),(763,1867910400,2),(763,1888470000,1),(763,1899360000,2),(763,1919919600,1),(763,1930809600,2),(763,1951369200,1),(763,1962864000,2),(763,1983423600,1),(763,1994313600,2),(763,2014873200,1),(763,2025763200,2),(763,2046322800,1),(763,2057212800,2),(763,2077772400,1),(763,2088662400,2),(763,2109222000,1),(763,2120112000,2),(763,2140671600,1),(764,-2147483648,0),(764,-1514739600,1),(764,-1343066400,2),(764,-1234807200,1),(764,-1220292000,2),(764,-1207159200,1),(764,-1191344400,2),(764,-873828000,1),(764,-661539600,3),(764,28800,1),(764,828867600,4),(764,846403200,1),(764,860317200,4),(764,877852800,1),(764,891766800,4),(764,909302400,1),(764,923216400,4),(764,941356800,1),(764,954666000,4),(764,972806400,1),(764,989139600,4),(764,1001836800,1),(764,1018170000,4),(764,1035705600,1),(764,1049619600,4),(764,1067155200,1),(764,1081069200,4),(764,1099209600,1),(764,1112518800,4),(764,1130659200,1),(764,1143968400,4),(764,1162108800,1),(764,1175418000,4),(764,1193558400,1),(764,1207472400,4),(764,1225008000,1),(764,1238922000,4),(764,1256457600,1),(764,1270371600,4),(764,1288512000,1),(764,1301821200,4),(764,1319961600,1),(764,1333270800,4),(764,1351411200,1),(764,1365325200,4),(764,1382860800,1),(764,1396774800,4),(764,1414310400,1),(764,1428224400,4),(764,1445760000,1),(764,1459674000,4),(764,1477814400,1),(764,1491123600,4),(764,1509264000,1),(764,1522573200,4),(764,1540713600,1),(764,1554627600,4),(764,1572163200,1),(764,1586077200,4),(764,1603612800,1),(764,1617526800,4),(764,1635667200,1),(764,1648976400,4),(764,1667116800,1),(764,1680426000,4),(764,1698566400,1),(764,1712480400,4),(764,1730016000,1),(764,1743930000,4),(764,1761465600,1),(764,1775379600,4),(764,1792915200,1),(764,1806829200,4),(764,1824969600,1),(764,1838278800,4),(764,1856419200,1),(764,1869728400,4),(764,1887868800,1),(764,1901782800,4),(764,1919318400,1),(764,1933232400,4),(764,1950768000,1),(764,1964682000,4),(764,1982822400,1),(764,1996131600,4),(764,2014272000,1),(764,2027581200,4),(764,2045721600,1),(764,2059030800,4),(764,2077171200,1),(764,2091085200,4),(764,2108620800,1),(764,2122534800,4),(764,2140070400,1),(765,-2147483648,1),(765,-1567453392,2),(765,-1233432000,3),(765,-1222981200,2),(765,-1205956800,3),(765,-1194037200,2),(765,-1172865600,3),(765,-1162501200,2),(765,-1141329600,3),(765,-1130965200,2),(765,-1109793600,3),(765,-1099429200,2),(765,-1078257600,3),(765,-1067806800,2),(765,-1046635200,3),(765,-1036270800,2),(765,-1015099200,3),(765,-1004734800,2),(765,-983563200,3),(765,-973198800,2),(765,-952027200,3),(765,-941576400,2),(765,-931032000,3),(765,-900882000,2),(765,-890337600,3),(765,-833749200,2),(765,-827265600,3),(765,-752274000,2),(765,-733780800,3),(765,-197326800,2),(765,-190843200,3),(765,-184194000,2),(765,-164491200,3),(765,-152658000,2),(765,-132955200,3),(765,-121122000,2),(765,-101419200,3),(765,-86821200,2),(765,-71092800,3),(765,-54766800,2),(765,-39038400,3),(765,-23317200,2),(765,-7588800,5),(765,128142000,4),(765,136605600,5),(765,596948400,4),(765,605066400,5),(765,624423600,4),(765,636516000,2),(765,655963200,3),(765,667796400,2),(765,687499200,3),(765,699418800,2),(765,719380800,4),(765,731469600,5),(765,938919600,3),(765,952052400,5),(765,1085281200,2),(765,1096171200,5),(765,1198983600,4),(765,1205632800,5),(766,-2147483648,2),(766,-1633276800,1),(766,-1615136400,2),(766,-1601827200,1),(766,-1583686800,2),(766,-880214400,3),(766,-769395600,4),(766,-765392400,2),(766,-747244800,1),(766,-733942800,2),(766,-116438400,1),(766,-100112400,2),(766,-21484800,5),(766,104914800,1),(766,120639600,2),(766,126691200,1),(766,152089200,2),(766,162374400,1),(766,183538800,2),(766,199267200,1),(766,215593200,2),(766,230716800,1),(766,247042800,2),(766,262771200,1),(766,278492400,2),(766,294220800,1),(766,309942000,2),(766,325670400,1),(766,341391600,2),(766,357120000,1),(766,372841200,2),(766,388569600,1),(766,404895600,2),(766,420019200,1),(766,436345200,2),(766,452073600,1),(766,467794800,2),(766,483523200,1),(766,499244400,2),(766,514972800,1),(766,530694000,2),(766,544608000,1),(766,562143600,2),(766,576057600,1),(766,594198000,2),(766,607507200,1),(766,625647600,2),(766,638956800,1),(766,657097200,2),(766,671011200,1),(766,688546800,2),(766,702460800,1),(766,719996400,2),(766,733910400,1),(766,752050800,2),(766,765360000,1),(766,783500400,2),(766,796809600,1),(766,814950000,2),(766,828864000,1),(766,846399600,2),(766,860313600,1),(766,877849200,2),(766,891763200,1),(766,909298800,2),(766,923212800,1),(766,941353200,2),(766,954662400,1),(766,972802800,2),(766,986112000,1),(766,1004252400,2),(766,1018166400,1),(766,1035702000,2),(766,1049616000,1),(766,1067151600,2),(766,1081065600,1),(766,1099206000,2),(766,1112515200,1),(766,1130655600,2),(766,1143964800,1),(766,1162105200,2),(766,1173600000,1),(766,1194159600,2),(766,1205049600,1),(766,1225609200,2),(766,1236499200,1),(766,1257058800,2),(766,1268553600,1),(766,1289113200,2),(766,1300003200,1),(766,1320562800,2),(766,1331452800,1),(766,1352012400,2),(766,1362902400,1),(766,1383462000,2),(766,1394352000,1),(766,1414911600,2),(766,1425801600,1),(766,1446361200,2),(766,1457856000,1),(766,1478415600,2),(766,1489305600,1),(766,1509865200,2),(766,1520755200,1),(766,1541314800,2),(766,1552204800,1),(766,1572764400,2),(766,1583654400,1),(766,1604214000,2),(766,1615708800,1),(766,1636268400,2),(766,1647158400,1),(766,1667718000,2),(766,1678608000,1),(766,1699167600,2),(766,1710057600,1),(766,1730617200,2),(766,1741507200,1),(766,1762066800,2),(766,1772956800,1),(766,1793516400,2),(766,1805011200,1),(766,1825570800,2),(766,1836460800,1),(766,1857020400,2),(766,1867910400,1),(766,1888470000,2),(766,1899360000,1),(766,1919919600,2),(766,1930809600,1),(766,1951369200,2),(766,1962864000,1),(766,1983423600,2),(766,1994313600,1),(766,2014873200,2),(766,2025763200,1),(766,2046322800,2),(766,2057212800,1),(766,2077772400,2),(766,2088662400,1),(766,2109222000,2),(766,2120112000,1),(766,2140671600,2),(767,-2147483648,0),(767,-1514743200,1),(767,377935200,2),(767,407653200,1),(767,828864000,3),(767,846399600,1),(767,860313600,3),(767,877849200,1),(767,891763200,3),(767,909298800,1),(767,923212800,3),(767,941353200,1),(767,954662400,3),(767,972802800,1),(767,989136000,3),(767,1001833200,1),(767,1018166400,3),(767,1035702000,1),(767,1049616000,3),(767,1067151600,1),(767,1081065600,3),(767,1099206000,1),(767,1112515200,3),(767,1130655600,1),(767,1143964800,3),(767,1162105200,1),(767,1175414400,3),(767,1193554800,1),(767,1207468800,3),(767,1225004400,1),(767,1238918400,3),(767,1256454000,1),(767,1270368000,3),(767,1288508400,1),(767,1301817600,3),(767,1319958000,1),(767,1333267200,3),(767,1351407600,1),(767,1365321600,3),(767,1382857200,1),(767,1396771200,3),(767,1414306800,1),(767,1428220800,3),(767,1445756400,1),(767,1459670400,3),(767,1477810800,1),(767,1491120000,3),(767,1509260400,1),(767,1522569600,3),(767,1540710000,1),(767,1554624000,3),(767,1572159600,1),(767,1586073600,3),(767,1603609200,1),(767,1617523200,3),(767,1635663600,1),(767,1648972800,3),(767,1667113200,1),(767,1680422400,3),(767,1698562800,1),(767,1712476800,3),(767,1730012400,1),(767,1743926400,3),(767,1761462000,1),(767,1775376000,3),(767,1792911600,1),(767,1806825600,3),(767,1824966000,1),(767,1838275200,3),(767,1856415600,1),(767,1869724800,3),(767,1887865200,1),(767,1901779200,3),(767,1919314800,1),(767,1933228800,3),(767,1950764400,1),(767,1964678400,3),(767,1982818800,1),(767,1996128000,3),(767,2014268400,1),(767,2027577600,3),(767,2045718000,1),(767,2059027200,3),(767,2077167600,1),(767,2091081600,3),(767,2108617200,1),(767,2122531200,3),(767,2140066800,1),(768,-2147483648,1),(768,-880207200,2),(768,-769395600,3),(768,-765385200,1),(768,-21477600,4),(768,-5756400,1),(768,9972000,4),(768,25693200,1),(768,41421600,4),(768,57747600,1),(768,73476000,4),(768,89197200,1),(768,104925600,4),(768,120646800,1),(768,126698400,4),(768,152096400,1),(768,162381600,4),(768,183546000,1),(768,199274400,4),(768,215600400,1),(768,230724000,4),(768,247050000,1),(768,262778400,4),(768,278499600,1),(768,294228000,4),(768,309949200,1),(768,325677600,4),(768,341398800,1),(768,357127200,4),(768,372848400,1),(768,388576800,4),(768,404902800,1),(768,420026400,4),(768,436352400,1),(768,1446372000,5),(768,1457866800,6),(768,1478426400,5),(768,1489316400,6),(768,1509876000,5),(768,1520766000,6),(768,1541325600,1),(768,1547978400,5),(768,1552215600,6),(768,1572775200,5),(768,1583665200,6),(768,1604224800,5),(768,1615719600,6),(768,1636279200,5),(768,1647169200,6),(768,1667728800,5),(768,1678618800,6),(768,1699178400,5),(768,1710068400,6),(768,1730628000,5),(768,1741518000,6),(768,1762077600,5),(768,1772967600,6),(768,1793527200,5),(768,1805022000,6),(768,1825581600,5),(768,1836471600,6),(768,1857031200,5),(768,1867921200,6),(768,1888480800,5),(768,1899370800,6),(768,1919930400,5),(768,1930820400,6),(768,1951380000,5),(768,1962874800,6),(768,1983434400,5),(768,1994324400,6),(768,2014884000,5),(768,2025774000,6),(768,2046333600,5),(768,2057223600,6),(768,2077783200,5),(768,2088673200,6),(768,2109232800,5),(768,2120122800,6),(768,2140682400,5),(769,-2147483648,0),(769,-1514739600,1),(769,-1343066400,2),(769,-1234807200,1),(769,-1220292000,2),(769,-1207159200,1),(769,-1191344400,2),(769,-975261600,3),(769,-963169200,2),(769,-917114400,3),(769,-907354800,2),(769,-821901600,4),(769,-810068400,2),(769,-627501600,3),(769,-612990000,2),(769,828864000,3),(769,846399600,2),(769,860313600,3),(769,877849200,2),(769,891763200,3),(769,909298800,2),(769,923212800,3),(769,941353200,2),(769,954662400,3),(769,972802800,2),(769,989136000,3),(769,1001833200,2),(769,1018166400,3),(769,1035702000,2),(769,1049616000,3),(769,1067151600,2),(769,1081065600,3),(769,1099206000,2),(769,1112515200,3),(769,1130655600,2),(769,1143964800,3),(769,1162105200,2),(769,1175414400,3),(769,1193554800,2),(769,1207468800,3),(769,1225004400,2),(769,1238918400,3),(769,1256454000,2),(769,1270368000,3),(769,1288508400,2),(769,1301817600,3),(769,1319958000,2),(769,1333267200,3),(769,1351407600,2),(769,1365321600,3),(769,1382857200,2),(769,1396771200,3),(769,1414306800,2),(769,1428220800,3),(769,1445756400,2),(769,1459670400,3),(769,1477810800,2),(769,1491120000,3),(769,1509260400,2),(769,1522569600,3),(769,1540710000,2),(769,1554624000,3),(769,1572159600,2),(769,1586073600,3),(769,1603609200,2),(769,1617523200,3),(769,1635663600,2),(769,1648972800,3),(769,1667113200,2),(769,1680422400,3),(769,1698562800,2),(769,1712476800,3),(769,1730012400,2),(769,1743926400,3),(769,1761462000,2),(769,1775376000,3),(769,1792911600,2),(769,1806825600,3),(769,1824966000,2),(769,1838275200,3),(769,1856415600,2),(769,1869724800,3),(769,1887865200,2),(769,1901779200,3),(769,1919314800,2),(769,1933228800,3),(769,1950764400,2),(769,1964678400,3),(769,1982818800,2),(769,1996128000,3),(769,2014268400,2),(769,2027577600,3),(769,2045718000,2),(769,2059027200,3),(769,2077167600,2),(769,2091081600,3),(769,2108617200,2),(769,2122531200,3),(769,2140066800,2),(770,-2147483648,0),(770,-1850328920,1),(770,326001600,2),(770,544597200,3),(770,562132800,2),(770,576046800,3),(770,594187200,2),(770,607496400,3),(770,625636800,2),(770,638946000,3),(770,657086400,2),(770,671000400,3),(770,688536000,2),(770,702450000,3),(770,719985600,2),(770,733899600,3),(770,752040000,2),(770,765349200,3),(770,783489600,2),(770,796798800,3),(770,814939200,2),(770,828853200,3),(770,846388800,2),(770,860302800,3),(770,877838400,2),(770,891752400,3),(770,909288000,2),(770,923202000,3),(770,941342400,2),(770,954651600,3),(770,972792000,2),(770,986101200,3),(770,1004241600,2),(770,1018155600,3),(770,1035691200,2),(770,1049605200,3),(770,1067140800,2),(770,1081054800,3),(770,1099195200,2),(770,1112504400,3),(770,1130644800,2),(770,1143954000,3),(770,1162094400,2),(770,1173589200,3),(770,1194148800,2),(770,1205038800,3),(770,1225598400,2),(770,1236488400,3),(770,1257048000,2),(770,1268542800,3),(770,1289102400,2),(770,1299992400,3),(770,1320552000,2),(770,1331442000,3),(770,1352001600,2),(770,1362891600,3),(770,1383451200,2),(770,1394341200,3),(770,1414900800,2),(770,1425790800,3),(770,1446350400,2),(770,1457845200,3),(770,1478404800,2),(770,1489294800,3),(770,1509854400,2),(770,1520744400,3),(770,1541304000,2),(770,1552194000,3),(770,1572753600,2),(770,1583643600,3),(770,1604203200,2),(770,1615698000,3),(770,1636257600,2),(770,1647147600,3),(770,1667707200,2),(770,1678597200,3),(770,1699156800,2),(770,1710046800,3),(770,1730606400,2),(770,1741496400,3),(770,1762056000,2),(770,1772946000,3),(770,1793505600,2),(770,1805000400,3),(770,1825560000,2),(770,1836450000,3),(770,1857009600,2),(770,1867899600,3),(770,1888459200,2),(770,1899349200,3),(770,1919908800,2),(770,1930798800,3),(770,1951358400,2),(770,1962853200,3),(770,1983412800,2),(770,1994302800,3),(770,2014862400,2),(770,2025752400,3),(770,2046312000,2),(770,2057202000,3),(770,2077761600,2),(770,2088651600,3),(770,2109211200,2),(770,2120101200,3),(770,2140660800,2),(771,-2147483648,1),(771,-2131642800,3),(771,-1632074400,2),(771,-1615143600,3),(771,-1153681200,2),(771,-1145822400,3),(771,-1122231600,2),(771,-1114372800,3),(771,-1090782000,2),(771,-1082923200,3),(771,-1059332400,2),(771,-1051473600,3),(771,-1027882800,2),(771,-1020024000,3),(771,-996433200,2),(771,-988574400,3),(771,-965674800,2),(771,-955396800,3),(771,-934743600,2),(771,-923947200,3),(771,-904503600,2),(771,-891892800,3),(771,-880221600,4),(771,-769395600,5),(771,-765399600,3),(771,-747252000,2),(771,-733950000,3),(771,-715802400,2),(771,-702500400,3),(771,-684352800,2),(771,-671050800,3),(771,-652903200,2),(771,-639601200,3),(771,-620848800,2),(771,-608151600,3),(771,-589399200,2),(771,-576097200,3),(771,-557949600,2),(771,-544647600,3),(771,-526500000,2),(771,-513198000,3),(771,-495050400,2),(771,-481748400,3),(771,-463600800,2),(771,-450298800,3),(771,-431546400,2),(771,-418244400,3),(771,-400096800,2),(771,-384375600,3),(771,-368647200,2),(771,-352926000,3),(771,-337197600,2),(771,-321476400,3),(771,-305748000,2),(771,-289422000,3),(771,-273693600,2),(771,-257972400,3),(771,-242244000,2),(771,-226522800,3),(771,-210794400,2),(771,-195073200,3),(771,-179344800,2),(771,-163623600,3),(771,-147895200,2),(771,-131569200,3),(771,-116445600,2),(771,-100119600,3),(771,-84391200,2),(771,-68670000,3),(771,-52941600,2),(771,-37220400,3),(771,-21492000,2),(771,-5770800,3),(771,9957600,2),(771,25678800,3),(771,41407200,2),(771,57733200,3),(771,73461600,2),(771,89182800,3),(771,136360800,2),(771,152082000,3),(771,167810400,2),(771,183531600,3),(771,199260000,2),(771,215586000,3),(771,230709600,2),(771,247035600,3),(771,262764000,2),(771,278485200,3),(771,294213600,2),(771,309934800,3),(771,325663200,2),(771,341384400,3),(771,357112800,2),(771,372834000,3),(771,388562400,2),(771,404888400,3),(771,420012000,2),(771,436338000,3),(771,452066400,2),(771,467787600,3),(771,483516000,2),(771,499237200,3),(771,514965600,2),(771,530686800,3),(771,544600800,2),(771,562136400,3),(771,576050400,2),(771,594190800,3),(771,607500000,2),(771,625640400,3),(771,638949600,2),(771,657090000,3),(771,671004000,2),(771,688539600,3),(771,702453600,2),(771,719989200,3),(771,733896060,2),(771,752036460,3),(771,765345660,2),(771,783486060,3),(771,796795260,2),(771,814935660,3),(771,828849660,2),(771,846385260,3),(771,860299260,2),(771,877834860,3),(771,891748860,2),(771,909284460,3),(771,923198460,2),(771,941338860,3),(771,954648060,2),(771,972788460,3),(771,986097660,2),(771,1004238060,3),(771,1018152060,2),(771,1035687660,3),(771,1049601660,2),(771,1067137260,3),(771,1081051260,2),(771,1099191660,3),(771,1112500860,2),(771,1130641260,3),(771,1143950460,2),(771,1162090860,3),(771,1173592800,2),(771,1194152400,3),(771,1205042400,2),(771,1225602000,3),(771,1236492000,2),(771,1257051600,3),(771,1268546400,2),(771,1289106000,3),(771,1299996000,2),(771,1320555600,3),(771,1331445600,2),(771,1352005200,3),(771,1362895200,2),(771,1383454800,3),(771,1394344800,2),(771,1414904400,3),(771,1425794400,2),(771,1446354000,3),(771,1457848800,2),(771,1478408400,3),(771,1489298400,2),(771,1509858000,3),(771,1520748000,2),(771,1541307600,3),(771,1552197600,2),(771,1572757200,3),(771,1583647200,2),(771,1604206800,3),(771,1615701600,2),(771,1636261200,3),(771,1647151200,2),(771,1667710800,3),(771,1678600800,2),(771,1699160400,3),(771,1710050400,2),(771,1730610000,3),(771,1741500000,2),(771,1762059600,3),(771,1772949600,2),(771,1793509200,3),(771,1805004000,2),(771,1825563600,3),(771,1836453600,2),(771,1857013200,3),(771,1867903200,2),(771,1888462800,3),(771,1899352800,2),(771,1919912400,3),(771,1930802400,2),(771,1951362000,3),(771,1962856800,2),(771,1983416400,3),(771,1994306400,2),(771,2014866000,3),(771,2025756000,2),(771,2046315600,3),(771,2057205600,2),(771,2077765200,3),(771,2088655200,2),(771,2109214800,3),(771,2120104800,2),(771,2140664400,3),(772,-2147483648,0),(772,-1514743200,1),(772,576057600,2),(772,594198000,1),(772,828864000,2),(772,846399600,1),(772,860313600,2),(772,877849200,1),(772,891763200,2),(772,909298800,1),(772,923212800,2),(772,941353200,1),(772,954662400,2),(772,972802800,1),(772,989136000,2),(772,1001833200,1),(772,1018166400,2),(772,1035702000,1),(772,1049616000,2),(772,1067151600,1),(772,1081065600,2),(772,1099206000,1),(772,1112515200,2),(772,1130655600,1),(772,1143964800,2),(772,1162105200,1),(772,1175414400,2),(772,1193554800,1),(772,1207468800,2),(772,1225004400,1),(772,1238918400,2),(772,1256454000,1),(772,1270368000,2),(772,1288508400,1),(772,1301817600,2),(772,1319958000,1),(772,1333267200,2),(772,1351407600,1),(772,1365321600,2),(772,1382857200,1),(772,1396771200,2),(772,1414306800,1),(772,1428220800,2),(772,1445756400,1),(772,1459670400,2),(772,1477810800,1),(772,1491120000,2),(772,1509260400,1),(772,1522569600,2),(772,1540710000,1),(772,1554624000,2),(772,1572159600,1),(772,1586073600,2),(772,1603609200,1),(772,1617523200,2),(772,1635663600,1),(772,1648972800,2),(772,1667113200,1),(772,1680422400,2),(772,1698562800,1),(772,1712476800,2),(772,1730012400,1),(772,1743926400,2),(772,1761462000,1),(772,1775376000,2),(772,1792911600,1),(772,1806825600,2),(772,1824966000,1),(772,1838275200,2),(772,1856415600,1),(772,1869724800,2),(772,1887865200,1),(772,1901779200,2),(772,1919314800,1),(772,1933228800,2),(772,1950764400,1),(772,1964678400,2),(772,1982818800,1),(772,1996128000,2),(772,2014268400,1),(772,2027577600,2),(772,2045718000,1),(772,2059027200,2),(772,2077167600,1),(772,2091081600,2),(772,2108617200,1),(772,2122531200,2),(772,2140066800,1),(773,-2147483648,0),(773,-1942690509,1),(773,-1567455309,2),(773,-1459627200,4),(773,-1443819600,3),(773,-1428006600,4),(773,-1412283600,3),(773,-1396470600,4),(773,-1380747600,3),(773,-1141590600,4),(773,-1128286800,3),(773,-1110141000,4),(773,-1096837200,3),(773,-1078691400,4),(773,-1065387600,3),(773,-1047241800,4),(773,-1033938000,3),(773,-1015187400,4),(773,-1002488400,3),(773,-983737800,4),(773,-971038800,3),(773,-954707400,4),(773,-938984400,3),(773,-920838600,4),(773,-907534800,3),(773,-896819400,4),(773,-853621200,6),(773,-845847000,5),(773,-334789200,6),(773,-319671000,5),(773,-314226000,7),(773,-309996000,5),(773,-149720400,7),(773,-134604000,5),(773,-50446800,6),(773,-34205400,5),(773,9860400,7),(773,14176800,5),(773,72846000,7),(773,80100000,5),(773,127278000,8),(773,132111000,6),(773,147234600,5),(773,156913200,7),(773,165376800,5),(773,219812400,7),(773,226461600,5),(773,250052400,7),(773,257911200,5),(773,282711600,7),(773,289360800,5),(773,294202800,7),(773,322020000,5),(773,566449200,7),(773,573012000,5),(773,597812400,7),(773,605066400,5),(773,625633200,7),(773,635911200,5),(773,656478000,7),(773,667965600,5),(773,688532400,7),(773,699415200,5),(773,719377200,7),(773,730864800,5),(773,1095562800,7),(773,1111896000,5),(773,1128834000,7),(773,1142136000,5),(773,1159678800,7),(773,1173585600,5),(773,1191733200,7),(773,1205035200,5),(773,1223182800,7),(773,1236484800,5),(773,1254632400,7),(773,1268539200,5),(773,1286082000,7),(773,1299988800,5),(773,1317531600,7),(773,1331438400,5),(773,1349586000,7),(773,1362888000,5),(773,1381035600,7),(773,1394337600,5),(773,1412485200,7),(773,1425787200,5),(774,-2147483648,2),(774,-1632070800,1),(774,-1615140000,2),(774,-1601753400,1),(774,-1583697600,2),(774,-1567357200,1),(774,-1554667200,2),(774,-1534698000,1),(774,-1524074400,2),(774,-1503248400,1),(774,-1492365600,2),(774,-1471798800,1),(774,-1460916000,2),(774,-1440954000,1),(774,-1428861600,2),(774,-1409504400,1),(774,-1397412000,2),(774,-1378054800,1),(774,-1365962400,2),(774,-1346605200,1),(774,-1333908000,2),(774,-1315155600,1),(774,-1301853600,2),(774,-1283706000,1),(774,-1270404000,2),(774,-1252256400,1),(774,-1238954400,2),(774,-1220806800,1),(774,-1207504800,2),(774,-1188752400,1),(774,-1176055200,2),(774,-1157302800,1),(774,-1144000800,2),(774,-1125853200,1),(774,-1112551200,2),(774,-1094403600,1),(774,-1081101600,2),(774,-1062954000,1),(774,-1049652000,2),(774,-1031504400,1),(774,-1018202400,2),(774,-1000054800,1),(774,-986752800,2),(774,-968000400,1),(774,-955303200,2),(774,-936550800,1),(774,-880218000,3),(774,-769395600,4),(774,-765396000,2),(774,-747248400,1),(774,-733946400,2),(774,-715806000,1),(774,-702504000,2),(774,-684356400,1),(774,-671054400,2),(774,-652906800,1),(774,-634161600,2),(774,-620845200,1),(774,-602704800,2),(774,-589395600,1),(774,-576093600,2),(774,-557946000,1),(774,-544644000,2),(774,-526496400,1),(774,-513194400,2),(774,-495046800,1),(774,-481744800,2),(774,-463597200,1),(774,-450295200,2),(774,-431542800,1),(774,-418240800,2),(774,-400093200,1),(774,-384372000,2),(774,-368643600,1),(774,-352922400,2),(774,-337194000,1),(774,-321472800,2),(774,-305744400,1),(774,-289418400,2),(774,-273690000,1),(774,-257968800,2),(774,-242240400,1),(774,-226519200,2),(774,-210790800,1),(774,-195069600,2),(774,-179341200,1),(774,-163620000,2),(774,-147891600,1),(774,-131565600,2),(774,-116442000,1),(774,-100116000,2),(774,-84387600,1),(774,-68666400,2),(774,-52938000,1),(774,-37216800,2),(774,-21488400,1),(774,-5767200,2),(774,9961200,1),(774,25682400,2),(774,41410800,1),(774,57736800,2),(774,73465200,1),(774,89186400,2),(774,104914800,1),(774,120636000,2),(774,136364400,1),(774,152085600,2),(774,167814000,1),(774,183535200,2),(774,199263600,1),(774,215589600,2),(774,230713200,1),(774,247039200,2),(774,262767600,1),(774,278488800,2),(774,294217200,1),(774,309938400,2),(774,325666800,1),(774,341388000,2),(774,357116400,1),(774,372837600,2),(774,388566000,1),(774,404892000,2),(774,420015600,1),(774,436341600,2),(774,452070000,1),(774,467791200,2),(774,483519600,1),(774,499240800,2),(774,514969200,1),(774,530690400,2),(774,544604400,1),(774,562140000,2),(774,576054000,1),(774,594194400,2),(774,607503600,1),(774,625644000,2),(774,638953200,1),(774,657093600,2),(774,671007600,1),(774,688543200,2),(774,702457200,1),(774,719992800,2),(774,733906800,1),(774,752047200,2),(774,765356400,1),(774,783496800,2),(774,796806000,1),(774,814946400,2),(774,828860400,1),(774,846396000,2),(774,860310000,1),(774,877845600,2),(774,891759600,1),(774,909295200,2),(774,923209200,1),(774,941349600,2),(774,954658800,1),(774,972799200,2),(774,986108400,1),(774,1004248800,2),(774,1018162800,1),(774,1035698400,2),(774,1049612400,1),(774,1067148000,2),(774,1081062000,1),(774,1099202400,2),(774,1112511600,1),(774,1130652000,2),(774,1143961200,1),(774,1162101600,2),(774,1173596400,1),(774,1194156000,2),(774,1205046000,1),(774,1225605600,2),(774,1236495600,1),(774,1257055200,2),(774,1268550000,1),(774,1289109600,2),(774,1299999600,1),(774,1320559200,2),(774,1331449200,1),(774,1352008800,2),(774,1362898800,1),(774,1383458400,2),(774,1394348400,1),(774,1414908000,2),(774,1425798000,1),(774,1446357600,2),(774,1457852400,1),(774,1478412000,2),(774,1489302000,1),(774,1509861600,2),(774,1520751600,1),(774,1541311200,2),(774,1552201200,1),(774,1572760800,2),(774,1583650800,1),(774,1604210400,2),(774,1615705200,1),(774,1636264800,2),(774,1647154800,1),(774,1667714400,2),(774,1678604400,1),(774,1699164000,2),(774,1710054000,1),(774,1730613600,2),(774,1741503600,1),(774,1762063200,2),(774,1772953200,1),(774,1793512800,2),(774,1805007600,1),(774,1825567200,2),(774,1836457200,1),(774,1857016800,2),(774,1867906800,1),(774,1888466400,2),(774,1899356400,1),(774,1919916000,2),(774,1930806000,1),(774,1951365600,2),(774,1962860400,1),(774,1983420000,2),(774,1994310000,1),(774,2014869600,2),(774,2025759600,1),(774,2046319200,2),(774,2057209200,1),(774,2077768800,2),(774,2088658800,1),(774,2109218400,2),(774,2120108400,1),(774,2140668000,2),(775,-2147483648,0),(775,-1825098836,1),(776,-2147483648,0),(776,-1825095030,2),(776,-179341200,1),(776,-163620000,2),(776,-147891600,1),(776,-131565600,2),(776,-116442000,1),(776,-100116000,2),(776,-84387600,1),(776,-68666400,2),(776,-52938000,1),(776,-37216800,2),(776,-21488400,1),(776,-5767200,2),(776,9961200,1),(776,25682400,2),(776,41410800,1),(776,57736800,2),(776,73465200,1),(776,89186400,2),(776,104914800,1),(776,120636000,2),(776,136364400,1),(776,152085600,2),(776,167814000,1),(776,183535200,2),(776,199263600,1),(776,215589600,2),(776,230713200,1),(776,247039200,2),(776,262767600,1),(776,278488800,2),(776,294217200,1),(776,309938400,2),(776,325666800,1),(776,341388000,2),(776,357116400,1),(776,372837600,2),(776,388566000,1),(776,404892000,2),(776,420015600,1),(776,436341600,2),(776,452070000,1),(776,467791200,2),(776,483519600,1),(776,499240800,2),(776,514969200,1),(776,530690400,2),(776,544604400,1),(776,562140000,2),(776,576054000,1),(776,594194400,2),(776,607503600,1),(776,625644000,2),(776,638953200,1),(776,657093600,2),(776,671007600,1),(776,688543200,2),(776,702457200,1),(776,719992800,2),(776,733906800,1),(776,752047200,2),(776,765356400,1),(776,783496800,2),(776,796806000,1),(776,814946400,2),(776,828860400,1),(776,846396000,2),(776,860310000,1),(776,877845600,2),(776,891759600,1),(776,909295200,2),(776,923209200,1),(776,941349600,2),(776,954658800,1),(776,972799200,2),(776,986108400,1),(776,1004248800,2),(776,1018162800,1),(776,1035698400,2),(776,1049612400,1),(776,1067148000,2),(776,1081062000,1),(776,1099202400,2),(776,1112511600,1),(776,1130652000,2),(776,1143961200,1),(776,1162101600,2),(776,1173596400,1),(776,1194156000,2),(776,1205046000,1),(776,1225605600,2),(776,1236495600,1),(776,1257055200,2),(776,1268550000,1),(776,1289109600,2),(776,1299999600,1),(776,1320559200,2),(776,1331449200,1),(776,1352008800,2),(776,1362898800,1),(776,1383458400,2),(776,1394348400,1),(776,1414908000,2),(776,1425798000,1),(776,1446357600,2),(776,1457852400,1),(776,1478412000,2),(776,1489302000,1),(776,1509861600,2),(776,1520751600,1),(776,1541311200,2),(776,1552201200,1),(776,1572760800,2),(776,1583650800,1),(776,1604210400,2),(776,1615705200,1),(776,1636264800,2),(776,1647154800,1),(776,1667714400,2),(776,1678604400,1),(776,1699164000,2),(776,1710054000,1),(776,1730613600,2),(776,1741503600,1),(776,1762063200,2),(776,1772953200,1),(776,1793512800,2),(776,1805007600,1),(776,1825567200,2),(776,1836457200,1),(776,1857016800,2),(776,1867906800,1),(776,1888466400,2),(776,1899356400,1),(776,1919916000,2),(776,1930806000,1),(776,1951365600,2),(776,1962860400,1),(776,1983420000,2),(776,1994310000,1),(776,2014869600,2),(776,2025759600,1),(776,2046319200,2),(776,2057209200,1),(776,2077768800,2),(776,2088658800,1),(776,2109218400,2),(776,2120108400,1),(776,2140668000,2),(777,-2147483648,2),(777,-1633280400,1),(777,-1615140000,2),(777,-1601830800,1),(777,-1583690400,2),(777,-1570381200,1),(777,-1551636000,2),(777,-1536512400,1),(777,-1523210400,2),(777,-1504458000,1),(777,-1491760800,2),(777,-1473008400,1),(777,-1459706400,2),(777,-1441558800,1),(777,-1428256800,2),(777,-1410109200,1),(777,-1396807200,2),(777,-1378659600,1),(777,-1365357600,2),(777,-1347210000,1),(777,-1333908000,2),(777,-1315155600,1),(777,-1301853600,2),(777,-1283706000,1),(777,-1270404000,2),(777,-1252256400,1),(777,-1238954400,2),(777,-1220806800,1),(777,-1207504800,2),(777,-1189357200,1),(777,-1176055200,2),(777,-1157302800,1),(777,-1144605600,2),(777,-1125853200,1),(777,-1112551200,2),(777,-1094403600,1),(777,-1081101600,2),(777,-1062954000,1),(777,-1049652000,2),(777,-1031504400,1),(777,-1018202400,2),(777,-1000054800,1),(777,-986752800,2),(777,-968000400,1),(777,-955303200,2),(777,-936550800,1),(777,-923248800,2),(777,-905101200,1),(777,-891799200,2),(777,-880218000,3),(777,-769395600,4),(777,-765396000,2),(777,-747248400,1),(777,-733946400,2),(777,-715798800,1),(777,-702496800,2),(777,-684349200,1),(777,-671047200,2),(777,-652899600,1),(777,-639597600,2),(777,-620845200,1),(777,-608148000,2),(777,-589395600,1),(777,-576093600,2),(777,-557946000,1),(777,-544644000,2),(777,-526496400,1),(777,-513194400,2),(777,-495046800,1),(777,-481744800,2),(777,-463597200,1),(777,-447271200,2),(777,-431542800,1),(777,-415821600,2),(777,-400093200,1),(777,-384372000,2),(777,-368643600,1),(777,-352922400,2),(777,-337194000,1),(777,-321472800,2),(777,-305744400,1),(777,-289418400,2),(777,-273690000,1),(777,-257968800,2),(777,-242240400,1),(777,-226519200,2),(777,-210790800,1),(777,-195069600,2),(777,-179341200,1),(777,-163620000,2),(777,-147891600,1),(777,-131565600,2),(777,-116442000,1),(777,-100116000,2),(777,-84387600,1),(777,-68666400,2),(777,-52938000,1),(777,-37216800,2),(777,-21488400,1),(777,-5767200,2),(777,9961200,1),(777,25682400,2),(777,41410800,1),(777,57736800,2),(777,73465200,1),(777,89186400,2),(777,104914800,1),(777,120636000,2),(777,126687600,1),(777,152085600,2),(777,162370800,1),(777,183535200,2),(777,199263600,1),(777,215589600,2),(777,230713200,1),(777,247039200,2),(777,262767600,1),(777,278488800,2),(777,294217200,1),(777,309938400,2),(777,325666800,1),(777,341388000,2),(777,357116400,1),(777,372837600,2),(777,388566000,1),(777,404892000,2),(777,420015600,1),(777,436341600,2),(777,452070000,1),(777,467791200,2),(777,483519600,1),(777,499240800,2),(777,514969200,1),(777,530690400,2),(777,544604400,1),(777,562140000,2),(777,576054000,1),(777,594194400,2),(777,607503600,1),(777,625644000,2),(777,638953200,1),(777,657093600,2),(777,671007600,1),(777,688543200,2),(777,702457200,1),(777,719992800,2),(777,733906800,1),(777,752047200,2),(777,765356400,1),(777,783496800,2),(777,796806000,1),(777,814946400,2),(777,828860400,1),(777,846396000,2),(777,860310000,1),(777,877845600,2),(777,891759600,1),(777,909295200,2),(777,923209200,1),(777,941349600,2),(777,954658800,1),(777,972799200,2),(777,986108400,1),(777,1004248800,2),(777,1018162800,1),(777,1035698400,2),(777,1049612400,1),(777,1067148000,2),(777,1081062000,1),(777,1099202400,2),(777,1112511600,1),(777,1130652000,2),(777,1143961200,1),(777,1162101600,2),(777,1173596400,1),(777,1194156000,2),(777,1205046000,1),(777,1225605600,2),(777,1236495600,1),(777,1257055200,2),(777,1268550000,1),(777,1289109600,2),(777,1299999600,1),(777,1320559200,2),(777,1331449200,1),(777,1352008800,2),(777,1362898800,1),(777,1383458400,2),(777,1394348400,1),(777,1414908000,2),(777,1425798000,1),(777,1446357600,2),(777,1457852400,1),(777,1478412000,2),(777,1489302000,1),(777,1509861600,2),(777,1520751600,1),(777,1541311200,2),(777,1552201200,1),(777,1572760800,2),(777,1583650800,1),(777,1604210400,2),(777,1615705200,1),(777,1636264800,2),(777,1647154800,1),(777,1667714400,2),(777,1678604400,1),(777,1699164000,2),(777,1710054000,1),(777,1730613600,2),(777,1741503600,1),(777,1762063200,2),(777,1772953200,1),(777,1793512800,2),(777,1805007600,1),(777,1825567200,2),(777,1836457200,1),(777,1857016800,2),(777,1867906800,1),(777,1888466400,2),(777,1899356400,1),(777,1919916000,2),(777,1930806000,1),(777,1951365600,2),(777,1962860400,1),(777,1983420000,2),(777,1994310000,1),(777,2014869600,2),(777,2025759600,1),(777,2046319200,2),(777,2057209200,1),(777,2077768800,2),(777,2088658800,1),(777,2109218400,2),(777,2120108400,1),(777,2140668000,2),(778,-2147483648,2),(778,-1632070800,1),(778,-1615140000,2),(778,-923252400,1),(778,-880218000,3),(778,-769395600,4),(778,-765396000,2),(778,136364400,1),(778,152085600,2),(778,167814000,1),(778,183535200,2),(778,199263600,1),(778,215589600,2),(778,230713200,1),(778,247039200,2),(778,262767600,1),(778,278488800,2),(778,294217200,1),(778,309938400,2),(778,325666800,1),(778,341388000,2),(778,357116400,1),(778,372837600,2),(778,388566000,1),(778,404892000,2),(778,420015600,1),(778,436341600,2),(778,452070000,1),(778,467791200,2),(778,483519600,1),(778,499240800,2),(778,514969200,1),(778,530690400,2),(778,544604400,1),(778,562140000,2),(778,576054000,1),(778,594194400,2),(778,607503600,1),(778,625644000,2),(778,638953200,1),(778,657093600,2),(778,671007600,1),(778,688543200,2),(778,702457200,1),(778,719992800,2),(778,733906800,1),(778,752047200,2),(778,765356400,1),(778,783496800,2),(778,796806000,1),(778,814946400,2),(778,828860400,1),(778,846396000,2),(778,860310000,1),(778,877845600,2),(778,891759600,1),(778,909295200,2),(778,923209200,1),(778,941349600,2),(778,954658800,1),(778,972799200,2),(778,986108400,1),(778,1004248800,2),(778,1018162800,1),(778,1035698400,2),(778,1049612400,1),(778,1067148000,2),(778,1081062000,1),(778,1099202400,2),(778,1112511600,1),(778,1130652000,2),(778,1143961200,1),(778,1162101600,2),(778,1173596400,1),(778,1194156000,2),(778,1205046000,1),(778,1225605600,2),(778,1236495600,1),(778,1257055200,2),(778,1268550000,1),(778,1289109600,2),(778,1299999600,1),(778,1320559200,2),(778,1331449200,1),(778,1352008800,2),(778,1362898800,1),(778,1383458400,2),(778,1394348400,1),(778,1414908000,2),(778,1425798000,1),(778,1446357600,2),(778,1457852400,1),(778,1478412000,2),(778,1489302000,1),(778,1509861600,2),(778,1520751600,1),(778,1541311200,2),(778,1552201200,1),(778,1572760800,2),(778,1583650800,1),(778,1604210400,2),(778,1615705200,1),(778,1636264800,2),(778,1647154800,1),(778,1667714400,2),(778,1678604400,1),(778,1699164000,2),(778,1710054000,1),(778,1730613600,2),(778,1741503600,1),(778,1762063200,2),(778,1772953200,1),(778,1793512800,2),(778,1805007600,1),(778,1825567200,2),(778,1836457200,1),(778,1857016800,2),(778,1867906800,1),(778,1888466400,2),(778,1899356400,1),(778,1919916000,2),(778,1930806000,1),(778,1951365600,2),(778,1962860400,1),(778,1983420000,2),(778,1994310000,1),(778,2014869600,2),(778,2025759600,1),(778,2046319200,2),(778,2057209200,1),(778,2077768800,2),(778,2088658800,1),(778,2109218400,2),(778,2120108400,1),(778,2140668000,2),(779,-2147483648,1),(779,-880196400,2),(779,-769395600,3),(779,-765374400,1),(779,-86878800,4),(779,-21466800,5),(779,-5745600,4),(779,9982800,5),(779,25704000,4),(779,41432400,5),(779,57758400,4),(779,73486800,5),(779,89208000,4),(779,104936400,5),(779,120657600,4),(779,126709200,5),(779,152107200,4),(779,162392400,5),(779,183556800,4),(779,199285200,5),(779,215611200,4),(779,230734800,5),(779,247060800,4),(779,262789200,5),(779,278510400,4),(779,294238800,5),(779,309960000,4),(779,325688400,5),(779,341409600,4),(779,357138000,5),(779,372859200,4),(779,388587600,5),(779,404913600,4),(779,420037200,5),(779,436363200,6),(779,439030800,8),(779,452084400,7),(779,467805600,8),(779,483534000,7),(779,499255200,8),(779,514983600,7),(779,530704800,8),(779,544618800,7),(779,562154400,8),(779,576068400,7),(779,594208800,8),(779,607518000,7),(779,625658400,8),(779,638967600,7),(779,657108000,8),(779,671022000,7),(779,688557600,8),(779,702471600,7),(779,720007200,8),(779,733921200,7),(779,752061600,8),(779,765370800,7),(779,783511200,8),(779,796820400,7),(779,814960800,8),(779,828874800,7),(779,846410400,8),(779,860324400,7),(779,877860000,8),(779,891774000,7),(779,909309600,8),(779,923223600,7),(779,941364000,8),(779,954673200,7),(779,972813600,8),(779,986122800,7),(779,1004263200,8),(779,1018177200,7),(779,1035712800,8),(779,1049626800,7),(779,1067162400,8),(779,1081076400,7),(779,1099216800,8),(779,1112526000,7),(779,1130666400,8),(779,1143975600,7),(779,1162116000,8),(779,1173610800,7),(779,1194170400,8),(779,1205060400,7),(779,1225620000,8),(779,1236510000,7),(779,1257069600,8),(779,1268564400,7),(779,1289124000,8),(779,1300014000,7),(779,1320573600,8),(779,1331463600,7),(779,1352023200,8),(779,1362913200,7),(779,1383472800,8),(779,1394362800,7),(779,1414922400,8),(779,1425812400,7),(779,1446372000,8),(779,1457866800,7),(779,1478426400,8),(779,1489316400,7),(779,1509876000,8),(779,1520766000,7),(779,1541325600,8),(779,1552215600,7),(779,1572775200,8),(779,1583665200,7),(779,1604224800,8),(779,1615719600,7),(779,1636279200,8),(779,1647169200,7),(779,1667728800,8),(779,1678618800,7),(779,1699178400,8),(779,1710068400,7),(779,1730628000,8),(779,1741518000,7),(779,1762077600,8),(779,1772967600,7),(779,1793527200,8),(779,1805022000,7),(779,1825581600,8),(779,1836471600,7),(779,1857031200,8),(779,1867921200,7),(779,1888480800,8),(779,1899370800,7),(779,1919930400,8),(779,1930820400,7),(779,1951380000,8),(779,1962874800,7),(779,1983434400,8),(779,1994324400,7),(779,2014884000,8),(779,2025774000,7),(779,2046333600,8),(779,2057223600,7),(779,2077783200,8),(779,2088673200,7),(779,2109232800,8),(779,2120122800,7),(779,2140682400,8),(780,-2147483648,0),(780,-1767217820,2),(780,-1206961200,1),(780,-1191366000,2),(780,-1175378400,1),(780,-1159830000,2),(780,-633823200,1),(780,-622072800,2),(780,-602287200,1),(780,-591836400,2),(780,-570751200,1),(780,-560214000,2),(780,-539128800,1),(780,-531356400,2),(780,-191368800,1),(780,-184201200,2),(780,-155167200,1),(780,-150073200,2),(780,-128901600,1),(780,-121129200,2),(780,-99957600,1),(780,-89593200,2),(780,-68421600,1),(780,-57970800,2),(780,499744800,1),(780,511232400,2),(780,530589600,1),(780,540262800,2),(780,562125600,1),(780,571194000,2),(780,592970400,1),(780,602038800,2),(780,624420000,1),(780,634698000,2),(780,938916000,1),(780,951613200,2),(780,970970400,1),(780,971571600,2),(780,1003024800,1),(780,1013907600,2),(781,-2147483648,2),(781,-1633273200,1),(781,-1615132800,2),(781,-1601823600,1),(781,-1583683200,2),(781,-880210800,3),(781,-769395600,4),(781,-765388800,2),(781,-84380400,1),(781,-68659200,2),(781,-52930800,1),(781,-37209600,2),(781,-21481200,1),(781,-5760000,2),(781,9968400,1),(781,25689600,2),(781,41418000,1),(781,57744000,2),(781,73472400,1),(781,89193600,2),(781,104922000,1),(781,120643200,2),(781,126694800,1),(781,152092800,2),(781,162378000,1),(781,183542400,2),(781,199270800,1),(781,215596800,2),(781,230720400,1),(781,247046400,2),(781,262774800,1),(781,278496000,2),(781,294224400,1),(781,309945600,2),(781,325674000,1),(781,341395200,2),(781,357123600,1),(781,372844800,2),(781,388573200,1),(781,404899200,2),(781,420022800,1),(781,436348800,2),(781,452077200,1),(781,467798400,2),(781,483526800,1),(781,499248000,2),(781,514976400,1),(781,530697600,2),(781,544611600,1),(781,562147200,2),(781,576061200,1),(781,594201600,2),(781,607510800,1),(781,625651200,2),(781,638960400,1),(781,657100800,2),(781,671014800,1),(781,688550400,2),(781,702464400,1),(781,720000000,2),(781,733914000,1),(781,752054400,2),(781,765363600,1),(781,783504000,2),(781,796813200,1),(781,814953600,2),(781,828867600,1),(781,846403200,2),(781,860317200,1),(781,877852800,2),(781,891766800,1),(781,909302400,2),(781,923216400,1),(781,941356800,2),(781,954666000,1),(781,972806400,2),(781,986115600,1),(781,1004256000,2),(781,1018170000,1),(781,1035705600,2),(781,1049619600,1),(781,1067155200,2),(781,1081069200,1),(781,1099209600,2),(781,1112518800,1),(781,1130659200,2),(781,1143968400,1),(781,1162108800,2),(781,1173603600,1),(781,1194163200,2),(781,1205053200,1),(781,1225612800,2),(781,1236502800,1),(781,1257062400,2),(781,1268557200,1),(781,1289116800,6),(781,1300003200,5),(781,1320562800,6),(781,1331452800,5),(781,1352012400,6),(781,1362902400,5),(781,1383462000,6),(781,1394352000,5),(781,1414911600,6),(781,1425801600,5),(781,1446361200,6),(781,1457856000,5),(781,1478415600,6),(781,1489305600,5),(781,1509865200,6),(781,1520755200,5),(781,1541314800,6),(781,1552204800,5),(781,1572764400,6),(781,1583654400,5),(781,1604214000,6),(781,1615708800,5),(781,1636268400,6),(781,1647158400,5),(781,1667718000,6),(781,1678608000,5),(781,1699167600,6),(781,1710057600,5),(781,1730617200,6),(781,1741507200,5),(781,1762066800,6),(781,1772956800,5),(781,1793516400,6),(781,1805011200,5),(781,1825570800,6),(781,1836460800,5),(781,1857020400,6),(781,1867910400,5),(781,1888470000,6),(781,1899360000,5),(781,1919919600,6),(781,1930809600,5),(781,1951369200,6),(781,1962864000,5),(781,1983423600,6),(781,1994313600,5),(781,2014873200,6),(781,2025763200,5),(781,2046322800,6),(781,2057212800,5),(781,2077772400,6),(781,2088662400,5),(781,2109222000,6),(781,2120112000,5),(781,2140671600,6),(782,-2147483648,2),(782,-1633273200,1),(782,-1615132800,2),(782,-1601823600,1),(782,-1583683200,2),(782,-880210800,3),(782,-769395600,4),(782,-765388800,2),(782,-84380400,1),(782,-68659200,2),(782,-52930800,1),(782,-37209600,2),(782,-21481200,1),(782,-5760000,2),(782,9968400,1),(782,25689600,2),(782,41418000,1),(782,57744000,2),(782,73472400,1),(782,89193600,2),(782,104922000,1),(782,120643200,2),(782,126694800,1),(782,152092800,2),(782,162378000,1),(782,183542400,2),(782,199270800,1),(782,215596800,2),(782,230720400,1),(782,247046400,2),(782,262774800,1),(782,278496000,2),(782,294224400,1),(782,309945600,2),(782,325674000,1),(782,341395200,2),(782,357123600,1),(782,372844800,2),(782,388573200,1),(782,404899200,2),(782,420022800,1),(782,436348800,2),(782,452077200,1),(782,467798400,2),(782,483526800,1),(782,499248000,2),(782,514976400,1),(782,530697600,2),(782,544611600,1),(782,562147200,2),(782,576061200,1),(782,594201600,2),(782,607510800,1),(782,625651200,2),(782,638960400,1),(782,657100800,2),(782,671014800,1),(782,688550400,2),(782,702464400,1),(782,720000000,6),(782,733910400,5),(782,752050800,6),(782,765360000,5),(782,783500400,6),(782,796809600,5),(782,814950000,6),(782,828864000,5),(782,846399600,6),(782,860313600,5),(782,877849200,6),(782,891763200,5),(782,909298800,6),(782,923212800,5),(782,941353200,6),(782,954662400,5),(782,972802800,6),(782,986112000,5),(782,1004252400,6),(782,1018166400,5),(782,1035702000,6),(782,1049616000,5),(782,1067151600,6),(782,1081065600,5),(782,1099206000,6),(782,1112515200,5),(782,1130655600,6),(782,1143964800,5),(782,1162105200,6),(782,1173600000,5),(782,1194159600,6),(782,1205049600,5),(782,1225609200,6),(782,1236499200,5),(782,1257058800,6),(782,1268553600,5),(782,1289113200,6),(782,1300003200,5),(782,1320562800,6),(782,1331452800,5),(782,1352012400,6),(782,1362902400,5),(782,1383462000,6),(782,1394352000,5),(782,1414911600,6),(782,1425801600,5),(782,1446361200,6),(782,1457856000,5),(782,1478415600,6),(782,1489305600,5),(782,1509865200,6),(782,1520755200,5),(782,1541314800,6),(782,1552204800,5),(782,1572764400,6),(782,1583654400,5),(782,1604214000,6),(782,1615708800,5),(782,1636268400,6),(782,1647158400,5),(782,1667718000,6),(782,1678608000,5),(782,1699167600,6),(782,1710057600,5),(782,1730617200,6),(782,1741507200,5),(782,1762066800,6),(782,1772956800,5),(782,1793516400,6),(782,1805011200,5),(782,1825570800,6),(782,1836460800,5),(782,1857020400,6),(782,1867910400,5),(782,1888470000,6),(782,1899360000,5),(782,1919919600,6),(782,1930809600,5),(782,1951369200,6),(782,1962864000,5),(782,1983423600,6),(782,1994313600,5),(782,2014873200,6),(782,2025763200,5),(782,2046322800,6),(782,2057212800,5),(782,2077772400,6),(782,2088662400,5),(782,2109222000,6),(782,2120112000,5),(782,2140671600,6),(783,-2147483648,2),(783,-1633273200,1),(783,-1615132800,2),(783,-1601823600,1),(783,-1583683200,2),(783,-880210800,3),(783,-769395600,4),(783,-765388800,2),(783,-84380400,1),(783,-68659200,2),(783,-52930800,1),(783,-37209600,2),(783,-21481200,1),(783,-5760000,2),(783,9968400,1),(783,25689600,2),(783,41418000,1),(783,57744000,2),(783,73472400,1),(783,89193600,2),(783,104922000,1),(783,120643200,2),(783,126694800,1),(783,152092800,2),(783,162378000,1),(783,183542400,2),(783,199270800,1),(783,215596800,2),(783,230720400,1),(783,247046400,2),(783,262774800,1),(783,278496000,2),(783,294224400,1),(783,309945600,2),(783,325674000,1),(783,341395200,2),(783,357123600,1),(783,372844800,2),(783,388573200,1),(783,404899200,2),(783,420022800,1),(783,436348800,2),(783,452077200,1),(783,467798400,2),(783,483526800,1),(783,499248000,2),(783,514976400,1),(783,530697600,2),(783,544611600,1),(783,562147200,2),(783,576061200,1),(783,594201600,2),(783,607510800,1),(783,625651200,2),(783,638960400,1),(783,657100800,2),(783,671014800,1),(783,688550400,2),(783,702464400,1),(783,720000000,2),(783,733914000,1),(783,752054400,2),(783,765363600,1),(783,783504000,2),(783,796813200,1),(783,814953600,2),(783,828867600,1),(783,846403200,2),(783,860317200,1),(783,877852800,2),(783,891766800,1),(783,909302400,2),(783,923216400,1),(783,941356800,2),(783,954666000,1),(783,972806400,2),(783,986115600,1),(783,1004256000,2),(783,1018170000,1),(783,1035705600,2),(783,1049619600,1),(783,1067155200,6),(783,1081065600,5),(783,1099206000,6),(783,1112515200,5),(783,1130655600,6),(783,1143964800,5),(783,1162105200,6),(783,1173600000,5),(783,1194159600,6),(783,1205049600,5),(783,1225609200,6),(783,1236499200,5),(783,1257058800,6),(783,1268553600,5),(783,1289113200,6),(783,1300003200,5),(783,1320562800,6),(783,1331452800,5),(783,1352012400,6),(783,1362902400,5),(783,1383462000,6),(783,1394352000,5),(783,1414911600,6),(783,1425801600,5),(783,1446361200,6),(783,1457856000,5),(783,1478415600,6),(783,1489305600,5),(783,1509865200,6),(783,1520755200,5),(783,1541314800,6),(783,1552204800,5),(783,1572764400,6),(783,1583654400,5),(783,1604214000,6),(783,1615708800,5),(783,1636268400,6),(783,1647158400,5),(783,1667718000,6),(783,1678608000,5),(783,1699167600,6),(783,1710057600,5),(783,1730617200,6),(783,1741507200,5),(783,1762066800,6),(783,1772956800,5),(783,1793516400,6),(783,1805011200,5),(783,1825570800,6),(783,1836460800,5),(783,1857020400,6),(783,1867910400,5),(783,1888470000,6),(783,1899360000,5),(783,1919919600,6),(783,1930809600,5),(783,1951369200,6),(783,1962864000,5),(783,1983423600,6),(783,1994313600,5),(783,2014873200,6),(783,2025763200,5),(783,2046322800,6),(783,2057212800,5),(783,2077772400,6),(783,2088662400,5),(783,2109222000,6),(783,2120112000,5),(783,2140671600,6),(784,-2147483648,0),(784,-1514739600,1),(784,-1343066400,2),(784,-1234807200,1),(784,-1220292000,2),(784,-1207159200,1),(784,-1191344400,2),(784,828864000,3),(784,846399600,2),(784,860313600,3),(784,877849200,2),(784,891766800,4),(784,909302400,1),(784,923216400,4),(784,941356800,1),(784,954666000,4),(784,972806400,1),(784,989139600,4),(784,1001836800,1),(784,1018170000,4),(784,1035705600,1),(784,1049619600,4),(784,1067155200,1),(784,1081069200,4),(784,1099209600,1),(784,1112518800,4),(784,1130659200,1),(784,1143968400,4),(784,1162108800,1),(784,1175418000,4),(784,1193558400,1),(784,1207472400,4),(784,1225008000,1),(784,1238922000,4),(784,1256457600,1),(784,1268557200,4),(784,1289116800,1),(784,1300006800,4),(784,1320566400,1),(784,1331456400,4),(784,1352016000,1),(784,1362906000,4),(784,1383465600,1),(784,1394355600,4),(784,1414915200,1),(784,1425805200,4),(784,1446364800,1),(784,1457859600,4),(784,1478419200,1),(784,1489309200,4),(784,1509868800,1),(784,1520758800,4),(784,1541318400,1),(784,1552208400,4),(784,1572768000,1),(784,1583658000,4),(784,1604217600,1),(784,1615712400,4),(784,1636272000,1),(784,1647162000,4),(784,1667721600,1),(784,1678611600,4),(784,1699171200,1),(784,1710061200,4),(784,1730620800,1),(784,1741510800,4),(784,1762070400,1),(784,1772960400,4),(784,1793520000,1),(784,1805014800,4),(784,1825574400,1),(784,1836464400,4),(784,1857024000,1),(784,1867914000,4),(784,1888473600,1),(784,1899363600,4),(784,1919923200,1),(784,1930813200,4),(784,1951372800,1),(784,1962867600,4),(784,1983427200,1),(784,1994317200,4),(784,2014876800,1),(784,2025766800,4),(784,2046326400,1),(784,2057216400,4),(784,2077776000,1),(784,2088666000,4),(784,2109225600,1),(784,2120115600,4),(784,2140675200,1),(785,-2147483648,1),(785,-1946918424,2),(786,-2147483648,0),(786,-1546300800,3),(786,-880221600,1),(786,-769395600,2),(786,-765399600,3),(786,-147902400,4),(786,-131572800,3),(786,325663200,5),(786,341384400,3),(786,357112800,5),(786,372834000,3),(786,388562400,5),(786,404888400,3),(786,420012000,5),(786,436338000,3),(786,452066400,5),(786,467787600,3),(786,483516000,5),(786,499237200,3),(786,514965600,5),(786,530686800,3),(786,544600800,5),(786,562136400,3),(786,576050400,5),(786,594190800,3),(786,607500000,5),(786,625640400,3),(786,638949600,5),(786,657090000,3),(786,671004000,5),(786,688539600,3),(786,702453600,5),(786,719989200,3),(786,733903200,5),(786,752043600,3),(786,765352800,5),(786,783493200,3),(786,796802400,6),(786,814946400,7),(786,828860400,6),(786,846396000,7),(786,860310000,6),(786,877845600,7),(786,891759600,6),(786,909295200,7),(786,923209200,6),(786,941349600,8),(786,954662400,9),(786,972802800,7),(786,986108400,6),(786,1004248800,7),(786,1018162800,6),(786,1035698400,7),(786,1049612400,6),(786,1067148000,7),(786,1081062000,6),(786,1099202400,7),(786,1112511600,6),(786,1130652000,7),(786,1143961200,6),(786,1162101600,7),(786,1173596400,6),(786,1194156000,7),(786,1205046000,6),(786,1225605600,7),(786,1236495600,6),(786,1257055200,7),(786,1268550000,6),(786,1289109600,7),(786,1299999600,6),(786,1320559200,7),(786,1331449200,6),(786,1352008800,7),(786,1362898800,6),(786,1383458400,7),(786,1394348400,6),(786,1414908000,7),(786,1425798000,6),(786,1446357600,7),(786,1457852400,6),(786,1478412000,7),(786,1489302000,6),(786,1509861600,7),(786,1520751600,6),(786,1541311200,7),(786,1552201200,6),(786,1572760800,7),(786,1583650800,6),(786,1604210400,7),(786,1615705200,6),(786,1636264800,7),(786,1647154800,6),(786,1667714400,7),(786,1678604400,6),(786,1699164000,7),(786,1710054000,6),(786,1730613600,7),(786,1741503600,6),(786,1762063200,7),(786,1772953200,6),(786,1793512800,7),(786,1805007600,6),(786,1825567200,7),(786,1836457200,6),(786,1857016800,7),(786,1867906800,6),(786,1888466400,7),(786,1899356400,6),(786,1919916000,7),(786,1930806000,6),(786,1951365600,7),(786,1962860400,6),(786,1983420000,7),(786,1994310000,6),(786,2014869600,7),(786,2025759600,6),(786,2046319200,7),(786,2057209200,6),(786,2077768800,7),(786,2088658800,6),(786,2109218400,7),(786,2120108400,6),(786,2140668000,7),(787,-2147483648,0),(787,-1861906760,1),(787,-1104524348,2),(787,-765317964,3),(787,465449400,4),(788,-2147483648,2),(788,-1633273200,1),(788,-1615132800,2),(788,-1601823600,1),(788,-1583683200,2),(788,-880210800,3),(788,-820519140,2),(788,-812653140,3),(788,-796845540,2),(788,-84380400,1),(788,-68659200,2),(789,-2147483648,1),(789,-1670483460,3),(789,421218000,2),(789,436334400,3),(789,452062800,2),(789,467784000,3),(789,483512400,2),(789,499233600,3),(789,514962000,2),(789,530683200,3),(789,546411600,2),(789,562132800,3),(789,576050400,4),(789,594194400,5),(789,607500000,4),(789,625644000,5),(789,638949600,4),(789,657093600,5),(789,671004000,4),(789,688543200,5),(789,702453600,4),(789,719992800,5),(789,733903200,4),(789,752047200,5),(789,765352800,4),(789,783496800,5),(789,796802400,4),(789,814946400,5),(789,828856800,4),(789,846396000,5),(789,860306400,4),(789,877845600,5),(789,1112504400,2),(789,1130644800,3),(789,1143954000,2),(789,1162094400,3),(789,1331449200,2),(789,1352008800,3),(789,1362898800,2),(789,1383458400,3),(789,1394348400,2),(789,1414908000,3),(789,1425798000,2),(789,1446357600,3),(789,1489302000,2),(789,1509861600,3),(789,1520751600,2),(789,1541311200,3),(789,1552201200,2),(789,1572760800,3),(789,1583650800,2),(789,1604210400,3),(789,1615705200,2),(789,1636264800,3),(789,1647154800,2),(789,1667714400,3),(789,1678604400,2),(789,1699164000,3),(789,1710054000,2),(789,1730613600,3),(789,1741503600,2),(789,1762063200,3),(789,1772953200,2),(789,1793512800,3),(789,1805007600,2),(789,1825567200,3),(789,1836457200,2),(789,1857016800,3),(789,1867906800,2),(789,1888466400,3),(789,1899356400,2),(789,1919916000,3),(789,1930806000,2),(789,1951365600,3),(789,1962860400,2),(789,1983420000,3),(789,1994310000,2),(789,2014869600,3),(789,2025759600,2),(789,2046319200,3),(789,2057209200,2),(789,2077768800,3),(789,2088658800,2),(789,2109218400,3),(789,2120108400,2),(789,2140668000,3),(790,-2147483648,0),(790,-1825098836,1),(791,-2147483648,0),(791,-1767209328,2),(791,-1206950400,1),(791,-1191355200,2),(791,-1175367600,1),(791,-1159819200,2),(791,-633812400,1),(791,-622062000,2),(791,-602276400,1),(791,-591825600,2),(791,-570740400,1),(791,-560203200,2),(791,-539118000,1),(791,-531345600,2),(791,-191358000,1),(791,-184190400,2),(791,-155156400,1),(791,-150062400,2),(791,-128890800,1),(791,-121118400,2),(791,-99946800,1),(791,-89582400,2),(791,-68410800,1),(791,-57960000,2),(791,499755600,1),(791,511243200,2),(791,530600400,1),(791,540273600,2),(791,562136400,1),(791,571204800,2),(791,1214283600,3),(791,1384056000,2),(792,-2147483648,0),(792,-1767210264,2),(792,-1206954000,1),(792,-1191358800,2),(792,-1175371200,1),(792,-1159822800,2),(792,-633816000,1),(792,-622065600,2),(792,-602280000,1),(792,-591829200,2),(792,-570744000,1),(792,-560206800,2),(792,-539121600,1),(792,-531349200,2),(792,-191361600,1),(792,-184194000,2),(792,-155160000,1),(792,-150066000,2),(792,-128894400,1),(792,-121122000,2),(792,-99950400,1),(792,-89586000,2),(792,-68414400,1),(792,-57963600,2),(792,499752000,1),(792,511239600,2),(792,530596800,1),(792,540270000,2),(792,562132800,1),(792,571201200,2),(793,-2147483648,1),(793,-873057600,3),(793,-769395600,2),(793,-765399600,1),(794,-2147483648,1),(794,-1892661434,2),(794,-1688410800,1),(794,-1619205434,3),(794,-1593806400,1),(794,-1335986234,4),(794,-1317585600,2),(794,-1304362800,4),(794,-1286049600,2),(794,-1272826800,4),(794,-1254513600,2),(794,-1241290800,4),(794,-1222977600,2),(794,-1209754800,4),(794,-1191355200,2),(794,-1178132400,3),(794,-870552000,2),(794,-865278000,3),(794,-718056000,2),(794,-713649600,3),(794,-36619200,5),(794,-23922000,6),(794,-3355200,5),(794,7527600,6),(794,24465600,5),(794,37767600,6),(794,55915200,5),(794,69217200,6),(794,87969600,5),(794,100666800,6),(794,118209600,5),(794,132116400,6),(794,150868800,5),(794,163566000,6),(794,182318400,5),(794,195620400,6),(794,213768000,5),(794,227070000,6),(794,245217600,5),(794,258519600,6),(794,277272000,5),(794,289969200,6),(794,308721600,5),(794,321418800,6),(794,340171200,5),(794,353473200,6),(794,371620800,5),(794,384922800,6),(794,403070400,5),(794,416372400,6),(794,434520000,5),(794,447822000,6),(794,466574400,5),(794,479271600,6),(794,498024000,5),(794,510721200,6),(794,529473600,5),(794,545194800,6),(794,560923200,5),(794,574225200,6),(794,592372800,5),(794,605674800,6),(794,624427200,5),(794,637124400,6),(794,653457600,5),(794,668574000,6),(794,687326400,5),(794,700628400,6),(794,718776000,5),(794,732078000,6),(794,750225600,5),(794,763527600,6),(794,781675200,5),(794,794977200,6),(794,813729600,5),(794,826426800,6),(794,845179200,5),(794,859690800,6),(794,876628800,5),(794,889930800,6),(794,906868800,5),(794,923194800,6),(794,939528000,5),(794,952830000,6),(794,971582400,5),(794,984279600,6),(794,1003032000,5),(794,1015729200,6),(794,1034481600,5),(794,1047178800,6),(794,1065931200,5),(794,1079233200,6),(794,1097380800,5),(794,1110682800,6),(794,1128830400,5),(794,1142132400,6),(794,1160884800,5),(794,1173582000,6),(794,1192334400,5),(794,1206846000,6),(794,1223784000,5),(794,1237086000,6),(794,1255233600,5),(794,1270350000,6),(794,1286683200,5),(794,1304823600,6),(794,1313899200,5),(794,1335668400,6),(794,1346558400,5),(794,1367118000,6),(794,1378612800,5),(794,1398567600,6),(794,1410062400,5),(794,1463281200,6),(794,1471147200,5),(794,1480820400,7),(795,-2147483648,2),(795,-1632067200,1),(795,-1615136400,2),(795,-923248800,1),(795,-880214400,3),(795,-769395600,4),(795,-765392400,2),(795,136368000,1),(795,152089200,2),(795,167817600,1),(795,183538800,2),(795,199267200,1),(795,215593200,2),(795,230716800,1),(795,247042800,2),(795,262771200,1),(795,278492400,2),(795,294220800,1),(795,309942000,2),(795,325670400,1),(795,341391600,2),(795,357120000,1),(795,372841200,2),(795,388569600,1),(795,404895600,2),(795,420019200,1),(795,436345200,2),(795,452073600,1),(795,467794800,2),(795,483523200,1),(795,499244400,2),(795,514972800,1),(795,530694000,2),(795,544608000,1),(795,562143600,2),(795,576057600,1),(795,594198000,2),(795,607507200,1),(795,625647600,2),(795,638956800,1),(795,657097200,2),(795,671011200,1),(795,688546800,2),(795,702460800,1),(795,719996400,2),(795,733910400,1),(795,752050800,2),(795,765360000,1),(795,783500400,2),(795,796809600,1),(795,814950000,2),(795,828864000,1),(795,846399600,2),(795,860313600,1),(795,877849200,2),(795,891763200,1),(795,909298800,2),(795,923212800,1),(795,941353200,2),(795,954662400,1),(795,972802800,2),(795,986112000,1),(795,1004252400,2),(795,1018166400,1),(795,1035702000,2),(795,1049616000,1),(795,1067151600,2),(795,1081065600,1),(795,1099206000,2),(795,1112515200,1),(795,1130655600,2),(795,1143964800,1),(795,1162105200,2),(795,1173600000,1),(795,1194159600,2),(795,1205049600,1),(795,1225609200,2),(795,1236499200,1),(795,1257058800,2),(795,1268553600,1),(795,1289113200,2),(795,1300003200,1),(795,1320562800,2),(795,1331452800,1),(795,1352012400,2),(795,1362902400,1),(795,1383462000,2),(795,1394352000,1),(795,1414911600,2),(795,1425801600,1),(795,1446361200,2),(795,1457856000,1),(795,1478415600,2),(795,1489305600,1),(795,1509865200,2),(795,1520755200,1),(795,1541314800,2),(795,1552204800,1),(795,1572764400,2),(795,1583654400,1),(795,1604214000,2),(795,1615708800,1),(795,1636268400,2),(795,1647158400,1),(795,1667718000,2),(795,1678608000,1),(795,1699167600,2),(795,1710057600,1),(795,1730617200,2),(795,1741507200,1),(795,1762066800,2),(795,1772956800,1),(795,1793516400,2),(795,1805011200,1),(795,1825570800,2),(795,1836460800,1),(795,1857020400,2),(795,1867910400,1),(795,1888470000,2),(795,1899360000,1),(795,1919919600,2),(795,1930809600,1),(795,1951369200,2),(795,1962864000,1),(795,1983423600,2),(795,1994313600,1),(795,2014873200,2),(795,2025763200,1),(795,2046322800,2),(795,2057212800,1),(795,2077772400,2),(795,2088662400,1),(795,2109222000,2),(795,2120112000,1),(795,2140671600,2),(796,-2147483648,0),(796,-410227200,2),(796,-147895200,1),(796,-131565600,2),(796,325670400,3),(796,341391600,2),(796,357120000,3),(796,372841200,2),(796,388569600,3),(796,404895600,2),(796,420019200,3),(796,436345200,2),(796,452073600,3),(796,467794800,2),(796,483523200,3),(796,499244400,2),(796,514972800,3),(796,530694000,2),(796,544608000,3),(796,562143600,2),(796,576057600,3),(796,594198000,2),(796,607507200,3),(796,625647600,2),(796,638956800,3),(796,657097200,2),(796,671011200,3),(796,688546800,2),(796,702460800,3),(796,719996400,2),(796,733910400,3),(796,752050800,2),(796,765360000,3),(796,783500400,2),(796,796809600,3),(796,814950000,2),(796,828864000,3),(796,846399600,2),(796,860313600,3),(796,877849200,2),(796,891763200,3),(796,909298800,2),(796,923212800,3),(796,941353200,2),(796,954662400,3),(796,972802800,4),(796,986112000,3),(796,1004252400,2),(796,1018166400,3),(796,1035702000,2),(796,1049616000,3),(796,1067151600,2),(796,1081065600,3),(796,1099206000,2),(796,1112515200,3),(796,1130655600,2),(796,1143964800,3),(796,1162105200,2),(796,1173600000,3),(796,1194159600,2),(796,1205049600,3),(796,1225609200,2),(796,1236499200,3),(796,1257058800,2),(796,1268553600,3),(796,1289113200,2),(796,1300003200,3),(796,1320562800,2),(796,1331452800,3),(796,1352012400,2),(796,1362902400,3),(796,1383462000,2),(796,1394352000,3),(796,1414911600,2),(796,1425801600,3),(796,1446361200,2),(796,1457856000,3),(796,1478415600,2),(796,1489305600,3),(796,1509865200,2),(796,1520755200,3),(796,1541314800,2),(796,1552204800,3),(796,1572764400,2),(796,1583654400,3),(796,1604214000,2),(796,1615708800,3),(796,1636268400,2),(796,1647158400,3),(796,1667718000,2),(796,1678608000,3),(796,1699167600,2),(796,1710057600,3),(796,1730617200,2),(796,1741507200,3),(796,1762066800,2),(796,1772956800,3),(796,1793516400,2),(796,1805011200,3),(796,1825570800,2),(796,1836460800,3),(796,1857020400,2),(796,1867910400,3),(796,1888470000,2),(796,1899360000,3),(796,1919919600,2),(796,1930809600,3),(796,1951369200,2),(796,1962864000,3),(796,1983423600,2),(796,1994313600,3),(796,2014873200,2),(796,2025763200,3),(796,2046322800,2),(796,2057212800,3),(796,2077772400,2),(796,2088662400,3),(796,2109222000,2),(796,2120112000,3),(796,2140671600,2),(797,-2147483648,0),(797,-1767217224,2),(797,-1206957600,1),(797,-1191362400,2),(797,-1175374800,1),(797,-1159826400,2),(797,-633819600,1),(797,-622069200,2),(797,-602283600,1),(797,-591832800,2),(797,-570747600,1),(797,-560210400,2),(797,-539125200,1),(797,-531352800,2),(797,-191365200,1),(797,-184197600,2),(797,-155163600,1),(797,-150069600,2),(797,-128898000,1),(797,-121125600,2),(797,-99954000,1),(797,-89589600,2),(797,-68418000,1),(797,-57967200,2),(797,499748400,1),(797,511236000,2),(797,530593200,1),(797,540266400,2),(797,562129200,1),(797,571197600,2),(797,592974000,1),(797,602042400,2),(797,624423600,1),(797,634701600,2),(797,938919600,1),(797,951616800,2),(797,970974000,1),(797,971575200,2),(797,1003028400,1),(797,1013911200,2),(798,-2147483648,0),(798,-2030202084,2),(798,-1632063600,1),(798,-1615132800,2),(798,-1251651600,1),(798,-1238349600,2),(798,-1220202000,1),(798,-1206900000,2),(798,-1188752400,1),(798,-1175450400,2),(798,-1156698000,1),(798,-1144000800,2),(798,-1125248400,1),(798,-1111946400,2),(798,-1032714000,1),(798,-1016992800,2),(798,-1001264400,1),(798,-986148000,2),(798,-969814800,1),(798,-954093600,2),(798,-937760400,1),(798,-922039200,2),(798,-906310800,1),(798,-890589600,2),(798,-880210800,3),(798,-769395600,4),(798,-765388800,2),(798,-748450800,1),(798,-732729600,2),(798,-715791600,1),(798,-702489600,2),(798,-684342000,1),(798,-671040000,2),(798,-652892400,1),(798,-639590400,2),(798,-620838000,1),(798,-608140800,2),(798,-589388400,1),(798,-576086400,2),(798,-557938800,1),(798,-544636800,2),(798,-526489200,1),(798,-513187200,2),(798,-495039600,1),(798,-481737600,2),(798,-463590000,1),(798,-450288000,2),(798,-431535600,1),(798,-418233600,2),(798,-400086000,1),(798,-386784000,2),(798,-337186800,1),(798,-321465600,2),(798,-305737200,5),(799,-2147483648,0),(799,-704937600,2),(799,-147895200,1),(799,-131565600,2),(799,325670400,3),(799,341391600,2),(799,357120000,3),(799,372841200,2),(799,388569600,3),(799,404895600,2),(799,420019200,3),(799,436345200,2),(799,452073600,3),(799,467794800,2),(799,483523200,3),(799,499244400,2),(799,514972800,3),(799,530694000,2),(799,544608000,3),(799,562143600,2),(799,576057600,3),(799,594198000,2),(799,607507200,3),(799,625647600,2),(799,638956800,3),(799,657097200,2),(799,671011200,3),(799,688546800,2),(799,702460800,3),(799,719996400,2),(799,733910400,3),(799,752050800,2),(799,765360000,3),(799,783500400,2),(799,796809600,3),(799,814950000,2),(799,828864000,3),(799,846399600,2),(799,860313600,3),(799,877849200,2),(799,891763200,3),(799,909298800,2),(799,923212800,3),(799,941353200,2),(799,954662400,3),(799,972802800,4),(799,986112000,3),(799,1004252400,2),(799,1018166400,3),(799,1035702000,2),(799,1049616000,3),(799,1067151600,2),(799,1081065600,3),(799,1099206000,2),(799,1112515200,3),(799,1130655600,2),(799,1143964800,3),(799,1162105200,4),(799,1173600000,3),(799,1194159600,2),(799,1205049600,3),(799,1225609200,2),(799,1236499200,3),(799,1257058800,2),(799,1268553600,3),(799,1289113200,2),(799,1300003200,3),(799,1320562800,2),(799,1331452800,3),(799,1352012400,2),(799,1362902400,3),(799,1383462000,2),(799,1394352000,3),(799,1414911600,2),(799,1425801600,3),(799,1446361200,2),(799,1457856000,3),(799,1478415600,2),(799,1489305600,3),(799,1509865200,2),(799,1520755200,3),(799,1541314800,2),(799,1552204800,3),(799,1572764400,2),(799,1583654400,3),(799,1604214000,2),(799,1615708800,3),(799,1636268400,2),(799,1647158400,3),(799,1667718000,2),(799,1678608000,3),(799,1699167600,2),(799,1710057600,3),(799,1730617200,2),(799,1741507200,3),(799,1762066800,2),(799,1772956800,3),(799,1793516400,2),(799,1805011200,3),(799,1825570800,2),(799,1836460800,3),(799,1857020400,2),(799,1867910400,3),(799,1888470000,2),(799,1899360000,3),(799,1919919600,2),(799,1930809600,3),(799,1951369200,2),(799,1962864000,3),(799,1983423600,2),(799,1994313600,3),(799,2014873200,2),(799,2025763200,3),(799,2046322800,2),(799,2057212800,3),(799,2077772400,2),(799,2088662400,3),(799,2109222000,2),(799,2120112000,3),(799,2140671600,2),(800,-2147483648,0),(800,-1767209328,2),(800,-1206950400,1),(800,-1191355200,2),(800,-1175367600,1),(800,-1159819200,2),(800,-633812400,1),(800,-622062000,2),(800,-602276400,1),(800,-591825600,2),(800,-570740400,1),(800,-560203200,2),(800,-539118000,1),(800,-531345600,2),(800,-191358000,1),(800,-184190400,2),(800,-155156400,1),(800,-150062400,2),(800,-128890800,1),(800,-121118400,2),(800,-99946800,1),(800,-89582400,2),(800,-68410800,1),(800,-57960000,2),(800,499755600,1),(800,511243200,2),(800,530600400,1),(800,540273600,2),(800,562136400,1),(800,571204800,2),(800,1214283600,3),(800,1384056000,2),(801,-2147483648,1),(801,-1567453392,2),(801,-1233432000,3),(801,-1222981200,2),(801,-1205956800,3),(801,-1194037200,2),(801,-1172865600,3),(801,-1162501200,2),(801,-1141329600,3),(801,-1130965200,2),(801,-1109793600,3),(801,-1099429200,2),(801,-1078257600,3),(801,-1067806800,2),(801,-1046635200,3),(801,-1036270800,2),(801,-1015099200,3),(801,-1004734800,2),(801,-983563200,3),(801,-973198800,2),(801,-952027200,3),(801,-941576400,2),(801,-931032000,3),(801,-900882000,2),(801,-890337600,3),(801,-833749200,2),(801,-827265600,3),(801,-752274000,2),(801,-733780800,3),(801,-197326800,2),(801,-190843200,3),(801,-184194000,2),(801,-164491200,3),(801,-152658000,2),(801,-132955200,3),(801,-121122000,2),(801,-101419200,3),(801,-86821200,2),(801,-71092800,3),(801,-54766800,2),(801,-39038400,3),(801,-23317200,2),(801,-7588800,5),(801,128142000,4),(801,136605600,5),(801,596948400,4),(801,605066400,5),(801,624423600,4),(801,636516000,5),(801,656478000,4),(801,667965600,2),(801,687931200,4),(801,699415200,5),(801,719377200,4),(801,731469600,5),(801,938919600,3),(801,952052400,5),(801,1198983600,4),(801,1205632800,5),(801,1224385200,4),(801,1237082400,5),(802,-2147483648,0),(802,-1514736000,1),(802,-1451667600,2),(802,-1343062800,1),(802,-1234803600,2),(802,-1222963200,3),(802,-1207242000,2),(802,-873820800,4),(802,-769395600,5),(802,-761677200,2),(802,-686073600,3),(802,-661539600,2),(802,-495039600,3),(802,-481734000,2),(802,-463590000,3),(802,-450284400,2),(802,-431535600,3),(802,-418230000,2),(802,-400086000,3),(802,-386780400,2),(802,-368636400,3),(802,-355330800,2),(802,-337186800,3),(802,-323881200,2),(802,-305737200,3),(802,-292431600,2),(802,199274400,3),(802,215600400,2),(802,230724000,3),(802,247050000,2),(802,262778400,3),(802,278499600,2),(802,294228000,3),(802,309949200,2),(802,325677600,3),(802,341398800,2),(802,357127200,3),(802,372848400,2),(802,388576800,3),(802,404902800,2),(802,420026400,3),(802,436352400,2),(802,452080800,3),(802,467802000,2),(802,483530400,3),(802,499251600,2),(802,514980000,3),(802,530701200,2),(802,544615200,3),(802,562150800,2),(802,576064800,3),(802,594205200,2),(802,607514400,3),(802,625654800,2),(802,638964000,3),(802,657104400,2),(802,671018400,3),(802,688554000,2),(802,702468000,3),(802,720003600,2),(802,733917600,3),(802,752058000,2),(802,765367200,3),(802,783507600,2),(802,796816800,3),(802,814957200,2),(802,828871200,3),(802,846406800,2),(802,860320800,3),(802,877856400,2),(802,891770400,3),(802,909306000,2),(802,923220000,3),(802,941360400,2),(802,954669600,3),(802,972810000,2),(802,986119200,3),(802,1004259600,2),(802,1018173600,3),(802,1035709200,2),(802,1049623200,3),(802,1067158800,2),(802,1081072800,3),(802,1099213200,2),(802,1112522400,3),(802,1130662800,2),(802,1143972000,3),(802,1162112400,2),(802,1175421600,3),(802,1193562000,2),(802,1207476000,3),(802,1225011600,2),(802,1238925600,3),(802,1256461200,2),(802,1268560800,3),(802,1289120400,2),(802,1300010400,3),(802,1320570000,2),(802,1331460000,3),(802,1352019600,2),(802,1362909600,3),(802,1383469200,2),(802,1394359200,3),(802,1414918800,2),(802,1425808800,3),(802,1446368400,2),(802,1457863200,3),(802,1478422800,2),(802,1489312800,3),(802,1509872400,2),(802,1520762400,3),(802,1541322000,2),(802,1552212000,3),(802,1572771600,2),(802,1583661600,3),(802,1604221200,2),(802,1615716000,3),(802,1636275600,2),(802,1647165600,3),(802,1667725200,2),(802,1678615200,3),(802,1699174800,2),(802,1710064800,3),(802,1730624400,2),(802,1741514400,3),(802,1762074000,2),(802,1772964000,3),(802,1793523600,2),(802,1805018400,3),(802,1825578000,2),(802,1836468000,3),(802,1857027600,2),(802,1867917600,3),(802,1888477200,2),(802,1899367200,3),(802,1919926800,2); +INSERT INTO `time_zone_transition` VALUES (802,1930816800,3),(802,1951376400,2),(802,1962871200,3),(802,1983430800,2),(802,1994320800,3),(802,2014880400,2),(802,2025770400,3),(802,2046330000,2),(802,2057220000,3),(802,2077779600,2),(802,2088669600,3),(802,2109229200,2),(802,2120119200,3),(802,2140678800,2),(803,-2147483648,0),(803,-1767212472,2),(803,-1206954000,1),(803,-1191358800,2),(803,-1175371200,1),(803,-1159822800,2),(803,-633816000,1),(803,-622065600,2),(803,-602280000,1),(803,-591829200,2),(803,-570744000,1),(803,-560206800,2),(803,-539121600,1),(803,-531349200,2),(803,-191361600,1),(803,-184194000,2),(803,-155160000,1),(803,-150066000,2),(803,-128894400,1),(803,-121122000,2),(803,-99950400,1),(803,-89586000,2),(803,-68414400,1),(803,-57963600,2),(803,499752000,1),(803,511239600,2),(803,530596800,1),(803,540270000,2),(803,562132800,1),(803,571201200,2),(803,1214280000,3),(804,-2147483648,1),(804,-1892661434,2),(804,-1688410800,1),(804,-1619205434,3),(804,-1593806400,1),(804,-1335986234,4),(804,-1317585600,2),(804,-1304362800,4),(804,-1286049600,2),(804,-1272826800,4),(804,-1254513600,2),(804,-1241290800,4),(804,-1222977600,2),(804,-1209754800,4),(804,-1191355200,2),(804,-1178132400,3),(804,-870552000,2),(804,-865278000,3),(804,-740520000,5),(804,-736376400,3),(804,-718056000,2),(804,-713649600,3),(804,-36619200,6),(804,-23922000,7),(804,-3355200,6),(804,7527600,7),(804,24465600,6),(804,37767600,7),(804,55915200,6),(804,69217200,7),(804,87969600,6),(804,100666800,7),(804,118209600,6),(804,132116400,7),(804,150868800,6),(804,163566000,7),(804,182318400,6),(804,195620400,7),(804,213768000,6),(804,227070000,7),(804,245217600,6),(804,258519600,7),(804,277272000,6),(804,289969200,7),(804,308721600,6),(804,321418800,7),(804,340171200,6),(804,353473200,7),(804,371620800,6),(804,384922800,7),(804,403070400,6),(804,416372400,7),(804,434520000,6),(804,447822000,7),(804,466574400,6),(804,479271600,7),(804,498024000,6),(804,510721200,7),(804,529473600,6),(804,545194800,7),(804,560923200,6),(804,574225200,7),(804,592372800,6),(804,605674800,7),(804,624427200,6),(804,637124400,7),(804,653457600,6),(804,668574000,7),(804,687326400,6),(804,700628400,7),(804,718776000,6),(804,732078000,7),(804,750225600,6),(804,763527600,7),(804,781675200,6),(804,794977200,7),(804,813729600,6),(804,826426800,7),(804,845179200,6),(804,859690800,7),(804,876628800,6),(804,889930800,7),(804,906868800,6),(804,923194800,7),(804,939528000,6),(804,952830000,7),(804,971582400,6),(804,984279600,7),(804,1003032000,6),(804,1015729200,7),(804,1034481600,6),(804,1047178800,7),(804,1065931200,6),(804,1079233200,7),(804,1097380800,6),(804,1110682800,7),(804,1128830400,6),(804,1142132400,7),(804,1160884800,6),(804,1173582000,7),(804,1192334400,6),(804,1206846000,7),(804,1223784000,6),(804,1237086000,7),(804,1255233600,6),(804,1270350000,7),(804,1286683200,6),(804,1304823600,7),(804,1313899200,6),(804,1335668400,7),(804,1346558400,6),(804,1367118000,7),(804,1378612800,6),(804,1398567600,7),(804,1410062400,6),(804,1463281200,7),(804,1471147200,6),(804,1494730800,7),(804,1502596800,6),(804,1526180400,7),(804,1534046400,6),(804,1554606000,7),(804,1567915200,6),(804,1586055600,7),(804,1599364800,6),(804,1617505200,7),(804,1630814400,6),(804,1648954800,7),(804,1662264000,6),(804,1680404400,7),(804,1693713600,6),(804,1712458800,7),(804,1725768000,6),(804,1743908400,7),(804,1757217600,6),(804,1775358000,7),(804,1788667200,6),(804,1806807600,7),(804,1820116800,6),(804,1838257200,7),(804,1851566400,6),(804,1870311600,7),(804,1883016000,6),(804,1901761200,7),(804,1915070400,6),(804,1933210800,7),(804,1946520000,6),(804,1964660400,7),(804,1977969600,6),(804,1996110000,7),(804,2009419200,6),(804,2027559600,7),(804,2040868800,6),(804,2059614000,7),(804,2072318400,6),(804,2091063600,7),(804,2104372800,6),(804,2122513200,7),(804,2135822400,6),(805,-2147483648,1),(805,-1159773600,3),(805,-100119600,2),(805,-89668800,3),(805,-5770800,4),(805,4422600,3),(805,25678800,4),(805,33193800,3),(805,57733200,4),(805,64816200,3),(805,89182800,4),(805,96438600,3),(805,120632400,4),(805,127974600,3),(805,152082000,5),(805,972799200,3),(805,975823200,5),(806,-2147483648,0),(806,-1767214412,2),(806,-1206957600,1),(806,-1191362400,2),(806,-1175374800,1),(806,-1159826400,2),(806,-633819600,1),(806,-622069200,2),(806,-602283600,1),(806,-591832800,2),(806,-570747600,1),(806,-560210400,2),(806,-539125200,1),(806,-531352800,2),(806,-195426000,1),(806,-184197600,2),(806,-155163600,1),(806,-150069600,2),(806,-128898000,1),(806,-121125600,2),(806,-99954000,1),(806,-89589600,2),(806,-68418000,1),(806,-57967200,2),(806,499748400,1),(806,511236000,2),(806,530593200,1),(806,540266400,2),(806,562129200,1),(806,571197600,2),(806,592974000,1),(806,602042400,2),(806,624423600,1),(806,634701600,2),(806,656478000,1),(806,666756000,2),(806,687927600,1),(806,697600800,2),(806,719982000,1),(806,728445600,2),(806,750826800,1),(806,761709600,2),(806,782276400,1),(806,793159200,2),(806,813726000,1),(806,824004000,2),(806,844570800,1),(806,856058400,2),(806,876106800,1),(806,888717600,2),(806,908074800,1),(806,919562400,2),(806,938919600,1),(806,951616800,2),(806,970974000,1),(806,982461600,2),(806,1003028400,1),(806,1013911200,2),(806,1036292400,1),(806,1045360800,2),(806,1066532400,1),(806,1076810400,2),(806,1099364400,1),(806,1108864800,2),(806,1129431600,1),(806,1140314400,2),(806,1162695600,1),(806,1172368800,2),(806,1192330800,1),(806,1203213600,2),(806,1224385200,1),(806,1234663200,2),(806,1255834800,1),(806,1266717600,2),(806,1287284400,1),(806,1298167200,2),(806,1318734000,1),(806,1330221600,2),(806,1350788400,1),(806,1361066400,2),(806,1382238000,1),(806,1392516000,2),(806,1413687600,1),(806,1424570400,2),(806,1445137200,1),(806,1456020000,2),(806,1476586800,1),(806,1487469600,2),(806,1508036400,1),(806,1518919200,2),(806,1541300400,1),(806,1550368800,2),(807,-2147483648,0),(807,-1686090728,1),(807,323841600,2),(807,338961600,3),(807,354679200,6),(807,370400400,4),(807,386125200,5),(807,401850000,4),(807,417574800,5),(807,433299600,4),(807,449024400,5),(807,465354000,4),(807,481078800,5),(807,496803600,4),(807,512528400,5),(807,528253200,4),(807,543978000,5),(807,559702800,4),(807,575427600,5),(807,591152400,4),(807,606877200,5),(807,622602000,4),(807,638326800,5),(807,654656400,4),(807,670381200,5),(807,686106000,4),(807,701830800,5),(807,717555600,4),(807,733280400,5),(807,749005200,4),(807,764730000,5),(807,780454800,4),(807,796179600,5),(807,811904400,4),(807,828234000,5),(807,846378000,4),(807,859683600,5),(807,877827600,4),(807,891133200,5),(807,909277200,4),(807,922582800,5),(807,941331600,4),(807,954032400,5),(807,972781200,4),(807,985482000,5),(807,1004230800,4),(807,1017536400,5),(807,1035680400,4),(807,1048986000,5),(807,1067130000,4),(807,1080435600,5),(807,1099184400,4),(807,1111885200,5),(807,1130634000,4),(807,1143334800,5),(807,1162083600,4),(807,1174784400,5),(807,1193533200,4),(807,1206838800,5),(807,1224982800,4),(807,1238288400,5),(807,1256432400,4),(807,1269738000,5),(807,1288486800,4),(807,1301187600,5),(807,1319936400,4),(807,1332637200,5),(807,1351386000,4),(807,1364691600,5),(807,1382835600,4),(807,1396141200,5),(807,1414285200,4),(807,1427590800,5),(807,1445734800,4),(807,1459040400,5),(807,1477789200,4),(807,1490490000,5),(807,1509238800,4),(807,1521939600,5),(807,1540688400,4),(807,1553994000,5),(807,1572138000,4),(807,1585443600,5),(807,1603587600,4),(807,1616893200,5),(807,1635642000,4),(807,1648342800,5),(807,1667091600,4),(807,1679792400,5),(807,1698541200,4),(807,1711846800,5),(807,1729990800,4),(807,1743296400,5),(807,1761440400,4),(807,1774746000,5),(807,1792890000,4),(807,1806195600,5),(807,1824944400,4),(807,1837645200,5),(807,1856394000,4),(807,1869094800,5),(807,1887843600,4),(807,1901149200,5),(807,1919293200,4),(807,1932598800,5),(807,1950742800,4),(807,1964048400,5),(807,1982797200,4),(807,1995498000,5),(807,2014246800,4),(807,2026947600,5),(807,2045696400,4),(807,2058397200,5),(807,2077146000,4),(807,2090451600,5),(807,2108595600,4),(807,2121901200,5),(807,2140045200,4),(808,-2147483648,2),(808,-1633273200,1),(808,-1615132800,2),(808,-1601823600,1),(808,-1583683200,2),(808,-1570374000,1),(808,-1551628800,2),(808,-1538924400,1),(808,-1534089600,2),(808,-880210800,3),(808,-769395600,4),(808,-765388800,2),(808,-147884400,1),(808,-131558400,2),(808,-116434800,1),(808,-100108800,2),(808,-84380400,1),(808,-68659200,2),(808,-52930800,1),(808,-37209600,2),(808,-21481200,1),(808,-5760000,2),(808,9968400,1),(808,25689600,2),(808,41418000,1),(808,57744000,2),(808,73472400,1),(808,89193600,2),(808,104922000,1),(808,120643200,2),(808,126694800,1),(808,152092800,2),(808,162378000,1),(808,183542400,2),(808,199270800,1),(808,215596800,2),(808,230720400,1),(808,247046400,2),(808,262774800,1),(808,278496000,2),(808,294224400,1),(808,309945600,2),(808,325674000,1),(808,341395200,2),(808,357123600,1),(808,372844800,2),(808,388573200,1),(808,404899200,2),(808,420022800,1),(808,436348800,2),(808,452077200,1),(808,467798400,2),(808,483526800,1),(808,499248000,2),(808,514976400,1),(808,530697600,2),(808,544611600,1),(808,562147200,2),(808,576061200,1),(808,594201600,2),(808,607510800,1),(808,625651200,2),(808,638960400,1),(808,657100800,2),(808,671014800,1),(808,688550400,2),(808,702464400,1),(808,720000000,2),(808,733914000,1),(808,752054400,2),(808,765363600,1),(808,783504000,2),(808,796813200,1),(808,814953600,2),(808,828867600,1),(808,846403200,2),(808,860317200,1),(808,877852800,2),(808,891766800,1),(808,909302400,2),(808,923216400,1),(808,941356800,2),(808,954666000,1),(808,972806400,2),(808,986115600,1),(808,1004256000,2),(808,1018170000,1),(808,1035705600,2),(808,1049619600,1),(808,1067155200,2),(808,1081069200,1),(808,1099209600,2),(808,1112518800,1),(808,1130659200,2),(808,1143968400,1),(808,1162108800,2),(808,1173603600,1),(808,1194163200,2),(808,1205053200,1),(808,1225612800,2),(808,1236502800,1),(808,1257062400,2),(808,1268557200,1),(808,1289116800,2),(808,1300006800,1),(808,1320566400,2),(808,1331456400,1),(808,1352016000,2),(808,1362906000,1),(808,1383465600,2),(808,1394355600,1),(808,1414915200,2),(808,1425805200,1),(808,1446364800,2),(808,1457859600,1),(808,1478419200,2),(808,1489309200,1),(808,1509868800,2),(808,1520758800,1),(808,1541318400,2),(808,1552208400,1),(808,1572768000,2),(808,1583658000,1),(808,1604217600,2),(808,1615712400,1),(808,1636272000,2),(808,1647162000,1),(808,1667721600,2),(808,1678611600,1),(808,1699171200,2),(808,1710061200,1),(808,1730620800,2),(808,1741510800,1),(808,1762070400,2),(808,1772960400,1),(808,1793520000,2),(808,1805014800,1),(808,1825574400,2),(808,1836464400,1),(808,1857024000,2),(808,1867914000,1),(808,1888473600,2),(808,1899363600,1),(808,1919923200,2),(808,1930813200,1),(808,1951372800,2),(808,1962867600,1),(808,1983427200,2),(808,1994317200,1),(808,2014876800,2),(808,2025766800,1),(808,2046326400,2),(808,2057216400,1),(808,2077776000,2),(808,2088666000,1),(808,2109225600,2),(808,2120115600,1),(808,2140675200,2),(809,-2147483648,1),(809,-880207200,2),(809,-769395600,3),(809,-765385200,1),(809,-21477600,4),(809,-5756400,1),(809,9972000,4),(809,25693200,1),(809,41421600,4),(809,57747600,1),(809,73476000,4),(809,89197200,1),(809,104925600,4),(809,120646800,1),(809,126698400,4),(809,152096400,1),(809,162381600,4),(809,183546000,1),(809,199274400,4),(809,215600400,1),(809,230724000,4),(809,247050000,1),(809,262778400,4),(809,278499600,1),(809,294228000,4),(809,309949200,1),(809,325677600,4),(809,341398800,1),(809,357127200,4),(809,372848400,1),(809,388576800,4),(809,404902800,1),(809,420026400,4),(809,436352400,5),(809,439030800,7),(809,452084400,6),(809,467805600,7),(809,483534000,6),(809,499255200,7),(809,514983600,6),(809,530704800,7),(809,544618800,6),(809,562154400,7),(809,576068400,6),(809,594208800,7),(809,607518000,6),(809,625658400,7),(809,638967600,6),(809,657108000,7),(809,671022000,6),(809,688557600,7),(809,702471600,6),(809,720007200,7),(809,733921200,6),(809,752061600,7),(809,765370800,6),(809,783511200,7),(809,796820400,6),(809,814960800,7),(809,828874800,6),(809,846410400,7),(809,860324400,6),(809,877860000,7),(809,891774000,6),(809,909309600,7),(809,923223600,6),(809,941364000,7),(809,954673200,6),(809,972813600,7),(809,986122800,6),(809,1004263200,7),(809,1018177200,6),(809,1035712800,7),(809,1049626800,6),(809,1067162400,7),(809,1081076400,6),(809,1099216800,7),(809,1112526000,6),(809,1130666400,7),(809,1143975600,6),(809,1162116000,7),(809,1173610800,6),(809,1194170400,7),(809,1205060400,6),(809,1225620000,7),(809,1236510000,6),(809,1257069600,7),(809,1268564400,6),(809,1289124000,7),(809,1300014000,6),(809,1320573600,7),(809,1331463600,6),(809,1352023200,7),(809,1362913200,6),(809,1383472800,7),(809,1394362800,6),(809,1414922400,7),(809,1425812400,6),(809,1446372000,7),(809,1457866800,6),(809,1478426400,7),(809,1489316400,6),(809,1509876000,7),(809,1520766000,6),(809,1541325600,7),(809,1552215600,6),(809,1572775200,7),(809,1583665200,6),(809,1604224800,7),(809,1615719600,6),(809,1636279200,7),(809,1647169200,6),(809,1667728800,7),(809,1678618800,6),(809,1699178400,7),(809,1710068400,6),(809,1730628000,7),(809,1741518000,6),(809,1762077600,7),(809,1772967600,6),(809,1793527200,7),(809,1805022000,6),(809,1825581600,7),(809,1836471600,6),(809,1857031200,7),(809,1867921200,6),(809,1888480800,7),(809,1899370800,6),(809,1919930400,7),(809,1930820400,6),(809,1951380000,7),(809,1962874800,6),(809,1983434400,7),(809,1994324400,6),(809,2014884000,7),(809,2025774000,6),(809,2046333600,7),(809,2057223600,6),(809,2077783200,7),(809,2088673200,6),(809,2109232800,7),(809,2120122800,6),(809,2140682400,7),(810,-2147483648,0),(810,-1825098836,1),(811,-2147483648,2),(811,-1664130548,1),(811,-1650137348,2),(811,-1632076148,1),(811,-1615145348,2),(811,-1598650148,1),(811,-1590100148,2),(811,-1567286948,1),(811,-1551565748,2),(811,-1535837348,1),(811,-1520116148,2),(811,-1503782948,1),(811,-1488666548,2),(811,-1472333348,1),(811,-1457216948,2),(811,-1440883748,1),(811,-1425767348,2),(811,-1409434148,1),(811,-1394317748,2),(811,-1377984548,1),(811,-1362263348,2),(811,-1346534948,1),(811,-1330813748,2),(811,-1314480548,1),(811,-1299364148,2),(811,-1283030948,1),(811,-1267914548,2),(811,-1251581348,1),(811,-1236464948,2),(811,-1220131748,1),(811,-1205015348,2),(811,-1188682148,1),(811,-1172960948,2),(811,-1156627748,1),(811,-1141511348,2),(811,-1125178148,1),(811,-1110061748,2),(811,-1096921748,4),(811,-1093728600,3),(811,-1078612200,4),(811,-1061670600,3),(811,-1048973400,4),(811,-1030221000,3),(811,-1017523800,4),(811,-998771400,3),(811,-986074200,4),(811,-966717000,3),(811,-954624600,4),(811,-935267400,3),(811,-922570200,4),(811,-903817800,3),(811,-891120600,4),(811,-872368200,6),(811,-769395600,5),(811,-765401400,4),(811,-746044200,3),(811,-733347000,4),(811,-714594600,3),(811,-701897400,4),(811,-683145000,3),(811,-670447800,4),(811,-651695400,3),(811,-638998200,4),(811,-619641000,3),(811,-606943800,4),(811,-589401000,3),(811,-576099000,4),(811,-557951400,3),(811,-544649400,4),(811,-526501800,3),(811,-513199800,4),(811,-495052200,3),(811,-481750200,4),(811,-463602600,3),(811,-450300600,4),(811,-431548200,3),(811,-418246200,4),(811,-400098600,3),(811,-386796600,4),(811,-368649000,3),(811,-355347000,4),(811,-337199400,3),(811,-323897400,4),(811,-305749800,3),(811,-289423800,4),(811,-273695400,3),(811,-257974200,4),(811,-242245800,3),(811,-226524600,4),(811,-210796200,3),(811,-195075000,4),(811,-179346600,3),(811,-163625400,4),(811,-147897000,3),(811,-131571000,4),(811,-116447400,3),(811,-100121400,4),(811,-84393000,3),(811,-68671800,4),(811,-52943400,3),(811,-37222200,4),(811,-21493800,3),(811,-5772600,4),(811,9955800,3),(811,25677000,4),(811,41405400,3),(811,57731400,4),(811,73459800,3),(811,89181000,4),(811,104909400,3),(811,120630600,4),(811,136359000,3),(811,152080200,4),(811,167808600,3),(811,183529800,4),(811,199258200,3),(811,215584200,4),(811,230707800,3),(811,247033800,4),(811,262762200,3),(811,278483400,4),(811,294211800,3),(811,309933000,4),(811,325661400,3),(811,341382600,4),(811,357111000,3),(811,372832200,4),(811,388560600,3),(811,404886600,4),(811,420010200,3),(811,436336200,4),(811,452064600,3),(811,467785800,4),(811,483514200,3),(811,499235400,4),(811,514963800,3),(811,530685000,4),(811,544591860,3),(811,562127460,4),(811,576041460,7),(811,594178260,4),(811,607491060,3),(811,625631460,4),(811,638940660,3),(811,657081060,4),(811,670995060,3),(811,688530660,4),(811,702444660,3),(811,719980260,4),(811,733894260,3),(811,752034660,4),(811,765343860,3),(811,783484260,4),(811,796793460,3),(811,814933860,4),(811,828847860,3),(811,846383460,4),(811,860297460,3),(811,877833060,4),(811,891747060,3),(811,909282660,4),(811,923196660,3),(811,941337060,4),(811,954646260,3),(811,972786660,4),(811,986095860,3),(811,1004236260,4),(811,1018150260,3),(811,1035685860,4),(811,1049599860,3),(811,1067135460,4),(811,1081049460,3),(811,1099189860,4),(811,1112499060,3),(811,1130639460,4),(811,1143948660,3),(811,1162089060,4),(811,1173583860,3),(811,1194143460,4),(811,1205033460,3),(811,1225593060,4),(811,1236483060,3),(811,1257042660,4),(811,1268537460,3),(811,1289097060,4),(811,1299987060,3),(811,1320553800,4),(811,1331443800,3),(811,1352003400,4),(811,1362893400,3),(811,1383453000,4),(811,1394343000,3),(811,1414902600,4),(811,1425792600,3),(811,1446352200,4),(811,1457847000,3),(811,1478406600,4),(811,1489296600,3),(811,1509856200,4),(811,1520746200,3),(811,1541305800,4),(811,1552195800,3),(811,1572755400,4),(811,1583645400,3),(811,1604205000,4),(811,1615699800,3),(811,1636259400,4),(811,1647149400,3),(811,1667709000,4),(811,1678599000,3),(811,1699158600,4),(811,1710048600,3),(811,1730608200,4),(811,1741498200,3),(811,1762057800,4),(811,1772947800,3),(811,1793507400,4),(811,1805002200,3),(811,1825561800,4),(811,1836451800,3),(811,1857011400,4),(811,1867901400,3),(811,1888461000,4),(811,1899351000,3),(811,1919910600,4),(811,1930800600,3),(811,1951360200,4),(811,1962855000,3),(811,1983414600,4),(811,1994304600,3),(811,2014864200,4),(811,2025754200,3),(811,2046313800,4),(811,2057203800,3),(811,2077763400,4),(811,2088653400,3),(811,2109213000,4),(811,2120103000,3),(811,2140662600,4),(812,-2147483648,0),(812,-1825098836,1),(813,-2147483648,0),(813,-1825098836,1),(814,-2147483648,0),(814,-1825098836,1),(815,-2147483648,0),(815,-1825098836,1),(816,-2147483648,0),(816,-2030201320,2),(816,-1632063600,1),(816,-1615132800,2),(816,-880210800,3),(816,-769395600,4),(816,-765388800,2),(816,-747241200,1),(816,-732729600,2),(816,-715791600,1),(816,-702489600,2),(816,-684342000,1),(816,-671040000,2),(816,-652892400,1),(816,-639590400,2),(816,-400086000,1),(816,-384364800,2),(816,-337186800,1),(816,-321465600,2),(816,-305737200,1),(816,-292435200,2),(816,-273682800,1),(816,-260985600,2),(816,73472400,5),(817,-2147483648,0),(817,-1538503868,2),(817,547020000,1),(817,559717200,2),(817,578469600,1),(817,591166800,2),(817,1146981600,1),(817,1154926800,2),(818,-2147483648,0),(818,-1686079492,2),(818,670399200,1),(818,686120400,2),(818,701848800,1),(818,717570000,2),(818,733903200,1),(818,752043600,2),(818,765352800,1),(818,783493200,2),(818,796802400,1),(818,814942800,2),(818,828856800,1),(818,846392400,2),(818,860306400,1),(818,877842000,2),(818,891756000,1),(818,909291600,2),(818,923205600,1),(818,941346000,2),(818,954655200,1),(818,972795600,2),(818,986104800,1),(818,1004245200,2),(818,1018159200,1),(818,1035694800,2),(818,1049608800,1),(818,1067144400,2),(818,1081058400,1),(818,1099198800,2),(818,1112508000,1),(818,1130648400,2),(818,1143957600,1),(818,1162098000,2),(818,1173592800,1),(818,1194152400,2),(818,1205042400,1),(818,1225602000,2),(818,1236492000,1),(818,1257051600,2),(818,1268546400,1),(818,1289106000,2),(818,1299996000,1),(818,1320555600,2),(818,1331445600,1),(818,1352005200,2),(818,1362895200,1),(818,1383454800,2),(818,1394344800,1),(818,1414904400,2),(818,1425794400,1),(818,1446354000,2),(818,1457848800,1),(818,1478408400,2),(818,1489298400,1),(818,1509858000,2),(818,1520748000,1),(818,1541307600,2),(818,1552197600,1),(818,1572757200,2),(818,1583647200,1),(818,1604206800,2),(818,1615701600,1),(818,1636261200,2),(818,1647151200,1),(818,1667710800,2),(818,1678600800,1),(818,1699160400,2),(818,1710050400,1),(818,1730610000,2),(818,1741500000,1),(818,1762059600,2),(818,1772949600,1),(818,1793509200,2),(818,1805004000,1),(818,1825563600,2),(818,1836453600,1),(818,1857013200,2),(818,1867903200,1),(818,1888462800,2),(818,1899352800,1),(818,1919912400,2),(818,1930802400,1),(818,1951362000,2),(818,1962856800,1),(818,1983416400,2),(818,1994306400,1),(818,2014866000,2),(818,2025756000,1),(818,2046315600,2),(818,2057205600,1),(818,2077765200,2),(818,2088655200,1),(818,2109214800,2),(818,2120104800,1),(818,2140664400,2),(819,-2147483648,1),(819,-1893434400,2),(819,-880218000,3),(819,-769395600,4),(819,-765396000,2),(819,9961200,5),(819,25682400,2),(819,41410800,5),(819,57736800,2),(819,73465200,5),(819,89186400,2),(819,136364400,5),(819,152085600,2),(819,167814000,5),(819,183535200,2),(819,199263600,5),(819,215589600,2),(819,230713200,5),(819,247039200,2),(819,262767600,5),(819,278488800,2),(819,294217200,5),(819,309938400,2),(819,325666800,5),(819,341388000,2),(819,357116400,5),(819,372837600,2),(819,388566000,5),(819,404892000,2),(819,420015600,5),(819,436341600,2),(819,452070000,5),(819,467791200,2),(819,483519600,5),(819,499240800,2),(819,514969200,5),(819,530690400,2),(819,544604400,5),(819,562140000,2),(819,576054000,5),(819,594194400,2),(819,607503600,5),(819,625644000,2),(819,638953200,5),(819,657093600,2),(819,671007600,5),(819,688543200,2),(819,702457200,5),(819,719992800,2),(819,733906800,5),(819,752047200,2),(819,765356400,5),(819,783496800,2),(819,796806000,5),(819,814946400,2),(819,828860400,5),(819,846396000,2),(819,860310000,5),(819,877845600,2),(819,891759600,5),(819,909295200,2),(819,923209200,5),(819,941349600,2),(819,954658800,5),(819,972799200,2),(819,986108400,5),(819,1004248800,2),(819,1018162800,5),(819,1035698400,2),(819,1049612400,5),(819,1067148000,2),(819,1081062000,5),(819,1099202400,2),(819,1112511600,5),(819,1130652000,2),(819,1143961200,5),(819,1162101600,2),(819,1173596400,5),(819,1194156000,2),(819,1205046000,5),(819,1225605600,2),(819,1236495600,5),(819,1257055200,2),(819,1268550000,5),(819,1289109600,2),(819,1299999600,5),(819,1320559200,2),(819,1331449200,5),(819,1352008800,2),(819,1362898800,5),(819,1383458400,2),(819,1394348400,5),(819,1414908000,2),(819,1425798000,5),(819,1446357600,2),(819,1457852400,5),(819,1478412000,2),(819,1489302000,5),(819,1509861600,2),(819,1520751600,5),(819,1541311200,2),(819,1552201200,5),(819,1572760800,2),(819,1583650800,5),(819,1604210400,2),(819,1615705200,5),(819,1636264800,2),(819,1647154800,5),(819,1667714400,2),(819,1678604400,5),(819,1699164000,2),(819,1710054000,5),(819,1730613600,2),(819,1741503600,5),(819,1762063200,2),(819,1772953200,5),(819,1793512800,2),(819,1805007600,5),(819,1825567200,2),(819,1836457200,5),(819,1857016800,2),(819,1867906800,5),(819,1888466400,2),(819,1899356400,5),(819,1919916000,2),(819,1930806000,5),(819,1951365600,2),(819,1962860400,5),(819,1983420000,2),(819,1994310000,5),(819,2014869600,2),(819,2025759600,5),(819,2046319200,2),(819,2057209200,5),(819,2077768800,2),(819,2088658800,5),(819,2109218400,2),(819,2120108400,5),(819,2140668000,2),(820,-2147483648,0),(820,-1514736000,1),(820,-1451667600,2),(820,-1343062800,1),(820,-1234803600,2),(820,-1222963200,3),(820,-1207242000,2),(820,-873820800,4),(820,-769395600,5),(820,-761677200,2),(820,-686073600,3),(820,-661539600,2),(820,-495039600,3),(820,-481734000,2),(820,-463590000,3),(820,-450284400,2),(820,-431535600,3),(820,-418230000,2),(820,-400086000,3),(820,-386780400,2),(820,-368636400,3),(820,-355330800,2),(820,-337186800,3),(820,-323881200,2),(820,-305737200,3),(820,-292431600,2),(820,199274400,3),(820,215600400,2),(820,230724000,3),(820,247050000,2),(820,262778400,3),(820,278499600,2),(820,294228000,3),(820,309949200,2),(820,325677600,3),(820,341398800,2),(820,357127200,3),(820,372848400,2),(820,388576800,3),(820,404902800,2),(820,420026400,3),(820,436352400,2),(820,452080800,3),(820,467802000,2),(820,483530400,3),(820,499251600,2),(820,514980000,3),(820,530701200,2),(820,544615200,3),(820,562150800,2),(820,576064800,3),(820,594205200,2),(820,607514400,3),(820,625654800,2),(820,638964000,3),(820,657104400,2),(820,671018400,3),(820,688554000,2),(820,702468000,3),(820,720003600,2),(820,733917600,3),(820,752058000,2),(820,765367200,3),(820,783507600,2),(820,796816800,3),(820,814957200,2),(820,828871200,3),(820,846406800,2),(820,860320800,3),(820,877856400,2),(820,891770400,3),(820,909306000,2),(820,923220000,3),(820,941360400,2),(820,954669600,3),(820,972810000,2),(820,986119200,3),(820,1004259600,2),(820,1018173600,3),(820,1035709200,2),(820,1049623200,3),(820,1067158800,2),(820,1081072800,3),(820,1099213200,2),(820,1112522400,3),(820,1130662800,2),(820,1143972000,3),(820,1162112400,2),(820,1175421600,3),(820,1193562000,2),(820,1207476000,3),(820,1225011600,2),(820,1238925600,3),(820,1256461200,2),(820,1268560800,3),(820,1289120400,2),(820,1300010400,3),(820,1320570000,2),(820,1331460000,3),(820,1352019600,2),(820,1362909600,3),(820,1383469200,2),(820,1394359200,3),(820,1414918800,2),(820,1425808800,3),(820,1446368400,2),(820,1457863200,3),(820,1478422800,2),(820,1489312800,3),(820,1509872400,2),(820,1520762400,3),(820,1541322000,2),(820,1552212000,3),(820,1572771600,2),(820,1583661600,3),(820,1604221200,2),(820,1615716000,3),(820,1636275600,2),(820,1647165600,3),(820,1667725200,2),(820,1678615200,3),(820,1699174800,2),(820,1710064800,3),(820,1730624400,2),(820,1741514400,3),(820,1762074000,2),(820,1772964000,3),(820,1793523600,2),(820,1805018400,3),(820,1825578000,2),(820,1836468000,3),(820,1857027600,2),(820,1867917600,3),(820,1888477200,2),(820,1899367200,3),(820,1919926800,2),(820,1930816800,3),(820,1951376400,2),(820,1962871200,3),(820,1983430800,2),(820,1994320800,3),(820,2014880400,2),(820,2025770400,3),(820,2046330000,2),(820,2057220000,3),(820,2077779600,2),(820,2088669600,3),(820,2109229200,2),(820,2120119200,3),(820,2140678800,2),(821,-2147483648,2),(821,-1632070800,1),(821,-1615140000,2),(821,-1601753400,1),(821,-1583697600,2),(821,-1567357200,1),(821,-1554667200,2),(821,-1534698000,1),(821,-1524074400,2),(821,-1503248400,1),(821,-1492365600,2),(821,-1471798800,1),(821,-1460916000,2),(821,-1440954000,1),(821,-1428861600,2),(821,-1409504400,1),(821,-1397412000,2),(821,-1378054800,1),(821,-1365962400,2),(821,-1346605200,1),(821,-1333908000,2),(821,-1315155600,1),(821,-1301853600,2),(821,-1283706000,1),(821,-1270404000,2),(821,-1252256400,1),(821,-1238954400,2),(821,-1220806800,1),(821,-1207504800,2),(821,-1188752400,1),(821,-1176055200,2),(821,-1157302800,1),(821,-1144000800,2),(821,-1125853200,1),(821,-1112551200,2),(821,-1094403600,1),(821,-1081101600,2),(821,-1062954000,1),(821,-1049652000,2),(821,-1031504400,1),(821,-1018202400,2),(821,-1000054800,1),(821,-986752800,2),(821,-968000400,1),(821,-955303200,2),(821,-936550800,1),(821,-880218000,3),(821,-769395600,4),(821,-765396000,2),(821,-747248400,1),(821,-733946400,2),(821,-715806000,1),(821,-702504000,2),(821,-684356400,1),(821,-671054400,2),(821,-652906800,1),(821,-634161600,2),(821,-620845200,1),(821,-602704800,2),(821,-589395600,1),(821,-576093600,2),(821,-557946000,1),(821,-544644000,2),(821,-526496400,1),(821,-513194400,2),(821,-495046800,1),(821,-481744800,2),(821,-463597200,1),(821,-450295200,2),(821,-431542800,1),(821,-418240800,2),(821,-400093200,1),(821,-384372000,2),(821,-368643600,1),(821,-352922400,2),(821,-337194000,1),(821,-321472800,2),(821,-305744400,1),(821,-289418400,2),(821,-273690000,1),(821,-257968800,2),(821,-242240400,1),(821,-226519200,2),(821,-210790800,1),(821,-195069600,2),(821,-179341200,1),(821,-163620000,2),(821,-147891600,1),(821,-131565600,2),(821,-116442000,1),(821,-100116000,2),(821,-84387600,1),(821,-68666400,2),(821,-52938000,1),(821,-37216800,2),(821,-21488400,1),(821,-5767200,2),(821,9961200,1),(821,25682400,2),(821,41410800,1),(821,57736800,2),(821,73465200,1),(821,89186400,2),(821,104914800,1),(821,120636000,2),(821,136364400,1),(821,152085600,2),(821,167814000,1),(821,183535200,2),(821,199263600,1),(821,215589600,2),(821,230713200,1),(821,247039200,2),(821,262767600,1),(821,278488800,2),(821,294217200,1),(821,309938400,2),(821,325666800,1),(821,341388000,2),(821,357116400,1),(821,372837600,2),(821,388566000,1),(821,404892000,2),(821,420015600,1),(821,436341600,2),(821,452070000,1),(821,467791200,2),(821,483519600,1),(821,499240800,2),(821,514969200,1),(821,530690400,2),(821,544604400,1),(821,562140000,2),(821,576054000,1),(821,594194400,2),(821,607503600,1),(821,625644000,2),(821,638953200,1),(821,657093600,2),(821,671007600,1),(821,688543200,2),(821,702457200,1),(821,719992800,2),(821,733906800,1),(821,752047200,2),(821,765356400,1),(821,783496800,2),(821,796806000,1),(821,814946400,2),(821,828860400,1),(821,846396000,2),(821,860310000,1),(821,877845600,2),(821,891759600,1),(821,909295200,2),(821,923209200,1),(821,941349600,2),(821,954658800,1),(821,972799200,2),(821,986108400,1),(821,1004248800,2),(821,1018162800,1),(821,1035698400,2),(821,1049612400,1),(821,1067148000,2),(821,1081062000,1),(821,1099202400,2),(821,1112511600,1),(821,1130652000,2),(821,1143961200,1),(821,1162101600,2),(821,1173596400,1),(821,1194156000,2),(821,1205046000,1),(821,1225605600,2),(821,1236495600,1),(821,1257055200,2),(821,1268550000,1),(821,1289109600,2),(821,1299999600,1),(821,1320559200,2),(821,1331449200,1),(821,1352008800,2),(821,1362898800,1),(821,1383458400,2),(821,1394348400,1),(821,1414908000,2),(821,1425798000,1),(821,1446357600,2),(821,1457852400,1),(821,1478412000,2),(821,1489302000,1),(821,1509861600,2),(821,1520751600,1),(821,1541311200,2),(821,1552201200,1),(821,1572760800,2),(821,1583650800,1),(821,1604210400,2),(821,1615705200,1),(821,1636264800,2),(821,1647154800,1),(821,1667714400,2),(821,1678604400,1),(821,1699164000,2),(821,1710054000,1),(821,1730613600,2),(821,1741503600,1),(821,1762063200,2),(821,1772953200,1),(821,1793512800,2),(821,1805007600,1),(821,1825567200,2),(821,1836457200,1),(821,1857016800,2),(821,1867906800,1),(821,1888466400,2),(821,1899356400,1),(821,1919916000,2),(821,1930806000,1),(821,1951365600,2),(821,1962860400,1),(821,1983420000,2),(821,1994310000,1),(821,2014869600,2),(821,2025759600,1),(821,2046319200,2),(821,2057209200,1),(821,2077768800,2),(821,2088658800,1),(821,2109218400,2),(821,2120108400,1),(821,2140668000,2),(822,-2147483648,0),(822,-1825098836,1),(823,-2147483648,2),(823,-1632060000,1),(823,-1615129200,2),(823,-880207200,3),(823,-769395600,4),(823,-765385200,2),(823,-747237600,1),(823,-733935600,2),(823,-715788000,1),(823,-702486000,2),(823,-684338400,1),(823,-671036400,2),(823,-652888800,1),(823,-639586800,2),(823,-620834400,1),(823,-608137200,2),(823,-589384800,1),(823,-576082800,2),(823,-557935200,1),(823,-544633200,2),(823,-526485600,1),(823,-513183600,2),(823,-495036000,1),(823,-481734000,2),(823,-463586400,1),(823,-450284400,2),(823,-431532000,1),(823,-418230000,2),(823,-400082400,1),(823,-386780400,2),(823,-368632800,1),(823,-355330800,2),(823,-337183200,1),(823,-323881200,2),(823,-305733600,1),(823,-292431600,2),(823,-273679200,1),(823,-260982000,2),(823,-242229600,1),(823,-226508400,2),(823,-210780000,1),(823,-195058800,2),(823,-179330400,1),(823,-163609200,2),(823,-147880800,1),(823,-131554800,2),(823,-116431200,1),(823,-100105200,2),(823,-84376800,1),(823,-68655600,2),(823,-52927200,1),(823,-37206000,2),(823,-21477600,1),(823,-5756400,2),(823,9972000,1),(823,25693200,2),(823,41421600,1),(823,57747600,2),(823,73476000,1),(823,89197200,2),(823,104925600,1),(823,120646800,2),(823,136375200,1),(823,152096400,2),(823,167824800,1),(823,183546000,2),(823,199274400,1),(823,215600400,2),(823,230724000,1),(823,247050000,2),(823,262778400,1),(823,278499600,2),(823,294228000,1),(823,309949200,2),(823,325677600,1),(823,341398800,2),(823,357127200,1),(823,372848400,2),(823,388576800,1),(823,404902800,2),(823,420026400,1),(823,436352400,2),(823,452080800,1),(823,467802000,2),(823,483530400,1),(823,499251600,2),(823,514980000,1),(823,530701200,2),(823,544615200,1),(823,562150800,2),(823,576064800,1),(823,594205200,2),(823,607514400,1),(823,625654800,2),(823,638964000,1),(823,657104400,2),(823,671018400,1),(823,688554000,2),(823,702468000,1),(823,720003600,2),(823,733917600,1),(823,752058000,2),(823,765367200,1),(823,783507600,2),(823,796816800,1),(823,814957200,2),(823,828871200,1),(823,846406800,2),(823,860320800,1),(823,877856400,2),(823,891770400,1),(823,909306000,2),(823,923220000,1),(823,941360400,2),(823,954669600,1),(823,972810000,2),(823,986119200,1),(823,1004259600,2),(823,1018173600,1),(823,1035709200,2),(823,1049623200,1),(823,1067158800,2),(823,1081072800,1),(823,1099213200,2),(823,1112522400,1),(823,1130662800,2),(823,1143972000,1),(823,1162112400,2),(823,1173607200,1),(823,1194166800,2),(823,1205056800,1),(823,1225616400,2),(823,1236506400,1),(823,1257066000,2),(823,1268560800,1),(823,1289120400,2),(823,1300010400,1),(823,1320570000,2),(823,1331460000,1),(823,1352019600,2),(823,1362909600,1),(823,1383469200,2),(823,1394359200,1),(823,1414918800,2),(823,1425808800,1),(823,1446368400,2),(823,1457863200,1),(823,1478422800,2),(823,1489312800,1),(823,1509872400,2),(823,1520762400,1),(823,1541322000,2),(823,1552212000,1),(823,1572771600,2),(823,1583661600,1),(823,1604221200,2),(823,1615716000,1),(823,1636275600,2),(823,1647165600,1),(823,1667725200,2),(823,1678615200,1),(823,1699174800,2),(823,1710064800,1),(823,1730624400,2),(823,1741514400,1),(823,1762074000,2),(823,1772964000,1),(823,1793523600,2),(823,1805018400,1),(823,1825578000,2),(823,1836468000,1),(823,1857027600,2),(823,1867917600,1),(823,1888477200,2),(823,1899367200,1),(823,1919926800,2),(823,1930816800,1),(823,1951376400,2),(823,1962871200,1),(823,1983430800,2),(823,1994320800,1),(823,2014880400,2),(823,2025770400,1),(823,2046330000,2),(823,2057220000,1),(823,2077779600,2),(823,2088669600,1),(823,2109229200,2),(823,2120119200,1),(823,2140678800,2),(824,-2147483648,0),(824,-1825098836,1),(825,-2147483648,2),(825,-1632056400,1),(825,-1615125600,2),(825,-1596978000,1),(825,-1583164800,2),(825,-880203600,3),(825,-769395600,4),(825,-765381600,2),(825,-147884400,5),(825,-131554800,2),(825,-81961200,6),(825,325677600,7),(825,341398800,6),(825,357127200,7),(825,372848400,6),(825,388576800,7),(825,404902800,6),(825,420026400,7),(825,436352400,6),(825,452080800,7),(825,467802000,6),(825,483530400,7),(825,499251600,6),(825,514980000,7),(825,530701200,6),(825,544615200,7),(825,562150800,6),(825,576064800,7),(825,594205200,6),(825,607514400,7),(825,625654800,6),(825,638964000,7),(825,657104400,6),(825,671018400,7),(825,688554000,6),(825,702468000,7),(825,720003600,6),(825,733917600,7),(825,752058000,6),(825,765367200,7),(825,783507600,6),(825,796816800,7),(825,814957200,6),(825,828871200,7),(825,846406800,6),(825,860320800,7),(825,877856400,6),(825,891770400,7),(825,909306000,6),(825,923220000,7),(825,941360400,6),(825,954669600,7),(825,972810000,6),(825,986119200,7),(825,1004259600,6),(825,1018173600,7),(825,1035709200,6),(825,1049623200,7),(825,1067158800,6),(825,1081072800,7),(825,1099213200,6),(825,1112522400,7),(825,1130662800,6),(825,1143972000,7),(825,1162112400,6),(825,1173607200,7),(825,1194166800,6),(825,1205056800,7),(825,1225616400,6),(825,1236506400,7),(825,1257066000,6),(825,1268560800,7),(825,1289120400,6),(825,1300010400,7),(825,1320570000,6),(825,1331460000,7),(825,1352019600,6),(825,1362909600,7),(825,1383469200,6),(825,1394359200,7),(825,1414918800,6),(825,1425808800,7),(825,1446368400,6),(825,1457863200,7),(825,1478422800,6),(825,1489312800,7),(825,1509872400,6),(825,1520762400,7),(825,1541322000,6),(825,1552212000,7),(825,1572771600,6),(825,1583661600,7),(825,1604221200,6),(825,1615716000,7),(825,1636275600,6),(825,1647165600,7),(825,1667725200,6),(825,1678615200,7),(825,1699174800,6),(825,1710064800,7),(825,1730624400,6),(825,1741514400,7),(825,1762074000,6),(825,1772964000,7),(825,1793523600,6),(825,1805018400,7),(825,1825578000,6),(825,1836468000,7),(825,1857027600,6),(825,1867917600,7),(825,1888477200,6),(825,1899367200,7),(825,1919926800,6),(825,1930816800,7),(825,1951376400,6),(825,1962871200,7),(825,1983430800,6),(825,1994320800,7),(825,2014880400,6),(825,2025770400,7),(825,2046330000,6),(825,2057220000,7),(825,2077779600,6),(825,2088669600,7),(825,2109229200,6),(825,2120119200,7),(825,2140678800,6),(826,-2147483648,2),(826,-1694368800,1),(826,-1681671600,2),(826,-1632067200,1),(826,-1615136400,2),(826,-1029686400,1),(826,-1018198800,2),(826,-880214400,3),(826,-769395600,4),(826,-765392400,2),(826,-746035200,1),(826,-732733200,2),(826,-715795200,1),(826,-702493200,2),(826,-684345600,1),(826,-671043600,2),(826,-652896000,1),(826,-639594000,2),(826,-620755200,1),(826,-607626000,2),(826,-589392000,1),(826,-576090000,2),(826,-557942400,1),(826,-544640400,2),(826,-526492800,1),(826,-513190800,2),(826,-495043200,1),(826,-481741200,2),(826,-463593600,1),(826,-450291600,2),(826,-431539200,1),(826,-418237200,2),(826,-400089600,1),(826,-386787600,2),(826,-368640000,1),(826,-355338000,2),(826,-337190400,1),(826,-321469200,2),(826,-305740800,1),(826,-292438800,2),(826,-210787200,1),(826,-198090000,2),(826,-116438400,5),(826,-100108800,6),(826,-84384000,5),(826,-68659200,6),(826,-52934400,5),(826,-37209600,6),(826,-21484800,5),(826,-5760000,6),(826,9964800,5),(826,25689600,6),(826,41414400,5),(826,57744000,6),(826,73468800,5),(826,89193600,6),(826,104918400,5),(826,120643200,6),(826,136368000,5),(826,152092800,6),(826,167817600,5),(826,183542400,6),(826,199267200,5),(826,215596800,6),(826,230716800,5),(826,247046400,6),(826,262771200,5),(826,278496000,6),(826,294220800,5),(826,309945600,6),(826,325670400,5),(826,341395200,6),(826,357120000,5),(826,372844800,6),(826,388569600,5),(826,404899200,6),(826,420019200,5),(826,436348800,6),(826,452073600,5),(826,467798400,6),(826,483523200,5),(826,499248000,6),(826,514972800,5),(826,530697600,6),(826,544608000,5),(826,562147200,6),(826,576057600,5),(826,594201600,6),(826,607507200,5),(826,625651200,6),(826,638956800,5),(826,657100800,6),(826,671011200,5),(826,688550400,6),(826,702460800,5),(826,720000000,6),(826,733910400,5),(826,752054400,6),(826,765360000,5),(826,783504000,6),(826,796809600,5),(826,814953600,6),(826,828864000,5),(826,846403200,6),(826,860313600,5),(826,877852800,6),(826,891763200,5),(826,909302400,6),(826,923212800,5),(826,941356800,6),(826,954662400,5),(826,972806400,6),(826,986112000,5),(826,1004256000,6),(826,1018166400,5),(826,1035705600,6),(826,1049616000,5),(826,1067155200,6),(826,1081065600,5),(826,1099209600,6),(826,1112515200,5),(826,1130659200,6),(826,1136095200,2),(826,1143964800,1),(826,1162105200,2),(826,1173600000,1),(826,1194159600,2),(826,1205049600,1),(826,1225609200,2),(826,1236499200,1),(826,1257058800,2),(826,1268553600,1),(826,1289113200,2),(826,1300003200,1),(826,1320562800,2),(826,1331452800,1),(826,1352012400,2),(826,1362902400,1),(826,1383462000,2),(826,1394352000,1),(826,1414911600,2),(826,1425801600,1),(826,1446361200,2),(826,1457856000,1),(826,1478415600,2),(826,1489305600,1),(826,1509865200,2),(826,1520755200,1),(826,1541314800,2),(826,1552204800,1),(826,1572764400,2),(826,1583654400,1),(826,1604214000,2),(826,1615708800,1),(826,1636268400,2),(826,1647158400,1),(826,1667718000,2),(826,1678608000,1),(826,1699167600,2),(826,1710057600,1),(826,1730617200,2),(826,1741507200,1),(826,1762066800,2),(826,1772956800,1),(826,1793516400,2),(826,1805011200,1),(826,1825570800,2),(826,1836460800,1),(826,1857020400,2),(826,1867910400,1),(826,1888470000,2),(826,1899360000,1),(826,1919919600,2),(826,1930809600,1),(826,1951369200,2),(826,1962864000,1),(826,1983423600,2),(826,1994313600,1),(826,2014873200,2),(826,2025763200,1),(826,2046322800,2),(826,2057212800,1),(826,2077772400,2),(826,2088662400,1),(826,2109222000,2),(826,2120112000,1),(826,2140671600,2),(827,-2147483648,1),(827,-880203600,2),(827,-769395600,3),(827,-765381600,1),(827,-21474000,4),(827,-5752800,1),(827,9975600,4),(827,25696800,1),(827,41425200,4),(827,57751200,1),(827,73479600,4),(827,89200800,1),(827,104929200,4),(827,120650400,1),(827,126702000,4),(827,152100000,1),(827,162385200,4),(827,183549600,1),(827,199278000,4),(827,215604000,1),(827,230727600,4),(827,247053600,1),(827,262782000,4),(827,278503200,1),(827,294231600,4),(827,309952800,1),(827,325681200,4),(827,341402400,1),(827,357130800,4),(827,372852000,1),(827,388580400,4),(827,404906400,1),(827,420030000,4),(827,436356000,1),(827,439030800,6),(827,452084400,5),(827,467805600,6),(827,483534000,5),(827,499255200,6),(827,514983600,5),(827,530704800,6),(827,544618800,5),(827,562154400,6),(827,576068400,5),(827,594208800,6),(827,607518000,5),(827,625658400,6),(827,638967600,5),(827,657108000,6),(827,671022000,5),(827,688557600,6),(827,702471600,5),(827,720007200,6),(827,733921200,5),(827,752061600,6),(827,765370800,5),(827,783511200,6),(827,796820400,5),(827,814960800,6),(827,828874800,5),(827,846410400,6),(827,860324400,5),(827,877860000,6),(827,891774000,5),(827,909309600,6),(827,923223600,5),(827,941364000,6),(827,954673200,5),(827,972813600,6),(827,986122800,5),(827,1004263200,6),(827,1018177200,5),(827,1035712800,6),(827,1049626800,5),(827,1067162400,6),(827,1081076400,5),(827,1099216800,6),(827,1112526000,5),(827,1130666400,6),(827,1143975600,5),(827,1162116000,6),(827,1173610800,5),(827,1194170400,6),(827,1205060400,5),(827,1225620000,6),(827,1236510000,5),(827,1257069600,6),(827,1268564400,5),(827,1289124000,6),(827,1300014000,5),(827,1320573600,6),(827,1331463600,5),(827,1352023200,6),(827,1362913200,5),(827,1383472800,6),(827,1394362800,5),(827,1414922400,6),(827,1425812400,5),(827,1446372000,6),(827,1457866800,5),(827,1478426400,6),(827,1489316400,5),(827,1509876000,6),(827,1520766000,5),(827,1541325600,6),(827,1552215600,5),(827,1572775200,6),(827,1583665200,5),(827,1604224800,6),(827,1615719600,5),(827,1636279200,6),(827,1647169200,5),(827,1667728800,6),(827,1678618800,5),(827,1699178400,6),(827,1710068400,5),(827,1730628000,6),(827,1741518000,5),(827,1762077600,6),(827,1772967600,5),(827,1793527200,6),(827,1805022000,5),(827,1825581600,6),(827,1836471600,5),(827,1857031200,6),(827,1867921200,5),(827,1888480800,6),(827,1899370800,5),(827,1919930400,6),(827,1930820400,5),(827,1951380000,6),(827,1962874800,5),(827,1983434400,6),(827,1994324400,5),(827,2014884000,6),(827,2025774000,5),(827,2046333600,6),(827,2057223600,5),(827,2077783200,6),(827,2088673200,5),(827,2109232800,6),(827,2120122800,5),(827,2140682400,6),(828,-2147483648,0),(828,-1104537600,3),(828,-880210800,1),(828,-769395600,2),(828,-765388800,3),(828,-147891600,4),(828,-131562000,3),(828,325674000,5),(828,341395200,3),(828,357123600,5),(828,372844800,3),(828,388573200,5),(828,404899200,3),(828,420022800,5),(828,436348800,3),(828,452077200,5),(828,467798400,3),(828,483526800,5),(828,499248000,3),(828,514976400,5),(828,530697600,3),(828,544611600,5),(828,562147200,3),(828,576061200,5),(828,594201600,3),(828,607510800,5),(828,625651200,3),(828,638960400,5),(828,657100800,3),(828,671014800,5),(828,688550400,3),(828,702464400,5),(828,720000000,3),(828,733914000,5),(828,752054400,3),(828,765363600,5),(828,783504000,3),(828,796813200,5),(828,814953600,3),(828,828867600,5),(828,846403200,3),(828,860317200,5),(828,877852800,3),(828,891766800,5),(828,909302400,3),(828,923216400,5),(828,941356800,3),(828,954666000,5),(828,972806400,3),(828,986115600,5),(828,1004256000,3),(828,1018170000,5),(828,1035705600,3),(828,1049619600,5),(828,1067155200,3),(828,1081069200,5),(828,1099209600,3),(828,1112518800,5),(828,1130659200,3),(828,1143968400,5),(828,1162108800,3),(828,1173603600,5),(828,1194163200,3),(828,1205053200,5),(828,1225612800,3),(828,1236502800,5),(828,1257062400,3),(828,1268557200,5),(828,1289116800,3),(828,1300006800,5),(828,1320566400,3),(828,1331456400,5),(828,1352016000,3),(828,1362906000,5),(828,1383465600,3),(828,1394355600,5),(828,1414915200,3),(828,1425805200,5),(828,1446364800,3),(828,1457859600,5),(828,1478419200,3),(828,1489309200,5),(828,1509868800,3),(828,1520758800,5),(828,1541318400,3),(828,1552208400,5),(828,1572768000,3),(828,1583658000,5),(828,1604217600,3),(828,1615712400,5),(828,1636272000,3),(828,1647162000,5),(828,1667721600,3),(828,1678611600,5),(828,1699171200,3),(828,1710061200,5),(828,1730620800,3),(828,1741510800,5),(828,1762070400,3),(828,1772960400,5),(828,1793520000,3),(828,1805014800,5),(828,1825574400,3),(828,1836464400,5),(828,1857024000,3),(828,1867914000,5),(828,1888473600,3),(828,1899363600,5),(828,1919923200,3),(828,1930813200,5),(828,1951372800,3),(828,1962867600,5),(828,1983427200,3),(828,1994317200,5),(828,2014876800,3),(828,2025766800,5),(828,2046326400,3),(828,2057216400,5),(828,2077776000,3),(828,2088666000,5),(828,2109225600,3),(828,2120115600,5),(828,2140675200,3),(829,-2147483648,0),(829,-31536000,1),(829,1255802400,2),(829,1267714800,1),(829,1319738400,2),(829,1329843600,3),(829,1477065600,2),(829,1520701200,1),(830,-2147483648,0),(830,-409190400,1),(830,-163062000,0),(830,-28857600,1),(830,1255806000,2),(830,1268251200,3),(830,1319742000,2),(830,1329854400,3),(831,-2147483648,0),(831,-725846400,1),(831,-566992800,0),(831,-415497600,1),(832,-2147483648,1),(832,-1680508800,2),(832,-1665392400,1),(832,-1601719200,3),(832,-687052800,1),(832,-71136000,4),(832,-55411200,5),(832,-37267200,4),(832,-25776000,5),(832,-5817600,4),(832,5673600,5),(832,25632000,4),(832,37728000,5),(832,57686400,4),(832,67968000,5),(832,89136000,4),(832,100022400,5),(832,120585600,4),(832,131472000,5),(832,152035200,4),(832,162921600,5),(832,183484800,4),(832,194976000,5),(832,215539200,4),(832,226425600,5),(832,246988800,4),(832,257875200,5),(832,278438400,4),(832,289324800,5),(832,309888000,4),(832,320774400,5),(832,341337600,4),(832,352224000,5),(832,372787200,4),(832,386092800,5),(832,404841600,4),(832,417542400,5),(832,436291200,4),(832,447177600,5),(832,467740800,4),(832,478627200,5),(832,499190400,4),(832,510076800,5),(832,530035200,4),(832,542736000,5),(832,562089600,4),(832,574790400,5),(832,594144000,4),(832,606240000,5),(832,625593600,4),(832,637689600,5),(832,657043200,4),(832,670348800,5),(832,686678400,4),(832,701798400,5),(832,718128000,4),(832,733248000,5),(832,749577600,4),(832,764697600,5),(832,781027200,4),(832,796147200,5),(832,812476800,4),(832,828201600,5),(832,844531200,4),(832,859651200,5),(832,875980800,4),(832,891100800,5),(832,907430400,4),(832,922550400,5),(832,938880000,4),(832,954000000,5),(832,967305600,4),(832,985449600,5),(832,1002384000,4),(832,1017504000,5),(832,1033833600,4),(832,1048953600,5),(832,1065283200,4),(832,1080403200,5),(832,1096732800,4),(832,1111852800,5),(832,1128182400,4),(832,1143907200,5),(832,1159632000,4),(832,1174752000,5),(832,1191686400,4),(832,1207411200,5),(832,1223136000,4),(832,1238860800,5),(832,1254585600,4),(832,1270310400,6),(833,-2147483648,0),(833,-501206400,1),(833,1255809600,2),(834,-2147483648,2),(834,-1330335000,1),(834,-1320057000,2),(834,-1300699800,3),(834,-1287396000,2),(834,-1269250200,3),(834,-1255946400,2),(834,-1237800600,3),(834,-1224496800,2),(834,-1206351000,3),(834,-1192442400,2),(834,-1174901400,3),(834,-1160992800,2),(834,-1143451800,3),(834,-1125914400,2),(834,-1112607000,3),(834,-1094464800,2),(834,-1081157400,3),(834,-1063015200,2),(834,-1049707800,3),(834,-1031565600,2),(834,-1018258200,3),(834,-1000116000,2),(834,-986808600,3),(834,-968061600,2),(834,-955359000,3),(834,-936612000,2),(834,-923304600,3),(834,-757425600,6),(834,152632800,4),(834,162309600,5),(834,183477600,4),(834,194968800,5),(834,215532000,4),(834,226418400,5),(834,246981600,4),(834,257868000,5),(834,278431200,4),(834,289317600,5),(834,309880800,4),(834,320767200,5),(834,341330400,4),(834,352216800,5),(834,372780000,4),(834,384271200,5),(834,404834400,4),(834,415720800,5),(834,436284000,4),(834,447170400,5),(834,467733600,4),(834,478620000,5),(834,499183200,4),(834,510069600,5),(834,530632800,4),(834,541519200,5),(834,562082400,4),(834,573573600,5),(834,594136800,4),(834,605023200,5),(834,623772000,4),(834,637682400,5),(834,655221600,4),(834,669132000,5),(834,686671200,4),(834,700581600,5),(834,718120800,4),(834,732636000,5),(834,749570400,4),(834,764085600,5),(834,781020000,4),(834,795535200,5),(834,812469600,4),(834,826984800,5),(834,844524000,4),(834,858434400,5),(834,875973600,4),(834,889884000,5),(834,907423200,4),(834,921938400,5),(834,938872800,4),(834,953388000,5),(834,970322400,4),(834,984837600,5),(834,1002376800,4),(834,1016287200,5),(834,1033826400,4),(834,1047736800,5),(834,1065276000,4),(834,1079791200,5),(834,1096725600,4),(834,1111240800,5),(834,1128175200,4),(834,1142690400,5),(834,1159624800,4),(834,1174140000,5),(834,1191074400,4),(834,1207404000,5),(834,1222524000,4),(834,1238853600,5),(834,1253973600,4),(834,1270303200,5),(834,1285423200,4),(834,1301752800,5),(834,1316872800,4),(834,1333202400,5),(834,1348927200,4),(834,1365256800,5),(834,1380376800,4),(834,1396706400,5),(834,1411826400,4),(834,1428156000,5),(834,1443276000,4),(834,1459605600,5),(834,1474725600,4),(834,1491055200,5),(834,1506175200,4),(834,1522504800,5),(834,1538229600,4),(834,1554559200,5),(834,1569679200,4),(834,1586008800,5),(834,1601128800,4),(834,1617458400,5),(834,1632578400,4),(834,1648908000,5),(834,1664028000,4),(834,1680357600,5),(834,1695477600,4),(834,1712412000,5),(834,1727532000,4),(834,1743861600,5),(834,1758981600,4),(834,1775311200,5),(834,1790431200,4),(834,1806760800,5),(834,1821880800,4),(834,1838210400,5),(834,1853330400,4),(834,1869660000,5),(834,1885384800,4),(834,1901714400,5),(834,1916834400,4),(834,1933164000,5),(834,1948284000,4),(834,1964613600,5),(834,1979733600,4),(834,1996063200,5),(834,2011183200,4),(834,2027512800,5),(834,2042632800,4),(834,2058962400,5),(834,2074687200,4),(834,2091016800,5),(834,2106136800,4),(834,2122466400,5),(834,2137586400,4),(835,-2147483648,0),(835,-157766400,2),(835,-152658000,1),(835,-132955200,2),(835,-121122000,1),(835,-101419200,2),(835,-86821200,1),(835,-71092800,2),(835,-54766800,1),(835,-39038400,2),(835,-23317200,1),(835,-7588800,4),(835,128142000,3),(835,136605600,4),(835,389070000,1),(835,403070400,5),(835,416372400,6),(835,434520000,5),(835,447822000,6),(835,466574400,5),(835,479271600,6),(835,498024000,5),(835,510721200,6),(835,529473600,5),(835,545194800,6),(835,560923200,5),(835,574225200,6),(835,592372800,5),(835,605674800,6),(835,624427200,5),(835,637124400,6),(835,653457600,5),(835,668574000,6),(835,687326400,5),(835,700628400,6),(835,718776000,5),(835,732078000,6),(835,750225600,5),(835,763527600,6),(835,781675200,5),(835,794977200,6),(835,813729600,5),(835,826426800,6),(835,845179200,5),(835,859690800,6),(835,876628800,5),(835,889930800,6),(835,906868800,5),(835,923194800,6),(835,939528000,5),(835,952830000,6),(835,971582400,5),(835,984279600,6),(835,1003032000,5),(835,1015729200,6),(835,1034481600,5),(835,1047178800,6),(835,1065931200,5),(835,1079233200,6),(835,1097380800,5),(835,1110682800,6),(835,1128830400,5),(835,1142132400,6),(835,1160884800,5),(835,1173582000,6),(835,1192334400,5),(835,1206846000,6),(835,1223784000,5),(835,1237086000,6),(835,1255233600,5),(835,1270350000,6),(835,1286683200,5),(835,1304823600,6),(835,1313899200,5),(835,1335668400,6),(835,1346558400,5),(835,1367118000,6),(835,1378612800,5),(835,1398567600,6),(835,1410062400,5),(835,1463281200,6),(835,1471147200,5),(835,1480820400,4),(836,-2147483648,0),(836,218246400,1),(837,-2147483648,2),(837,-1330335000,1),(837,-1320057000,2),(837,-1300699800,3),(837,-1287396000,2),(837,-1269250200,3),(837,-1255946400,2),(837,-1237800600,3),(837,-1224496800,2),(837,-1206351000,3),(837,-1192442400,2),(837,-1174901400,3),(837,-1160992800,2),(837,-1143451800,3),(837,-1125914400,2),(837,-1112607000,3),(837,-1094464800,2),(837,-1081157400,3),(837,-1063015200,2),(837,-1049707800,3),(837,-1031565600,2),(837,-1018258200,3),(837,-1000116000,2),(837,-986808600,3),(837,-968061600,2),(837,-955359000,3),(837,-936612000,2),(837,-923304600,3),(837,-757425600,6),(837,152632800,4),(837,162309600,5),(837,183477600,4),(837,194968800,5),(837,215532000,4),(837,226418400,5),(837,246981600,4),(837,257868000,5),(837,278431200,4),(837,289317600,5),(837,309880800,4),(837,320767200,5),(837,341330400,4),(837,352216800,5),(837,372780000,4),(837,384271200,5),(837,404834400,4),(837,415720800,5),(837,436284000,4),(837,447170400,5),(837,467733600,4),(837,478620000,5),(837,499183200,4),(837,510069600,5),(837,530632800,4),(837,541519200,5),(837,562082400,4),(837,573573600,5),(837,594136800,4),(837,605023200,5),(837,623772000,4),(837,637682400,5),(837,655221600,4),(837,669132000,5),(837,686671200,4),(837,700581600,5),(837,718120800,4),(837,732636000,5),(837,749570400,4),(837,764085600,5),(837,781020000,4),(837,795535200,5),(837,812469600,4),(837,826984800,5),(837,844524000,4),(837,858434400,5),(837,875973600,4),(837,889884000,5),(837,907423200,4),(837,921938400,5),(837,938872800,4),(837,953388000,5),(837,970322400,4),(837,984837600,5),(837,1002376800,4),(837,1016287200,5),(837,1033826400,4),(837,1047736800,5),(837,1065276000,4),(837,1079791200,5),(837,1096725600,4),(837,1111240800,5),(837,1128175200,4),(837,1142690400,5),(837,1159624800,4),(837,1174140000,5),(837,1191074400,4),(837,1207404000,5),(837,1222524000,4),(837,1238853600,5),(837,1253973600,4),(837,1270303200,5),(837,1285423200,4),(837,1301752800,5),(837,1316872800,4),(837,1333202400,5),(837,1348927200,4),(837,1365256800,5),(837,1380376800,4),(837,1396706400,5),(837,1411826400,4),(837,1428156000,5),(837,1443276000,4),(837,1459605600,5),(837,1474725600,4),(837,1491055200,5),(837,1506175200,4),(837,1522504800,5),(837,1538229600,4),(837,1554559200,5),(837,1569679200,4),(837,1586008800,5),(837,1601128800,4),(837,1617458400,5),(837,1632578400,4),(837,1648908000,5),(837,1664028000,4),(837,1680357600,5),(837,1695477600,4),(837,1712412000,5),(837,1727532000,4),(837,1743861600,5),(837,1758981600,4),(837,1775311200,5),(837,1790431200,4),(837,1806760800,5),(837,1821880800,4),(837,1838210400,5),(837,1853330400,4),(837,1869660000,5),(837,1885384800,4),(837,1901714400,5),(837,1916834400,4),(837,1933164000,5),(837,1948284000,4),(837,1964613600,5),(837,1979733600,4),(837,1996063200,5),(837,2011183200,4),(837,2027512800,5),(837,2042632800,4),(837,2058962400,5),(837,2074687200,4),(837,2091016800,5),(837,2106136800,4),(837,2122466400,5),(837,2137586400,4),(838,-2147483648,0),(838,-407808000,1),(839,-2147483648,0),(839,1108166400,3),(839,1111885200,1),(839,1130634000,2),(839,1143334800,1),(839,1162083600,2),(839,1174784400,1),(839,1193533200,2),(839,1206838800,1),(839,1224982800,2),(839,1238288400,1),(839,1256432400,2),(839,1269738000,1),(839,1288486800,2),(839,1301187600,1),(839,1319936400,2),(839,1332637200,1),(839,1351386000,2),(839,1364691600,1),(839,1382835600,2),(839,1396141200,1),(839,1414285200,2),(839,1427590800,1),(839,1445734800,2),(839,1459040400,1),(839,1477789200,2),(839,1490490000,1),(839,1509238800,2),(839,1521939600,1),(839,1540688400,2),(839,1553994000,1),(839,1572138000,2),(839,1585443600,1),(839,1603587600,2),(839,1616893200,1),(839,1635642000,2),(839,1648342800,1),(839,1667091600,2),(839,1679792400,1),(839,1698541200,2),(839,1711846800,1),(839,1729990800,2),(839,1743296400,1),(839,1761440400,2),(839,1774746000,1),(839,1792890000,2),(839,1806195600,1),(839,1824944400,2),(839,1837645200,1),(839,1856394000,2),(839,1869094800,1),(839,1887843600,2),(839,1901149200,1),(839,1919293200,2),(839,1932598800,1),(839,1950742800,2),(839,1964048400,1),(839,1982797200,2),(839,1995498000,1),(839,2014246800,2),(839,2026947600,1),(839,2045696400,2),(839,2058397200,1),(839,2077146000,2),(839,2090451600,1),(839,2108595600,2),(839,2121901200,1),(839,2140045200,2),(840,-2147483648,0),(840,-380073600,1),(841,-2147483648,2),(841,-1691884800,1),(841,-1680573600,2),(841,-927511200,1),(841,-857257200,3),(841,-844556400,4),(841,-828226800,3),(841,-812502000,4),(841,-796777200,3),(841,-781052400,4),(841,-765327600,3),(841,-340844400,4),(841,-324514800,3),(841,-308790000,4),(841,-293065200,3),(841,-277340400,4),(841,-261615600,3),(841,-245890800,4),(841,-230166000,3),(841,-214441200,4),(841,-198716400,3),(841,-182991600,4),(841,-166662000,3),(841,-147913200,4),(841,-135212400,3),(841,315529200,2),(841,323830800,5),(841,338950800,6),(841,354675600,5),(841,370400400,6),(841,386125200,5),(841,401850000,6),(841,417574800,5),(841,433299600,6),(841,449024400,5),(841,465354000,6),(841,481078800,5),(841,496803600,6),(841,512528400,5),(841,528253200,6),(841,543978000,5),(841,559702800,6),(841,575427600,5),(841,591152400,6),(841,606877200,5),(841,622602000,6),(841,638326800,5),(841,654656400,6),(841,670381200,5),(841,686106000,6),(841,701830800,5),(841,717555600,6),(841,733280400,5),(841,749005200,6),(841,764730000,5),(841,780454800,6),(841,796179600,5),(841,811904400,6),(841,828234000,5),(841,846378000,6),(841,859683600,5),(841,877827600,6),(841,891133200,5),(841,909277200,6),(841,922582800,5),(841,941331600,6),(841,954032400,5),(841,972781200,6),(841,985482000,5),(841,1004230800,6),(841,1017536400,5),(841,1035680400,6),(841,1048986000,5),(841,1067130000,6),(841,1080435600,5),(841,1099184400,6),(841,1111885200,5),(841,1130634000,6),(841,1143334800,5),(841,1162083600,6),(841,1174784400,5),(841,1193533200,6),(841,1206838800,5),(841,1224982800,6),(841,1238288400,5),(841,1256432400,6),(841,1269738000,5),(841,1288486800,6),(841,1301187600,5),(841,1319936400,6),(841,1332637200,5),(841,1351386000,6),(841,1364691600,5),(841,1382835600,6),(841,1396141200,5),(841,1414285200,6),(841,1427590800,5),(841,1445734800,6),(841,1459040400,5),(841,1477789200,6),(841,1490490000,5),(841,1509238800,6),(841,1521939600,5),(841,1540688400,6),(841,1553994000,5),(841,1572138000,6),(841,1585443600,5),(841,1603587600,6),(841,1616893200,5),(841,1635642000,6),(841,1648342800,5),(841,1667091600,6),(841,1679792400,5),(841,1698541200,6),(841,1711846800,5),(841,1729990800,6),(841,1743296400,5),(841,1761440400,6),(841,1774746000,5),(841,1792890000,6),(841,1806195600,5),(841,1824944400,6),(841,1837645200,5),(841,1856394000,6),(841,1869094800,5),(841,1887843600,6),(841,1901149200,5),(841,1919293200,6),(841,1932598800,5),(841,1950742800,6),(841,1964048400,5),(841,1982797200,6),(841,1995498000,5),(841,2014246800,6),(841,2026947600,5),(841,2045696400,6),(841,2058397200,5),(841,2077146000,6),(841,2090451600,5),(841,2108595600,6),(841,2121901200,5),(841,2140045200,6),(842,-2147483648,0),(842,-719636812,1),(843,-2147483648,0),(843,-1441170468,1),(843,-1247547600,3),(843,354909600,2),(843,370717200,3),(843,386445600,2),(843,402253200,3),(843,417981600,2),(843,433789200,3),(843,449604000,2),(843,465336000,4),(843,481060800,5),(843,496785600,4),(843,512510400,5),(843,528235200,4),(843,543960000,5),(843,559684800,4),(843,575409600,5),(843,591134400,4),(843,606859200,5),(843,622584000,4),(843,638308800,5),(843,654638400,4),(843,670363200,6),(843,686091600,7),(843,695768400,4),(843,701812800,5),(843,717537600,4),(843,733262400,5),(843,748987200,4),(843,764712000,5),(843,780436800,4),(843,796161600,5),(843,811886400,4),(843,828216000,5),(843,846360000,4),(843,859665600,5),(843,877809600,4),(843,891115200,5),(843,909259200,4),(843,922564800,5),(843,941313600,4),(843,954014400,5),(843,972763200,4),(843,985464000,5),(843,1004212800,4),(843,1017518400,5),(843,1035662400,4),(843,1048968000,5),(843,1067112000,4),(843,1080417600,5),(843,1099166400,4),(844,-2147483648,0),(844,-1230776624,2),(844,108165600,1),(844,118270800,2),(844,136591200,1),(844,149806800,2),(844,168127200,1),(844,181342800,2),(844,199749600,1),(844,215643600,2),(844,231285600,1),(844,244501200,2),(844,262735200,1),(844,275950800,2),(844,481154400,1),(844,496962000,2),(844,512949600,1),(844,528670800,2),(844,544399200,1),(844,560120400,2),(844,575848800,1),(844,592174800,2),(844,610581600,1),(844,623624400,2),(844,641167200,1),(844,655074000,2),(844,671839200,1),(844,685918800,2),(844,702856800,1),(844,717973200,2),(844,733701600,1),(844,749422800,2),(844,765151200,1),(844,779662800,2),(844,797205600,1),(844,811116000,3),(844,828655200,1),(844,843170400,3),(844,860104800,1),(844,874620000,3),(844,891554400,1),(844,906069600,3),(844,930780000,4),(844,938124000,3),(844,954367200,4),(844,970178400,3),(844,985816800,4),(844,1001628000,3),(844,1017352800,1),(844,1033077600,3),(844,1048802400,1),(844,1066946400,3),(844,1080252000,1),(844,1097791200,3),(844,1112306400,1),(844,1128031200,3),(844,1143756000,1),(844,1161900000,3),(844,1175205600,1),(844,1193349600,3),(844,1206655200,1),(844,1225404000,3),(844,1238104800,1),(844,1256853600,3),(844,1269554400,1),(844,1288303200,3),(844,1301608800,1),(844,1319752800,3),(844,1333058400,1),(844,1387486800,2),(844,1395957600,1),(844,1414706400,3),(844,1427407200,1),(844,1446156000,3),(844,1459461600,1),(844,1477605600,3),(844,1490911200,1),(844,1509055200,3),(844,1522360800,1),(844,1540504800,3),(844,1553810400,1),(844,1571954400,3),(844,1585260000,1),(844,1604008800,3),(844,1616709600,1),(844,1635458400,3),(844,1648764000,1),(844,1666908000,3),(844,1680213600,1),(844,1698357600,3),(844,1711663200,1),(844,1729807200,3),(844,1743112800,1),(844,1761861600,3),(844,1774562400,1),(844,1793311200,3),(844,1806012000,1),(844,1824760800,3),(844,1838066400,1),(844,1856210400,3),(844,1869516000,1),(844,1887660000,3),(844,1900965600,1),(844,1919109600,3),(844,1932415200,1),(844,1951164000,3),(844,1963864800,1),(844,1982613600,3),(844,1995919200,1),(844,2014063200,3),(844,2027368800,1),(844,2045512800,3),(844,2058818400,1),(844,2076962400,3),(844,2090268000,1),(844,2109016800,3),(844,2121717600,1),(844,2140466400,3),(845,-2147483648,0),(845,-1441194596,1),(845,-1247572800,3),(845,354884400,2),(845,370692000,3),(845,386420400,4),(845,402231600,1),(845,417960000,4),(845,433767600,1),(845,449582400,4),(845,465314400,5),(845,481039200,6),(845,496764000,5),(845,512488800,6),(845,528213600,5),(845,543938400,6),(845,559663200,5),(845,575388000,6),(845,591112800,5),(845,606837600,6),(845,622562400,5),(845,638287200,6),(845,654616800,5),(845,670341600,7),(845,686070000,8),(845,695746800,5),(845,701791200,6),(845,717516000,5),(845,733240800,6),(845,748965600,5),(845,764690400,6),(845,780415200,5),(845,796140000,6),(845,811864800,5),(845,828194400,6),(845,846338400,5),(845,859644000,6),(845,877788000,5),(845,891093600,6),(845,909237600,5),(845,922543200,6),(845,941292000,5),(845,953992800,6),(845,972741600,5),(845,985442400,6),(845,1004191200,5),(845,1017496800,6),(845,1035640800,5),(845,1048946400,6),(845,1067090400,5),(845,1080396000,6),(845,1099144800,5),(845,1111845600,6),(845,1130594400,5),(845,1143295200,6),(845,1162044000,5),(845,1174744800,6),(845,1193493600,5),(845,1206799200,6),(845,1224943200,5),(845,1238248800,6),(845,1256392800,5),(845,1269698400,7),(845,1288450800,8),(845,1301151600,5),(846,-2147483648,0),(846,-1441164064,1),(846,-1247544000,2),(846,370724400,3),(846,386445600,4),(846,402256800,2),(846,417985200,4),(846,433792800,2),(846,449607600,4),(846,465339600,5),(846,481064400,6),(846,496789200,5),(846,512514000,6),(846,528238800,5),(846,543963600,6),(846,559688400,5),(846,575413200,6),(846,591138000,5),(846,606862800,6),(846,622587600,5),(846,638312400,6),(846,654642000,5),(846,670366800,7),(846,686095200,8),(846,695772000,5),(846,701816400,6),(846,717541200,5),(846,733266000,6),(846,748990800,5),(846,764715600,6),(846,780440400,8),(846,796168800,7),(846,811893600,8),(846,828223200,7),(846,846367200,8),(846,859672800,7),(846,877816800,8),(846,891122400,7),(846,909266400,8),(846,922572000,7),(846,941320800,8),(846,954021600,7),(846,972770400,8),(846,985471200,7),(846,1004220000,8),(846,1017525600,7),(846,1035669600,8),(846,1048975200,7),(846,1067119200,8),(846,1080424800,7),(846,1099173600,5),(847,-2147483648,0),(847,-1441165720,1),(847,-1247544000,2),(847,354913200,3),(847,370720800,4),(847,386445600,3),(847,402256800,2),(847,417985200,3),(847,433792800,2),(847,449607600,3),(847,465339600,5),(847,481064400,6),(847,496789200,5),(847,512514000,6),(847,528238800,5),(847,543963600,6),(847,559688400,5),(847,575413200,6),(847,591138000,5),(847,606862800,6),(847,622587600,5),(847,638312400,6),(847,654642000,5),(847,670366800,7),(847,686095200,8),(847,695772000,5),(847,701816400,6),(847,717541200,5),(847,733266000,6),(847,748990800,5),(847,764715600,6),(847,780440400,5),(847,796165200,6),(847,811890000,5),(847,828219600,6),(847,846363600,5),(847,859669200,6),(847,877813200,5),(847,891118800,6),(847,909262800,5),(847,922568400,6),(847,941317200,5),(847,954018000,6),(847,972766800,5),(847,985467600,6),(847,1004216400,5),(847,1017522000,6),(847,1035666000,5),(847,1048971600,6),(847,1067115600,5),(847,1080421200,6),(847,1099170000,5),(848,-2147483648,0),(848,-1441166012,1),(848,-1247544000,3),(848,354913200,2),(848,370720800,3),(848,386449200,2),(848,402256800,3),(848,417985200,2),(848,433792800,3),(848,449607600,2),(848,465339600,4),(848,481064400,5),(848,496789200,4),(848,512514000,5),(848,528238800,4),(848,543963600,5),(848,559688400,4),(848,575413200,5),(848,591138000,4),(848,606862800,5),(848,622587600,4),(848,638312400,5),(848,654642000,4),(848,670366800,6),(848,686095200,7),(848,695772000,3),(849,-2147483648,0),(849,-1441166012,1),(849,-1247544000,3),(849,354913200,2),(849,370720800,3),(849,386449200,2),(849,402256800,3),(849,417985200,2),(849,433792800,3),(849,449607600,2),(849,465339600,4),(849,481064400,5),(849,496789200,4),(849,512514000,5),(849,528238800,4),(849,543963600,5),(849,559688400,4),(849,575413200,5),(849,591138000,4),(849,606862800,5),(849,622587600,4),(849,638312400,5),(849,654642000,4),(849,670366800,6),(849,686095200,7),(849,695772000,3),(850,-2147483648,0),(850,-1441164464,1),(850,-1247540400,2),(850,370724400,3),(850,386445600,4),(850,402256800,2),(850,417985200,4),(850,433792800,2),(850,449607600,4),(850,465339600,5),(850,481064400,6),(850,496789200,5),(850,512514000,6),(850,528238800,5),(850,543963600,6),(850,559688400,5),(850,575413200,6),(850,591138000,5),(850,606862800,6),(850,622587600,5),(850,638312400,6),(850,654642000,5),(850,670366800,7),(850,686095200,8),(850,695772000,5),(850,701816400,6),(850,717541200,5),(850,733266000,6),(850,748990800,5),(850,764715600,6),(850,780440400,5),(850,796165200,6),(850,811890000,5),(850,828219600,6),(850,846363600,5),(850,859669200,6),(850,877813200,5),(850,891118800,6),(850,909262800,5),(850,922568400,7),(850,941320800,8),(850,954021600,7),(850,972770400,8),(850,985471200,7),(850,1004220000,8),(850,1017525600,7),(850,1035669600,8),(850,1048975200,7),(850,1067119200,8),(850,1080424800,7),(850,1099173600,5),(851,-2147483648,1),(851,-1641005856,2),(851,389048400,3),(851,402264000,2),(851,417906000,3),(851,433800000,2),(851,449614800,3),(851,465422400,2),(851,481150800,3),(851,496792800,4),(851,512517600,5),(851,528242400,4),(851,543967200,5),(851,559692000,4),(851,575416800,5),(851,591141600,4),(851,606866400,5),(851,622591200,4),(851,638316000,5),(851,654645600,4),(851,670464000,5),(851,686275200,4),(851,702086400,5),(851,717897600,4),(851,733622400,5),(851,749433600,4),(851,765158400,5),(851,780969600,4),(851,796694400,5),(851,812505600,4),(851,828316800,5),(851,844128000,4),(851,859852800,5),(851,875664000,4),(851,891388800,5),(851,907200000,4),(851,922924800,5),(851,938736000,4),(851,954547200,5),(851,970358400,4),(851,986083200,5),(851,1001894400,4),(851,1017619200,5),(851,1033430400,4),(851,1049155200,5),(851,1064966400,4),(851,1080777600,5),(851,1096588800,4),(851,1112313600,5),(851,1128124800,4),(851,1143849600,5),(851,1159660800,4),(851,1175385600,5),(851,1191196800,4),(852,-2147483648,0),(852,-1577935568,1),(852,76190400,2),(853,-2147483648,0),(853,-1441163964,1),(853,-405140400,3),(853,354916800,2),(853,370724400,3),(853,386452800,2),(853,402260400,3),(853,417988800,2),(853,433796400,3),(853,449611200,2),(853,465343200,4),(853,481068000,5),(853,496792800,4),(853,512517600,5),(853,528242400,4),(853,543967200,5),(853,559692000,4),(853,575416800,5),(853,591141600,4),(853,606866400,5),(853,622591200,4),(853,638316000,5),(853,654645600,4),(853,670370400,6),(853,686098800,7),(853,701823600,6),(853,717548400,4),(853,820440000,3),(853,828234000,8),(853,846378000,9),(853,852062400,3),(853,859680000,2),(853,877824000,3),(853,891129600,2),(853,909273600,3),(853,922579200,2),(853,941328000,3),(853,954028800,2),(853,972777600,3),(853,985478400,2),(853,1004227200,3),(853,1017532800,2),(853,1035676800,3),(853,1048982400,2),(853,1067126400,3),(853,1080432000,2),(853,1099180800,3),(853,1111881600,2),(853,1130630400,3),(853,1143331200,2),(853,1162080000,3),(853,1174780800,2),(853,1193529600,3),(853,1206835200,2),(853,1224979200,3),(853,1238284800,2),(853,1256428800,3),(853,1269734400,2),(853,1288483200,3),(853,1301184000,2),(853,1319932800,3),(853,1332633600,2),(853,1351382400,3),(853,1364688000,2),(853,1382832000,3),(853,1396137600,2),(853,1414281600,3),(853,1427587200,2),(853,1445731200,3),(854,-2147483648,1),(854,-1570084924,2),(855,-2147483648,0),(855,-1579844100,1),(855,-1247551200,3),(855,354906000,2),(855,370713600,3),(855,386442000,2),(855,402249600,3),(855,417978000,2),(855,433785600,3),(855,449600400,2),(855,465332400,4),(855,481057200,5),(855,496782000,4),(855,512506800,5),(855,528231600,4),(855,543956400,5),(855,559681200,4),(855,575406000,5),(855,591130800,4),(855,606855600,5),(855,622580400,4),(855,638305200,5),(855,654634800,4),(855,670359600,6),(855,686088000,7),(855,695764800,4),(855,701809200,5),(855,717534000,4),(855,733258800,5),(855,748983600,4),(855,764708400,5),(855,780433200,4),(855,796158000,5),(855,801590400,8),(855,811886400,7),(855,828216000,6),(855,846360000,7),(855,859665600,6),(855,877809600,7),(855,891115200,6),(855,909259200,7),(855,922564800,6),(855,941313600,7),(855,954014400,6),(855,972763200,7),(855,985464000,6),(855,1004212800,7),(855,1017518400,6),(855,1035662400,7),(855,1048968000,6),(855,1067112000,7),(855,1080417600,6),(855,1099166400,7),(855,1111867200,6),(855,1130616000,7),(855,1143316800,6),(855,1162065600,7),(855,1174766400,6),(855,1193515200,7),(855,1206820800,6),(855,1224964800,7),(855,1238270400,6),(855,1256414400,7),(855,1269720000,6),(855,1288468800,7),(855,1301169600,4),(855,1414263600,7),(855,1459022400,4),(856,-2147483648,2),(856,-1570413600,1),(856,-1552186800,2),(856,-1538359200,1),(856,-1522551600,2),(856,-1507514400,1),(856,-1490583600,2),(856,-1473645600,1),(856,-1460948400,2),(856,-399866400,1),(856,-386650800,2),(856,-368330400,1),(856,-355114800,2),(856,-336794400,1),(856,-323578800,2),(856,-305172000,1),(856,-291956400,2),(856,-273636000,1),(856,-260420400,2),(856,78012000,1),(856,86734800,2),(856,105055200,1),(856,118270800,2),(856,136591200,1),(856,149806800,2),(856,168127200,1),(856,181342800,2),(856,199749600,1),(856,212965200,2),(856,231285600,1),(856,244501200,2),(856,262735200,1),(856,275950800,2),(856,452210400,1),(856,466722000,2),(856,483746400,1),(856,498258000,2),(856,515282400,1),(856,529794000,2),(856,546818400,1),(856,561330000,2),(856,581119200,1),(856,592952400,2),(856,610754400,1),(856,624488400,2),(856,641512800,1),(856,656024400,2),(856,673048800,1),(856,687560400,2),(856,704671200,1),(856,718146000,2),(856,733269600,1),(856,748990800,2),(856,764719200,1),(856,780440400,2),(856,796168800,1),(856,811890000,2),(856,828223200,1),(856,843944400,2),(856,859672800,1),(856,875394000,2),(856,891122400,1),(856,906843600,2),(856,922572000,1),(856,941317200,2),(856,954021600,1),(856,972766800,2),(856,985471200,1),(856,1004216400,2),(856,1017525600,1),(856,1035666000,2),(856,1048975200,1),(856,1067115600,2),(856,1080424800,1),(856,1099170000,2),(856,1111874400,1),(856,1130619600,2),(856,1143324000,1),(856,1162069200,2),(856,1174773600,1),(856,1193518800,2),(856,1206828000,1),(856,1224968400,2),(856,1238277600,1),(856,1256418000,2),(856,1269727200,1),(856,1288472400,2),(856,1301176800,1),(856,1319922000,2),(856,1332626400,1),(856,1351371600,2),(856,1364680800,1),(856,1382821200,2),(856,1396130400,1),(856,1414270800,2),(856,1427580000,1),(856,1445720400,2),(856,1459029600,1),(856,1477774800,2),(856,1490479200,1),(856,1509224400,2),(856,1521928800,1),(856,1540674000,2),(856,1553983200,1),(856,1572123600,2),(856,1585432800,1),(856,1603573200,2),(856,1616882400,1),(856,1635627600,2),(856,1648332000,1),(856,1667077200,2),(856,1679781600,1),(856,1698526800,2),(856,1711836000,1),(856,1729976400,2),(856,1743285600,1),(856,1761426000,2),(856,1774735200,1),(856,1792875600,2),(856,1806184800,1),(856,1824930000,2),(856,1837634400,1),(856,1856379600,2),(856,1869084000,1),(856,1887829200,2),(856,1901138400,1),(856,1919278800,2),(856,1932588000,1),(856,1950728400,2),(856,1964037600,1),(856,1982782800,2),(856,1995487200,1),(856,2014232400,2),(856,2026936800,1),(856,2045682000,2),(856,2058386400,1),(856,2077131600,2),(856,2090440800,1),(856,2108581200,2),(856,2121890400,1),(856,2140030800,2),(857,-2147483648,0),(857,-1441169904,1),(857,-1247547600,3),(857,354909600,2),(857,370717200,3),(857,386445600,2),(857,402253200,3),(857,417981600,2),(857,433789200,3),(857,449604000,2),(857,465336000,4),(857,481060800,5),(857,496785600,4),(857,512510400,5),(857,528235200,4),(857,543960000,5),(857,559684800,4),(857,575409600,5),(857,591134400,4),(857,606859200,5),(857,622584000,4),(857,638308800,5),(857,654638400,4),(857,670363200,6),(857,683582400,1),(857,703018800,6),(857,717530400,1),(857,734468400,6),(857,748980000,1),(857,765918000,6),(857,780429600,1),(857,797367600,6),(857,811879200,1),(857,828817200,6),(857,843933600,1),(857,859671000,8),(857,877811400,1),(857,891120600,8),(857,909261000,1),(857,922570200,8),(857,941315400,1),(857,954019800,8),(857,972765000,1),(857,985469400,8),(857,1004214600,1),(857,1017523800,8),(857,1035664200,1),(857,1048973400,8),(857,1067113800,1),(857,1080423000,8),(857,1099168200,1),(857,1111872600,8),(857,1123783200,3),(858,-2147483648,0),(858,-1383464380,1),(858,-1167636600,2),(859,-2147483648,1),(859,-2019705670,2),(859,-891581400,3),(859,-872058600,2),(859,-862637400,3),(859,-764145000,2),(860,-2147483648,0),(860,-1579419232,1),(860,-1247558400,3),(860,354898800,2),(860,370706400,3),(860,386434800,2),(860,402242400,3),(860,417970800,2),(860,433778400,3),(860,449593200,2),(860,465325200,4),(860,481050000,5),(860,496774800,4),(860,512499600,5),(860,528224400,4),(860,543949200,5),(860,559674000,4),(860,575398800,5),(860,591123600,4),(860,606848400,5),(860,622573200,4),(860,638298000,5),(860,654627600,4),(860,670352400,6),(860,686080800,7),(860,695757600,4),(860,701802000,5),(860,717526800,4),(860,733251600,5),(860,748976400,4),(860,764701200,5),(860,780426000,4),(860,796150800,5),(860,811875600,4),(860,828205200,5),(860,846349200,4),(860,859654800,5),(860,877798800,4),(860,891104400,5),(860,909248400,4),(860,922554000,5),(860,941302800,4),(860,954003600,5),(860,972752400,4),(860,985453200,5),(860,1004202000,4),(860,1017507600,5),(860,1035651600,4),(860,1048957200,5),(860,1067101200,4),(860,1080406800,5),(860,1099155600,4),(860,1111856400,5),(860,1130605200,4),(860,1143306000,5),(860,1162054800,4),(860,1174755600,5),(860,1193504400,4),(860,1206810000,5),(860,1224954000,4),(860,1238259600,5),(860,1256403600,4),(860,1269709200,5),(860,1288458000,4),(860,1301158800,8),(860,1414252800,7),(860,1459015200,3),(861,-2147483648,0),(861,-2032933080,1),(861,252435600,2),(861,417974400,4),(861,433778400,3),(861,449593200,4),(861,465314400,3),(861,481042800,4),(861,496764000,3),(861,512492400,4),(861,528213600,3),(861,543942000,4),(861,559663200,3),(861,575391600,4),(861,591112800,3),(861,606841200,4),(861,622562400,3),(861,638290800,4),(861,654616800,3),(861,670345200,4),(861,686066400,3),(861,701794800,4),(861,717516000,3),(861,733244400,4),(861,748965600,3),(861,764694000,4),(861,780415200,3),(861,796143600,4),(861,811864800,3),(861,828198000,4),(861,843919200,3),(861,859647600,4),(861,875368800,3),(861,891097200,4),(861,906818400,3),(861,988390800,4),(861,1001692800,3),(861,1017421200,4),(861,1033142400,3),(861,1048870800,4),(861,1064592000,3),(861,1080320400,4),(861,1096041600,3),(861,1111770000,4),(861,1127491200,3),(861,1143219600,4),(861,1159545600,3),(861,1206889200,2),(861,1427479200,5),(861,1443193200,2),(861,1458928800,5),(861,1474642800,2),(862,-2147483648,2),(862,-933667200,1),(862,-922093200,2),(862,-908870400,1),(862,-888829200,2),(862,-881049600,1),(862,-767869200,2),(862,-745833600,1),(862,-733827600,2),(862,-716889600,1),(862,-699613200,2),(862,-683884800,1),(862,-670669200,2),(862,-652348800,1),(862,-650019600,2),(862,515527200,1),(862,527014800,2),(862,545162400,1),(862,558464400,2),(862,577216800,1),(862,589914000,2),(862,608666400,1),(862,621968400,2),(862,640116000,1),(862,653418000,2),(862,671565600,1),(862,684867600,2),(863,-2147483648,2),(863,-933667200,1),(863,-922093200,2),(863,-908870400,1),(863,-888829200,2),(863,-881049600,1),(863,-767869200,2),(863,-745833600,1),(863,-733827600,2),(863,-716889600,1),(863,-699613200,2),(863,-683884800,1),(863,-670669200,2),(863,-652348800,1),(863,-650019600,2),(863,515527200,1),(863,527014800,2),(863,545162400,1),(863,558464400,2),(863,577216800,1),(863,589914000,2),(863,608666400,1),(863,621968400,2),(863,640116000,1),(863,653418000,2),(863,671565600,1),(863,684867600,2),(864,-2147483648,1),(864,-2019705572,2),(864,-883287000,3),(864,-862639200,4),(864,-764051400,2),(864,832962600,5),(864,846266400,6),(864,1145039400,2),(865,-2147483648,1),(865,-891582800,2),(865,-872058600,3),(865,-862637400,2),(865,-576138600,4),(865,1245430800,5),(865,1262278800,4),(866,-2147483648,0),(866,-1577931912,2),(866,-1568592000,1),(866,-1554080400,2),(866,-1537142400,1),(866,-1522630800,2),(866,-1505692800,1),(866,-1491181200,2),(866,-1474243200,1),(866,-1459126800,2),(866,-242265600,1),(866,-228877200,2),(866,-210556800,1),(866,-197427600,2),(866,-178934400,1),(866,-165718800,2),(866,-147398400,1),(866,-134269200,2),(866,-116467200,1),(866,-102646800,2),(866,-84326400,1),(866,-71110800,2),(866,-52704000,1),(866,-39488400,2),(866,-21168000,1),(866,-7952400,2),(866,10368000,1),(866,23583600,2),(866,41904000,1),(866,55119600,2),(866,73526400,1),(866,86742000,2),(866,105062400,1),(866,118278000,2),(866,136598400,1),(866,149814000,2),(866,168134400,1),(866,181350000,2),(866,199756800,1),(866,212972400,2),(866,231292800,1),(866,241916400,2),(866,262828800,1),(866,273452400,2),(866,418694400,1),(866,433810800,2),(866,450316800,1),(866,465433200,2),(866,508896000,1),(866,529196400,2),(866,541555200,1),(866,562633200,2),(866,574387200,1),(866,594255600,2),(866,607305600,1),(866,623199600,2),(866,638928000,1),(866,654649200,2),(866,670456800,1),(866,686264400,2),(866,702684000,1),(866,717886800,2),(866,733096800,1),(866,748904400,2),(866,765151200,1),(866,780958800,2),(866,796687200,1),(866,812494800,2),(866,828309600,1),(866,844117200,2),(866,859759200,1),(866,875653200,2),(866,891208800,1),(866,907189200,2),(866,922917600,1),(866,938725200,2),(866,954540000,1),(866,970347600,2),(866,986076000,1),(866,1001883600,2),(866,1017612000,1),(866,1033419600,2),(866,1049148000,1),(866,1064955600,2),(866,1080770400,1),(866,1096578000,2),(866,1112306400,1),(866,1128114000,2),(866,1143842400,1),(866,1158872400,2),(866,1175205600,1),(866,1193950800,2),(866,1207260000,1),(866,1225486800,2),(866,1238104800,1),(866,1256850000,2),(866,1270159200,1),(866,1288299600,2),(866,1301608800,1),(866,1319749200,2),(866,1333058400,1),(866,1351198800,2),(866,1364508000,1),(866,1382648400,2),(866,1395957600,1),(866,1414702800,2),(866,1427407200,1),(866,1446152400,2),(866,1458856800,1),(866,1477602000,2),(866,1490911200,1),(866,1509051600,2),(866,1522360800,1),(866,1540501200,2),(866,1553810400,1),(866,1571950800,2),(866,1585260000,1),(866,1604005200,2),(866,1616709600,1),(866,1635454800,2),(866,1648159200,1),(866,1666904400,2),(866,1680213600,1),(866,1698354000,2),(866,1711663200,1),(866,1729803600,2),(866,1743112800,1),(866,1761858000,2),(866,1774562400,1),(866,1793307600,2),(866,1806012000,1),(866,1824757200,2),(866,1838066400,1),(866,1856206800,2),(866,1869516000,1),(866,1887656400,2),(866,1900965600,1),(866,1919106000,2),(866,1932415200,1),(866,1951160400,2),(866,1963864800,1),(866,1982610000,2),(866,1995314400,1),(866,2014059600,2),(866,2027368800,1),(866,2045509200,2),(866,2058818400,1),(866,2076958800,2),(866,2090268000,1),(866,2109013200,2),(866,2121717600,1),(866,2140462800,2),(867,-2147483648,1),(867,-891582800,2),(867,-872058600,3),(867,-862637400,2),(867,-576138600,4),(867,1245430800,5),(867,1262278800,4),(868,-2147483648,0),(868,-1830414140,1),(868,-879152400,2),(868,199897200,1),(868,969120000,2),(869,-2147483648,0),(869,-1577936472,1),(870,-2147483648,0),(870,-1441168512,1),(870,-1247547600,3),(870,354909600,2),(870,370717200,3),(870,386445600,2),(870,402253200,3),(870,417981600,2),(870,433789200,3),(870,449604000,2),(870,465336000,4),(870,481060800,5),(870,496785600,4),(870,512510400,5),(870,528235200,4),(870,543960000,5),(870,559684800,4),(870,575409600,5),(870,591134400,4),(870,606859200,5),(870,622584000,4),(870,638308800,5),(870,654638400,4),(870,670363200,6),(870,684363600,7),(871,-2147483648,0),(871,-1518920148,2),(871,166572000,1),(871,182293200,2),(871,200959200,1),(871,213829200,2),(871,228866400,1),(871,243982800,2),(871,260316000,1),(871,276123600,2),(871,291765600,1),(871,307486800,2),(871,323820000,1),(871,338936400,2),(871,354664800,1),(871,370386000,2),(871,386114400,1),(871,401835600,2),(871,417564000,1),(871,433285200,2),(871,449013600,1),(871,465339600,2),(871,481068000,1),(871,496789200,2),(871,512517600,1),(871,528238800,2),(871,543967200,1),(871,559688400,2),(871,575416800,1),(871,591138000,2),(871,606866400,1),(871,622587600,2),(871,638316000,1),(871,654642000,2),(871,670370400,1),(871,686091600,2),(871,701820000,1),(871,717541200,2),(871,733269600,1),(871,748990800,2),(871,764719200,1),(871,780440400,2),(871,796168800,1),(871,811890000,2),(871,828223200,1),(871,843944400,2),(871,859672800,1),(871,875394000,2),(871,891122400,1),(871,909277200,3),(871,922582800,4),(871,941331600,3),(871,954032400,4),(871,972781200,3),(871,985482000,4),(871,1004230800,3),(871,1017536400,4),(871,1035680400,3),(871,1048986000,4),(871,1067130000,3),(871,1080435600,4),(871,1099184400,3),(871,1111885200,4),(871,1130634000,3),(871,1143334800,4),(871,1162083600,3),(871,1174784400,4),(871,1193533200,3),(871,1206838800,4),(871,1224982800,3),(871,1238288400,4),(871,1256432400,3),(871,1269738000,4),(871,1288486800,3),(871,1301187600,4),(871,1319936400,3),(871,1332637200,4),(871,1351386000,3),(871,1364691600,4),(871,1382835600,3),(871,1396141200,4),(871,1414285200,3),(871,1427590800,4),(871,1445734800,3),(871,1459040400,4),(871,1473282000,5),(871,1509238800,3),(871,1521939600,4),(871,1540688400,3),(871,1553994000,4),(871,1572138000,3),(871,1585443600,4),(871,1603587600,3),(871,1616893200,4),(871,1635642000,3),(871,1648342800,4),(871,1667091600,3),(871,1679792400,4),(871,1698541200,3),(871,1711846800,4),(871,1729990800,3),(871,1743296400,4),(871,1761440400,3),(871,1774746000,4),(871,1792890000,3),(871,1806195600,4),(871,1824944400,3),(871,1837645200,4),(871,1856394000,3),(871,1869094800,4),(871,1887843600,3),(871,1901149200,4),(871,1919293200,3),(871,1932598800,4),(871,1950742800,3),(871,1964048400,4),(871,1982797200,3),(871,1995498000,4),(871,2014246800,3),(871,2026947600,4),(871,2045696400,3),(871,2058397200,4),(871,2077146000,3),(871,2090451600,4),(871,2108595600,3),(871,2121901200,4),(871,2140045200,3),(872,-2147483648,2),(872,-933645600,1),(872,-857358000,2),(872,-844300800,1),(872,-825822000,2),(872,-812685600,1),(872,-794199600,2),(872,-779853600,1),(872,-762656400,2),(872,-748310400,1),(872,-731127600,2),(872,-399088800,1),(872,-386650800,2),(872,-368330400,1),(872,-355114800,2),(872,-336790800,1),(872,-323654400,2),(872,-305168400,1),(872,-292032000,2),(872,-273632400,1),(872,-260496000,2),(872,-242096400,1),(872,-228960000,2),(872,-210560400,1),(872,-197424000,2),(872,-178938000,1),(872,-165801600,2),(872,-147402000,1),(872,-134265600,2),(872,-115866000,1),(872,-102643200,2),(872,-84330000,1),(872,-81313200,4),(872,142380000,3),(872,150843600,4),(872,167176800,3),(872,178664400,4),(872,334015200,3),(872,337644000,4),(872,452556000,3),(872,462232800,4),(872,482277600,3),(872,495579600,4),(872,516751200,3),(872,526424400,4),(872,545436000,3),(872,558478800,4),(872,576626400,3),(872,589323600,4),(872,609890400,3),(872,620773200,4),(872,638316000,3),(872,651618000,4),(872,669765600,3),(872,683672400,4),(872,701820000,3),(872,715726800,4),(872,733701600,3),(872,747176400,4),(872,765151200,3),(872,778021200,4),(872,796600800,3),(872,810075600,4),(872,820447200,2),(872,828655200,1),(872,843170400,5),(872,860104800,1),(872,874620000,5),(872,891554400,1),(872,906069600,5),(872,915141600,2),(872,924213600,1),(872,939934800,2),(872,956268000,1),(872,971989200,2),(872,987717600,1),(872,1003438800,2),(872,1019167200,1),(872,1034888400,2),(872,1050616800,1),(872,1066338000,2),(872,1082066400,1),(872,1096581600,2),(872,1113516000,1),(872,1128380400,2),(872,1143842400,1),(872,1158872400,2),(872,1175378400,1),(872,1189638000,2),(872,1206655200,1),(872,1219957200,2),(872,1238104800,1),(872,1252015200,2),(872,1269640860,1),(872,1281474000,2),(872,1301608860,1),(872,1312146000,2),(872,1333058400,1),(872,1348178400,2),(872,1364508000,1),(872,1380229200,2),(872,1395957600,1),(872,1414098000,2),(872,1427493600,1),(872,1445547600,2),(872,1458946800,1),(872,1477692000,2),(872,1490396400,1),(872,1509141600,2),(872,1521846000,1),(872,1540591200,2),(872,1553810400,1),(872,1572040800,2),(872,1585260000,1),(872,1604095200,2),(872,1616709600,1),(872,1635544800,2),(872,1648159200,1),(872,1666994400,2),(872,1680213600,1),(872,1698444000,2),(872,1711663200,1),(872,1729893600,2),(872,1743112800,1),(872,1761343200,2),(872,1774562400,1),(872,1793397600,2),(872,1806012000,1),(872,1824847200,2),(872,1838066400,1),(872,1856296800,2),(872,1869516000,1),(872,1887746400,2),(872,1900965600,1),(872,1919196000,2),(872,1932415200,1),(872,1950645600,2),(872,1963864800,1),(872,1982700000,2),(872,1995314400,1),(872,2014149600,2),(872,2027368800,1),(872,2045599200,2),(872,2058818400,1),(872,2077048800,2),(872,2090268000,1),(872,2108498400,2),(872,2121717600,1),(872,2140552800,2),(873,-2147483648,2),(873,-933667200,1),(873,-922093200,2),(873,-908870400,1),(873,-888829200,2),(873,-881049600,1),(873,-767869200,2),(873,-745833600,1),(873,-733827600,2),(873,-716889600,1),(873,-699613200,2),(873,-683884800,1),(873,-670669200,2),(873,-652348800,1),(873,-650019600,2),(873,515527200,1),(873,527014800,2),(873,545162400,1),(873,558464400,2),(873,577216800,1),(873,589914000,2),(873,608666400,1),(873,621968400,2),(873,640116000,1),(873,653418000,2),(873,671565600,1),(873,684867600,2),(874,-2147483648,2),(874,-933645600,1),(874,-857358000,2),(874,-844300800,1),(874,-825822000,2),(874,-812685600,1),(874,-794199600,2),(874,-779853600,1),(874,-762656400,2),(874,-748310400,1),(874,-731127600,2),(874,-399088800,1),(874,-386650800,2),(874,-368330400,1),(874,-355114800,2),(874,-336790800,1),(874,-323654400,2),(874,-305168400,1),(874,-292032000,2),(874,-273632400,1),(874,-260496000,2),(874,-242096400,1),(874,-228960000,2),(874,-210560400,1),(874,-197424000,2),(874,-178938000,1),(874,-165801600,2),(874,-147402000,1),(874,-134265600,2),(874,-115866000,1),(874,-102643200,2),(874,-84330000,1),(874,-81313200,4),(874,142380000,3),(874,150843600,4),(874,167176800,3),(874,178664400,4),(874,334015200,3),(874,337644000,4),(874,452556000,3),(874,462232800,4),(874,482277600,3),(874,495579600,4),(874,516751200,3),(874,526424400,4),(874,545436000,3),(874,558478800,4),(874,576626400,3),(874,589323600,4),(874,609890400,3),(874,620773200,4),(874,638316000,3),(874,651618000,4),(874,669765600,3),(874,683672400,4),(874,701820000,3),(874,715726800,4),(874,733701600,3),(874,747176400,4),(874,765151200,3),(874,778021200,4),(874,796600800,3),(874,810075600,4),(874,820447200,2),(874,828655200,1),(874,843170400,5),(874,860104800,1),(874,874620000,5),(874,891554400,1),(874,906069600,5),(874,915141600,2),(874,924213600,1),(874,939934800,2),(874,956268000,1),(874,971989200,2),(874,987717600,1),(874,1003438800,2),(874,1019167200,1),(874,1034888400,2),(874,1050616800,1),(874,1066338000,2),(874,1082066400,1),(874,1096581600,2),(874,1113516000,1),(874,1128380400,2),(874,1143842400,1),(874,1158872400,2),(874,1175378400,1),(874,1189638000,2),(874,1206655200,1),(874,1220216400,2),(874,1238104800,1),(874,1252015200,2),(874,1269554400,1),(874,1281474000,2),(874,1301608860,1),(874,1312146000,2),(874,1314655200,1),(874,1317330000,2),(874,1333058400,1),(874,1348178400,2),(874,1364508000,1),(874,1380229200,2),(874,1395957600,1),(874,1414098000,2),(874,1427493600,1),(874,1445547600,2),(874,1458946800,1),(874,1477692000,2),(874,1490396400,1),(874,1509141600,2),(874,1521846000,1),(874,1540591200,2),(874,1553810400,1),(874,1572040800,2),(874,1585260000,1),(874,1604095200,2),(874,1616709600,1),(874,1635544800,2),(874,1648159200,1),(874,1666994400,2),(874,1680213600,1),(874,1698444000,2),(874,1711663200,1),(874,1729893600,2),(874,1743112800,1),(874,1761343200,2),(874,1774562400,1),(874,1793397600,2),(874,1806012000,1),(874,1824847200,2),(874,1838066400,1),(874,1856296800,2),(874,1869516000,1),(874,1887746400,2),(874,1900965600,1),(874,1919196000,2),(874,1932415200,1),(874,1950645600,2),(874,1963864800,1),(874,1982700000,2),(874,1995314400,1),(874,2014149600,2),(874,2027368800,1),(874,2045599200,2),(874,2058818400,1),(874,2077048800,2),(874,2090268000,1),(874,2108498400,2),(874,2121717600,1),(874,2140552800,2),(875,-2147483648,0),(875,-2004073600,1),(875,-1851577590,2),(875,-852105600,3),(875,-782643600,4),(875,-767869200,2),(875,-718095600,3),(875,-457776000,2),(875,-315648000,3),(875,171820800,2),(876,-2147483648,0),(876,-2056690800,1),(876,-900910800,2),(876,-891579600,3),(876,-884248200,4),(876,-761209200,1),(876,-747907200,2),(876,-728541000,5),(876,-717049800,6),(876,-697091400,5),(876,-683785800,6),(876,-668061000,5),(876,-654755400,2),(876,-636611400,5),(876,-623305800,2),(876,-605161800,5),(876,-591856200,2),(876,-573712200,5),(876,-559801800,2),(876,-541657800,5),(876,-528352200,2),(876,-510211800,1),(876,-498112200,2),(876,-478762200,1),(876,-466662600,2),(876,-446707800,1),(876,-435213000,2),(876,-415258200,1),(876,-403158600,2),(876,-383808600,1),(876,-371709000,2),(876,-352359000,1),(876,-340259400,2),(876,-320909400,1),(876,-308809800,2),(876,-288855000,1),(876,-277360200,2),(876,-257405400,1),(876,-245910600,2),(876,-225955800,1),(876,-213856200,2),(876,-194506200,1),(876,-182406600,2),(876,-163056600,1),(876,-148537800,2),(876,-132816600,1),(876,-117088200,2),(876,-101367000,1),(876,-85638600,2),(876,-69312600,1),(876,-53584200,2),(876,-37863000,1),(876,-22134600,2),(876,-6413400,1),(876,9315000,2),(876,25036200,1),(876,40764600,2),(876,56485800,1),(876,72214200,2),(876,88540200,1),(876,104268600,2),(876,119989800,1),(876,126041400,2),(876,151439400,1),(876,167167800,2),(876,182889000,1),(876,198617400,2),(876,214338600,1),(876,295385400,2),(876,309292200,1),(877,-2147483648,0),(877,-2032927596,1),(877,252439200,3),(877,417978000,2),(877,433785600,3),(877,449600400,2),(877,465321600,3),(877,481050000,2),(877,496771200,3),(877,512499600,2),(877,528220800,3),(877,543949200,2),(877,559670400,3),(877,575398800,2),(877,591120000,3),(877,606848400,2),(877,622569600,3),(877,638298000,2),(877,654624000,3),(877,670352400,2),(877,686073600,3),(877,701802000,2),(877,717523200,3),(877,733251600,2),(877,748972800,3),(877,764701200,2),(877,780422400,3),(877,796150800,2),(877,811872000,3),(877,828205200,2),(877,843926400,3),(877,859654800,2),(877,875376000,3),(877,891104400,2),(877,906825600,3),(877,988398000,2),(877,1001700000,3),(877,1017428400,2),(877,1033149600,3),(877,1048878000,2),(877,1064599200,3),(877,1080327600,2),(877,1096048800,3),(877,1111777200,2),(877,1127498400,3),(877,1143226800,2),(877,1159552800,3),(877,1427482800,2),(877,1443196800,3),(877,1458932400,2),(877,1474646400,3),(878,-2147483648,1),(878,-1575874625,2),(878,-1247554800,4),(878,354902400,3),(878,370710000,4),(878,386438400,3),(878,402246000,4),(878,417974400,3),(878,433782000,4),(878,449596800,3),(878,465328800,5),(878,481053600,6),(878,496778400,5),(878,512503200,6),(878,528228000,5),(878,543952800,6),(878,559677600,5),(878,575402400,6),(878,591127200,5),(878,606852000,6),(878,622576800,5),(878,638301600,6),(878,654631200,5),(878,670356000,7),(878,686084400,8),(878,695761200,5),(878,701805600,6),(878,717530400,5),(878,733255200,6),(878,748980000,5),(878,764704800,6),(878,780429600,5),(878,796154400,6),(878,811879200,5),(878,828208800,6),(878,846352800,5),(878,859658400,6),(878,877802400,5),(878,891108000,6),(878,909252000,5),(878,922557600,6),(878,941306400,5),(878,954007200,6),(878,972756000,5),(878,985456800,6),(878,1004205600,5),(878,1017511200,6),(878,1035655200,5),(878,1048960800,6),(878,1067104800,5),(878,1080410400,6),(878,1099159200,5),(878,1111860000,6),(878,1130608800,5),(878,1143309600,6),(878,1162058400,5),(878,1174759200,6),(878,1193508000,5),(878,1206813600,6),(878,1224957600,5),(878,1238263200,6),(878,1256407200,5),(878,1269712800,6),(878,1288461600,5),(878,1301162400,9),(878,1414256400,5),(879,-2147483648,1),(879,-1869875816,3),(879,-1693706400,2),(879,-1680490800,3),(879,-1570413600,2),(879,-1552186800,3),(879,-1538359200,2),(879,-1522551600,3),(879,-1507514400,2),(879,-1490583600,3),(879,-1440208800,2),(879,-1428030000,3),(879,-1409709600,2),(879,-1396494000,3),(879,-931053600,2),(879,-922676400,3),(879,-917834400,2),(879,-892436400,3),(879,-875844000,2),(879,-764737200,3),(879,-744343200,2),(879,-733806000,3),(879,-716436000,2),(879,-701924400,3),(879,-684986400,2),(879,-670474800,3),(879,-654141600,2),(879,-639025200,3),(879,-622087200,2),(879,-606970800,3),(879,-590032800,2),(879,-575521200,3),(879,-235620000,2),(879,-194842800,3),(879,-177732000,2),(879,-165726000,3),(879,107910000,2),(879,121215600,3),(879,133920000,2),(879,152665200,3),(879,164678400,2),(879,184114800,3),(879,196214400,2),(879,215564400,3),(879,228873600,2),(879,245804400,3),(879,260323200,2),(879,267915600,4),(879,428454000,5),(879,433893600,4),(879,468111600,3),(879,482799600,6),(879,496710000,7),(879,512521200,6),(879,528246000,7),(879,543970800,6),(879,559695600,7),(879,575420400,6),(879,591145200,7),(879,606870000,6),(879,622594800,7),(879,638319600,6),(879,654649200,7),(879,670374000,6),(879,686098800,7),(879,701823600,6),(879,717548400,7),(879,733273200,6),(879,748998000,7),(879,764118000,6),(879,780447600,7),(879,796172400,6),(879,811897200,7),(879,828226800,6),(879,846370800,7),(879,859676400,6),(879,877820400,7),(879,891126000,6),(879,909270000,7),(879,922575600,6),(879,941324400,7),(879,954025200,6),(879,972774000,7),(879,985474800,6),(879,1004223600,7),(879,1017529200,6),(879,1035673200,7),(879,1048978800,6),(879,1067122800,7),(879,1080428400,6),(879,1099177200,7),(879,1111878000,6),(879,1130626800,7),(879,1143327600,6),(879,1162076400,7),(879,1167602400,3),(879,1174784400,8),(879,1193533200,9),(879,1206838800,8),(879,1224982800,9),(879,1238288400,8),(879,1256432400,9),(879,1269738000,8),(879,1288486800,9),(879,1301274000,8),(879,1319936400,9),(879,1332637200,8),(879,1351386000,9),(879,1364691600,8),(879,1382835600,9),(879,1396227600,8),(879,1414285200,9),(879,1427590800,8),(879,1446944400,9),(879,1459040400,8),(879,1473195600,4),(880,-2147483648,1),(880,-1451719200,2),(880,-1172906400,3),(880,-876641400,4),(880,-766054800,3),(880,-683883000,5),(880,-620812800,3),(880,-189415800,6),(881,-2147483648,0),(881,-1172913768,1),(881,-799491600,2),(881,-189423000,3),(882,-2147483648,1),(882,-1641003640,3),(882,-933645600,2),(882,-857358000,3),(882,-844300800,2),(882,-825822000,3),(882,-812685600,2),(882,-794199600,3),(882,-779853600,2),(882,-762656400,3),(882,-748310400,2),(882,-731127600,3),(882,-681962400,4),(882,-673243200,2),(882,-667962000,3),(882,-652327200,2),(882,-636426000,3),(882,-622087200,2),(882,-608947200,3),(882,-591847200,2),(882,-572486400,3),(882,-558576000,2),(882,-542851200,3),(882,-527731200,2),(882,-514425600,3),(882,-490845600,2),(882,-482986800,3),(882,-459475200,2),(882,-451537200,3),(882,-428551200,2),(882,-418262400,3),(882,-400032000,2),(882,-387428400,3),(882,142380000,2),(882,150843600,3),(882,167176800,2),(882,178664400,3),(882,334015200,2),(882,337644000,3),(882,452556000,2),(882,462232800,3),(882,482277600,2),(882,495579600,3),(882,516751200,2),(882,526424400,3),(882,545436000,2),(882,558478800,3),(882,576626400,2),(882,589323600,3),(882,609890400,2),(882,620773200,3),(882,638316000,2),(882,651618000,3),(882,669765600,2),(882,683672400,3),(882,701820000,2),(882,715726800,3),(882,733701600,2),(882,747176400,3),(882,765151200,2),(882,778021200,3),(882,796600800,2),(882,810075600,3),(882,826840800,2),(882,842821200,3),(882,858895200,2),(882,874184400,3),(882,890344800,2),(882,905029200,3),(882,923011200,2),(882,936313200,3),(882,955670400,2),(882,970783200,3),(882,986770800,2),(882,1001282400,3),(882,1017356400,2),(882,1033941600,3),(882,1048806000,2),(882,1065132000,3),(882,1081292400,2),(882,1095804000,3),(882,1112313600,2),(882,1128812400,3),(882,1143763200,2),(882,1159657200,3),(882,1175212800,2),(882,1189897200,3),(882,1206662400,2),(882,1223161200,3),(882,1238112000,2),(882,1254006000,3),(882,1269561600,2),(882,1284246000,3),(882,1301616000,2),(882,1317510000,3),(882,1333065600,2),(882,1348354800,3),(882,1364515200,2),(882,1382828400,3),(882,1395964800,2),(882,1414278000,3),(882,1427414400,2),(882,1445727600,3),(882,1458864000,2),(882,1477782000,3),(882,1490313600,2),(882,1509231600,3),(882,1521763200,2),(882,1540681200,3),(882,1553817600,2),(882,1572130800,3),(882,1585267200,2),(882,1603580400,3),(882,1616716800,2),(882,1635634800,3),(882,1648166400,2),(882,1667084400,3),(882,1679616000,2),(882,1698534000,3),(882,1711670400,2),(882,1729983600,3),(882,1743120000,2),(882,1761433200,3),(882,1774569600,2),(882,1792882800,3),(882,1806019200,2),(882,1824937200,3),(882,1837468800,2),(882,1856386800,3),(882,1868918400,2),(882,1887836400,3),(882,1900972800,2),(882,1919286000,3),(882,1932422400,2),(882,1950735600,3),(882,1963872000,2),(882,1982790000,3),(882,1995321600,2),(882,2014239600,3),(882,2026771200,2),(882,2045689200,3),(882,2058220800,2),(882,2077138800,3),(882,2090275200,2),(882,2108588400,3),(882,2121724800,2),(882,2140038000,3),(883,-2147483648,1),(883,-788932800,2),(884,-2147483648,0),(884,-1487759676,1),(884,-1247569200,3),(884,354888000,2),(884,370695600,3),(884,386424000,2),(884,402231600,3),(884,417960000,2),(884,433767600,3),(884,449582400,2),(884,465314400,4),(884,481039200,5),(884,496764000,4),(884,512488800,5),(884,528213600,4),(884,543938400,5),(884,559663200,4),(884,575388000,5),(884,591112800,4),(884,606837600,5),(884,622562400,4),(884,638287200,5),(884,654616800,4),(884,670341600,6),(884,686070000,7),(884,695746800,4),(884,701791200,5),(884,717516000,4),(884,733240800,5),(884,748965600,4),(884,764690400,5),(884,780415200,4),(884,796140000,5),(884,811864800,4),(884,828194400,5),(884,846338400,4),(884,859644000,5),(884,877788000,4),(884,891093600,5),(884,909237600,4),(884,922543200,5),(884,941292000,4),(884,953992800,5),(884,972741600,4),(884,985442400,5),(884,1004191200,4),(884,1017496800,5),(884,1035640800,4),(884,1048946400,5),(884,1067090400,4),(884,1080396000,5),(884,1099144800,4),(884,1111845600,5),(884,1130594400,4),(884,1143295200,5),(884,1162044000,4),(884,1174744800,5),(884,1193493600,4),(884,1206799200,5),(884,1224943200,4),(884,1238248800,5),(884,1256392800,4),(884,1269698400,6),(884,1288450800,7),(884,1301151600,4),(885,-2147483648,0),(885,-1988166492,1),(885,-862637400,2),(885,-764145000,1),(885,-576135000,3),(885,38775600,5),(885,1018119600,4),(885,1033840800,5),(885,1212260400,4),(885,1225476000,5),(885,1239735600,4),(885,1257012000,5),(886,-2147483648,0),(886,-1325483420,1),(887,-2147483648,0),(887,-1577943676,1),(887,504901800,2),(888,-2147483648,0),(888,-1577943676,1),(888,504901800,2),(889,-2147483648,0),(889,-1579424533,1),(889,-1247558400,3),(889,354898800,2),(889,370706400,3),(889,386434800,2),(889,402242400,3),(889,417970800,2),(889,433778400,3),(889,449593200,2),(889,465325200,4),(889,481050000,5),(889,496774800,4),(889,512499600,5),(889,528224400,4),(889,543949200,5),(889,559674000,4),(889,575398800,5),(889,591123600,4),(889,606848400,5),(889,622573200,4),(889,638298000,5),(889,654627600,4),(889,670352400,6),(889,686080800,7),(889,695757600,4),(889,701802000,5),(889,717526800,4),(889,733251600,5),(889,748976400,4),(889,764701200,5),(889,780426000,4),(889,796150800,5),(889,811875600,4),(889,828205200,5),(889,846349200,4),(889,859654800,5),(889,877798800,4),(889,891104400,5),(889,909248400,4),(889,922554000,5),(889,941302800,4),(889,954003600,5),(889,972752400,4),(889,985453200,5),(889,1004202000,4),(889,1017507600,5),(889,1035651600,4),(889,1048957200,5),(889,1067101200,4),(889,1072882800,10),(889,1080403200,8),(889,1099152000,9),(889,1111852800,8),(889,1130601600,9),(889,1143302400,8),(889,1162051200,9),(889,1174752000,8),(889,1193500800,9),(889,1206806400,8),(889,1224950400,9),(889,1238256000,8),(889,1256400000,9),(889,1269705600,8),(889,1288454400,9),(889,1301155200,11),(889,1315832400,9),(889,1414252800,4),(890,-2147483648,1),(890,-2019705670,2),(890,-891581400,3),(890,-872058600,2),(890,-862637400,3),(890,-764145000,2),(891,-2147483648,0),(891,-1577513486,1),(891,-1247551200,3),(891,354906000,2),(891,370713600,3),(891,386442000,2),(891,402249600,3),(891,417978000,2),(891,433785600,3),(891,449600400,2),(891,465332400,4),(891,481057200,5),(891,496782000,4),(891,512506800,5),(891,528231600,4),(891,543956400,5),(891,559681200,4),(891,575406000,5),(891,591130800,4),(891,606855600,5),(891,622580400,4),(891,638305200,5),(891,654634800,4),(891,670359600,6),(891,686088000,7),(891,695764800,4),(891,701809200,5),(891,717534000,4),(891,733258800,5),(891,748983600,4),(891,764708400,5),(891,780433200,4),(891,796158000,5),(891,811882800,4),(891,828212400,5),(891,846356400,4),(891,859662000,5),(891,877806000,4),(891,891111600,5),(891,909255600,4),(891,922561200,5),(891,941310000,4),(891,954010800,5),(891,972759600,4),(891,985460400,5),(891,1004209200,4),(891,1017514800,5),(891,1035658800,4),(891,1048964400,5),(891,1067108400,4),(891,1080414000,5),(891,1099162800,4),(891,1111863600,5),(891,1130612400,4),(891,1143313200,5),(891,1162062000,4),(891,1174762800,5),(891,1193511600,4),(891,1206817200,5),(891,1224961200,4),(891,1238266800,5),(891,1256410800,4),(891,1269716400,5),(891,1288465200,4),(891,1301166000,8),(891,1414260000,4),(892,-2147483648,1),(892,-2038200925,2),(892,-1167634800,3),(892,-1073028000,4),(892,-894180000,5),(892,-879665400,6),(892,-767005200,5),(892,378664200,7),(893,-2147483648,0),(893,-1383463280,1),(893,-1167636600,3),(893,-1082448000,2),(893,-1074586800,3),(893,-1050825600,2),(893,-1042964400,3),(893,-1019289600,2),(893,-1011428400,3),(893,-987753600,2),(893,-979892400,3),(893,-956217600,2),(893,-948356400,3),(893,-924595200,2),(893,-916734000,3),(893,-893059200,2),(893,-885198000,3),(893,-879667200,4),(893,-767005200,3),(894,-2147483648,0),(894,-719636812,1),(895,-2147483648,0),(895,-2056692850,1),(895,-884509200,3),(895,-873280800,2),(895,-855918000,3),(895,-841744800,2),(895,-828529200,3),(895,-765363600,1),(895,-747046800,4),(895,-733827600,5),(895,-716461200,4),(895,-697021200,5),(895,-683715600,4),(895,-667990800,5),(895,-654771600,4),(895,-636627600,5),(895,-623322000,4),(895,-605178000,5),(895,-591872400,4),(895,-573642000,5),(895,-559818000,4),(895,-541674000,5),(895,-528368400,4),(895,-510224400,5),(895,-498128400,4),(895,-478774800,5),(895,-466678800,4),(895,-446720400,5),(895,-435229200,4),(895,-415258200,1),(895,-403158600,6),(895,-383808600,1),(895,-371709000,6),(895,-352359000,1),(895,-340259400,6),(895,-320909400,1),(895,-308809800,6),(895,-288855000,1),(895,-277360200,6),(895,-257405400,1),(895,-245910600,6),(895,-225955800,1),(895,-213856200,6),(895,-194506200,1),(895,-182406600,6),(895,-163056600,1),(895,-148537800,6),(895,-132820200,1),(895,-117088200,6),(895,-101370600,1),(895,-85638600,6),(895,-69312600,1),(895,-53584200,6),(895,-37863000,1),(895,-22134600,6),(895,-6413400,1),(895,9315000,6),(895,25036200,1),(895,40764600,6),(895,56485800,1),(895,72214200,6),(895,88540200,1),(895,104268600,6),(895,119989800,1),(895,126041400,6),(895,151439400,1),(895,167167800,6),(895,182889000,1),(895,198617400,6),(895,214338600,1),(895,295385400,6),(895,309292200,1),(896,-2147483648,0),(896,-2056692850,1),(896,-884509200,3),(896,-873280800,2),(896,-855918000,3),(896,-841744800,2),(896,-828529200,3),(896,-765363600,1),(896,-747046800,4),(896,-733827600,5),(896,-716461200,4),(896,-697021200,5),(896,-683715600,4),(896,-667990800,5),(896,-654771600,4),(896,-636627600,5),(896,-623322000,4),(896,-605178000,5),(896,-591872400,4),(896,-573642000,5),(896,-559818000,4),(896,-541674000,5),(896,-528368400,4),(896,-510224400,5),(896,-498128400,4),(896,-478774800,5),(896,-466678800,4),(896,-446720400,5),(896,-435229200,4),(896,-415258200,1),(896,-403158600,6),(896,-383808600,1),(896,-371709000,6),(896,-352359000,1),(896,-340259400,6),(896,-320909400,1),(896,-308809800,6),(896,-288855000,1),(896,-277360200,6),(896,-257405400,1),(896,-245910600,6),(896,-225955800,1),(896,-213856200,6),(896,-194506200,1),(896,-182406600,6),(896,-163056600,1),(896,-148537800,6),(896,-132820200,1),(896,-117088200,6),(896,-101370600,1),(896,-85638600,6),(896,-69312600,1),(896,-53584200,6),(896,-37863000,1),(896,-22134600,6),(896,-6413400,1),(896,9315000,6),(896,25036200,1),(896,40764600,6),(896,56485800,1),(896,72214200,6),(896,88540200,1),(896,104268600,6),(896,119989800,1),(896,126041400,6),(896,151439400,1),(896,167167800,6),(896,182889000,1),(896,198617400,6),(896,214338600,1),(896,295385400,6),(896,309292200,1),(897,-2147483648,0),(897,-1441188192,1),(897,-1247565600,3),(897,354891600,2),(897,370699200,3),(897,386427600,2),(897,402235200,3),(897,417963600,2),(897,433771200,3),(897,449586000,2),(897,465318000,4),(897,481042800,5),(897,496767600,4),(897,512492400,5),(897,528217200,4),(897,543942000,5),(897,559666800,4),(897,575391600,5),(897,591116400,4),(897,606841200,5),(897,622566000,4),(897,638290800,5),(897,654620400,4),(897,670345200,6),(897,686073600,7),(897,695750400,4),(897,701794800,5),(897,717519600,4),(897,733244400,5),(897,748969200,4),(897,764694000,5),(897,780418800,4),(897,796143600,5),(897,811868400,4),(897,828198000,5),(897,846342000,4),(897,859647600,5),(897,877791600,4),(897,891097200,5),(897,909241200,4),(897,922546800,5),(897,941295600,4),(897,953996400,5),(897,972745200,4),(897,985446000,5),(897,1004194800,4),(897,1017500400,5),(897,1035644400,4),(897,1048950000,5),(897,1067094000,4),(897,1080399600,5),(897,1099148400,4),(897,1111849200,5),(897,1130598000,4),(897,1143298800,5),(897,1162047600,4),(897,1174748400,5),(897,1193497200,4),(897,1206802800,5),(897,1224946800,4),(897,1238252400,5),(897,1256396400,4),(897,1269702000,5),(897,1288450800,4),(897,1301151600,8),(897,1414245600,7),(897,1461427200,4),(898,-2147483648,0),(898,-1577951856,1),(898,-1172908656,2),(898,-880272000,3),(898,-766054800,4),(899,-2147483648,2),(899,-1046678400,1),(899,-1038733200,2),(899,-873273600,3),(899,-794221200,2),(899,-496224000,1),(899,-489315600,2),(899,259344000,1),(899,275151600,2),(900,-2147483648,0),(900,-1577936472,1),(901,-2147483648,0),(901,-1518920008,2),(901,166572000,1),(901,182293200,2),(901,200959200,1),(901,213829200,2),(901,228866400,1),(901,243982800,2),(901,260316000,1),(901,276123600,2),(901,291765600,1),(901,307486800,2),(901,323820000,1),(901,338936400,2),(901,354664800,1),(901,370386000,2),(901,386114400,1),(901,401835600,2),(901,417564000,1),(901,433285200,2),(901,449013600,1),(901,465339600,2),(901,481068000,1),(901,496789200,2),(901,512517600,1),(901,528238800,2),(901,543967200,1),(901,559688400,2),(901,575416800,1),(901,591138000,2),(901,606866400,1),(901,622587600,2),(901,638316000,1),(901,654642000,2),(901,670370400,1),(901,686091600,2),(901,701820000,1),(901,717541200,2),(901,733269600,1),(901,748990800,2),(901,764719200,1),(901,780440400,2),(901,796168800,1),(901,811890000,2),(901,828223200,1),(901,843944400,2),(901,859672800,1),(901,875394000,2),(901,891122400,1),(901,909277200,3),(901,922582800,4),(901,941331600,3),(901,954032400,4),(901,972781200,3),(901,985482000,4),(901,1004230800,3),(901,1017536400,4),(901,1035680400,3),(901,1048986000,4),(901,1067130000,3),(901,1080435600,4),(901,1099184400,3),(901,1111885200,4),(901,1130634000,3),(901,1143334800,4),(901,1162083600,3),(901,1174784400,4),(901,1193533200,3),(901,1206838800,4),(901,1224982800,3),(901,1238288400,4),(901,1256432400,3),(901,1269738000,4),(901,1288486800,3),(901,1301187600,4),(901,1319936400,3),(901,1332637200,4),(901,1351386000,3),(901,1364691600,4),(901,1382835600,3),(901,1396141200,4),(901,1414285200,3),(901,1427590800,4),(901,1445734800,3),(901,1459040400,4),(901,1477789200,3),(901,1490490000,4),(901,1509238800,3),(901,1521939600,4),(901,1540688400,3),(901,1553994000,4),(901,1572138000,3),(901,1585443600,4),(901,1603587600,3),(901,1616893200,4),(901,1635642000,3),(901,1648342800,4),(901,1667091600,3),(901,1679792400,4),(901,1698541200,3),(901,1711846800,4),(901,1729990800,3),(901,1743296400,4),(901,1761440400,3),(901,1774746000,4),(901,1792890000,3),(901,1806195600,4),(901,1824944400,3),(901,1837645200,4),(901,1856394000,3),(901,1869094800,4),(901,1887843600,3),(901,1901149200,4),(901,1919293200,3),(901,1932598800,4),(901,1950742800,3),(901,1964048400,4),(901,1982797200,3),(901,1995498000,4),(901,2014246800,3),(901,2026947600,4),(901,2045696400,3),(901,2058397200,4),(901,2077146000,3),(901,2090451600,4),(901,2108595600,3),(901,2121901200,4),(901,2140045200,3),(902,-2147483648,0),(902,-1441259328,1),(902,-1247551200,3),(902,354906000,2),(902,370713600,3),(902,386442000,2),(902,402249600,3),(902,417978000,2),(902,433785600,3),(902,449600400,2),(902,465332400,4),(902,481057200,5),(902,496782000,4),(902,512506800,5),(902,528231600,4),(902,543956400,5),(902,559681200,4),(902,575406000,5),(902,591130800,4),(902,606855600,5),(902,622580400,4),(902,638305200,5),(902,654634800,4),(902,670359600,6),(902,686088000,7),(902,695764800,4),(902,701809200,5),(902,717534000,4),(902,733258800,5),(902,748983600,4),(902,764708400,5),(902,780433200,4),(902,796158000,5),(902,811882800,4),(902,828212400,5),(902,846356400,4),(902,859662000,5),(902,877806000,4),(902,891111600,5),(902,909255600,4),(902,922561200,5),(902,941310000,4),(902,954010800,5),(902,972759600,4),(902,985460400,5),(902,1004209200,4),(902,1017514800,5),(902,1035658800,4),(902,1048964400,5),(902,1067108400,4),(902,1080414000,5),(902,1099162800,4),(902,1111863600,5),(902,1130612400,4),(902,1143313200,5),(902,1162062000,4),(902,1174762800,5),(902,1193511600,4),(902,1206817200,5),(902,1224961200,4),(902,1238266800,5),(902,1256410800,4),(902,1269716400,6),(902,1288468800,7),(902,1301169600,4),(903,-2147483648,0),(903,-1579476700,1),(903,-1247551200,3),(903,354906000,2),(903,370713600,3),(903,386442000,2),(903,402249600,3),(903,417978000,2),(903,433785600,3),(903,449600400,2),(903,465332400,4),(903,481057200,5),(903,496782000,4),(903,512506800,5),(903,528231600,4),(903,543956400,5),(903,559681200,4),(903,575406000,5),(903,591130800,4),(903,606855600,5),(903,622580400,4),(903,638305200,5),(903,654634800,4),(903,670359600,6),(903,686088000,7),(903,695764800,4),(903,701809200,5),(903,717534000,4),(903,733258800,5),(903,738086400,8),(903,748987200,7),(903,764712000,6),(903,780436800,7),(903,796161600,6),(903,811886400,7),(903,828216000,6),(903,846360000,7),(903,859665600,6),(903,877809600,7),(903,891115200,6),(903,909259200,7),(903,922564800,6),(903,941313600,7),(903,954014400,6),(903,972763200,7),(903,985464000,6),(903,1004212800,7),(903,1017518400,6),(903,1035662400,7),(903,1048968000,6),(903,1067112000,7),(903,1080417600,6),(903,1099166400,7),(903,1111867200,6),(903,1130616000,7),(903,1143316800,6),(903,1162065600,7),(903,1174766400,6),(903,1193515200,7),(903,1206820800,6),(903,1224964800,7),(903,1238270400,6),(903,1256414400,7),(903,1269720000,6),(903,1288468800,7),(903,1301169600,4),(903,1414263600,7),(903,1469304000,4),(904,-2147483648,0),(904,-1582088010,1),(904,-1247547600,3),(904,354909600,2),(904,370717200,3),(904,386445600,2),(904,402253200,3),(904,417981600,2),(904,433789200,3),(904,449604000,2),(904,465336000,4),(904,481060800,5),(904,496785600,4),(904,512510400,5),(904,528235200,4),(904,543960000,5),(904,559684800,4),(904,575409600,5),(904,591134400,4),(904,606859200,5),(904,622584000,4),(904,638308800,5),(904,654638400,4),(904,670363200,6),(904,686091600,7),(904,695768400,4),(904,701812800,5),(904,717537600,4),(904,733262400,5),(904,748987200,4),(904,764712000,5),(904,780436800,4),(904,796161600,5),(904,811886400,4),(904,828216000,5),(904,846360000,4),(904,859665600,5),(904,877809600,4),(904,891115200,5),(904,909259200,4),(904,922564800,5),(904,941313600,4),(904,954014400,5),(904,972763200,4),(904,985464000,5),(904,1004212800,4),(904,1017518400,5),(904,1035662400,4),(904,1048968000,5),(904,1067112000,4),(904,1080417600,5),(904,1099166400,4),(904,1111867200,5),(904,1130616000,4),(904,1143316800,5),(904,1162065600,4),(904,1174766400,5),(904,1193515200,4),(904,1206820800,5),(904,1224964800,4),(904,1238270400,5),(904,1256414400,4),(904,1269720000,5),(904,1288468800,4),(904,1301169600,8),(904,1414263600,4),(905,-2147483648,0),(905,-1441164324,1),(905,-1247540400,2),(905,354913200,3),(905,370720800,4),(905,386445600,3),(905,402256800,2),(905,417985200,3),(905,433792800,2),(905,449607600,3),(905,465339600,5),(905,481064400,6),(905,496789200,5),(905,512514000,6),(905,528238800,5),(905,543963600,6),(905,559688400,5),(905,575413200,6),(905,591138000,5),(905,606862800,7),(905,622591200,8),(905,638316000,7),(905,654645600,8),(905,670370400,7),(905,686095200,8),(905,695772000,5),(905,701816400,7),(905,717544800,8),(905,733269600,7),(905,748994400,8),(905,764719200,7),(905,780444000,8),(905,796168800,7),(905,811893600,8),(905,828223200,7),(905,846367200,8),(905,859672800,7),(905,877816800,8),(905,891122400,7),(905,909266400,8),(905,922572000,7),(905,941320800,8),(905,954021600,7),(905,972770400,8),(905,985471200,7),(905,1004220000,8),(905,1017525600,7),(905,1035669600,8),(905,1048975200,7),(905,1067119200,8),(905,1080424800,7),(905,1099173600,5),(906,-2147483648,1),(906,-1570084924,2),(907,-2147483648,0),(907,-1946186240,1),(907,-1172906240,2),(907,-881220600,3),(907,-766054800,2),(907,-683883000,4),(907,-620812800,2),(907,-189415800,5),(907,567964800,6),(908,-2147483648,0),(908,-1948782180,1),(908,-1830414600,2),(908,-768646800,3),(908,1439564400,1),(908,1525446000,3),(909,-2147483648,0),(909,-1577935568,1),(909,76190400,2),(910,-2147483648,0),(910,-1441167268,1),(910,-1247544000,2),(910,354913200,3),(910,370720800,4),(910,386445600,3),(910,402256800,2),(910,417985200,3),(910,433792800,2),(910,449607600,3),(910,465339600,5),(910,481064400,6),(910,496789200,5),(910,512514000,6),(910,528238800,5),(910,543963600,6),(910,559688400,5),(910,575413200,6),(910,591138000,5),(910,606862800,6),(910,622587600,5),(910,638312400,6),(910,654642000,5),(910,670366800,7),(910,686095200,8),(910,695772000,5),(910,701816400,6),(910,717541200,5),(910,733266000,6),(910,748990800,5),(910,764715600,6),(910,780440400,5),(910,796165200,6),(910,811890000,5),(910,828219600,6),(910,846363600,5),(910,859669200,6),(910,877813200,5),(910,891118800,6),(910,909262800,5),(910,922568400,6),(910,941317200,5),(910,954018000,6),(910,972766800,5),(910,985467600,6),(910,1004216400,5),(910,1017522000,6),(910,1035666000,5),(910,1048971600,6),(910,1067115600,5),(910,1080421200,6),(910,1099170000,9),(911,-2147483648,0),(911,-1441167712,1),(911,-1247544000,2),(911,354913200,3),(911,370720800,4),(911,386445600,3),(911,402256800,2),(911,417985200,3),(911,433792800,2),(911,449607600,3),(911,465339600,5),(911,481064400,6),(911,496789200,5),(911,512514000,6),(911,528238800,5),(911,543963600,6),(911,559688400,5),(911,575413200,6),(911,591138000,5),(911,606862800,6),(911,622587600,5),(911,638312400,6),(911,654642000,5),(911,670366800,7),(911,686095200,5),(911,695768400,9),(911,701812800,6),(911,717541200,5),(911,733266000,6),(911,748990800,5),(911,764715600,6),(911,780440400,5),(911,796165200,6),(911,811890000,5),(911,828219600,6),(911,846363600,5),(911,859669200,6),(911,877813200,5),(911,891118800,6),(911,909262800,5),(911,922568400,6),(911,941317200,5),(911,954018000,6),(911,972766800,5),(911,985467600,6),(911,1004216400,5),(911,1017522000,6),(911,1035666000,5),(911,1048971600,6),(911,1067115600,5),(911,1080421200,6),(911,1099170000,9),(911,1545328800,2),(912,-2147483648,1),(912,-1577946287,2),(912,-873268200,3),(912,-778410000,2),(913,-2147483648,0),(913,-719636812,1),(914,-2147483648,0),(914,-2004073600,1),(914,-1851577590,2),(914,-852105600,3),(914,-782643600,4),(914,-767869200,2),(914,-718095600,3),(914,-457776000,2),(914,-315648000,3),(914,171820800,2),(915,-2147483648,0),(915,-2031039048,1),(915,-768560400,3),(915,354891600,2),(915,370699200,3),(915,386427600,2),(915,402235200,3),(915,417963600,2),(915,433771200,3),(915,449586000,2),(915,465318000,4),(915,481042800,5),(915,496767600,4),(915,512492400,5),(915,528217200,4),(915,543942000,5),(915,559666800,4),(915,575391600,5),(915,591116400,4),(915,606841200,5),(915,622566000,4),(915,638290800,5),(915,654620400,4),(915,670345200,6),(915,686073600,7),(915,695750400,4),(915,701794800,5),(915,717519600,4),(915,733244400,5),(915,748969200,4),(915,764694000,5),(915,780418800,4),(915,796143600,5),(915,811868400,4),(915,828198000,5),(915,846342000,4),(915,859647600,6),(915,877795200,7),(915,891100800,6),(915,909244800,7),(915,922550400,6),(915,941299200,7),(915,954000000,6),(915,972748800,7),(915,985449600,6),(915,1004198400,7),(915,1017504000,6),(915,1035648000,7),(915,1048953600,6),(915,1067097600,7),(915,1080403200,6),(915,1099152000,7),(915,1111852800,6),(915,1130601600,7),(915,1143302400,6),(915,1162051200,7),(915,1174752000,6),(915,1193500800,7),(915,1206806400,6),(915,1224950400,7),(915,1238256000,6),(915,1256400000,7),(915,1269705600,6),(915,1288454400,7),(915,1301155200,4),(915,1414249200,7),(915,1459008000,4),(916,-2147483648,0),(916,-1441168073,1),(916,-1247544000,2),(916,354913200,3),(916,370720800,4),(916,386445600,3),(916,402256800,2),(916,417985200,3),(916,433792800,2),(916,449607600,3),(916,465339600,5),(916,481064400,6),(916,496789200,5),(916,512514000,6),(916,528238800,5),(916,543963600,6),(916,559688400,5),(916,575413200,6),(916,591138000,5),(916,606862800,6),(916,622587600,5),(916,638312400,6),(916,654642000,5),(916,670366800,6),(916,686091600,5),(916,694206000,2),(917,-2147483648,0),(917,-1948782472,1),(917,-1830414600,2),(917,-767350800,4),(917,-681210000,3),(917,-672228000,4),(917,-654771600,3),(917,-640864800,4),(917,-623408400,3),(917,-609415200,4),(917,-588848400,3),(917,-577965600,4),(917,-498128400,1),(917,-462702600,5),(917,-451733400,1),(917,-429784200,5),(917,-418296600,1),(917,-399544200,5),(917,-387451800,1),(917,-368094600,5),(917,-356002200,1),(917,-336645000,5),(917,-324552600,1),(917,-305195400,5),(917,-293103000,1),(917,-264933000,4),(917,547578000,3),(917,560883600,4),(917,579027600,3),(917,592333200,4),(918,-2147483648,2),(918,-933667200,1),(918,-922093200,2),(918,-908870400,1),(918,-888829200,2),(918,-881049600,1),(918,-767869200,2),(918,-745833600,1),(918,-733827600,2),(918,-716889600,1),(918,-699613200,2),(918,-683884800,1),(918,-670669200,2),(918,-652348800,1),(918,-650019600,2),(918,515527200,1),(918,527014800,2),(918,545162400,1),(918,558464400,2),(918,577216800,1),(918,589914000,2),(918,608666400,1),(918,621968400,2),(918,640116000,1),(918,653418000,2),(918,671565600,1),(918,684867600,2),(919,-2147483648,1),(919,-2038200925,2),(919,-1167634800,3),(919,-1073028000,4),(919,-894180000,5),(919,-879665400,6),(919,-767005200,5),(919,378664200,7),(920,-2147483648,0),(920,-1441188892,1),(920,-1247565600,3),(920,354891600,2),(920,370699200,3),(920,386427600,2),(920,402235200,3),(920,417963600,2),(920,433771200,3),(920,449586000,2),(920,465318000,4),(920,481042800,5),(920,496767600,4),(920,512492400,5),(920,528217200,4),(920,543942000,5),(920,559666800,4),(920,575391600,5),(920,591116400,4),(920,606841200,5),(920,622566000,4),(920,638290800,5),(920,654620400,4),(920,670345200,6),(920,686073600,7),(920,695750400,4),(920,701794800,5),(920,717519600,4),(920,733244400,5),(920,748969200,4),(920,764694000,5),(920,780418800,4),(920,796143600,5),(920,811868400,4),(920,828198000,5),(920,846342000,4),(920,859647600,5),(920,877791600,4),(920,891097200,5),(920,909241200,4),(920,922546800,5),(920,941295600,4),(920,953996400,5),(920,972745200,4),(920,985446000,5),(920,1004194800,4),(920,1017500400,5),(920,1035644400,4),(920,1048950000,5),(920,1067094000,4),(920,1080399600,5),(920,1099148400,4),(920,1111849200,5),(920,1130598000,4),(920,1143298800,5),(920,1162047600,4),(920,1174748400,5),(920,1193497200,4),(920,1206802800,5),(920,1224946800,4),(920,1238252400,5),(920,1256396400,4),(920,1269702000,5),(920,1288450800,4),(920,1301151600,8),(920,1414245600,4),(921,-2147483648,1),(921,-1017820800,2),(921,-766224000,1),(921,-745833600,3),(921,-733827600,1),(921,-716889600,3),(921,-699613200,1),(921,-683884800,3),(921,-670669200,1),(921,-652348800,3),(921,-639133200,1),(921,-620812800,3),(921,-607597200,1),(921,-589276800,3),(921,-576061200,1),(921,-562924800,3),(921,-541760400,1),(921,-528710400,3),(921,-510224400,1),(921,-497174400,3),(921,-478688400,1),(921,-465638400,3),(921,-449830800,1),(921,-434016000,3),(921,-418208400,1),(921,-402480000,3),(921,-386672400,1),(921,-370944000,3),(921,-355136400,1),(921,-339408000,3),(921,-323600400,1),(921,-302515200,3),(921,-291978000,1),(921,-270979200,3),(921,-260442000,1),(921,133977600,3),(921,149785200,1),(921,165513600,3),(921,181321200,1),(921,299606400,3),(921,307551600,1),(922,-2147483648,0),(922,-1441168631,1),(922,-1247547600,3),(922,354909600,2),(922,370717200,3),(922,386445600,2),(922,402253200,3),(922,417981600,2),(922,433789200,3),(922,449604000,2),(922,465336000,4),(922,481060800,5),(922,496785600,4),(922,512510400,5),(922,528235200,4),(922,543960000,5),(922,559684800,4),(922,575409600,5),(922,591134400,4),(922,606859200,5),(922,622584000,4),(922,638308800,5),(922,654638400,4),(922,670363200,6),(922,686091600,7),(922,694206000,1),(923,-2147483648,1),(923,-1441162751,2),(923,-405140400,4),(923,354916800,3),(923,370724400,4),(923,386452800,3),(923,402260400,4),(923,417988800,3),(923,433796400,4),(923,449611200,3),(923,465343200,5),(923,481068000,6),(923,496792800,5),(923,512517600,6),(923,528242400,5),(923,543967200,6),(923,559692000,5),(923,575416800,6),(923,591141600,5),(923,606866400,6),(923,622591200,5),(923,638316000,6),(923,654645600,5),(923,670370400,7),(923,686098800,8),(923,694213200,2),(923,701816400,9),(923,717537600,2),(923,733266000,9),(923,748987200,2),(923,764715600,9),(923,780436800,4),(923,796161600,3),(923,811882800,4),(923,828216000,3),(923,859662000,3),(923,877806000,4),(923,891115200,3),(923,909255600,4),(923,922564800,3),(923,941310000,4),(923,954014400,3),(923,972759600,4),(923,985464000,3),(923,1004209200,4),(923,1017518400,3),(923,1035658800,4),(923,1048968000,3),(923,1067108400,4),(923,1080417600,3),(923,1088276400,9),(923,1099177200,8),(923,1111878000,4),(924,-2147483648,0),(924,-1704165944,1),(924,-757394744,2),(924,247177800,4),(924,259272000,3),(924,277758000,4),(924,283982400,2),(924,290809800,5),(924,306531000,2),(924,322432200,5),(924,338499000,2),(924,673216200,5),(924,685481400,2),(924,701209800,5),(924,717103800,2),(924,732745800,5),(924,748639800,2),(924,764281800,5),(924,780175800,2),(924,795817800,5),(924,811711800,2),(924,827353800,5),(924,843247800,2),(924,858976200,5),(924,874870200,2),(924,890512200,5),(924,906406200,2),(924,922048200,5),(924,937942200,2),(924,953584200,5),(924,969478200,2),(924,985206600,5),(924,1001100600,2),(924,1016742600,5),(924,1032636600,2),(924,1048278600,5),(924,1064172600,2),(924,1079814600,5),(924,1095708600,2),(924,1111437000,5),(924,1127331000,2),(924,1206045000,5),(924,1221939000,2),(924,1237667400,5),(924,1253561400,2),(924,1269203400,5),(924,1285097400,2),(924,1300739400,5),(924,1316633400,2),(924,1332275400,5),(924,1348169400,2),(924,1363897800,5),(924,1379791800,2),(924,1395433800,5),(924,1411327800,2),(924,1426969800,5),(924,1442863800,2),(924,1458505800,5),(924,1474399800,2),(924,1490128200,5),(924,1506022200,2),(924,1521664200,5),(924,1537558200,2),(924,1553200200,5),(924,1569094200,2),(924,1584736200,5),(924,1600630200,2),(924,1616358600,5),(924,1632252600,2),(924,1647894600,5),(924,1663788600,2),(924,1679430600,5),(924,1695324600,2),(924,1710966600,5),(924,1726860600,2),(924,1742589000,5),(924,1758483000,2),(924,1774125000,5),(924,1790019000,2),(924,1805661000,5),(924,1821555000,2),(924,1837197000,5),(924,1853091000,2),(924,1868733000,5),(924,1884627000,2),(924,1900355400,5),(924,1916249400,2),(924,1931891400,5),(924,1947785400,2),(924,1963427400,5),(924,1979321400,2),(924,1994963400,5),(924,2010857400,2),(924,2026585800,5),(924,2042479800,2),(924,2058121800,5),(924,2074015800,2),(924,2089657800,5),(924,2105551800,2),(924,2121193800,5),(924,2137087800,2),(925,-2147483648,1),(925,-1641003640,3),(925,-933645600,2),(925,-857358000,3),(925,-844300800,2),(925,-825822000,3),(925,-812685600,2),(925,-794199600,3),(925,-779853600,2),(925,-762656400,3),(925,-748310400,2),(925,-731127600,3),(925,-681962400,4),(925,-673243200,2),(925,-667962000,3),(925,-652327200,2),(925,-636426000,3),(925,-622087200,2),(925,-608947200,3),(925,-591847200,2),(925,-572486400,3),(925,-558576000,2),(925,-542851200,3),(925,-527731200,2),(925,-514425600,3),(925,-490845600,2),(925,-482986800,3),(925,-459475200,2),(925,-451537200,3),(925,-428551200,2),(925,-418262400,3),(925,-400032000,2),(925,-387428400,3),(925,142380000,2),(925,150843600,3),(925,167176800,2),(925,178664400,3),(925,334015200,2),(925,337644000,3),(925,452556000,2),(925,462232800,3),(925,482277600,2),(925,495579600,3),(925,516751200,2),(925,526424400,3),(925,545436000,2),(925,558478800,3),(925,576626400,2),(925,589323600,3),(925,609890400,2),(925,620773200,3),(925,638316000,2),(925,651618000,3),(925,669765600,2),(925,683672400,3),(925,701820000,2),(925,715726800,3),(925,733701600,2),(925,747176400,3),(925,765151200,2),(925,778021200,3),(925,796600800,2),(925,810075600,3),(925,826840800,2),(925,842821200,3),(925,858895200,2),(925,874184400,3),(925,890344800,2),(925,905029200,3),(925,923011200,2),(925,936313200,3),(925,955670400,2),(925,970783200,3),(925,986770800,2),(925,1001282400,3),(925,1017356400,2),(925,1033941600,3),(925,1048806000,2),(925,1065132000,3),(925,1081292400,2),(925,1095804000,3),(925,1112313600,2),(925,1128812400,3),(925,1143763200,2),(925,1159657200,3),(925,1175212800,2),(925,1189897200,3),(925,1206662400,2),(925,1223161200,3),(925,1238112000,2),(925,1254006000,3),(925,1269561600,2),(925,1284246000,3),(925,1301616000,2),(925,1317510000,3),(925,1333065600,2),(925,1348354800,3),(925,1364515200,2),(925,1382828400,3),(925,1395964800,2),(925,1414278000,3),(925,1427414400,2),(925,1445727600,3),(925,1458864000,2),(925,1477782000,3),(925,1490313600,2),(925,1509231600,3),(925,1521763200,2),(925,1540681200,3),(925,1553817600,2),(925,1572130800,3),(925,1585267200,2),(925,1603580400,3),(925,1616716800,2),(925,1635634800,3),(925,1648166400,2),(925,1667084400,3),(925,1679616000,2),(925,1698534000,3),(925,1711670400,2),(925,1729983600,3),(925,1743120000,2),(925,1761433200,3),(925,1774569600,2),(925,1792882800,3),(925,1806019200,2),(925,1824937200,3),(925,1837468800,2),(925,1856386800,3),(925,1868918400,2),(925,1887836400,3),(925,1900972800,2),(925,1919286000,3),(925,1932422400,2),(925,1950735600,3),(925,1963872000,2),(925,1982790000,3),(925,1995321600,2),(925,2014239600,3),(925,2026771200,2),(925,2045689200,3),(925,2058220800,2),(925,2077138800,3),(925,2090275200,2),(925,2108588400,3),(925,2121724800,2),(925,2140038000,3),(926,-2147483648,0),(926,-706341516,1),(926,560025000,2),(927,-2147483648,0),(927,-706341516,1),(927,560025000,2),(928,-2147483648,3),(928,-683802000,1),(928,-672310800,2),(928,-654771600,1),(928,-640861200,2),(928,-620298000,1),(928,-609411600,2),(928,-588848400,1),(928,-577962000,2),(929,-2147483648,0),(929,-1578807591,1),(929,-1247551200,3),(929,354906000,2),(929,370713600,3),(929,386442000,2),(929,402249600,3),(929,417978000,2),(929,433785600,3),(929,449600400,2),(929,465332400,4),(929,481057200,5),(929,496782000,4),(929,512506800,5),(929,528231600,4),(929,543956400,5),(929,559681200,4),(929,575406000,5),(929,591130800,4),(929,606855600,5),(929,622580400,4),(929,638305200,5),(929,654634800,4),(929,670359600,6),(929,686088000,7),(929,695764800,4),(929,701809200,5),(929,717534000,4),(929,733258800,5),(929,748983600,4),(929,764708400,5),(929,780433200,4),(929,796158000,5),(929,811882800,4),(929,828212400,5),(929,846356400,4),(929,859662000,5),(929,877806000,4),(929,891111600,5),(929,909255600,4),(929,922561200,5),(929,941310000,4),(929,954010800,5),(929,972759600,4),(929,985460400,5),(929,1004209200,4),(929,1017514800,5),(929,1020193200,8),(929,1035662400,7),(929,1048968000,6),(929,1067112000,7),(929,1080417600,6),(929,1099166400,7),(929,1111867200,6),(929,1130616000,7),(929,1143316800,6),(929,1162065600,7),(929,1174766400,6),(929,1193515200,7),(929,1206820800,6),(929,1224964800,7),(929,1238270400,6),(929,1256414400,7),(929,1269720000,6),(929,1288468800,7),(929,1301169600,4),(929,1414263600,7),(929,1464465600,4),(930,-2147483648,0),(930,-1577951856,1),(930,-1172908656,2),(930,-880272000,3),(930,-766054800,4),(931,-2147483648,0),(931,-2032931252,1),(931,252435600,3),(931,417974400,2),(931,433782000,3),(931,449596800,2),(931,465318000,3),(931,481046400,2),(931,496767600,3),(931,512496000,2),(931,528217200,3),(931,543945600,2),(931,559666800,3),(931,575395200,2),(931,591116400,3),(931,606844800,2),(931,622566000,3),(931,638294400,2),(931,654620400,3),(931,670348800,2),(931,686070000,3),(931,701798400,2),(931,717519600,3),(931,733248000,2),(931,748969200,3),(931,764697600,2),(931,780418800,3),(931,796147200,2),(931,811868400,3),(931,828201600,2),(931,843922800,3),(931,859651200,2),(931,875372400,3),(931,891100800,2),(931,906822000,3),(931,988394400,2),(931,1001696400,3),(931,1017424800,2),(931,1033146000,3),(931,1048874400,2),(931,1064595600,3),(931,1080324000,2),(931,1096045200,3),(931,1111773600,2),(931,1127494800,3),(931,1143223200,2),(931,1159549200,3),(931,1427479200,2),(931,1443193200,3),(931,1458928800,2),(931,1474642800,3),(932,-2147483648,0),(932,-2032931252,1),(932,252435600,3),(932,417974400,2),(932,433782000,3),(932,449596800,2),(932,465318000,3),(932,481046400,2),(932,496767600,3),(932,512496000,2),(932,528217200,3),(932,543945600,2),(932,559666800,3),(932,575395200,2),(932,591116400,3),(932,606844800,2),(932,622566000,3),(932,638294400,2),(932,654620400,3),(932,670348800,2),(932,686070000,3),(932,701798400,2),(932,717519600,3),(932,733248000,2),(932,748969200,3),(932,764697600,2),(932,780418800,3),(932,796147200,2),(932,811868400,3),(932,828201600,2),(932,843922800,3),(932,859651200,2),(932,875372400,3),(932,891100800,2),(932,906822000,3),(932,988394400,2),(932,1001696400,3),(932,1017424800,2),(932,1033146000,3),(932,1048874400,2),(932,1064595600,3),(932,1080324000,2),(932,1096045200,3),(932,1111773600,2),(932,1127494800,3),(932,1143223200,2),(932,1159549200,3),(932,1427479200,2),(932,1443193200,3),(932,1458928800,2),(932,1474642800,3),(933,-2147483648,0),(933,-1325483420,1),(934,-2147483648,0),(934,-1579426374,1),(934,-1247558400,2),(934,354898800,4),(934,370699200,3),(934,386427600,4),(934,402235200,3),(934,417963600,4),(934,433771200,3),(934,449586000,4),(934,465318000,5),(934,481042800,6),(934,496767600,5),(934,512492400,6),(934,528217200,5),(934,543942000,6),(934,559666800,5),(934,575391600,6),(934,591116400,5),(934,606841200,6),(934,622566000,5),(934,638290800,6),(934,654620400,5),(934,670345200,7),(934,686073600,8),(934,695750400,5),(934,701794800,6),(934,717519600,5),(934,733244400,6),(934,748969200,5),(934,764694000,6),(934,780418800,5),(934,796143600,6),(934,811868400,5),(934,828198000,6),(934,846342000,5),(934,859647600,6),(934,877791600,5),(934,891097200,6),(934,909241200,5),(934,922546800,6),(934,941295600,5),(934,953996400,6),(934,972745200,5),(934,985446000,6),(934,1004194800,5),(934,1017500400,6),(934,1035644400,5),(934,1048950000,6),(934,1067094000,5),(934,1080399600,6),(934,1099148400,5),(934,1111849200,6),(934,1130598000,5),(934,1143298800,6),(934,1162047600,5),(934,1174748400,6),(934,1193497200,5),(934,1206802800,6),(934,1224946800,5),(934,1238252400,6),(934,1256396400,5),(934,1269702000,6),(934,1288450800,5),(934,1301151600,9),(934,1315828800,5),(934,1414249200,8),(935,-2147483648,1),(935,-1570084924,2),(936,-2147483648,0),(936,-1487321251,1),(936,-1247562000,3),(936,354895200,2),(936,370702800,3),(936,386431200,2),(936,402238800,3),(936,417967200,2),(936,433774800,3),(936,449589600,2),(936,465321600,4),(936,481046400,5),(936,496771200,4),(936,512496000,5),(936,528220800,4),(936,543945600,5),(936,559670400,4),(936,575395200,5),(936,591120000,4),(936,606844800,5),(936,622569600,4),(936,638294400,5),(936,654624000,4),(936,670348800,6),(936,686077200,7),(936,695754000,4),(936,701798400,5),(936,717523200,4),(936,733248000,5),(936,748972800,4),(936,764697600,5),(936,780422400,4),(936,796147200,5),(936,811872000,4),(936,828201600,5),(936,846345600,4),(936,859651200,5),(936,877795200,4),(936,891100800,5),(936,909244800,4),(936,922550400,5),(936,941299200,4),(936,954000000,5),(936,972748800,4),(936,985449600,5),(936,1004198400,4),(936,1017504000,5),(936,1035648000,4),(936,1048953600,5),(936,1067097600,4),(936,1080403200,5),(936,1099152000,4),(936,1111852800,5),(936,1130601600,4),(936,1143302400,5),(936,1162051200,4),(936,1174752000,5),(936,1193500800,4),(936,1206806400,5),(936,1224950400,4),(936,1238256000,5),(936,1256400000,4),(936,1269705600,5),(936,1288454400,4),(936,1301155200,8),(936,1414249200,4),(937,-2147483648,0),(937,-1579423138,1),(937,-1247558400,3),(937,354898800,2),(937,370706400,3),(937,386434800,2),(937,402242400,3),(937,417970800,2),(937,433778400,3),(937,449593200,2),(937,465325200,4),(937,481050000,5),(937,496774800,4),(937,512499600,5),(937,528224400,4),(937,543949200,5),(937,559674000,4),(937,575398800,5),(937,591123600,4),(937,606848400,5),(937,622573200,4),(937,638298000,5),(937,654627600,4),(937,670352400,6),(937,686080800,7),(937,695757600,4),(937,701802000,5),(937,717526800,4),(937,733251600,5),(937,748976400,4),(937,764701200,5),(937,780426000,4),(937,796150800,5),(937,811875600,4),(937,828205200,5),(937,846349200,4),(937,859654800,5),(937,877798800,4),(937,891104400,5),(937,909248400,4),(937,922554000,5),(937,941302800,4),(937,954003600,5),(937,972752400,4),(937,985453200,5),(937,1004202000,4),(937,1017507600,5),(937,1035651600,4),(937,1048957200,5),(937,1067101200,4),(937,1080406800,5),(937,1099155600,4),(937,1111856400,5),(937,1130605200,4),(937,1143306000,5),(937,1162054800,4),(937,1174755600,5),(937,1193504400,4),(937,1206810000,5),(937,1224954000,4),(937,1238259600,5),(937,1256403600,4),(937,1269709200,5),(937,1288458000,4),(937,1301158800,8),(937,1414252800,4),(938,-2147483648,1),(938,-1577946287,2),(938,-873268200,3),(938,-778410000,2),(939,-2147483648,0),(939,-1688270553,1),(939,-1592610305,2),(939,-1247544000,4),(939,354913200,3),(939,370720800,4),(939,386449200,3),(939,402256800,4),(939,417985200,3),(939,433792800,4),(939,449607600,3),(939,465339600,5),(939,481064400,6),(939,496789200,5),(939,512514000,6),(939,528238800,5),(939,543963600,6),(939,559688400,5),(939,575413200,6),(939,591138000,5),(939,606862800,6),(939,622587600,5),(939,638312400,6),(939,654642000,5),(939,670366800,7),(939,686095200,8),(939,695772000,5),(939,701816400,6),(939,717541200,5),(939,733266000,6),(939,748990800,5),(939,764715600,6),(939,780440400,5),(939,796165200,6),(939,811890000,5),(939,828219600,6),(939,846363600,5),(939,859669200,6),(939,877813200,5),(939,891118800,6),(939,909262800,5),(939,922568400,6),(939,941317200,5),(939,954018000,6),(939,972766800,5),(939,985467600,6),(939,1004216400,5),(939,1017522000,6),(939,1035666000,5),(939,1048971600,6),(939,1067115600,5),(939,1080421200,6),(939,1099170000,5),(939,1111870800,6),(939,1130619600,5),(939,1143320400,6),(939,1162069200,5),(939,1174770000,6),(939,1193518800,5),(939,1206824400,6),(939,1224968400,5),(939,1238274000,6),(939,1256418000,5),(939,1269723600,6),(939,1288472400,5),(939,1301173200,9),(939,1414267200,5),(940,-2147483648,0),(940,-1441162680,1),(940,-405140400,3),(940,354916800,2),(940,370724400,3),(940,386452800,2),(940,402260400,3),(940,417988800,2),(940,433796400,3),(940,449611200,2),(940,465343200,4),(940,481068000,5),(940,496792800,4),(940,512517600,5),(940,528242400,4),(940,543967200,5),(940,559692000,4),(940,575416800,5),(940,591141600,4),(940,606866400,5),(940,622591200,4),(940,638316000,5),(940,654645600,4),(940,670370400,6),(940,686098800,7),(940,701823600,6),(940,717548400,7),(940,733273200,6),(940,748998000,7),(940,764722800,6),(940,780447600,7),(940,796172400,6),(940,811897200,4),(940,852062400,3),(940,859672800,5),(940,877816800,4),(940,891122400,5),(940,909266400,4),(940,922572000,5),(940,941320800,4),(940,954021600,5),(940,972770400,4),(940,985471200,5),(940,1004220000,4),(940,1017525600,5),(940,1035669600,4),(940,1048975200,5),(940,1067119200,4),(940,1080424800,5),(940,1099173600,4),(940,1111874400,5),(940,1130623200,4),(940,1143324000,5),(940,1162072800,4),(940,1174773600,5),(940,1193522400,4),(940,1206828000,5),(940,1224972000,4),(940,1238277600,5),(940,1256421600,4),(940,1269727200,5),(940,1288476000,4),(940,1293825600,3),(940,1301176800,5),(940,1319925600,4),(941,-2147483648,1),(941,-1830376800,6),(941,-1689548400,2),(941,-1677794400,3),(941,-1667430000,4),(941,-1647730800,5),(941,-1635807600,4),(941,-1616194800,5),(941,-1604358000,4),(941,-1584658800,5),(941,-1572735600,4),(941,-1553036400,5),(941,-1541199600,4),(941,-1521500400,5),(941,-1442444400,4),(941,-1426806000,5),(941,-1379286000,4),(941,-1364770800,5),(941,-1348441200,4),(941,-1333321200,5),(941,-1316386800,4),(941,-1301266800,5),(941,-1284332400,4),(941,-1269817200,5),(941,-1221433200,4),(941,-1206918000,5),(941,-1191193200,4),(941,-1175468400,5),(941,-1127689200,4),(941,-1111964400,5),(941,-1096844400,4),(941,-1080514800,5),(941,-1063580400,4),(941,-1049065200,5),(941,-1033340400,4),(941,-1017615600,5),(941,-1002495600,4),(941,-986166000,5),(941,-969231600,4),(941,-950482800,5),(941,-942015600,4),(941,-922662000,5),(941,-906937200,4),(941,-891126000,5),(941,-877302000,4),(941,-873676800,7),(941,-864000000,4),(941,-857948400,5),(941,-845852400,4),(941,-842832000,7),(941,-831340800,4),(941,-825894000,5),(941,-814402800,4),(941,-810777600,7),(941,-799891200,4),(941,-794444400,5),(941,-782953200,4),(941,-779328000,7),(941,-768441600,4),(941,-762994800,5),(941,-749084400,4),(941,-733359600,5),(941,-717624000,4),(941,-701899200,5),(941,-686174400,4),(941,-670449600,5),(941,-654724800,4),(941,-639000000,5),(941,-591825600,4),(941,-575496000,5),(941,-559771200,4),(941,-544046400,5),(941,-528321600,4),(941,-512596800,5),(941,-496872000,4),(941,-481147200,5),(941,-465422400,4),(941,-449697600,5),(941,-433972800,4),(941,-417643200,5),(941,-401918400,4),(941,-386193600,5),(941,-370468800,4),(941,-354744000,5),(941,-339019200,4),(941,-323294400,5),(941,-307569600,4),(941,-291844800,5),(941,-276120000,4),(941,-260395200,5),(941,-244670400,4),(941,-228340800,5),(941,-212616000,4),(941,-196891200,5),(941,-181166400,4),(941,-165441600,5),(941,-149716800,4),(941,-133992000,5),(941,-118267200,9),(941,228272400,7),(941,243997200,8),(941,260326800,7),(941,276051600,8),(941,291776400,7),(941,307504800,8),(941,323226000,7),(941,338954400,8),(941,354679200,7),(941,370404000,8),(941,386128800,7),(941,401853600,8),(941,417582000,7),(941,433303200,8),(941,449028000,7),(941,465357600,8),(941,481082400,7),(941,496807200,8),(941,512532000,7),(941,528256800,8),(941,543981600,7),(941,559706400,8),(941,575431200,7),(941,591156000,8),(941,606880800,7),(941,622605600,8),(941,638330400,7),(941,654660000,8),(941,670384800,7),(941,686109600,8),(941,701834400,7),(941,717559200,10),(941,733280400,11),(941,749005200,12),(941,764730000,11),(941,780454800,12),(941,796179600,11),(941,811904400,12),(941,828234000,11),(941,846378000,12),(941,859683600,11),(941,877827600,12),(941,891133200,11),(941,909277200,12),(941,922582800,11),(941,941331600,12),(941,954032400,11),(941,972781200,12),(941,985482000,11),(941,1004230800,12),(941,1017536400,11),(941,1035680400,12),(941,1048986000,11),(941,1067130000,12),(941,1080435600,11),(941,1099184400,12),(941,1111885200,11),(941,1130634000,12),(941,1143334800,11),(941,1162083600,12),(941,1174784400,11),(941,1193533200,12),(941,1206838800,11),(941,1224982800,12),(941,1238288400,11),(941,1256432400,12),(941,1269738000,11),(941,1288486800,12),(941,1301187600,11),(941,1319936400,12),(941,1332637200,11),(941,1351386000,12),(941,1364691600,11),(941,1382835600,12),(941,1396141200,11),(941,1414285200,12),(941,1427590800,11),(941,1445734800,12),(941,1459040400,11),(941,1477789200,12),(941,1490490000,11),(941,1509238800,12),(941,1521939600,11),(941,1540688400,12),(941,1553994000,11),(941,1572138000,12),(941,1585443600,11),(941,1603587600,12),(941,1616893200,11),(941,1635642000,12),(941,1648342800,11),(941,1667091600,12),(941,1679792400,11),(941,1698541200,12),(941,1711846800,11),(941,1729990800,12),(941,1743296400,11),(941,1761440400,12),(941,1774746000,11),(941,1792890000,12),(941,1806195600,11),(941,1824944400,12),(941,1837645200,11),(941,1856394000,12),(941,1869094800,11),(941,1887843600,12),(941,1901149200,11),(941,1919293200,12),(941,1932598800,11),(941,1950742800,12),(941,1964048400,11),(941,1982797200,12),(941,1995498000,11),(941,2014246800,12),(941,2026947600,11),(941,2045696400,12),(941,2058397200,11),(941,2077146000,12),(941,2090451600,11),(941,2108595600,12),(941,2121901200,11),(941,2140045200,12),(942,-2147483648,0),(942,-1262281242,1),(942,136360800,2),(942,152082000,1),(942,167810400,2),(942,183531600,1),(942,199260000,2),(942,215586000,1),(942,230709600,2),(942,247035600,1),(942,262764000,2),(942,278485200,1),(942,294213600,2),(942,309934800,1),(942,325663200,2),(942,341384400,1),(942,357112800,2),(942,372834000,1),(942,388562400,2),(942,404888400,1),(942,420012000,2),(942,436338000,1),(942,452066400,2),(942,467787600,1),(942,483516000,2),(942,499237200,1),(942,514965600,2),(942,530686800,1),(942,544600800,2),(942,562136400,1),(942,576050400,2),(942,594190800,1),(942,607500000,2),(942,625640400,1),(942,638949600,2),(942,657090000,1),(942,671004000,2),(942,688539600,1),(942,702453600,2),(942,719989200,1),(942,733903200,2),(942,752043600,1),(942,765352800,2),(942,783493200,1),(942,796802400,2),(942,814942800,1),(942,828856800,2),(942,846392400,1),(942,860306400,2),(942,877842000,1),(942,891756000,2),(942,909291600,1),(942,923205600,2),(942,941346000,1),(942,954655200,2),(942,972795600,1),(942,986104800,2),(942,1004245200,1),(942,1018159200,2),(942,1035694800,1),(942,1049608800,2),(942,1067144400,1),(942,1081058400,2),(942,1099198800,1),(942,1112508000,2),(942,1130648400,1),(942,1143957600,2),(942,1162098000,1),(942,1173592800,2),(942,1194152400,1),(942,1205042400,2),(942,1225602000,1),(942,1236492000,2),(942,1257051600,1),(942,1268546400,2),(942,1289106000,1),(942,1299996000,2),(942,1320555600,1),(942,1331445600,2),(942,1352005200,1),(942,1362895200,2),(942,1383454800,1),(942,1394344800,2),(942,1414904400,1),(942,1425794400,2),(942,1446354000,1),(942,1457848800,2),(942,1478408400,1),(942,1489298400,2),(942,1509858000,1),(942,1520748000,2),(942,1541307600,1),(942,1552197600,2),(942,1572757200,1),(942,1583647200,2),(942,1604206800,1),(942,1615701600,2),(942,1636261200,1),(942,1647151200,2),(942,1667710800,1),(942,1678600800,2),(942,1699160400,1),(942,1710050400,2),(942,1730610000,1),(942,1741500000,2),(942,1762059600,1),(942,1772949600,2),(942,1793509200,1),(942,1805004000,2),(942,1825563600,1),(942,1836453600,2),(942,1857013200,1),(942,1867903200,2),(942,1888462800,1),(942,1899352800,2),(942,1919912400,1),(942,1930802400,2),(942,1951362000,1),(942,1962856800,2),(942,1983416400,1),(942,1994306400,2),(942,2014866000,1),(942,2025756000,2),(942,2046315600,1),(942,2057205600,2),(942,2077765200,1),(942,2088655200,2),(942,2109214800,1),(942,2120104800,2),(942,2140664400,1),(943,-2147483648,0),(943,-1509663504,1),(943,-733874400,2),(943,323827200,3),(943,338950800,4),(943,354675600,5),(943,370400400,4),(943,386125200,5),(943,401850000,4),(943,417574800,5),(943,433299600,4),(943,449024400,5),(943,465354000,4),(943,481078800,5),(943,496803600,4),(943,512528400,5),(943,528253200,4),(943,543978000,5),(943,559702800,4),(943,575427600,5),(943,591152400,4),(943,606877200,5),(943,622602000,4),(943,638326800,5),(943,654656400,4),(943,670381200,5),(943,686106000,4),(943,701830800,5),(943,717555600,4),(943,733280400,5),(943,749005200,4),(943,764730000,5),(943,780454800,4),(943,796179600,5),(943,811904400,4),(943,828234000,5),(943,846378000,4),(943,859683600,5),(943,877827600,4),(943,891133200,5),(943,909277200,4),(943,922582800,5),(943,941331600,4),(943,954032400,5),(943,972781200,4),(943,985482000,5),(943,1004230800,4),(943,1017536400,5),(943,1035680400,4),(943,1048986000,5),(943,1067130000,4),(943,1080435600,5),(943,1099184400,4),(943,1111885200,5),(943,1130634000,4),(943,1143334800,5),(943,1162083600,4),(943,1174784400,5),(943,1193533200,4),(943,1206838800,5),(943,1224982800,4),(943,1238288400,5),(943,1256432400,4),(943,1269738000,5),(943,1288486800,4),(943,1301187600,5),(943,1319936400,4),(943,1332637200,5),(943,1351386000,4),(943,1364691600,5),(943,1382835600,4),(943,1396141200,5),(943,1414285200,4),(943,1427590800,5),(943,1445734800,4),(943,1459040400,5),(943,1477789200,4),(943,1490490000,5),(943,1509238800,4),(943,1521939600,5),(943,1540688400,4),(943,1553994000,5),(943,1572138000,4),(943,1585443600,5),(943,1603587600,4),(943,1616893200,5),(943,1635642000,4),(943,1648342800,5),(943,1667091600,4),(943,1679792400,5),(943,1698541200,4),(943,1711846800,5),(943,1729990800,4),(943,1743296400,5),(943,1761440400,4),(943,1774746000,5),(943,1792890000,4),(943,1806195600,5),(943,1824944400,4),(943,1837645200,5),(943,1856394000,4),(943,1869094800,5),(943,1887843600,4),(943,1901149200,5),(943,1919293200,4),(943,1932598800,5),(943,1950742800,4),(943,1964048400,5),(943,1982797200,4),(943,1995498000,5),(943,2014246800,4),(943,2026947600,5),(943,2045696400,4),(943,2058397200,5),(943,2077146000,4),(943,2090451600,5),(943,2108595600,4),(943,2121901200,5),(943,2140045200,4),(944,-2147483648,0),(944,-1830376800,1),(944,-862610400,2),(944,-764118000,3),(944,186120000,4),(945,-2147483648,0),(945,-1955748776,1),(945,354675600,2),(945,370400400,3),(945,386125200,2),(945,401850000,3),(945,417574800,2),(945,433299600,3),(945,449024400,2),(945,465354000,3),(945,481078800,2),(945,496803600,3),(945,512528400,2),(945,528253200,3),(945,543978000,2),(945,559702800,3),(945,575427600,2),(945,591152400,3),(945,606877200,2),(945,622602000,3),(945,638326800,2),(945,654656400,3),(945,670381200,2),(945,686106000,3),(945,701830800,2),(945,717555600,3),(945,733280400,2),(945,749005200,3),(945,764730000,2),(945,780454800,3),(945,796179600,2),(945,811904400,3),(945,828234000,2),(945,846378000,3),(945,859683600,2),(945,877827600,3),(945,891133200,2),(945,909277200,3),(945,922582800,2),(945,941331600,3),(945,954032400,2),(945,972781200,3),(945,985482000,2),(945,1004230800,3),(945,1017536400,2),(945,1035680400,3),(945,1048986000,2),(945,1067130000,3),(945,1080435600,2),(945,1099184400,3),(945,1111885200,2),(945,1130634000,3),(945,1143334800,2),(945,1162083600,3),(945,1174784400,2),(945,1193533200,3),(945,1206838800,2),(945,1224982800,3),(945,1238288400,2),(945,1256432400,3),(945,1269738000,2),(945,1288486800,3),(945,1301187600,2),(945,1319936400,3),(945,1332637200,2),(945,1351386000,3),(945,1364691600,2),(945,1382835600,3),(945,1396141200,2),(945,1414285200,3),(945,1427590800,2),(945,1445734800,3),(945,1459040400,2),(945,1477789200,3),(945,1490490000,2),(945,1509238800,3),(945,1521939600,2),(945,1540688400,3),(945,1553994000,2),(945,1572138000,3),(945,1585443600,2),(945,1603587600,3),(945,1616893200,2),(945,1635642000,3),(945,1648342800,2),(945,1667091600,3),(945,1679792400,2),(945,1698541200,3),(945,1711846800,2),(945,1729990800,3),(945,1743296400,2),(945,1761440400,3),(945,1774746000,2),(945,1792890000,3),(945,1806195600,2),(945,1824944400,3),(945,1837645200,2),(945,1856394000,3),(945,1869094800,2),(945,1887843600,3),(945,1901149200,2),(945,1919293200,3),(945,1932598800,2),(945,1950742800,3),(945,1964048400,2),(945,1982797200,3),(945,1995498000,2),(945,2014246800,3),(945,2026947600,2),(945,2045696400,3),(945,2058397200,2),(945,2077146000,3),(945,2090451600,2),(945,2108595600,3),(945,2121901200,2),(945,2140045200,3),(946,-2147483648,0),(946,-1955748776,1),(946,354675600,2),(946,370400400,3),(946,386125200,2),(946,401850000,3),(946,417574800,2),(946,433299600,3),(946,449024400,2),(946,465354000,3),(946,481078800,2),(946,496803600,3),(946,512528400,2),(946,528253200,3),(946,543978000,2),(946,559702800,3),(946,575427600,2),(946,591152400,3),(946,606877200,2),(946,622602000,3),(946,638326800,2),(946,654656400,3),(946,670381200,2),(946,686106000,3),(946,701830800,2),(946,717555600,3),(946,733280400,2),(946,749005200,3),(946,764730000,2),(946,780454800,3),(946,796179600,2),(946,811904400,3),(946,828234000,2),(946,846378000,3),(946,859683600,2),(946,877827600,3),(946,891133200,2),(946,909277200,3),(946,922582800,2),(946,941331600,3),(946,954032400,2),(946,972781200,3),(946,985482000,2),(946,1004230800,3),(946,1017536400,2),(946,1035680400,3),(946,1048986000,2),(946,1067130000,3),(946,1080435600,2),(946,1099184400,3),(946,1111885200,2),(946,1130634000,3),(946,1143334800,2),(946,1162083600,3),(946,1174784400,2),(946,1193533200,3),(946,1206838800,2),(946,1224982800,3),(946,1238288400,2),(946,1256432400,3),(946,1269738000,2),(946,1288486800,3),(946,1301187600,2),(946,1319936400,3),(946,1332637200,2),(946,1351386000,3),(946,1364691600,2),(946,1382835600,3),(946,1396141200,2),(946,1414285200,3),(946,1427590800,2),(946,1445734800,3),(946,1459040400,2),(946,1477789200,3),(946,1490490000,2),(946,1509238800,3),(946,1521939600,2),(946,1540688400,3),(946,1553994000,2),(946,1572138000,3),(946,1585443600,2),(946,1603587600,3),(946,1616893200,2),(946,1635642000,3),(946,1648342800,2),(946,1667091600,3),(946,1679792400,2),(946,1698541200,3),(946,1711846800,2),(946,1729990800,3),(946,1743296400,2),(946,1761440400,3),(946,1774746000,2),(946,1792890000,3),(946,1806195600,2),(946,1824944400,3),(946,1837645200,2),(946,1856394000,3),(946,1869094800,2),(946,1887843600,3),(946,1901149200,2),(946,1919293200,3),(946,1932598800,2),(946,1950742800,3),(946,1964048400,2),(946,1982797200,3),(946,1995498000,2),(946,2014246800,3),(946,2026947600,2),(946,2045696400,3),(946,2058397200,2),(946,2077146000,3),(946,2090451600,2),(946,2108595600,3),(946,2121901200,2),(946,2140045200,3),(947,-2147483648,2),(947,-1691884800,1),(947,-1680573600,2),(947,-927511200,1),(947,-857257200,3),(947,-844556400,4),(947,-828226800,3),(947,-812502000,4),(947,-796777200,3),(947,-781052400,4),(947,-765327600,3),(947,-340844400,4),(947,-324514800,3),(947,-308790000,4),(947,-293065200,3),(947,-277340400,4),(947,-261615600,3),(947,-245890800,4),(947,-230166000,3),(947,-214441200,4),(947,-198716400,3),(947,-182991600,4),(947,-166662000,3),(947,-147913200,4),(947,-135212400,3),(947,315529200,2),(947,323830800,5),(947,338950800,6),(947,354675600,5),(947,370400400,6),(947,386125200,5),(947,401850000,6),(947,417574800,5),(947,433299600,6),(947,449024400,5),(947,465354000,6),(947,481078800,5),(947,496803600,6),(947,512528400,5),(947,528253200,6),(947,543978000,5),(947,559702800,6),(947,575427600,5),(947,591152400,6),(947,606877200,5),(947,622602000,6),(947,638326800,5),(947,654656400,6),(947,670381200,5),(947,686106000,6),(947,701830800,5),(947,717555600,6),(947,733280400,5),(947,749005200,6),(947,764730000,5),(947,780454800,6),(947,796179600,5),(947,811904400,6),(947,828234000,5),(947,846378000,6),(947,859683600,5),(947,877827600,6),(947,891133200,5),(947,909277200,6),(947,922582800,5),(947,941331600,6),(947,954032400,5),(947,972781200,6),(947,985482000,5),(947,1004230800,6),(947,1017536400,5),(947,1035680400,6),(947,1048986000,5),(947,1067130000,6),(947,1080435600,5),(947,1099184400,6),(947,1111885200,5),(947,1130634000,6),(947,1143334800,5),(947,1162083600,6),(947,1174784400,5),(947,1193533200,6),(947,1206838800,5),(947,1224982800,6),(947,1238288400,5),(947,1256432400,6),(947,1269738000,5),(947,1288486800,6),(947,1301187600,5),(947,1319936400,6),(947,1332637200,5),(947,1351386000,6),(947,1364691600,5),(947,1382835600,6),(947,1396141200,5),(947,1414285200,6),(947,1427590800,5),(947,1445734800,6),(947,1459040400,5),(947,1477789200,6),(947,1490490000,5),(947,1509238800,6),(947,1521939600,5),(947,1540688400,6),(947,1553994000,5),(947,1572138000,6),(947,1585443600,5),(947,1603587600,6),(947,1616893200,5),(947,1635642000,6),(947,1648342800,5),(947,1667091600,6),(947,1679792400,5),(947,1698541200,6),(947,1711846800,5),(947,1729990800,6),(947,1743296400,5),(947,1761440400,6),(947,1774746000,5),(947,1792890000,6),(947,1806195600,5),(947,1824944400,6),(947,1837645200,5),(947,1856394000,6),(947,1869094800,5),(947,1887843600,6),(947,1901149200,5),(947,1919293200,6),(947,1932598800,5),(947,1950742800,6),(947,1964048400,5),(947,1982797200,6),(947,1995498000,5),(947,2014246800,6),(947,2026947600,5),(947,2045696400,6),(947,2058397200,5),(947,2077146000,6),(947,2090451600,5),(947,2108595600,6),(947,2121901200,5),(947,2140045200,6),(948,-2147483648,1),(948,-1830380400,6),(948,-1689552000,2),(948,-1677798000,3),(948,-1667433600,4),(948,-1647734400,5),(948,-1635811200,4),(948,-1616198400,5),(948,-1604361600,4),(948,-1584662400,5),(948,-1572739200,4),(948,-1553040000,5),(948,-1541203200,4),(948,-1521504000,5),(948,-1442448000,4),(948,-1426809600,5),(948,-1379289600,4),(948,-1364774400,5),(948,-1348444800,4),(948,-1333324800,5),(948,-1316390400,4),(948,-1301270400,5),(948,-1284336000,4),(948,-1269820800,5),(948,-1221436800,4),(948,-1206921600,5),(948,-1191196800,4),(948,-1175472000,5),(948,-1127692800,4),(948,-1111968000,5),(948,-1096848000,4),(948,-1080518400,5),(948,-1063584000,4),(948,-1049068800,5),(948,-1033344000,4),(948,-1017619200,5),(948,-1002499200,4),(948,-986169600,5),(948,-969235200,4),(948,-950486400,5),(948,-942019200,4),(948,-922665600,5),(948,-906940800,4),(948,-891129600,5),(948,-877305600,4),(948,-873680400,7),(948,-864003600,4),(948,-857952000,5),(948,-845856000,4),(948,-842835600,7),(948,-831344400,4),(948,-825897600,5),(948,-814406400,4),(948,-810781200,7),(948,-799894800,4),(948,-794448000,5),(948,-782956800,4),(948,-779331600,7),(948,-768445200,4),(948,-762998400,5),(948,-749088000,4),(948,-733363200,5),(948,-717627600,4),(948,-701902800,5),(948,-686178000,4),(948,-670453200,5),(948,-654728400,4),(948,-639003600,5),(948,-591829200,4),(948,-575499600,5),(948,-559774800,4),(948,-544050000,5),(948,-528325200,4),(948,-512600400,5),(948,-496875600,4),(948,-481150800,5),(948,-465426000,4),(948,-449701200,5),(948,-433976400,4),(948,-417646800,5),(948,-401922000,4),(948,-386197200,5),(948,-370472400,4),(948,-354747600,5),(948,-339022800,4),(948,-323298000,5),(948,-307573200,4),(948,-291848400,5),(948,-276123600,4),(948,-260398800,5),(948,-244674000,4),(948,-228344400,5),(948,-212619600,4),(948,-196894800,5),(948,-181170000,4),(948,-165445200,5),(948,-149720400,4),(948,-133995600,5),(948,-118270800,10),(948,228268800,8),(948,243993600,9),(948,260323200,8),(948,276048000,9),(948,291772800,8),(948,307501200,9),(948,323222400,8),(948,338950800,9),(948,354675600,8),(948,370400400,9),(948,386125200,8),(948,401850000,9),(948,417578400,8),(948,433299600,11),(948,449024400,12),(948,465354000,11),(948,481078800,12),(948,496803600,11),(948,512528400,12),(948,528253200,11),(948,543978000,12),(948,559702800,11),(948,575427600,12),(948,591152400,11),(948,606877200,12),(948,622602000,11),(948,638326800,12),(948,654656400,11),(948,670381200,12),(948,686106000,11),(948,701830800,12),(948,717555600,11),(948,733280400,12),(948,749005200,11),(948,764730000,12),(948,780454800,11),(948,796179600,12),(948,811904400,11),(948,828234000,12),(948,846378000,11),(948,859683600,12),(948,877827600,11),(948,891133200,12),(948,909277200,11),(948,922582800,12),(948,941331600,11),(948,954032400,12),(948,972781200,11),(948,985482000,12),(948,1004230800,11),(948,1017536400,12),(948,1035680400,11),(948,1048986000,12),(948,1067130000,11),(948,1080435600,12),(948,1099184400,11),(948,1111885200,12),(948,1130634000,11),(948,1143334800,12),(948,1162083600,11),(948,1174784400,12),(948,1193533200,11),(948,1206838800,12),(948,1224982800,11),(948,1238288400,12),(948,1256432400,11),(948,1269738000,12),(948,1288486800,11),(948,1301187600,12),(948,1319936400,11),(948,1332637200,12),(948,1351386000,11),(948,1364691600,12),(948,1382835600,11),(948,1396141200,12),(948,1414285200,11),(948,1427590800,12),(948,1445734800,11),(948,1459040400,12),(948,1477789200,11),(948,1490490000,12),(948,1509238800,11),(948,1521939600,12),(948,1540688400,11),(948,1553994000,12),(948,1572138000,11),(948,1585443600,12),(948,1603587600,11),(948,1616893200,12),(948,1635642000,11),(948,1648342800,12),(948,1667091600,11),(948,1679792400,12),(948,1698541200,11),(948,1711846800,12),(948,1729990800,11),(948,1743296400,12),(948,1761440400,11),(948,1774746000,12),(948,1792890000,11),(948,1806195600,12),(948,1824944400,11),(948,1837645200,12),(948,1856394000,11),(948,1869094800,12),(948,1887843600,11),(948,1901149200,12),(948,1919293200,11),(948,1932598800,12),(948,1950742800,11),(948,1964048400,12),(948,1982797200,11),(948,1995498000,12),(948,2014246800,11),(948,2026947600,12),(948,2045696400,11),(948,2058397200,12),(948,2077146000,11),(948,2090451600,12),(948,2108595600,11),(948,2121901200,12),(948,2140045200,11),(949,-2147483648,0),(949,-1956609120,2),(949,-1668211200,1),(949,-1647212400,2),(949,-1636675200,1),(949,-1613430000,2),(949,-1605139200,1),(949,-1581894000,2),(949,-1539561600,1),(949,-1531350000,2),(949,-968025600,1),(949,-952293600,2),(949,-942008400,1),(949,-920239200,3),(949,-909957600,4),(949,-888789600,3),(949,-877903200,4),(949,-857944800,3),(949,-846453600,4),(949,-826495200,3),(949,-815004000,4),(949,-795045600,3),(949,-783554400,4),(949,-762991200,3),(949,-752104800,4),(949,-731541600,3),(949,-717631200,4),(949,-700092000,3),(949,-686181600,4),(949,-668642400,3),(949,-654732000,4),(949,-636588000,3),(949,-623282400,4),(949,-605743200,3),(949,-591832800,4),(949,-573688800,3),(949,-559778400,4),(949,-542239200,3),(949,-528328800,4),(949,-510789600,3),(949,-496879200,4),(949,-479340000,3),(949,-465429600,4),(949,-447890400,3),(949,-433980000,4),(949,-415836000,3),(949,-401925600,4),(949,-384386400,3),(949,-370476000,4),(949,-352936800,3),(949,-339026400,4),(949,-321487200,3),(949,-307576800,4),(949,-290037600,3),(949,-276127200,4),(949,-258588000,3),(949,-244677600,4),(949,-226533600,3),(949,-212623200,4),(949,-195084000,3),(949,-181173600,4),(949,-163634400,3),(949,-149724000,4),(949,-132184800,3),(949,-118274400,4),(949,-100735200,3),(949,-86824800,4),(949,-68680800,3),(949,-54770400,5),(951,-2147483648,0),(951,-1830383032,1),(952,-2147483648,1),(952,-1824235716,3),(952,-1018209600,2),(952,-1003093200,3),(952,-986760000,2),(952,-971643600,3),(952,-954705600,2),(952,-939589200,3),(952,-923256000,2),(952,-908139600,3),(952,-891806400,2),(952,-876690000,3),(952,-860356800,2),(952,-852066000,3),(952,420609600,5),(952,433306800,4),(952,452052000,5),(952,464151600,4),(952,483501600,5),(952,495601200,2),(952,514350000,3),(952,527054400,2),(952,545799600,3),(952,558504000,2),(952,577249200,3),(952,589953600,2),(952,608698800,3),(952,621403200,2),(952,640753200,3),(952,652852800,2),(952,672202800,3),(952,684907200,2),(952,703652400,3),(952,716356800,2),(952,735102000,3),(952,747806400,2),(952,766551600,3),(952,779256000,2),(952,798001200,3),(952,810705600,2),(952,830055600,3),(952,842760000,2),(952,861505200,3),(952,874209600,2),(952,892954800,3),(952,905659200,2),(952,924404400,3),(952,937108800,2),(952,955854000,3),(952,968558400,2),(952,987310800,3),(952,999410400,2),(952,1019365200,3),(952,1030860000,2),(952,1050814800,3),(952,1062914400,2),(952,1082264400,3),(952,1094364000,2),(952,1113714000,3),(952,1125813600,2),(952,1145163600,3),(952,1157263200,2),(952,1176613200,3),(952,1188712800,2),(952,1208667600,3),(952,1220767200,2),(952,1240117200,3),(952,1252216800,2),(952,1271566800,3),(952,1283666400,5),(953,-2147483648,2),(953,-1672567140,1),(953,-1665392400,2),(953,-883641600,1),(953,-876128400,2),(953,-860400000,1),(953,-844678800,2),(953,-828345600,1),(953,-813229200,2),(953,57686400,3),(953,67968000,4),(953,89136000,3),(953,100022400,4),(953,120585600,3),(953,131472000,4),(953,152035200,3),(953,162921600,4),(953,183484800,3),(953,194976000,4),(953,215539200,3),(953,226425600,4),(953,246988800,3),(953,257875200,4),(953,278438400,3),(953,289324800,4),(953,309888000,3),(953,320774400,4),(953,341337600,3),(953,352224000,4),(953,372787200,3),(953,386697600,4),(953,404841600,3),(953,415728000,4),(953,436291200,3),(953,447177600,4),(953,467740800,3),(953,478627200,4),(953,499190400,3),(953,511286400,4),(953,530035200,3),(953,542736000,4),(953,562089600,3),(953,574790400,4),(953,594144000,3),(953,606240000,4),(953,625593600,3),(953,636480000,4),(953,657043200,3),(953,667929600,4),(953,688492800,3),(953,699379200,4),(953,719942400,3),(953,731433600,4),(953,751996800,3),(953,762883200,4),(953,783446400,3),(953,794332800,4),(953,814896000,3),(953,828201600,4),(953,846345600,3),(953,859651200,4),(953,877795200,3),(953,891100800,4),(953,909244800,3),(953,922550400,4),(953,941299200,3),(953,954000000,4),(953,967305600,3),(953,985449600,4),(953,1004198400,3),(953,1017504000,4),(953,1035648000,3),(953,1048953600,4),(953,1067097600,3),(953,1080403200,4),(953,1099152000,3),(953,1111852800,4),(953,1130601600,3),(953,1143907200,4),(953,1162051200,3),(953,1174752000,4),(953,1193500800,3),(953,1207411200,4),(953,1223136000,3),(953,1238860800,4),(953,1254585600,3),(953,1270310400,4),(953,1286035200,3),(953,1301760000,4),(953,1317484800,3),(953,1333209600,4),(953,1349539200,3),(953,1365264000,4),(953,1380988800,3),(953,1396713600,4),(953,1412438400,3),(953,1428163200,4),(953,1443888000,3),(953,1459612800,4),(953,1475337600,3),(953,1491062400,4),(953,1506787200,3),(953,1522512000,4),(953,1538841600,3),(953,1554566400,4),(953,1570291200,3),(953,1586016000,4),(953,1601740800,3),(953,1617465600,4),(953,1633190400,3),(953,1648915200,4),(953,1664640000,3),(953,1680364800,4),(953,1696089600,3),(953,1712419200,4),(953,1728144000,3),(953,1743868800,4),(953,1759593600,3),(953,1775318400,4),(953,1791043200,3),(953,1806768000,4),(953,1822492800,3),(953,1838217600,4),(953,1853942400,3),(953,1869667200,4),(953,1885996800,3),(953,1901721600,4),(953,1917446400,3),(953,1933171200,4),(953,1948896000,3),(953,1964620800,4),(953,1980345600,3),(953,1996070400,4),(953,2011795200,3),(953,2027520000,4),(953,2043244800,3),(953,2058969600,4),(953,2075299200,3),(953,2091024000,4),(953,2106748800,3),(953,2122473600,4),(953,2138198400,3),(954,-2147483648,2),(954,-1672565340,1),(954,-1665390600,2),(954,-883639800,1),(954,-876126600,2),(954,-860398200,1),(954,-844677000,2),(954,-828343800,1),(954,-813227400,2),(954,57688200,3),(954,67969800,4),(954,89137800,3),(954,100024200,4),(954,120587400,3),(954,131473800,4),(954,152037000,3),(954,162923400,4),(954,183486600,3),(954,194977800,4),(954,215541000,3),(954,226427400,4),(954,246990600,3),(954,257877000,4),(954,278440200,3),(954,289326600,4),(954,309889800,3),(954,320776200,4),(954,341339400,3),(954,352225800,4),(954,372789000,3),(954,384280200,4),(954,404843400,3),(954,415729800,4),(954,436293000,3),(954,447179400,4),(954,467742600,3),(954,478629000,4),(954,499192200,3),(954,511288200,4),(954,530037000,3),(954,542737800,4),(954,562091400,3),(954,574792200,4),(954,594145800,3),(954,606241800,4),(954,625595400,3),(954,637691400,4),(954,657045000,3),(954,667931400,4),(954,688494600,3),(954,701195400,4),(954,719944200,3),(954,731435400,4),(954,751998600,3),(954,764094600,4),(954,783448200,3),(954,796149000,4),(954,814897800,3),(954,828203400,4),(954,846347400,3),(954,859653000,4),(954,877797000,3),(954,891102600,4),(954,909246600,3),(954,922552200,4),(954,941301000,3),(954,954001800,4),(954,972750600,3),(954,985451400,4),(954,1004200200,3),(954,1017505800,4),(954,1035649800,3),(954,1048955400,4),(954,1067099400,3),(954,1080405000,4),(954,1099153800,3),(954,1111854600,4),(954,1130603400,3),(954,1143909000,4),(954,1162053000,3),(954,1174753800,4),(954,1193502600,3),(954,1207413000,4),(954,1223137800,3),(954,1238862600,4),(954,1254587400,3),(954,1270312200,4),(954,1286037000,3),(954,1301761800,4),(954,1317486600,3),(954,1333211400,4),(954,1349541000,3),(954,1365265800,4),(954,1380990600,3),(954,1396715400,4),(954,1412440200,3),(954,1428165000,4),(954,1443889800,3),(954,1459614600,4),(954,1475339400,3),(954,1491064200,4),(954,1506789000,3),(954,1522513800,4),(954,1538843400,3),(954,1554568200,4),(954,1570293000,3),(954,1586017800,4),(954,1601742600,3),(954,1617467400,4),(954,1633192200,3),(954,1648917000,4),(954,1664641800,3),(954,1680366600,4),(954,1696091400,3),(954,1712421000,4),(954,1728145800,3),(954,1743870600,4),(954,1759595400,3),(954,1775320200,4),(954,1791045000,3),(954,1806769800,4),(954,1822494600,3),(954,1838219400,4),(954,1853944200,3),(954,1869669000,4),(954,1885998600,3),(954,1901723400,4),(954,1917448200,3),(954,1933173000,4),(954,1948897800,3),(954,1964622600,4),(954,1980347400,3),(954,1996072200,4),(954,2011797000,3),(954,2027521800,4),(954,2043246600,3),(954,2058971400,4),(954,2075301000,3),(954,2091025800,4),(954,2106750600,3),(954,2122475400,4),(954,2138200200,3),(955,-2147483648,2),(955,-1672567140,1),(955,-1665392400,2),(955,-883641600,1),(955,-876128400,2),(955,-860400000,1),(955,-844678800,2),(955,-828345600,1),(955,-813229200,2),(955,57686400,3),(955,67968000,4),(955,625593600,3),(955,636480000,4),(955,657043200,3),(955,667929600,4),(955,688492800,3),(955,699379200,4),(956,-2147483648,2),(956,-1672565340,1),(956,-1665390600,2),(956,-883639800,1),(956,-876126600,2),(956,-860398200,1),(956,-844677000,2),(956,-828343800,1),(956,-813227400,2),(956,57688200,3),(956,67969800,4),(956,89137800,3),(956,100024200,4),(956,120587400,3),(956,131473800,4),(956,152037000,3),(956,162923400,4),(956,183486600,3),(956,194977800,4),(956,215541000,3),(956,226427400,4),(956,246990600,3),(956,257877000,4),(956,278440200,3),(956,289326600,4),(956,309889800,3),(956,320776200,4),(956,341339400,3),(956,352225800,4),(956,372789000,3),(956,386699400,4),(956,404843400,3),(956,415729800,4),(956,436293000,3),(956,447179400,4),(956,467742600,3),(956,478629000,4),(956,499192200,3),(956,511288200,4),(956,530037000,3),(956,542737800,4),(956,562091400,3),(956,574792200,4),(956,594145800,3),(956,606241800,4),(956,625595400,3),(956,636481800,4),(956,657045000,3),(956,667931400,4),(956,688494600,3),(956,699381000,4),(956,719944200,3),(956,731435400,4),(956,751998600,3),(956,762885000,4),(956,783448200,3),(956,794334600,4),(956,814897800,3),(956,828203400,4),(956,846347400,3),(956,859653000,4),(956,877797000,3),(956,891102600,4),(956,909246600,3),(956,922552200,4),(956,941301000,3),(956,946647000,1),(956,954001800,4),(956,972750600,3),(956,985451400,4),(956,1004200200,3),(956,1017505800,4),(956,1035649800,3),(956,1048955400,4),(956,1067099400,3),(956,1080405000,4),(956,1099153800,3),(956,1111854600,4),(956,1130603400,3),(956,1143909000,4),(956,1162053000,3),(956,1174753800,4),(956,1193502600,3),(956,1207413000,4),(956,1223137800,3),(956,1238862600,4),(956,1254587400,3),(956,1270312200,4),(956,1286037000,3),(956,1301761800,4),(956,1317486600,3),(956,1333211400,4),(956,1349541000,3),(956,1365265800,4),(956,1380990600,3),(956,1396715400,4),(956,1412440200,3),(956,1428165000,4),(956,1443889800,3),(956,1459614600,4),(956,1475339400,3),(956,1491064200,4),(956,1506789000,3),(956,1522513800,4),(956,1538843400,3),(956,1554568200,4),(956,1570293000,3),(956,1586017800,4),(956,1601742600,3),(956,1617467400,4),(956,1633192200,3),(956,1648917000,4),(956,1664641800,3),(956,1680366600,4),(956,1696091400,3),(956,1712421000,4),(956,1728145800,3),(956,1743870600,4),(956,1759595400,3),(956,1775320200,4),(956,1791045000,3),(956,1806769800,4),(956,1822494600,3),(956,1838219400,4),(956,1853944200,3),(956,1869669000,4),(956,1885998600,3),(956,1901723400,4),(956,1917448200,3),(956,1933173000,4),(956,1948897800,3),(956,1964622600,4),(956,1980347400,3),(956,1996072200,4),(956,2011797000,3),(956,2027521800,4),(956,2043246600,3),(956,2058971400,4),(956,2075301000,3),(956,2091025800,4),(956,2106750600,3),(956,2122475400,4),(956,2138200200,3),(957,-2147483648,2),(957,-1672567140,1),(957,-1665392400,2),(957,-883641600,1),(957,-876128400,2),(957,-860400000,1),(957,-844678800,2),(957,-828345600,1),(957,-813229200,2),(957,57686400,3),(957,67968000,4),(957,89136000,3),(957,100022400,4),(957,120585600,3),(957,131472000,4),(957,152035200,3),(957,162921600,4),(957,183484800,3),(957,194976000,4),(957,215539200,3),(957,226425600,4),(957,246988800,3),(957,257875200,4),(957,278438400,3),(957,289324800,4),(957,309888000,3),(957,320774400,4),(957,341337600,3),(957,352224000,4),(957,372787200,3),(957,386697600,4),(957,404841600,3),(957,415728000,4),(957,436291200,3),(957,447177600,4),(957,467740800,3),(957,478627200,4),(957,499190400,3),(957,511286400,4),(957,530035200,3),(957,542736000,4),(957,562089600,3),(957,574790400,4),(957,594144000,3),(957,606240000,4),(957,625593600,3),(957,636480000,4),(957,657043200,3),(957,667929600,4),(957,688492800,3),(957,699379200,4),(957,719942400,3),(957,731433600,4),(957,751996800,3),(957,762883200,4),(957,783446400,3),(957,794332800,4),(957,814896000,3),(957,828201600,4),(957,846345600,3),(957,859651200,4),(957,877795200,3),(957,891100800,4),(957,909244800,3),(957,922550400,4),(957,941299200,3),(957,954000000,4),(957,967305600,3),(957,985449600,4),(957,1004198400,3),(957,1017504000,4),(957,1035648000,3),(957,1048953600,4),(957,1067097600,3),(957,1080403200,4),(957,1099152000,3),(957,1111852800,4),(957,1130601600,3),(957,1143907200,4),(957,1162051200,3),(957,1174752000,4),(957,1193500800,3),(957,1207411200,4),(957,1223136000,3),(957,1238860800,4),(957,1254585600,3),(957,1270310400,4),(957,1286035200,3),(957,1301760000,4),(957,1317484800,3),(957,1333209600,4),(957,1349539200,3),(957,1365264000,4),(957,1380988800,3),(957,1396713600,4),(957,1412438400,3),(957,1428163200,4),(957,1443888000,3),(957,1459612800,4),(957,1475337600,3),(957,1491062400,4),(957,1506787200,3),(957,1522512000,4),(957,1538841600,3),(957,1554566400,4),(957,1570291200,3),(957,1586016000,4),(957,1601740800,3),(957,1617465600,4),(957,1633190400,3),(957,1648915200,4),(957,1664640000,3),(957,1680364800,4),(957,1696089600,3),(957,1712419200,4),(957,1728144000,3),(957,1743868800,4),(957,1759593600,3),(957,1775318400,4),(957,1791043200,3),(957,1806768000,4),(957,1822492800,3),(957,1838217600,4),(957,1853942400,3),(957,1869667200,4),(957,1885996800,3),(957,1901721600,4),(957,1917446400,3),(957,1933171200,4),(957,1948896000,3),(957,1964620800,4),(957,1980345600,3),(957,1996070400,4),(957,2011795200,3),(957,2027520000,4),(957,2043244800,3),(957,2058969600,4),(957,2075299200,3),(957,2091024000,4),(957,2106748800,3),(957,2122473600,4),(957,2138198400,3),(958,-2147483648,1),(958,-1680508800,2),(958,-1665392400,1),(958,-883641600,2),(958,-876128400,1),(958,-860400000,2),(958,-844678800,1),(958,-828345600,2),(958,-813229200,1),(958,57686400,3),(958,67968000,4),(958,89136000,3),(958,100022400,4),(958,120585600,3),(958,131472000,4),(958,152035200,3),(958,162921600,4),(958,183484800,3),(958,194976000,4),(958,215539200,3),(958,226425600,4),(958,246988800,3),(958,257875200,4),(958,278438400,3),(958,289324800,4),(958,309888000,3),(958,320774400,4),(958,341337600,3),(958,352224000,4),(958,372787200,3),(958,386092800,4),(958,404841600,3),(958,417542400,4),(958,436291200,3),(958,447177600,4),(958,467740800,3),(958,478627200,4),(958,499190400,3),(958,510076800,4),(958,530035200,3),(958,542736000,4),(958,562089600,3),(958,574790400,4),(958,594144000,3),(958,606240000,4),(958,625593600,3),(958,637689600,4),(958,657043200,3),(958,670348800,4),(958,686678400,3),(958,701798400,4),(958,718128000,3),(958,733248000,4),(958,749577600,3),(958,764697600,4),(958,781027200,3),(958,796147200,4),(958,812476800,3),(958,828201600,4),(958,844531200,3),(958,859651200,4),(958,875980800,3),(958,891100800,4),(958,907430400,3),(958,922550400,4),(958,938880000,3),(958,954000000,4),(958,967305600,3),(958,985449600,4),(958,1002384000,3),(958,1017504000,4),(958,1033833600,3),(958,1048953600,4),(958,1065283200,3),(958,1080403200,4),(958,1096732800,3),(958,1111852800,4),(958,1128182400,3),(958,1143907200,4),(958,1159632000,3),(958,1174752000,4),(958,1191686400,3),(958,1207411200,4),(958,1223136000,3),(958,1238860800,4),(958,1254585600,3),(958,1270310400,4),(958,1286035200,3),(958,1301760000,4),(958,1317484800,3),(958,1333209600,4),(958,1349539200,3),(958,1365264000,4),(958,1380988800,3),(958,1396713600,4),(958,1412438400,3),(958,1428163200,4),(958,1443888000,3),(958,1459612800,4),(958,1475337600,3),(958,1491062400,4),(958,1506787200,3),(958,1522512000,4),(958,1538841600,3),(958,1554566400,4),(958,1570291200,3),(958,1586016000,4),(958,1601740800,3),(958,1617465600,4),(958,1633190400,3),(958,1648915200,4),(958,1664640000,3),(958,1680364800,4),(958,1696089600,3),(958,1712419200,4),(958,1728144000,3),(958,1743868800,4),(958,1759593600,3),(958,1775318400,4),(958,1791043200,3),(958,1806768000,4),(958,1822492800,3),(958,1838217600,4),(958,1853942400,3),(958,1869667200,4),(958,1885996800,3),(958,1901721600,4),(958,1917446400,3),(958,1933171200,4),(958,1948896000,3),(958,1964620800,4),(958,1980345600,3),(958,1996070400,4),(958,2011795200,3),(958,2027520000,4),(958,2043244800,3),(958,2058969600,4),(958,2075299200,3),(958,2091024000,4),(958,2106748800,3),(958,2122473600,4),(958,2138198400,3),(959,-2147483648,2),(959,-1672565340,1),(959,-1665390600,2),(959,-883639800,1),(959,-876126600,2),(959,-860398200,1),(959,-844677000,2),(959,-828343800,1),(959,-813227400,2),(960,-2147483648,2),(960,-1672562640,1),(960,-1665387900,2),(960,-883637100,1),(960,-876123900,2),(960,-860395500,1),(960,-844674300,2),(960,152039700,3),(960,162926100,4),(960,436295700,3),(960,447182100,4),(960,690311700,3),(960,699383700,4),(960,1165079700,3),(960,1174756500,4),(960,1193505300,3),(960,1206810900,4),(960,1224954900,3),(960,1238260500,4),(961,-2147483648,1),(961,-1680508800,2),(961,-1665392400,1),(961,-883641600,2),(961,-876128400,1),(961,-860400000,2),(961,-844678800,1),(961,-828345600,2),(961,-813229200,1),(961,-71136000,3),(961,-55411200,4),(961,-37267200,3),(961,-25776000,4),(961,-5817600,3),(961,5673600,4),(961,25632000,3),(961,37728000,4),(961,57686400,3),(961,67968000,4),(961,89136000,3),(961,100022400,4),(961,120585600,3),(961,131472000,4),(961,152035200,3),(961,162921600,4),(961,183484800,3),(961,194976000,4),(961,215539200,3),(961,226425600,4),(961,246988800,3),(961,257875200,4),(961,278438400,3),(961,289324800,4),(961,309888000,3),(961,320774400,4),(961,341337600,3),(961,352224000,4),(961,372787200,3),(961,386092800,4),(961,404841600,3),(961,417542400,4),(961,436291200,3),(961,447177600,4),(961,467740800,3),(961,478627200,4),(961,499190400,3),(961,510076800,4),(961,530035200,3),(961,542736000,4),(961,562089600,3),(961,574790400,4),(961,594144000,3),(961,606240000,4),(961,625593600,3),(961,637689600,4),(961,657043200,3),(961,670348800,4),(961,686678400,3),(961,701798400,4),(961,718128000,3),(961,733248000,4),(961,749577600,3),(961,764697600,4),(961,781027200,3),(961,796147200,4),(961,812476800,3),(961,828201600,4),(961,844531200,3),(961,859651200,4),(961,875980800,3),(961,891100800,4),(961,907430400,3),(961,922550400,4),(961,938880000,3),(961,954000000,4),(961,967305600,3),(961,985449600,4),(961,1002384000,3),(961,1017504000,4),(961,1033833600,3),(961,1048953600,4),(961,1065283200,3),(961,1080403200,4),(961,1096732800,3),(961,1111852800,4),(961,1128182400,3),(961,1143907200,4),(961,1159632000,3),(961,1174752000,4),(961,1191686400,3),(961,1207411200,4),(961,1223136000,3),(961,1238860800,4),(961,1254585600,3),(961,1270310400,4),(961,1286035200,3),(961,1301760000,4),(961,1317484800,3),(961,1333209600,4),(961,1349539200,3),(961,1365264000,4),(961,1380988800,3),(961,1396713600,4),(961,1412438400,3),(961,1428163200,4),(961,1443888000,3),(961,1459612800,4),(961,1475337600,3),(961,1491062400,4),(961,1506787200,3),(961,1522512000,4),(961,1538841600,3),(961,1554566400,4),(961,1570291200,3),(961,1586016000,4),(961,1601740800,3),(961,1617465600,4),(961,1633190400,3),(961,1648915200,4),(961,1664640000,3),(961,1680364800,4),(961,1696089600,3),(961,1712419200,4),(961,1728144000,3),(961,1743868800,4),(961,1759593600,3),(961,1775318400,4),(961,1791043200,3),(961,1806768000,4),(961,1822492800,3),(961,1838217600,4),(961,1853942400,3),(961,1869667200,4),(961,1885996800,3),(961,1901721600,4),(961,1917446400,3),(961,1933171200,4),(961,1948896000,3),(961,1964620800,4),(961,1980345600,3),(961,1996070400,4),(961,2011795200,3),(961,2027520000,4),(961,2043244800,3),(961,2058969600,4),(961,2075299200,3),(961,2091024000,4),(961,2106748800,3),(961,2122473600,4),(961,2138198400,3),(962,-2147483648,1),(962,352216800,3),(962,372785400,2),(962,384273000,3),(962,404839800,2),(962,415722600,3),(962,436289400,2),(962,447172200,3),(962,467739000,2),(962,478621800,3),(962,499188600,4),(962,511282800,3),(962,530033400,4),(962,542732400,3),(962,562087800,4),(962,574786800,3),(962,594142200,4),(962,606236400,3),(962,625591800,4),(962,636476400,3),(962,657041400,4),(962,667926000,3),(962,688491000,4),(962,699375600,3),(962,719940600,4),(962,731430000,3),(962,751995000,4),(962,762879600,3),(962,783444600,4),(962,794329200,3),(962,814894200,4),(962,828198000,3),(962,846343800,4),(962,859647600,3),(962,877793400,4),(962,891097200,3),(962,909243000,4),(962,922546800,3),(962,941297400,4),(962,953996400,3),(962,967303800,4),(962,985446000,3),(962,1004196600,4),(962,1017500400,3),(962,1035646200,4),(962,1048950000,3),(962,1067095800,4),(962,1080399600,3),(962,1099150200,4),(962,1111849200,3),(962,1130599800,4),(962,1143903600,3),(962,1162049400,4),(962,1174748400,3),(962,1193499000,4),(962,1207407600,3),(962,1223134200,4),(962,1238857200,3),(962,1254583800,4),(962,1270306800,3),(962,1286033400,4),(962,1301756400,3),(962,1317483000,4),(962,1333206000,3),(962,1349537400,4),(962,1365260400,3),(962,1380987000,4),(962,1396710000,3),(962,1412436600,4),(962,1428159600,3),(962,1443886200,4),(962,1459609200,3),(962,1475335800,4),(962,1491058800,3),(962,1506785400,4),(962,1522508400,3),(962,1538839800,4),(962,1554562800,3),(962,1570289400,4),(962,1586012400,3),(962,1601739000,4),(962,1617462000,3),(962,1633188600,4),(962,1648911600,3),(962,1664638200,4),(962,1680361200,3),(962,1696087800,4),(962,1712415600,3),(962,1728142200,4),(962,1743865200,3),(962,1759591800,4),(962,1775314800,3),(962,1791041400,4),(962,1806764400,3),(962,1822491000,4),(962,1838214000,3),(962,1853940600,4),(962,1869663600,3),(962,1885995000,4),(962,1901718000,3),(962,1917444600,4),(962,1933167600,3),(962,1948894200,4),(962,1964617200,3),(962,1980343800,4),(962,1996066800,3),(962,2011793400,4),(962,2027516400,3),(962,2043243000,4),(962,2058966000,3),(962,2075297400,4),(962,2091020400,3),(962,2106747000,4),(962,2122470000,3),(962,2138196600,4),(963,-2147483648,2),(963,-1672567140,1),(963,-1665392400,2),(963,-883641600,1),(963,-876128400,2),(963,-860400000,1),(963,-844678800,2),(963,-828345600,1),(963,-813229200,2),(963,57686400,3),(963,67968000,4),(963,625593600,3),(963,636480000,4),(963,657043200,3),(963,667929600,4),(963,688492800,3),(963,699379200,4),(963,709912800,2),(963,719942400,3),(963,731433600,4),(963,751996800,3),(963,762883200,4),(964,-2147483648,1),(964,352216800,3),(964,372785400,2),(964,384273000,3),(964,404839800,2),(964,415722600,3),(964,436289400,2),(964,447172200,3),(964,467739000,2),(964,478621800,3),(964,499188600,4),(964,511282800,3),(964,530033400,4),(964,542732400,3),(964,562087800,4),(964,574786800,3),(964,594142200,4),(964,606236400,3),(964,625591800,4),(964,636476400,3),(964,657041400,4),(964,667926000,3),(964,688491000,4),(964,699375600,3),(964,719940600,4),(964,731430000,3),(964,751995000,4),(964,762879600,3),(964,783444600,4),(964,794329200,3),(964,814894200,4),(964,828198000,3),(964,846343800,4),(964,859647600,3),(964,877793400,4),(964,891097200,3),(964,909243000,4),(964,922546800,3),(964,941297400,4),(964,953996400,3),(964,967303800,4),(964,985446000,3),(964,1004196600,4),(964,1017500400,3),(964,1035646200,4),(964,1048950000,3),(964,1067095800,4),(964,1080399600,3),(964,1099150200,4),(964,1111849200,3),(964,1130599800,4),(964,1143903600,3),(964,1162049400,4),(964,1174748400,3),(964,1193499000,4),(964,1207407600,3),(964,1223134200,4),(964,1238857200,3),(964,1254583800,4),(964,1270306800,3),(964,1286033400,4),(964,1301756400,3),(964,1317483000,4),(964,1333206000,3),(964,1349537400,4),(964,1365260400,3),(964,1380987000,4),(964,1396710000,3),(964,1412436600,4),(964,1428159600,3),(964,1443886200,4),(964,1459609200,3),(964,1475335800,4),(964,1491058800,3),(964,1506785400,4),(964,1522508400,3),(964,1538839800,4),(964,1554562800,3),(964,1570289400,4),(964,1586012400,3),(964,1601739000,4),(964,1617462000,3),(964,1633188600,4),(964,1648911600,3),(964,1664638200,4),(964,1680361200,3),(964,1696087800,4),(964,1712415600,3),(964,1728142200,4),(964,1743865200,3),(964,1759591800,4),(964,1775314800,3),(964,1791041400,4),(964,1806764400,3),(964,1822491000,4),(964,1838214000,3),(964,1853940600,4),(964,1869663600,3),(964,1885995000,4),(964,1901718000,3),(964,1917444600,4),(964,1933167600,3),(964,1948894200,4),(964,1964617200,3),(964,1980343800,4),(964,1996066800,3),(964,2011793400,4),(964,2027516400,3),(964,2043243000,4),(964,2058966000,3),(964,2075297400,4),(964,2091020400,3),(964,2106747000,4),(964,2122470000,3),(964,2138196600,4),(965,-2147483648,2),(965,-1672567140,1),(965,-1665392400,2),(965,-883641600,1),(965,-876128400,2),(965,-860400000,1),(965,-844678800,2),(965,-828345600,1),(965,-813229200,2),(965,57686400,3),(965,67968000,4),(965,89136000,3),(965,100022400,4),(965,120585600,3),(965,131472000,4),(965,152035200,3),(965,162921600,4),(965,183484800,3),(965,194976000,4),(965,215539200,3),(965,226425600,4),(965,246988800,3),(965,257875200,4),(965,278438400,3),(965,289324800,4),(965,309888000,3),(965,320774400,4),(965,341337600,3),(965,352224000,4),(965,372787200,3),(965,384278400,4),(965,404841600,3),(965,415728000,4),(965,436291200,3),(965,447177600,4),(965,467740800,3),(965,478627200,4),(965,499190400,3),(965,511286400,4),(965,530035200,3),(965,542736000,4),(965,561484800,3),(965,574790400,4),(965,594144000,3),(965,606240000,4),(965,625593600,3),(965,637689600,4),(965,657043200,3),(965,667929600,4),(965,688492800,3),(965,699379200,4),(965,719942400,3),(965,731433600,4),(965,751996800,3),(965,762883200,4),(965,783446400,3),(965,796147200,4),(965,814896000,3),(965,828201600,4),(965,846345600,3),(965,859651200,4),(965,877795200,3),(965,891100800,4),(965,909244800,3),(965,922550400,4),(965,941299200,3),(965,954000000,4),(965,967305600,3),(965,985449600,4),(965,1004198400,3),(965,1017504000,4),(965,1035648000,3),(965,1048953600,4),(965,1067097600,3),(965,1080403200,4),(965,1099152000,3),(965,1111852800,4),(965,1130601600,3),(965,1143907200,4),(965,1162051200,3),(965,1174752000,4),(965,1193500800,3),(965,1207411200,4),(965,1223136000,3),(965,1238860800,4),(965,1254585600,3),(965,1270310400,4),(965,1286035200,3),(965,1301760000,4),(965,1317484800,3),(965,1333209600,4),(965,1349539200,3),(965,1365264000,4),(965,1380988800,3),(965,1396713600,4),(965,1412438400,3),(965,1428163200,4),(965,1443888000,3),(965,1459612800,4),(965,1475337600,3),(965,1491062400,4),(965,1506787200,3),(965,1522512000,4),(965,1538841600,3),(965,1554566400,4),(965,1570291200,3),(965,1586016000,4),(965,1601740800,3),(965,1617465600,4),(965,1633190400,3),(965,1648915200,4),(965,1664640000,3),(965,1680364800,4),(965,1696089600,3),(965,1712419200,4),(965,1728144000,3),(965,1743868800,4),(965,1759593600,3),(965,1775318400,4),(965,1791043200,3),(965,1806768000,4),(965,1822492800,3),(965,1838217600,4),(965,1853942400,3),(965,1869667200,4),(965,1885996800,3),(965,1901721600,4),(965,1917446400,3),(965,1933171200,4),(965,1948896000,3),(965,1964620800,4),(965,1980345600,3),(965,1996070400,4),(965,2011795200,3),(965,2027520000,4),(965,2043244800,3),(965,2058969600,4),(965,2075299200,3),(965,2091024000,4),(965,2106748800,3),(965,2122473600,4),(965,2138198400,3),(966,-2147483648,2),(966,-1672567140,1),(966,-1665392400,2),(966,-883641600,1),(966,-876128400,2),(966,-860400000,1),(966,-844678800,2),(966,-828345600,1),(966,-813229200,2),(966,57686400,3),(966,67968000,4),(966,89136000,3),(966,100022400,4),(966,120585600,3),(966,131472000,4),(966,152035200,3),(966,162921600,4),(966,183484800,3),(966,194976000,4),(966,215539200,3),(966,226425600,4),(966,246988800,3),(966,257875200,4),(966,278438400,3),(966,289324800,4),(966,309888000,3),(966,320774400,4),(966,341337600,3),(966,352224000,4),(966,372787200,3),(966,386697600,4),(966,404841600,3),(966,415728000,4),(966,436291200,3),(966,447177600,4),(966,467740800,3),(966,478627200,4),(966,499190400,3),(966,511286400,4),(966,530035200,3),(966,542736000,4),(966,562089600,3),(966,574790400,4),(966,594144000,3),(966,606240000,4),(966,625593600,3),(966,636480000,4),(966,657043200,3),(966,667929600,4),(966,688492800,3),(966,699379200,4),(966,719942400,3),(966,731433600,4),(966,751996800,3),(966,762883200,4),(966,783446400,3),(966,794332800,4),(966,814896000,3),(966,828201600,4),(966,846345600,3),(966,859651200,4),(966,877795200,3),(966,891100800,4),(966,909244800,3),(966,922550400,4),(966,941299200,3),(966,954000000,4),(966,967305600,3),(966,985449600,4),(966,1004198400,3),(966,1017504000,4),(966,1035648000,3),(966,1048953600,4),(966,1067097600,3),(966,1080403200,4),(966,1099152000,3),(966,1111852800,4),(966,1130601600,3),(966,1143907200,4),(966,1162051200,3),(966,1174752000,4),(966,1193500800,3),(966,1207411200,4),(966,1223136000,3),(966,1238860800,4),(966,1254585600,3),(966,1270310400,4),(966,1286035200,3),(966,1301760000,4),(966,1317484800,3),(966,1333209600,4),(966,1349539200,3),(966,1365264000,4),(966,1380988800,3),(966,1396713600,4),(966,1412438400,3),(966,1428163200,4),(966,1443888000,3),(966,1459612800,4),(966,1475337600,3),(966,1491062400,4),(966,1506787200,3),(966,1522512000,4),(966,1538841600,3),(966,1554566400,4),(966,1570291200,3),(966,1586016000,4),(966,1601740800,3),(966,1617465600,4),(966,1633190400,3),(966,1648915200,4),(966,1664640000,3),(966,1680364800,4),(966,1696089600,3),(966,1712419200,4),(966,1728144000,3),(966,1743868800,4),(966,1759593600,3),(966,1775318400,4),(966,1791043200,3),(966,1806768000,4),(966,1822492800,3),(966,1838217600,4),(966,1853942400,3),(966,1869667200,4),(966,1885996800,3),(966,1901721600,4),(966,1917446400,3),(966,1933171200,4),(966,1948896000,3),(966,1964620800,4),(966,1980345600,3),(966,1996070400,4),(966,2011795200,3),(966,2027520000,4),(966,2043244800,3),(966,2058969600,4),(966,2075299200,3),(966,2091024000,4),(966,2106748800,3),(966,2122473600,4),(966,2138198400,3),(967,-2147483648,2),(967,-1672565340,1),(967,-1665390600,2),(967,-883639800,1),(967,-876126600,2),(967,-860398200,1),(967,-844677000,2),(967,-828343800,1),(967,-813227400,2),(968,-2147483648,2),(968,-1672559940,1),(968,-1665385200,2),(968,-883634400,1),(968,-876121200,2),(968,-860392800,1),(968,-844671600,2),(968,152042400,3),(968,162928800,4),(968,436298400,3),(968,447184800,4),(968,690314400,3),(968,699386400,4),(968,1165082400,3),(968,1174759200,4),(968,1193508000,3),(968,1206813600,4),(968,1224957600,3),(968,1238263200,4),(969,-2147483648,2),(969,-1672567140,1),(969,-1665392400,2),(969,-883641600,1),(969,-876128400,2),(969,-860400000,1),(969,-844678800,2),(969,-828345600,1),(969,-813229200,2),(969,57686400,3),(969,67968000,4),(969,625593600,3),(969,636480000,4),(969,657043200,3),(969,667929600,4),(969,688492800,3),(969,699379200,4),(970,-2147483648,2),(970,-1672565340,1),(970,-1665390600,2),(970,-883639800,1),(970,-876126600,2),(970,-860398200,1),(970,-844677000,2),(970,-828343800,1),(970,-813227400,2),(970,57688200,3),(970,67969800,4),(970,89137800,3),(970,100024200,4),(970,120587400,3),(970,131473800,4),(970,152037000,3),(970,162923400,4),(970,183486600,3),(970,194977800,4),(970,215541000,3),(970,226427400,4),(970,246990600,3),(970,257877000,4),(970,278440200,3),(970,289326600,4),(970,309889800,3),(970,320776200,4),(970,341339400,3),(970,352225800,4),(970,372789000,3),(970,384280200,4),(970,404843400,3),(970,415729800,4),(970,436293000,3),(970,447179400,4),(970,467742600,3),(970,478629000,4),(970,499192200,3),(970,511288200,4),(970,530037000,3),(970,542737800,4),(970,562091400,3),(970,574792200,4),(970,594145800,3),(970,606241800,4),(970,625595400,3),(970,637691400,4),(970,657045000,3),(970,667931400,4),(970,688494600,3),(970,701195400,4),(970,719944200,3),(970,731435400,4),(970,751998600,3),(970,764094600,4),(970,783448200,3),(970,796149000,4),(970,814897800,3),(970,828203400,4),(970,846347400,3),(970,859653000,4),(970,877797000,3),(970,891102600,4),(970,909246600,3),(970,922552200,4),(970,941301000,3),(970,954001800,4),(970,972750600,3),(970,985451400,4),(970,1004200200,3),(970,1017505800,4),(970,1035649800,3),(970,1048955400,4),(970,1067099400,3),(970,1080405000,4),(970,1099153800,3),(970,1111854600,4),(970,1130603400,3),(970,1143909000,4),(970,1162053000,3),(970,1174753800,4),(970,1193502600,3),(970,1207413000,4),(970,1223137800,3),(970,1238862600,4),(970,1254587400,3),(970,1270312200,4),(970,1286037000,3),(970,1301761800,4),(970,1317486600,3),(970,1333211400,4),(970,1349541000,3),(970,1365265800,4),(970,1380990600,3),(970,1396715400,4),(970,1412440200,3),(970,1428165000,4),(970,1443889800,3),(970,1459614600,4),(970,1475339400,3),(970,1491064200,4),(970,1506789000,3),(970,1522513800,4),(970,1538843400,3),(970,1554568200,4),(970,1570293000,3),(970,1586017800,4),(970,1601742600,3),(970,1617467400,4),(970,1633192200,3),(970,1648917000,4),(970,1664641800,3),(970,1680366600,4),(970,1696091400,3),(970,1712421000,4),(970,1728145800,3),(970,1743870600,4),(970,1759595400,3),(970,1775320200,4),(970,1791045000,3),(970,1806769800,4),(970,1822494600,3),(970,1838219400,4),(970,1853944200,3),(970,1869669000,4),(970,1885998600,3),(970,1901723400,4),(970,1917448200,3),(970,1933173000,4),(970,1948897800,3),(970,1964622600,4),(970,1980347400,3),(970,1996072200,4),(970,2011797000,3),(970,2027521800,4),(970,2043246600,3),(970,2058971400,4),(970,2075301000,3),(970,2091025800,4),(970,2106750600,3),(970,2122475400,4),(970,2138200200,3),(971,-2147483648,2),(971,-1672567140,1),(971,-1665392400,2),(971,-883641600,1),(971,-876128400,2),(971,-860400000,1),(971,-844678800,2),(971,-828345600,1),(971,-813229200,2),(971,57686400,3),(971,67968000,4),(971,89136000,3),(971,100022400,4),(971,120585600,3),(971,131472000,4),(971,152035200,3),(971,162921600,4),(971,183484800,3),(971,194976000,4),(971,215539200,3),(971,226425600,4),(971,246988800,3),(971,257875200,4),(971,278438400,3),(971,289324800,4),(971,309888000,3),(971,320774400,4),(971,341337600,3),(971,352224000,4),(971,372787200,3),(971,386697600,4),(971,404841600,3),(971,415728000,4),(971,436291200,3),(971,447177600,4),(971,467740800,3),(971,478627200,4),(971,499190400,3),(971,511286400,4),(971,530035200,3),(971,542736000,4),(971,562089600,3),(971,574790400,4),(971,594144000,3),(971,606240000,4),(971,625593600,3),(971,636480000,4),(971,657043200,3),(971,667929600,4),(971,688492800,3),(971,699379200,4),(971,719942400,3),(971,731433600,4),(971,751996800,3),(971,762883200,4),(971,783446400,3),(971,794332800,4),(971,814896000,3),(971,828201600,4),(971,846345600,3),(971,859651200,4),(971,877795200,3),(971,891100800,4),(971,909244800,3),(971,922550400,4),(971,941299200,3),(971,954000000,4),(971,967305600,3),(971,985449600,4),(971,1004198400,3),(971,1017504000,4),(971,1035648000,3),(971,1048953600,4),(971,1067097600,3),(971,1080403200,4),(971,1099152000,3),(971,1111852800,4),(971,1130601600,3),(971,1143907200,4),(971,1162051200,3),(971,1174752000,4),(971,1193500800,3),(971,1207411200,4),(971,1223136000,3),(971,1238860800,4),(971,1254585600,3),(971,1270310400,4),(971,1286035200,3),(971,1301760000,4),(971,1317484800,3),(971,1333209600,4),(971,1349539200,3),(971,1365264000,4),(971,1380988800,3),(971,1396713600,4),(971,1412438400,3),(971,1428163200,4),(971,1443888000,3),(971,1459612800,4),(971,1475337600,3),(971,1491062400,4),(971,1506787200,3),(971,1522512000,4),(971,1538841600,3),(971,1554566400,4),(971,1570291200,3),(971,1586016000,4),(971,1601740800,3),(971,1617465600,4),(971,1633190400,3),(971,1648915200,4),(971,1664640000,3),(971,1680364800,4),(971,1696089600,3),(971,1712419200,4),(971,1728144000,3),(971,1743868800,4),(971,1759593600,3),(971,1775318400,4),(971,1791043200,3),(971,1806768000,4),(971,1822492800,3),(971,1838217600,4),(971,1853942400,3),(971,1869667200,4),(971,1885996800,3),(971,1901721600,4),(971,1917446400,3),(971,1933171200,4),(971,1948896000,3),(971,1964620800,4),(971,1980345600,3),(971,1996070400,4),(971,2011795200,3),(971,2027520000,4),(971,2043244800,3),(971,2058969600,4),(971,2075299200,3),(971,2091024000,4),(971,2106748800,3),(971,2122473600,4),(971,2138198400,3),(972,-2147483648,1),(972,-1680508800,2),(972,-1665392400,1),(972,-883641600,2),(972,-876128400,1),(972,-860400000,2),(972,-844678800,1),(972,-828345600,2),(972,-813229200,1),(972,-71136000,3),(972,-55411200,4),(972,-37267200,3),(972,-25776000,4),(972,-5817600,3),(972,5673600,4),(972,25632000,3),(972,37728000,4),(972,57686400,3),(972,67968000,4),(972,89136000,3),(972,100022400,4),(972,120585600,3),(972,131472000,4),(972,152035200,3),(972,162921600,4),(972,183484800,3),(972,194976000,4),(972,215539200,3),(972,226425600,4),(972,246988800,3),(972,257875200,4),(972,278438400,3),(972,289324800,4),(972,309888000,3),(972,320774400,4),(972,341337600,3),(972,352224000,4),(972,372787200,3),(972,386092800,4),(972,404841600,3),(972,417542400,4),(972,436291200,3),(972,447177600,4),(972,467740800,3),(972,478627200,4),(972,499190400,3),(972,510076800,4),(972,530035200,3),(972,542736000,4),(972,562089600,3),(972,574790400,4),(972,594144000,3),(972,606240000,4),(972,625593600,3),(972,637689600,4),(972,657043200,3),(972,670348800,4),(972,686678400,3),(972,701798400,4),(972,718128000,3),(972,733248000,4),(972,749577600,3),(972,764697600,4),(972,781027200,3),(972,796147200,4),(972,812476800,3),(972,828201600,4),(972,844531200,3),(972,859651200,4),(972,875980800,3),(972,891100800,4),(972,907430400,3),(972,922550400,4),(972,938880000,3),(972,954000000,4),(972,967305600,3),(972,985449600,4),(972,1002384000,3),(972,1017504000,4),(972,1033833600,3),(972,1048953600,4),(972,1065283200,3),(972,1080403200,4),(972,1096732800,3),(972,1111852800,4),(972,1128182400,3),(972,1143907200,4),(972,1159632000,3),(972,1174752000,4),(972,1191686400,3),(972,1207411200,4),(972,1223136000,3),(972,1238860800,4),(972,1254585600,3),(972,1270310400,4),(972,1286035200,3),(972,1301760000,4),(972,1317484800,3),(972,1333209600,4),(972,1349539200,3),(972,1365264000,4),(972,1380988800,3),(972,1396713600,4),(972,1412438400,3),(972,1428163200,4),(972,1443888000,3),(972,1459612800,4),(972,1475337600,3),(972,1491062400,4),(972,1506787200,3),(972,1522512000,4),(972,1538841600,3),(972,1554566400,4),(972,1570291200,3),(972,1586016000,4),(972,1601740800,3),(972,1617465600,4),(972,1633190400,3),(972,1648915200,4),(972,1664640000,3),(972,1680364800,4),(972,1696089600,3),(972,1712419200,4),(972,1728144000,3),(972,1743868800,4),(972,1759593600,3),(972,1775318400,4),(972,1791043200,3),(972,1806768000,4),(972,1822492800,3),(972,1838217600,4),(972,1853942400,3),(972,1869667200,4),(972,1885996800,3),(972,1901721600,4),(972,1917446400,3),(972,1933171200,4),(972,1948896000,3),(972,1964620800,4),(972,1980345600,3),(972,1996070400,4),(972,2011795200,3),(972,2027520000,4),(972,2043244800,3),(972,2058969600,4),(972,2075299200,3),(972,2091024000,4),(972,2106748800,3),(972,2122473600,4),(972,2138198400,3),(973,-2147483648,2),(973,-1672567140,1),(973,-1665392400,2),(973,-883641600,1),(973,-876128400,2),(973,-860400000,1),(973,-844678800,2),(973,-828345600,1),(973,-813229200,2),(973,57686400,3),(973,67968000,4),(973,89136000,3),(973,100022400,4),(973,120585600,3),(973,131472000,4),(973,152035200,3),(973,162921600,4),(973,183484800,3),(973,194976000,4),(973,215539200,3),(973,226425600,4),(973,246988800,3),(973,257875200,4),(973,278438400,3),(973,289324800,4),(973,309888000,3),(973,320774400,4),(973,341337600,3),(973,352224000,4),(973,372787200,3),(973,384278400,4),(973,404841600,3),(973,415728000,4),(973,436291200,3),(973,447177600,4),(973,467740800,3),(973,478627200,4),(973,499190400,3),(973,511286400,4),(973,530035200,3),(973,542736000,4),(973,561484800,3),(973,574790400,4),(973,594144000,3),(973,606240000,4),(973,625593600,3),(973,637689600,4),(973,657043200,3),(973,667929600,4),(973,688492800,3),(973,699379200,4),(973,719942400,3),(973,731433600,4),(973,751996800,3),(973,762883200,4),(973,783446400,3),(973,796147200,4),(973,814896000,3),(973,828201600,4),(973,846345600,3),(973,859651200,4),(973,877795200,3),(973,891100800,4),(973,909244800,3),(973,922550400,4),(973,941299200,3),(973,954000000,4),(973,967305600,3),(973,985449600,4),(973,1004198400,3),(973,1017504000,4),(973,1035648000,3),(973,1048953600,4),(973,1067097600,3),(973,1080403200,4),(973,1099152000,3),(973,1111852800,4),(973,1130601600,3),(973,1143907200,4),(973,1162051200,3),(973,1174752000,4),(973,1193500800,3),(973,1207411200,4),(973,1223136000,3),(973,1238860800,4),(973,1254585600,3),(973,1270310400,4),(973,1286035200,3),(973,1301760000,4),(973,1317484800,3),(973,1333209600,4),(973,1349539200,3),(973,1365264000,4),(973,1380988800,3),(973,1396713600,4),(973,1412438400,3),(973,1428163200,4),(973,1443888000,3),(973,1459612800,4),(973,1475337600,3),(973,1491062400,4),(973,1506787200,3),(973,1522512000,4),(973,1538841600,3),(973,1554566400,4),(973,1570291200,3),(973,1586016000,4),(973,1601740800,3),(973,1617465600,4),(973,1633190400,3),(973,1648915200,4),(973,1664640000,3),(973,1680364800,4),(973,1696089600,3),(973,1712419200,4),(973,1728144000,3),(973,1743868800,4),(973,1759593600,3),(973,1775318400,4),(973,1791043200,3),(973,1806768000,4),(973,1822492800,3),(973,1838217600,4),(973,1853942400,3),(973,1869667200,4),(973,1885996800,3),(973,1901721600,4),(973,1917446400,3),(973,1933171200,4),(973,1948896000,3),(973,1964620800,4),(973,1980345600,3),(973,1996070400,4),(973,2011795200,3),(973,2027520000,4),(973,2043244800,3),(973,2058969600,4),(973,2075299200,3),(973,2091024000,4),(973,2106748800,3),(973,2122473600,4),(973,2138198400,3),(974,-2147483648,2),(974,-1672559940,1),(974,-1665385200,2),(974,-883634400,1),(974,-876121200,2),(974,-860392800,1),(974,-844671600,2),(974,152042400,3),(974,162928800,4),(974,436298400,3),(974,447184800,4),(974,690314400,3),(974,699386400,4),(974,1165082400,3),(974,1174759200,4),(974,1193508000,3),(974,1206813600,4),(974,1224957600,3),(974,1238263200,4),(975,-2147483648,2),(975,-1672565340,1),(975,-1665390600,2),(975,-883639800,1),(975,-876126600,2),(975,-860398200,1),(975,-844677000,2),(975,-828343800,1),(975,-813227400,2),(975,57688200,3),(975,67969800,4),(975,89137800,3),(975,100024200,4),(975,120587400,3),(975,131473800,4),(975,152037000,3),(975,162923400,4),(975,183486600,3),(975,194977800,4),(975,215541000,3),(975,226427400,4),(975,246990600,3),(975,257877000,4),(975,278440200,3),(975,289326600,4),(975,309889800,3),(975,320776200,4),(975,341339400,3),(975,352225800,4),(975,372789000,3),(975,386699400,4),(975,404843400,3),(975,415729800,4),(975,436293000,3),(975,447179400,4),(975,467742600,3),(975,478629000,4),(975,499192200,3),(975,511288200,4),(975,530037000,3),(975,542737800,4),(975,562091400,3),(975,574792200,4),(975,594145800,3),(975,606241800,4),(975,625595400,3),(975,636481800,4),(975,657045000,3),(975,667931400,4),(975,688494600,3),(975,699381000,4),(975,719944200,3),(975,731435400,4),(975,751998600,3),(975,762885000,4),(975,783448200,3),(975,794334600,4),(975,814897800,3),(975,828203400,4),(975,846347400,3),(975,859653000,4),(975,877797000,3),(975,891102600,4),(975,909246600,3),(975,922552200,4),(975,941301000,3),(975,946647000,1),(975,954001800,4),(975,972750600,3),(975,985451400,4),(975,1004200200,3),(975,1017505800,4),(975,1035649800,3),(975,1048955400,4),(975,1067099400,3),(975,1080405000,4),(975,1099153800,3),(975,1111854600,4),(975,1130603400,3),(975,1143909000,4),(975,1162053000,3),(975,1174753800,4),(975,1193502600,3),(975,1207413000,4),(975,1223137800,3),(975,1238862600,4),(975,1254587400,3),(975,1270312200,4),(975,1286037000,3),(975,1301761800,4),(975,1317486600,3),(975,1333211400,4),(975,1349541000,3),(975,1365265800,4),(975,1380990600,3),(975,1396715400,4),(975,1412440200,3),(975,1428165000,4),(975,1443889800,3),(975,1459614600,4),(975,1475339400,3),(975,1491064200,4),(975,1506789000,3),(975,1522513800,4),(975,1538843400,3),(975,1554568200,4),(975,1570293000,3),(975,1586017800,4),(975,1601742600,3),(975,1617467400,4),(975,1633192200,3),(975,1648917000,4),(975,1664641800,3),(975,1680366600,4),(975,1696091400,3),(975,1712421000,4),(975,1728145800,3),(975,1743870600,4),(975,1759595400,3),(975,1775320200,4),(975,1791045000,3),(975,1806769800,4),(975,1822494600,3),(975,1838219400,4),(975,1853944200,3),(975,1869669000,4),(975,1885998600,3),(975,1901723400,4),(975,1917448200,3),(975,1933173000,4),(975,1948897800,3),(975,1964622600,4),(975,1980347400,3),(975,1996072200,4),(975,2011797000,3),(975,2027521800,4),(975,2043246600,3),(975,2058971400,4),(975,2075301000,3),(975,2091025800,4),(975,2106750600,3),(975,2122475400,4),(975,2138200200,3),(976,-2147483648,0),(976,-1767209328,2),(976,-1206950400,1),(976,-1191355200,2),(976,-1175367600,1),(976,-1159819200,2),(976,-633812400,1),(976,-622062000,2),(976,-602276400,1),(976,-591825600,2),(976,-570740400,1),(976,-560203200,2),(976,-539118000,1),(976,-531345600,2),(976,-191358000,1),(976,-184190400,2),(976,-155156400,1),(976,-150062400,2),(976,-128890800,1),(976,-121118400,2),(976,-99946800,1),(976,-89582400,2),(976,-68410800,1),(976,-57960000,2),(976,499755600,1),(976,511243200,2),(976,530600400,1),(976,540273600,2),(976,562136400,1),(976,571204800,2),(976,1214283600,3),(976,1384056000,2),(977,-2147483648,0),(977,-1767217820,2),(977,-1206961200,1),(977,-1191366000,2),(977,-1175378400,1),(977,-1159830000,2),(977,-633823200,1),(977,-622072800,2),(977,-602287200,1),(977,-591836400,2),(977,-570751200,1),(977,-560214000,2),(977,-539128800,1),(977,-531356400,2),(977,-191368800,1),(977,-184201200,2),(977,-155167200,1),(977,-150073200,2),(977,-128901600,1),(977,-121129200,2),(977,-99957600,1),(977,-89593200,2),(977,-68421600,1),(977,-57970800,2),(977,499744800,1),(977,511232400,2),(977,530589600,1),(977,540262800,2),(977,562125600,1),(977,571194000,2),(977,592970400,1),(977,602038800,2),(977,624420000,1),(977,634698000,2),(977,938916000,1),(977,951613200,2),(977,970970400,1),(977,971571600,2),(977,1003024800,1),(977,1013907600,2),(978,-2147483648,0),(978,-1767214412,2),(978,-1206957600,1),(978,-1191362400,2),(978,-1175374800,1),(978,-1159826400,2),(978,-633819600,1),(978,-622069200,2),(978,-602283600,1),(978,-591832800,2),(978,-570747600,1),(978,-560210400,2),(978,-539125200,1),(978,-531352800,2),(978,-195426000,1),(978,-184197600,2),(978,-155163600,1),(978,-150069600,2),(978,-128898000,1),(978,-121125600,2),(978,-99954000,1),(978,-89589600,2),(978,-68418000,1),(978,-57967200,2),(978,499748400,1),(978,511236000,2),(978,530593200,1),(978,540266400,2),(978,562129200,1),(978,571197600,2),(978,592974000,1),(978,602042400,2),(978,624423600,1),(978,634701600,2),(978,656478000,1),(978,666756000,2),(978,687927600,1),(978,697600800,2),(978,719982000,1),(978,728445600,2),(978,750826800,1),(978,761709600,2),(978,782276400,1),(978,793159200,2),(978,813726000,1),(978,824004000,2),(978,844570800,1),(978,856058400,2),(978,876106800,1),(978,888717600,2),(978,908074800,1),(978,919562400,2),(978,938919600,1),(978,951616800,2),(978,970974000,1),(978,982461600,2),(978,1003028400,1),(978,1013911200,2),(978,1036292400,1),(978,1045360800,2),(978,1066532400,1),(978,1076810400,2),(978,1099364400,1),(978,1108864800,2),(978,1129431600,1),(978,1140314400,2),(978,1162695600,1),(978,1172368800,2),(978,1192330800,1),(978,1203213600,2),(978,1224385200,1),(978,1234663200,2),(978,1255834800,1),(978,1266717600,2),(978,1287284400,1),(978,1298167200,2),(978,1318734000,1),(978,1330221600,2),(978,1350788400,1),(978,1361066400,2),(978,1382238000,1),(978,1392516000,2),(978,1413687600,1),(978,1424570400,2),(978,1445137200,1),(978,1456020000,2),(978,1476586800,1),(978,1487469600,2),(978,1508036400,1),(978,1518919200,2),(978,1541300400,1),(978,1550368800,2),(979,-2147483648,0),(979,-1767211196,2),(979,-1206954000,1),(979,-1191358800,2),(979,-1175371200,1),(979,-1159822800,2),(979,-633816000,1),(979,-622065600,2),(979,-602280000,1),(979,-591829200,2),(979,-570744000,1),(979,-560206800,2),(979,-539121600,1),(979,-531349200,2),(979,-191361600,1),(979,-184194000,2),(979,-155160000,1),(979,-150066000,2),(979,-128894400,1),(979,-121122000,2),(979,-99950400,1),(979,-89586000,2),(979,-68414400,1),(979,-57963600,2),(979,499752000,1),(979,511239600,2),(979,530596800,1),(979,540270000,2),(979,562132800,1),(979,571201200,2),(979,750830400,1),(979,761713200,2),(980,-1693706400,0),(980,-1680483600,1),(980,-1663455600,2),(980,-1650150000,3),(980,-1632006000,2),(980,-1618700400,3),(980,-938905200,2),(980,-857257200,3),(980,-844556400,2),(980,-828226800,3),(980,-812502000,2),(980,-796777200,3),(980,-781052400,2),(980,-766623600,3),(980,228877200,2),(980,243997200,3),(980,260326800,2),(980,276051600,3),(980,291776400,2),(980,307501200,3),(980,323830800,2),(980,338950800,3),(980,354675600,2),(980,370400400,3),(980,386125200,2),(980,401850000,3),(980,417574800,2),(980,433299600,3),(980,449024400,2),(980,465354000,3),(980,481078800,2),(980,496803600,3),(980,512528400,2),(980,528253200,3),(980,543978000,2),(980,559702800,3),(980,575427600,2),(980,591152400,3),(980,606877200,2),(980,622602000,3),(980,638326800,2),(980,654656400,3),(980,670381200,2),(980,686106000,3),(980,701830800,2),(980,717555600,3),(980,733280400,2),(980,749005200,3),(980,764730000,2),(980,780454800,3),(980,796179600,2),(980,811904400,3),(980,828234000,2),(980,846378000,3),(980,859683600,2),(980,877827600,3),(980,891133200,2),(980,909277200,3),(980,922582800,2),(980,941331600,3),(980,954032400,2),(980,972781200,3),(980,985482000,2),(980,1004230800,3),(980,1017536400,2),(980,1035680400,3),(980,1048986000,2),(980,1067130000,3),(980,1080435600,2),(980,1099184400,3),(980,1111885200,2),(980,1130634000,3),(980,1143334800,2),(980,1162083600,3),(980,1174784400,2),(980,1193533200,3),(980,1206838800,2),(980,1224982800,3),(980,1238288400,2),(980,1256432400,3),(980,1269738000,2),(980,1288486800,3),(980,1301187600,2),(980,1319936400,3),(980,1332637200,2),(980,1351386000,3),(980,1364691600,2),(980,1382835600,3),(980,1396141200,2),(980,1414285200,3),(980,1427590800,2),(980,1445734800,3),(980,1459040400,2),(980,1477789200,3),(980,1490490000,2),(980,1509238800,3),(980,1521939600,2),(980,1540688400,3),(980,1553994000,2),(980,1572138000,3),(980,1585443600,2),(980,1603587600,3),(980,1616893200,2),(980,1635642000,3),(980,1648342800,2),(980,1667091600,3),(980,1679792400,2),(980,1698541200,3),(980,1711846800,2),(980,1729990800,3),(980,1743296400,2),(980,1761440400,3),(980,1774746000,2),(980,1792890000,3),(980,1806195600,2),(980,1824944400,3),(980,1837645200,2),(980,1856394000,3),(980,1869094800,2),(980,1887843600,3),(980,1901149200,2),(980,1919293200,3),(980,1932598800,2),(980,1950742800,3),(980,1964048400,2),(980,1982797200,3),(980,1995498000,2),(980,2014246800,3),(980,2026947600,2),(980,2045696400,3),(980,2058397200,2),(980,2077146000,3),(980,2090451600,2),(980,2108595600,3),(980,2121901200,2),(980,2140045200,3),(981,-1633276800,0),(981,-1615136400,1),(981,-1601827200,0),(981,-1583686800,1),(981,-880214400,2),(981,-769395600,3),(981,-765392400,1),(981,-84384000,0),(981,-68662800,1),(981,-52934400,0),(981,-37213200,1),(981,-21484800,0),(981,-5763600,1),(981,9964800,0),(981,25686000,1),(981,41414400,0),(981,57740400,1),(981,73468800,0),(981,89190000,1),(981,104918400,0),(981,120639600,1),(981,126691200,0),(981,152089200,1),(981,162374400,0),(981,183538800,1),(981,199267200,0),(981,215593200,1),(981,230716800,0),(981,247042800,1),(981,262771200,0),(981,278492400,1),(981,294220800,0),(981,309942000,1),(981,325670400,0),(981,341391600,1),(981,357120000,0),(981,372841200,1),(981,388569600,0),(981,404895600,1),(981,420019200,0),(981,436345200,1),(981,452073600,0),(981,467794800,1),(981,483523200,0),(981,499244400,1),(981,514972800,0),(981,530694000,1),(981,544608000,0),(981,562143600,1),(981,576057600,0),(981,594198000,1),(981,607507200,0),(981,625647600,1),(981,638956800,0),(981,657097200,1),(981,671011200,0),(981,688546800,1),(981,702460800,0),(981,719996400,1),(981,733910400,0),(981,752050800,1),(981,765360000,0),(981,783500400,1),(981,796809600,0),(981,814950000,1),(981,828864000,0),(981,846399600,1),(981,860313600,0),(981,877849200,1),(981,891763200,0),(981,909298800,1),(981,923212800,0),(981,941353200,1),(981,954662400,0),(981,972802800,1),(981,986112000,0),(981,1004252400,1),(981,1018166400,0),(981,1035702000,1),(981,1049616000,0),(981,1067151600,1),(981,1081065600,0),(981,1099206000,1),(981,1112515200,0),(981,1130655600,1),(981,1143964800,0),(981,1162105200,1),(981,1173600000,0),(981,1194159600,1),(981,1205049600,0),(981,1225609200,1),(981,1236499200,0),(981,1257058800,1),(981,1268553600,0),(981,1289113200,1),(981,1300003200,0),(981,1320562800,1),(981,1331452800,0),(981,1352012400,1),(981,1362902400,0),(981,1383462000,1),(981,1394352000,0),(981,1414911600,1),(981,1425801600,0),(981,1446361200,1),(981,1457856000,0),(981,1478415600,1),(981,1489305600,0),(981,1509865200,1),(981,1520755200,0),(981,1541314800,1),(981,1552204800,0),(981,1572764400,1),(981,1583654400,0),(981,1604214000,1),(981,1615708800,0),(981,1636268400,1),(981,1647158400,0),(981,1667718000,1),(981,1678608000,0),(981,1699167600,1),(981,1710057600,0),(981,1730617200,1),(981,1741507200,0),(981,1762066800,1),(981,1772956800,0),(981,1793516400,1),(981,1805011200,0),(981,1825570800,1),(981,1836460800,0),(981,1857020400,1),(981,1867910400,0),(981,1888470000,1),(981,1899360000,0),(981,1919919600,1),(981,1930809600,0),(981,1951369200,1),(981,1962864000,0),(981,1983423600,1),(981,1994313600,0),(981,2014873200,1),(981,2025763200,0),(981,2046322800,1),(981,2057212800,0),(981,2077772400,1),(981,2088662400,0),(981,2109222000,1),(981,2120112000,0),(981,2140671600,1),(982,-2147483648,0),(982,-2131645536,2),(982,-1696276800,1),(982,-1680469200,2),(982,-1632074400,1),(982,-1615143600,2),(982,-1566763200,1),(982,-1557090000,2),(982,-1535486400,1),(982,-1524949200,2),(982,-1504468800,1),(982,-1493413200,2),(982,-1472414400,1),(982,-1461963600,2),(982,-1440964800,1),(982,-1429390800,2),(982,-1409515200,1),(982,-1396731600,2),(982,-1376856000,1),(982,-1366491600,2),(982,-1346616000,1),(982,-1333832400,2),(982,-1313956800,1),(982,-1303678800,2),(982,-1282507200,1),(982,-1272661200,2),(982,-1251057600,1),(982,-1240088400,2),(982,-1219608000,1),(982,-1207429200,2),(982,-1188763200,1),(982,-1175979600,2),(982,-1157313600,1),(982,-1143925200,2),(982,-1124049600,1),(982,-1113771600,2),(982,-1091390400,1),(982,-1081026000,2),(982,-1059854400,1),(982,-1050786000,2),(982,-1030910400,1),(982,-1018126800,2),(982,-999460800,1),(982,-986677200,2),(982,-965592000,1),(982,-955227600,2),(982,-935956800,1),(982,-923173200,2),(982,-904507200,1),(982,-891723600,2),(982,-880221600,3),(982,-769395600,4),(982,-765399600,2),(982,-747252000,1),(982,-733950000,2),(982,-715802400,1),(982,-702500400,2),(982,-684352800,1),(982,-671050800,2),(982,-652903200,1),(982,-639601200,2),(982,-589399200,1),(982,-576097200,2),(982,-557949600,1),(982,-544647600,2),(982,-526500000,1),(982,-513198000,2),(982,-495050400,1),(982,-481748400,2),(982,-431546400,1),(982,-418244400,2),(982,-400096800,1),(982,-386794800,2),(982,-368647200,1),(982,-355345200,2),(982,-337197600,1),(982,-323895600,2),(982,-242244000,1),(982,-226522800,2),(982,-210794400,1),(982,-195073200,2),(982,-179344800,1),(982,-163623600,2),(982,-147895200,1),(982,-131569200,2),(982,-116445600,1),(982,-100119600,2),(982,-84391200,1),(982,-68670000,2),(982,-52941600,1),(982,-37220400,2),(982,-21492000,1),(982,-5770800,2),(982,9957600,1),(982,25678800,2),(982,41407200,1),(982,57733200,2),(982,73461600,1),(982,89182800,2),(982,104911200,1),(982,120632400,2),(982,136360800,1),(982,152082000,2),(982,167810400,1),(982,183531600,2),(982,199260000,1),(982,215586000,2),(982,230709600,1),(982,247035600,2),(982,262764000,1),(982,278485200,2),(982,294213600,1),(982,309934800,2),(982,325663200,1),(982,341384400,2),(982,357112800,1),(982,372834000,2),(982,388562400,1),(982,404888400,2),(982,420012000,1),(982,436338000,2),(982,452066400,1),(982,467787600,2),(982,483516000,1),(982,499237200,2),(982,514965600,1),(982,530686800,2),(982,544600800,1),(982,562136400,2),(982,576050400,1),(982,594190800,2),(982,607500000,1),(982,625640400,2),(982,638949600,1),(982,657090000,2),(982,671004000,1),(982,688539600,2),(982,702453600,1),(982,719989200,2),(982,733903200,1),(982,752043600,2),(982,765352800,1),(982,783493200,2),(982,796802400,1),(982,814942800,2),(982,828856800,1),(982,846392400,2),(982,860306400,1),(982,877842000,2),(982,891756000,1),(982,909291600,2),(982,923205600,1),(982,941346000,2),(982,954655200,1),(982,972795600,2),(982,986104800,1),(982,1004245200,2),(982,1018159200,1),(982,1035694800,2),(982,1049608800,1),(982,1067144400,2),(982,1081058400,1),(982,1099198800,2),(982,1112508000,1),(982,1130648400,2),(982,1143957600,1),(982,1162098000,2),(982,1173592800,1),(982,1194152400,2),(982,1205042400,1),(982,1225602000,2),(982,1236492000,1),(982,1257051600,2),(982,1268546400,1),(982,1289106000,2),(982,1299996000,1),(982,1320555600,2),(982,1331445600,1),(982,1352005200,2),(982,1362895200,1),(982,1383454800,2),(982,1394344800,1),(982,1414904400,2),(982,1425794400,1),(982,1446354000,2),(982,1457848800,1),(982,1478408400,2),(982,1489298400,1),(982,1509858000,2),(982,1520748000,1),(982,1541307600,2),(982,1552197600,1),(982,1572757200,2),(982,1583647200,1),(982,1604206800,2),(982,1615701600,1),(982,1636261200,2),(982,1647151200,1),(982,1667710800,2),(982,1678600800,1),(982,1699160400,2),(982,1710050400,1),(982,1730610000,2),(982,1741500000,1),(982,1762059600,2),(982,1772949600,1),(982,1793509200,2),(982,1805004000,1),(982,1825563600,2),(982,1836453600,1),(982,1857013200,2),(982,1867903200,1),(982,1888462800,2),(982,1899352800,1),(982,1919912400,2),(982,1930802400,1),(982,1951362000,2),(982,1962856800,1),(982,1983416400,2),(982,1994306400,1),(982,2014866000,2),(982,2025756000,1),(982,2046315600,2),(982,2057205600,1),(982,2077765200,2),(982,2088655200,1),(982,2109214800,2),(982,2120104800,1),(982,2140664400,2),(983,-2147483648,2),(983,-1694368800,1),(983,-1681671600,2),(983,-1632067200,1),(983,-1615136400,2),(983,-1029686400,1),(983,-1018198800,2),(983,-880214400,3),(983,-769395600,4),(983,-765392400,2),(983,-746035200,1),(983,-732733200,2),(983,-715795200,1),(983,-702493200,2),(983,-684345600,1),(983,-671043600,2),(983,-652896000,1),(983,-639594000,2),(983,-620755200,1),(983,-607626000,2),(983,-589392000,1),(983,-576090000,2),(983,-557942400,1),(983,-544640400,2),(983,-526492800,1),(983,-513190800,2),(983,-495043200,1),(983,-481741200,2),(983,-463593600,1),(983,-450291600,2),(983,-431539200,1),(983,-418237200,2),(983,-400089600,1),(983,-386787600,2),(983,-368640000,1),(983,-355338000,2),(983,-337190400,1),(983,-321469200,2),(983,-305740800,1),(983,-292438800,2),(983,-210787200,1),(983,-198090000,2),(983,-116438400,5),(983,-100108800,6),(983,-84384000,5),(983,-68659200,6),(983,-52934400,5),(983,-37209600,6),(983,-21484800,5),(983,-5760000,6),(983,9964800,5),(983,25689600,6),(983,41414400,5),(983,57744000,6),(983,73468800,5),(983,89193600,6),(983,104918400,5),(983,120643200,6),(983,136368000,5),(983,152092800,6),(983,167817600,5),(983,183542400,6),(983,199267200,5),(983,215596800,6),(983,230716800,5),(983,247046400,6),(983,262771200,5),(983,278496000,6),(983,294220800,5),(983,309945600,6),(983,325670400,5),(983,341395200,6),(983,357120000,5),(983,372844800,6),(983,388569600,5),(983,404899200,6),(983,420019200,5),(983,436348800,6),(983,452073600,5),(983,467798400,6),(983,483523200,5),(983,499248000,6),(983,514972800,5),(983,530697600,6),(983,544608000,5),(983,562147200,6),(983,576057600,5),(983,594201600,6),(983,607507200,5),(983,625651200,6),(983,638956800,5),(983,657100800,6),(983,671011200,5),(983,688550400,6),(983,702460800,5),(983,720000000,6),(983,733910400,5),(983,752054400,6),(983,765360000,5),(983,783504000,6),(983,796809600,5),(983,814953600,6),(983,828864000,5),(983,846403200,6),(983,860313600,5),(983,877852800,6),(983,891763200,5),(983,909302400,6),(983,923212800,5),(983,941356800,6),(983,954662400,5),(983,972806400,6),(983,986112000,5),(983,1004256000,6),(983,1018166400,5),(983,1035705600,6),(983,1049616000,5),(983,1067155200,6),(983,1081065600,5),(983,1099209600,6),(983,1112515200,5),(983,1130659200,6),(983,1136095200,2),(983,1143964800,1),(983,1162105200,2),(983,1173600000,1),(983,1194159600,2),(983,1205049600,1),(983,1225609200,2),(983,1236499200,1),(983,1257058800,2),(983,1268553600,1),(983,1289113200,2),(983,1300003200,1),(983,1320562800,2),(983,1331452800,1),(983,1352012400,2),(983,1362902400,1),(983,1383462000,2),(983,1394352000,1),(983,1414911600,2),(983,1425801600,1),(983,1446361200,2),(983,1457856000,1),(983,1478415600,2),(983,1489305600,1),(983,1509865200,2),(983,1520755200,1),(983,1541314800,2),(983,1552204800,1),(983,1572764400,2),(983,1583654400,1),(983,1604214000,2),(983,1615708800,1),(983,1636268400,2),(983,1647158400,1),(983,1667718000,2),(983,1678608000,1),(983,1699167600,2),(983,1710057600,1),(983,1730617200,2),(983,1741507200,1),(983,1762066800,2),(983,1772956800,1),(983,1793516400,2),(983,1805011200,1),(983,1825570800,2),(983,1836460800,1),(983,1857020400,2),(983,1867910400,1),(983,1888470000,2),(983,1899360000,1),(983,1919919600,2),(983,1930809600,1),(983,1951369200,2),(983,1962864000,1),(983,1983423600,2),(983,1994313600,1),(983,2014873200,2),(983,2025763200,1),(983,2046322800,2),(983,2057212800,1),(983,2077772400,2),(983,2088662400,1),(983,2109222000,2),(983,2120112000,1),(983,2140671600,2),(984,-2147483648,2),(984,-1632070800,1),(984,-1615140000,2),(984,-1601753400,1),(984,-1583697600,2),(984,-1567357200,1),(984,-1554667200,2),(984,-1534698000,1),(984,-1524074400,2),(984,-1503248400,1),(984,-1492365600,2),(984,-1471798800,1),(984,-1460916000,2),(984,-1440954000,1),(984,-1428861600,2),(984,-1409504400,1),(984,-1397412000,2),(984,-1378054800,1),(984,-1365962400,2),(984,-1346605200,1),(984,-1333908000,2),(984,-1315155600,1),(984,-1301853600,2),(984,-1283706000,1),(984,-1270404000,2),(984,-1252256400,1),(984,-1238954400,2),(984,-1220806800,1),(984,-1207504800,2),(984,-1188752400,1),(984,-1176055200,2),(984,-1157302800,1),(984,-1144000800,2),(984,-1125853200,1),(984,-1112551200,2),(984,-1094403600,1),(984,-1081101600,2),(984,-1062954000,1),(984,-1049652000,2),(984,-1031504400,1),(984,-1018202400,2),(984,-1000054800,1),(984,-986752800,2),(984,-968000400,1),(984,-955303200,2),(984,-936550800,1),(984,-880218000,3),(984,-769395600,4),(984,-765396000,2),(984,-747248400,1),(984,-733946400,2),(984,-715806000,1),(984,-702504000,2),(984,-684356400,1),(984,-671054400,2),(984,-652906800,1),(984,-634161600,2),(984,-620845200,1),(984,-602704800,2),(984,-589395600,1),(984,-576093600,2),(984,-557946000,1),(984,-544644000,2),(984,-526496400,1),(984,-513194400,2),(984,-495046800,1),(984,-481744800,2),(984,-463597200,1),(984,-450295200,2),(984,-431542800,1),(984,-418240800,2),(984,-400093200,1),(984,-384372000,2),(984,-368643600,1),(984,-352922400,2),(984,-337194000,1),(984,-321472800,2),(984,-305744400,1),(984,-289418400,2),(984,-273690000,1),(984,-257968800,2),(984,-242240400,1),(984,-226519200,2),(984,-210790800,1),(984,-195069600,2),(984,-179341200,1),(984,-163620000,2),(984,-147891600,1),(984,-131565600,2),(984,-116442000,1),(984,-100116000,2),(984,-84387600,1),(984,-68666400,2),(984,-52938000,1),(984,-37216800,2),(984,-21488400,1),(984,-5767200,2),(984,9961200,1),(984,25682400,2),(984,41410800,1),(984,57736800,2),(984,73465200,1),(984,89186400,2),(984,104914800,1),(984,120636000,2),(984,136364400,1),(984,152085600,2),(984,167814000,1),(984,183535200,2),(984,199263600,1),(984,215589600,2),(984,230713200,1),(984,247039200,2),(984,262767600,1),(984,278488800,2),(984,294217200,1),(984,309938400,2),(984,325666800,1),(984,341388000,2),(984,357116400,1),(984,372837600,2),(984,388566000,1),(984,404892000,2),(984,420015600,1),(984,436341600,2),(984,452070000,1),(984,467791200,2),(984,483519600,1),(984,499240800,2),(984,514969200,1),(984,530690400,2),(984,544604400,1),(984,562140000,2),(984,576054000,1),(984,594194400,2),(984,607503600,1),(984,625644000,2),(984,638953200,1),(984,657093600,2),(984,671007600,1),(984,688543200,2),(984,702457200,1),(984,719992800,2),(984,733906800,1),(984,752047200,2),(984,765356400,1),(984,783496800,2),(984,796806000,1),(984,814946400,2),(984,828860400,1),(984,846396000,2),(984,860310000,1),(984,877845600,2),(984,891759600,1),(984,909295200,2),(984,923209200,1),(984,941349600,2),(984,954658800,1),(984,972799200,2),(984,986108400,1),(984,1004248800,2),(984,1018162800,1),(984,1035698400,2),(984,1049612400,1),(984,1067148000,2),(984,1081062000,1),(984,1099202400,2),(984,1112511600,1),(984,1130652000,2),(984,1143961200,1),(984,1162101600,2),(984,1173596400,1),(984,1194156000,2),(984,1205046000,1),(984,1225605600,2),(984,1236495600,1),(984,1257055200,2),(984,1268550000,1),(984,1289109600,2),(984,1299999600,1),(984,1320559200,2),(984,1331449200,1),(984,1352008800,2),(984,1362898800,1),(984,1383458400,2),(984,1394348400,1),(984,1414908000,2),(984,1425798000,1),(984,1446357600,2),(984,1457852400,1),(984,1478412000,2),(984,1489302000,1),(984,1509861600,2),(984,1520751600,1),(984,1541311200,2),(984,1552201200,1),(984,1572760800,2),(984,1583650800,1),(984,1604210400,2),(984,1615705200,1),(984,1636264800,2),(984,1647154800,1),(984,1667714400,2),(984,1678604400,1),(984,1699164000,2),(984,1710054000,1),(984,1730613600,2),(984,1741503600,1),(984,1762063200,2),(984,1772953200,1),(984,1793512800,2),(984,1805007600,1),(984,1825567200,2),(984,1836457200,1),(984,1857016800,2),(984,1867906800,1),(984,1888466400,2),(984,1899356400,1),(984,1919916000,2),(984,1930806000,1),(984,1951365600,2),(984,1962860400,1),(984,1983420000,2),(984,1994310000,1),(984,2014869600,2),(984,2025759600,1),(984,2046319200,2),(984,2057209200,1),(984,2077768800,2),(984,2088658800,1),(984,2109218400,2),(984,2120108400,1),(984,2140668000,2),(985,-2147483648,0),(985,-1998663968,2),(985,-1632063600,1),(985,-1615132800,2),(985,-1600614000,1),(985,-1596816000,2),(985,-1567954800,1),(985,-1551628800,2),(985,-1536505200,1),(985,-1523203200,2),(985,-1504450800,1),(985,-1491753600,2),(985,-1473001200,1),(985,-1459699200,2),(985,-880210800,3),(985,-769395600,4),(985,-765388800,2),(985,-715791600,1),(985,-702489600,2),(985,73472400,1),(985,89193600,2),(985,104922000,1),(985,120643200,2),(985,136371600,1),(985,152092800,2),(985,167821200,1),(985,183542400,2),(985,199270800,1),(985,215596800,2),(985,230720400,1),(985,247046400,2),(985,262774800,1),(985,278496000,2),(985,294224400,1),(985,309945600,2),(985,325674000,1),(985,341395200,2),(985,357123600,1),(985,372844800,2),(985,388573200,1),(985,404899200,2),(985,420022800,1),(985,436348800,2),(985,452077200,1),(985,467798400,2),(985,483526800,1),(985,499248000,2),(985,514976400,1),(985,530697600,2),(985,544611600,1),(985,562147200,2),(985,576061200,1),(985,594201600,2),(985,607510800,1),(985,625651200,2),(985,638960400,1),(985,657100800,2),(985,671014800,1),(985,688550400,2),(985,702464400,1),(985,720000000,2),(985,733914000,1),(985,752054400,2),(985,765363600,1),(985,783504000,2),(985,796813200,1),(985,814953600,2),(985,828867600,1),(985,846403200,2),(985,860317200,1),(985,877852800,2),(985,891766800,1),(985,909302400,2),(985,923216400,1),(985,941356800,2),(985,954666000,1),(985,972806400,2),(985,986115600,1),(985,1004256000,2),(985,1018170000,1),(985,1035705600,2),(985,1049619600,1),(985,1067155200,2),(985,1081069200,1),(985,1099209600,2),(985,1112518800,1),(985,1130659200,2),(985,1143968400,1),(985,1162108800,2),(985,1173603600,1),(985,1194163200,2),(985,1205053200,1),(985,1225612800,2),(985,1236502800,1),(985,1257062400,2),(985,1268557200,1),(985,1289116800,2),(985,1300006800,1),(985,1320566400,2),(985,1331456400,1),(985,1352016000,2),(985,1362906000,1),(985,1383465600,2),(985,1394355600,1),(985,1414915200,2),(985,1425805200,1),(985,1446364800,2),(985,1457859600,1),(985,1478419200,2),(985,1489309200,1),(985,1509868800,2),(985,1520758800,1),(985,1541318400,2),(985,1552208400,1),(985,1572768000,2),(985,1583658000,1),(985,1604217600,2),(985,1615712400,1),(985,1636272000,2),(985,1647162000,1),(985,1667721600,2),(985,1678611600,1),(985,1699171200,2),(985,1710061200,1),(985,1730620800,2),(985,1741510800,1),(985,1762070400,2),(985,1772960400,1),(985,1793520000,2),(985,1805014800,1),(985,1825574400,2),(985,1836464400,1),(985,1857024000,2),(985,1867914000,1),(985,1888473600,2),(985,1899363600,1),(985,1919923200,2),(985,1930813200,1),(985,1951372800,2),(985,1962867600,1),(985,1983427200,2),(985,1994317200,1),(985,2014876800,2),(985,2025766800,1),(985,2046326400,2),(985,2057216400,1),(985,2077776000,2),(985,2088666000,1),(985,2109225600,2),(985,2120115600,1),(985,2140675200,2),(986,-2147483648,2),(986,-1664130548,1),(986,-1650137348,2),(986,-1632076148,1),(986,-1615145348,2),(986,-1598650148,1),(986,-1590100148,2),(986,-1567286948,1),(986,-1551565748,2),(986,-1535837348,1),(986,-1520116148,2),(986,-1503782948,1),(986,-1488666548,2),(986,-1472333348,1),(986,-1457216948,2),(986,-1440883748,1),(986,-1425767348,2),(986,-1409434148,1),(986,-1394317748,2),(986,-1377984548,1),(986,-1362263348,2),(986,-1346534948,1),(986,-1330813748,2),(986,-1314480548,1),(986,-1299364148,2),(986,-1283030948,1),(986,-1267914548,2),(986,-1251581348,1),(986,-1236464948,2),(986,-1220131748,1),(986,-1205015348,2),(986,-1188682148,1),(986,-1172960948,2),(986,-1156627748,1),(986,-1141511348,2),(986,-1125178148,1),(986,-1110061748,2),(986,-1096921748,4),(986,-1093728600,3),(986,-1078612200,4),(986,-1061670600,3),(986,-1048973400,4),(986,-1030221000,3),(986,-1017523800,4),(986,-998771400,3),(986,-986074200,4),(986,-966717000,3),(986,-954624600,4),(986,-935267400,3),(986,-922570200,4),(986,-903817800,3),(986,-891120600,4),(986,-872368200,6),(986,-769395600,5),(986,-765401400,4),(986,-746044200,3),(986,-733347000,4),(986,-714594600,3),(986,-701897400,4),(986,-683145000,3),(986,-670447800,4),(986,-651695400,3),(986,-638998200,4),(986,-619641000,3),(986,-606943800,4),(986,-589401000,3),(986,-576099000,4),(986,-557951400,3),(986,-544649400,4),(986,-526501800,3),(986,-513199800,4),(986,-495052200,3),(986,-481750200,4),(986,-463602600,3),(986,-450300600,4),(986,-431548200,3),(986,-418246200,4),(986,-400098600,3),(986,-386796600,4),(986,-368649000,3),(986,-355347000,4),(986,-337199400,3),(986,-323897400,4),(986,-305749800,3),(986,-289423800,4),(986,-273695400,3),(986,-257974200,4),(986,-242245800,3),(986,-226524600,4),(986,-210796200,3),(986,-195075000,4),(986,-179346600,3),(986,-163625400,4),(986,-147897000,3),(986,-131571000,4),(986,-116447400,3),(986,-100121400,4),(986,-84393000,3),(986,-68671800,4),(986,-52943400,3),(986,-37222200,4),(986,-21493800,3),(986,-5772600,4),(986,9955800,3),(986,25677000,4),(986,41405400,3),(986,57731400,4),(986,73459800,3),(986,89181000,4),(986,104909400,3),(986,120630600,4),(986,136359000,3),(986,152080200,4),(986,167808600,3),(986,183529800,4),(986,199258200,3),(986,215584200,4),(986,230707800,3),(986,247033800,4),(986,262762200,3),(986,278483400,4),(986,294211800,3),(986,309933000,4),(986,325661400,3),(986,341382600,4),(986,357111000,3),(986,372832200,4),(986,388560600,3),(986,404886600,4),(986,420010200,3),(986,436336200,4),(986,452064600,3),(986,467785800,4),(986,483514200,3),(986,499235400,4),(986,514963800,3),(986,530685000,4),(986,544591860,3),(986,562127460,4),(986,576041460,7),(986,594178260,4),(986,607491060,3),(986,625631460,4),(986,638940660,3),(986,657081060,4),(986,670995060,3),(986,688530660,4),(986,702444660,3),(986,719980260,4),(986,733894260,3),(986,752034660,4),(986,765343860,3),(986,783484260,4),(986,796793460,3),(986,814933860,4),(986,828847860,3),(986,846383460,4),(986,860297460,3),(986,877833060,4),(986,891747060,3),(986,909282660,4),(986,923196660,3),(986,941337060,4),(986,954646260,3),(986,972786660,4),(986,986095860,3),(986,1004236260,4),(986,1018150260,3),(986,1035685860,4),(986,1049599860,3),(986,1067135460,4),(986,1081049460,3),(986,1099189860,4),(986,1112499060,3),(986,1130639460,4),(986,1143948660,3),(986,1162089060,4),(986,1173583860,3),(986,1194143460,4),(986,1205033460,3),(986,1225593060,4),(986,1236483060,3),(986,1257042660,4),(986,1268537460,3),(986,1289097060,4),(986,1299987060,3),(986,1320553800,4),(986,1331443800,3),(986,1352003400,4),(986,1362893400,3),(986,1383453000,4),(986,1394343000,3),(986,1414902600,4),(986,1425792600,3),(986,1446352200,4),(986,1457847000,3),(986,1478406600,4),(986,1489296600,3),(986,1509856200,4),(986,1520746200,3),(986,1541305800,4),(986,1552195800,3),(986,1572755400,4),(986,1583645400,3),(986,1604205000,4),(986,1615699800,3),(986,1636259400,4),(986,1647149400,3),(986,1667709000,4),(986,1678599000,3),(986,1699158600,4),(986,1710048600,3),(986,1730608200,4),(986,1741498200,3),(986,1762057800,4),(986,1772947800,3),(986,1793507400,4),(986,1805002200,3),(986,1825561800,4),(986,1836451800,3),(986,1857011400,4),(986,1867901400,3),(986,1888461000,4),(986,1899351000,3),(986,1919910600,4),(986,1930800600,3),(986,1951360200,4),(986,1962855000,3),(986,1983414600,4),(986,1994304600,3),(986,2014864200,4),(986,2025754200,3),(986,2046313800,4),(986,2057203800,3),(986,2077763400,4),(986,2088653400,3),(986,2109213000,4),(986,2120103000,3),(986,2140662600,4),(987,-2147483648,2),(987,-1632060000,1),(987,-1615129200,2),(987,-880207200,3),(987,-769395600,4),(987,-765385200,2),(987,-747237600,1),(987,-733935600,2),(987,-715788000,1),(987,-702486000,2),(987,-684338400,1),(987,-671036400,2),(987,-652888800,1),(987,-639586800,2),(987,-620834400,1),(987,-608137200,2),(987,-589384800,1),(987,-576082800,2),(987,-557935200,1),(987,-544633200,2),(987,-526485600,1),(987,-513183600,2),(987,-495036000,1),(987,-481734000,2),(987,-463586400,1),(987,-450284400,2),(987,-431532000,1),(987,-418230000,2),(987,-400082400,1),(987,-386780400,2),(987,-368632800,1),(987,-355330800,2),(987,-337183200,1),(987,-323881200,2),(987,-305733600,1),(987,-292431600,2),(987,-273679200,1),(987,-260982000,2),(987,-242229600,1),(987,-226508400,2),(987,-210780000,1),(987,-195058800,2),(987,-179330400,1),(987,-163609200,2),(987,-147880800,1),(987,-131554800,2),(987,-116431200,1),(987,-100105200,2),(987,-84376800,1),(987,-68655600,2),(987,-52927200,1),(987,-37206000,2),(987,-21477600,1),(987,-5756400,2),(987,9972000,1),(987,25693200,2),(987,41421600,1),(987,57747600,2),(987,73476000,1),(987,89197200,2),(987,104925600,1),(987,120646800,2),(987,136375200,1),(987,152096400,2),(987,167824800,1),(987,183546000,2),(987,199274400,1),(987,215600400,2),(987,230724000,1),(987,247050000,2),(987,262778400,1),(987,278499600,2),(987,294228000,1),(987,309949200,2),(987,325677600,1),(987,341398800,2),(987,357127200,1),(987,372848400,2),(987,388576800,1),(987,404902800,2),(987,420026400,1),(987,436352400,2),(987,452080800,1),(987,467802000,2),(987,483530400,1),(987,499251600,2),(987,514980000,1),(987,530701200,2),(987,544615200,1),(987,562150800,2),(987,576064800,1),(987,594205200,2),(987,607514400,1),(987,625654800,2),(987,638964000,1),(987,657104400,2),(987,671018400,1),(987,688554000,2),(987,702468000,1),(987,720003600,2),(987,733917600,1),(987,752058000,2),(987,765367200,1),(987,783507600,2),(987,796816800,1),(987,814957200,2),(987,828871200,1),(987,846406800,2),(987,860320800,1),(987,877856400,2),(987,891770400,1),(987,909306000,2),(987,923220000,1),(987,941360400,2),(987,954669600,1),(987,972810000,2),(987,986119200,1),(987,1004259600,2),(987,1018173600,1),(987,1035709200,2),(987,1049623200,1),(987,1067158800,2),(987,1081072800,1),(987,1099213200,2),(987,1112522400,1),(987,1130662800,2),(987,1143972000,1),(987,1162112400,2),(987,1173607200,1),(987,1194166800,2),(987,1205056800,1),(987,1225616400,2),(987,1236506400,1),(987,1257066000,2),(987,1268560800,1),(987,1289120400,2),(987,1300010400,1),(987,1320570000,2),(987,1331460000,1),(987,1352019600,2),(987,1362909600,1),(987,1383469200,2),(987,1394359200,1),(987,1414918800,2),(987,1425808800,1),(987,1446368400,2),(987,1457863200,1),(987,1478422800,2),(987,1489312800,1),(987,1509872400,2),(987,1520762400,1),(987,1541322000,2),(987,1552212000,1),(987,1572771600,2),(987,1583661600,1),(987,1604221200,2),(987,1615716000,1),(987,1636275600,2),(987,1647165600,1),(987,1667725200,2),(987,1678615200,1),(987,1699174800,2),(987,1710064800,1),(987,1730624400,2),(987,1741514400,1),(987,1762074000,2),(987,1772964000,1),(987,1793523600,2),(987,1805018400,1),(987,1825578000,2),(987,1836468000,1),(987,1857027600,2),(987,1867917600,1),(987,1888477200,2),(987,1899367200,1),(987,1919926800,2),(987,1930816800,1),(987,1951376400,2),(987,1962871200,1),(987,1983430800,2),(987,1994320800,1),(987,2014880400,2),(987,2025770400,1),(987,2046330000,2),(987,2057220000,1),(987,2077779600,2),(987,2088669600,1),(987,2109229200,2),(987,2120119200,1),(987,2140678800,2),(988,-2147483648,0),(988,-2030202084,2),(988,-1632063600,1),(988,-1615132800,2),(988,-1251651600,1),(988,-1238349600,2),(988,-1220202000,1),(988,-1206900000,2),(988,-1188752400,1),(988,-1175450400,2),(988,-1156698000,1),(988,-1144000800,2),(988,-1125248400,1),(988,-1111946400,2),(988,-1032714000,1),(988,-1016992800,2),(988,-1001264400,1),(988,-986148000,2),(988,-969814800,1),(988,-954093600,2),(988,-937760400,1),(988,-922039200,2),(988,-906310800,1),(988,-890589600,2),(988,-880210800,3),(988,-769395600,4),(988,-765388800,2),(988,-748450800,1),(988,-732729600,2),(988,-715791600,1),(988,-702489600,2),(988,-684342000,1),(988,-671040000,2),(988,-652892400,1),(988,-639590400,2),(988,-620838000,1),(988,-608140800,2),(988,-589388400,1),(988,-576086400,2),(988,-557938800,1),(988,-544636800,2),(988,-526489200,1),(988,-513187200,2),(988,-495039600,1),(988,-481737600,2),(988,-463590000,1),(988,-450288000,2),(988,-431535600,1),(988,-418233600,2),(988,-400086000,1),(988,-386784000,2),(988,-337186800,1),(988,-321465600,2),(988,-305737200,5),(989,-2147483648,2),(989,-1632056400,1),(989,-1615125600,2),(989,-1596978000,1),(989,-1583164800,2),(989,-880203600,3),(989,-769395600,4),(989,-765381600,2),(989,-147884400,5),(989,-131554800,2),(989,-81961200,6),(989,325677600,7),(989,341398800,6),(989,357127200,7),(989,372848400,6),(989,388576800,7),(989,404902800,6),(989,420026400,7),(989,436352400,6),(989,452080800,7),(989,467802000,6),(989,483530400,7),(989,499251600,6),(989,514980000,7),(989,530701200,6),(989,544615200,7),(989,562150800,6),(989,576064800,7),(989,594205200,6),(989,607514400,7),(989,625654800,6),(989,638964000,7),(989,657104400,6),(989,671018400,7),(989,688554000,6),(989,702468000,7),(989,720003600,6),(989,733917600,7),(989,752058000,6),(989,765367200,7),(989,783507600,6),(989,796816800,7),(989,814957200,6),(989,828871200,7),(989,846406800,6),(989,860320800,7),(989,877856400,6),(989,891770400,7),(989,909306000,6),(989,923220000,7),(989,941360400,6),(989,954669600,7),(989,972810000,6),(989,986119200,7),(989,1004259600,6),(989,1018173600,7),(989,1035709200,6),(989,1049623200,7),(989,1067158800,6),(989,1081072800,7),(989,1099213200,6),(989,1112522400,7),(989,1130662800,6),(989,1143972000,7),(989,1162112400,6),(989,1173607200,7),(989,1194166800,6),(989,1205056800,7),(989,1225616400,6),(989,1236506400,7),(989,1257066000,6),(989,1268560800,7),(989,1289120400,6),(989,1300010400,7),(989,1320570000,6),(989,1331460000,7),(989,1352019600,6),(989,1362909600,7),(989,1383469200,6),(989,1394359200,7),(989,1414918800,6),(989,1425808800,7),(989,1446368400,6),(989,1457863200,7),(989,1478422800,6),(989,1489312800,7),(989,1509872400,6),(989,1520762400,7),(989,1541322000,6),(989,1552212000,7),(989,1572771600,6),(989,1583661600,7),(989,1604221200,6),(989,1615716000,7),(989,1636275600,6),(989,1647165600,7),(989,1667725200,6),(989,1678615200,7),(989,1699174800,6),(989,1710064800,7),(989,1730624400,6),(989,1741514400,7),(989,1762074000,6),(989,1772964000,7),(989,1793523600,6),(989,1805018400,7),(989,1825578000,6),(989,1836468000,7),(989,1857027600,6),(989,1867917600,7),(989,1888477200,6),(989,1899367200,7),(989,1919926800,6),(989,1930816800,7),(989,1951376400,6),(989,1962871200,7),(989,1983430800,6),(989,1994320800,7),(989,2014880400,6),(989,2025770400,7),(989,2046330000,6),(989,2057220000,7),(989,2077779600,6),(989,2088669600,7),(989,2109229200,6),(989,2120119200,7),(989,2140678800,6),(990,-2147483648,1),(990,-1892661434,2),(990,-1688410800,1),(990,-1619205434,3),(990,-1593806400,1),(990,-1335986234,4),(990,-1317585600,2),(990,-1304362800,4),(990,-1286049600,2),(990,-1272826800,4),(990,-1254513600,2),(990,-1241290800,4),(990,-1222977600,2),(990,-1209754800,4),(990,-1191355200,2),(990,-1178132400,3),(990,-870552000,2),(990,-865278000,3),(990,-740520000,5),(990,-736376400,3),(990,-718056000,2),(990,-713649600,3),(990,-36619200,6),(990,-23922000,7),(990,-3355200,6),(990,7527600,7),(990,24465600,6),(990,37767600,7),(990,55915200,6),(990,69217200,7),(990,87969600,6),(990,100666800,7),(990,118209600,6),(990,132116400,7),(990,150868800,6),(990,163566000,7),(990,182318400,6),(990,195620400,7),(990,213768000,6),(990,227070000,7),(990,245217600,6),(990,258519600,7),(990,277272000,6),(990,289969200,7),(990,308721600,6),(990,321418800,7),(990,340171200,6),(990,353473200,7),(990,371620800,6),(990,384922800,7),(990,403070400,6),(990,416372400,7),(990,434520000,6),(990,447822000,7),(990,466574400,6),(990,479271600,7),(990,498024000,6),(990,510721200,7),(990,529473600,6),(990,545194800,7),(990,560923200,6),(990,574225200,7),(990,592372800,6),(990,605674800,7),(990,624427200,6),(990,637124400,7),(990,653457600,6),(990,668574000,7),(990,687326400,6),(990,700628400,7),(990,718776000,6),(990,732078000,7),(990,750225600,6),(990,763527600,7),(990,781675200,6),(990,794977200,7),(990,813729600,6),(990,826426800,7),(990,845179200,6),(990,859690800,7),(990,876628800,6),(990,889930800,7),(990,906868800,6),(990,923194800,7),(990,939528000,6),(990,952830000,7),(990,971582400,6),(990,984279600,7),(990,1003032000,6),(990,1015729200,7),(990,1034481600,6),(990,1047178800,7),(990,1065931200,6),(990,1079233200,7),(990,1097380800,6),(990,1110682800,7),(990,1128830400,6),(990,1142132400,7),(990,1160884800,6),(990,1173582000,7),(990,1192334400,6),(990,1206846000,7),(990,1223784000,6),(990,1237086000,7),(990,1255233600,6),(990,1270350000,7),(990,1286683200,6),(990,1304823600,7),(990,1313899200,6),(990,1335668400,7),(990,1346558400,6),(990,1367118000,7),(990,1378612800,6),(990,1398567600,7),(990,1410062400,6),(990,1463281200,7),(990,1471147200,6),(990,1494730800,7),(990,1502596800,6),(990,1526180400,7),(990,1534046400,6),(990,1554606000,7),(990,1567915200,6),(990,1586055600,7),(990,1599364800,6),(990,1617505200,7),(990,1630814400,6),(990,1648954800,7),(990,1662264000,6),(990,1680404400,7),(990,1693713600,6),(990,1712458800,7),(990,1725768000,6),(990,1743908400,7),(990,1757217600,6),(990,1775358000,7),(990,1788667200,6),(990,1806807600,7),(990,1820116800,6),(990,1838257200,7),(990,1851566400,6),(990,1870311600,7),(990,1883016000,6),(990,1901761200,7),(990,1915070400,6),(990,1933210800,7),(990,1946520000,6),(990,1964660400,7),(990,1977969600,6),(990,1996110000,7),(990,2009419200,6),(990,2027559600,7),(990,2040868800,6),(990,2059614000,7),(990,2072318400,6),(990,2091063600,7),(990,2104372800,6),(990,2122513200,7),(990,2135822400,6),(991,-2147483648,1),(991,-1178124152,4),(991,-36619200,2),(991,-23922000,3),(991,-3355200,2),(991,7527600,3),(991,24465600,2),(991,37767600,3),(991,55915200,2),(991,69217200,3),(991,87969600,2),(991,100666800,3),(991,118209600,2),(991,132116400,3),(991,150868800,2),(991,163566000,3),(991,182318400,2),(991,195620400,3),(991,213768000,2),(991,227070000,3),(991,245217600,2),(991,258519600,3),(991,277272000,2),(991,289969200,3),(991,308721600,2),(991,321418800,3),(991,340171200,2),(991,353473200,3),(991,371620800,2),(991,384922800,5),(991,403070400,6),(991,416372400,5),(991,434520000,6),(991,447822000,5),(991,466574400,6),(991,479271600,5),(991,498024000,6),(991,510721200,5),(991,529473600,6),(991,545194800,5),(991,560923200,6),(991,574225200,5),(991,592372800,6),(991,605674800,5),(991,624427200,6),(991,637124400,5),(991,653457600,6),(991,668574000,5),(991,687326400,6),(991,700628400,5),(991,718776000,6),(991,732078000,5),(991,750225600,6),(991,763527600,5),(991,781675200,6),(991,794977200,5),(991,813729600,6),(991,826426800,5),(991,845179200,6),(991,859690800,5),(991,876628800,6),(991,889930800,5),(991,906868800,6),(991,923194800,5),(991,939528000,6),(991,952830000,5),(991,971582400,6),(991,984279600,5),(991,1003032000,6),(991,1015729200,5),(991,1034481600,6),(991,1047178800,5),(991,1065931200,6),(991,1079233200,5),(991,1097380800,6),(991,1110682800,5),(991,1128830400,6),(991,1142132400,5),(991,1160884800,6),(991,1173582000,5),(991,1192334400,6),(991,1206846000,5),(991,1223784000,6),(991,1237086000,5),(991,1255233600,6),(991,1270350000,5),(991,1286683200,6),(991,1304823600,5),(991,1313899200,6),(991,1335668400,5),(991,1346558400,6),(991,1367118000,5),(991,1378612800,6),(991,1398567600,5),(991,1410062400,6),(991,1463281200,5),(991,1471147200,6),(991,1494730800,5),(991,1502596800,6),(991,1526180400,5),(991,1534046400,6),(991,1554606000,5),(991,1567915200,6),(991,1586055600,5),(991,1599364800,6),(991,1617505200,5),(991,1630814400,6),(991,1648954800,5),(991,1662264000,6),(991,1680404400,5),(991,1693713600,6),(991,1712458800,5),(991,1725768000,6),(991,1743908400,5),(991,1757217600,6),(991,1775358000,5),(991,1788667200,6),(991,1806807600,5),(991,1820116800,6),(991,1838257200,5),(991,1851566400,6),(991,1870311600,5),(991,1883016000,6),(991,1901761200,5),(991,1915070400,6),(991,1933210800,5),(991,1946520000,6),(991,1964660400,5),(991,1977969600,6),(991,1996110000,5),(991,2009419200,6),(991,2027559600,5),(991,2040868800,6),(991,2059614000,5),(991,2072318400,6),(991,2091063600,5),(991,2104372800,6),(991,2122513200,5),(991,2135822400,6),(992,-2147483648,1),(992,-1402813824,3),(992,-1311534000,2),(992,-1300996800,3),(992,-933534000,2),(992,-925675200,3),(992,-902084400,2),(992,-893620800,3),(992,-870030000,2),(992,-862171200,3),(992,-775681200,2),(992,-767822400,3),(992,-744231600,2),(992,-736372800,3),(992,-144702000,2),(992,-134251200,3),(992,-113425200,2),(992,-102542400,3),(992,-86295600,2),(992,-72907200,3),(992,-54154800,2),(992,-41457600,3),(992,-21495600,2),(992,-5774400,3),(992,9954000,2),(992,25675200,3),(992,41403600,2),(992,57729600,3),(992,73458000,2),(992,87364800,3),(992,104907600,2),(992,118900800,3),(992,136357200,2),(992,150436800,3),(992,167806800,2),(992,183528000,3),(992,199256400,2),(992,215582400,3),(992,230706000,2),(992,247032000,3),(992,263365200,2),(992,276667200,3),(992,290581200,2),(992,308721600,3),(992,322030800,2),(992,340171200,3),(992,358318800,2),(992,371620800,3),(992,389768400,2),(992,403070400,3),(992,421218000,2),(992,434520000,3),(992,452667600,2),(992,466574400,3),(992,484117200,2),(992,498024000,3),(992,511333200,2),(992,529473600,3),(992,542782800,2),(992,560923200,3),(992,574837200,2),(992,592372800,3),(992,606286800,2),(992,623822400,3),(992,638946000,2),(992,655876800,3),(992,671000400,2),(992,687330000,4),(992,702450000,2),(992,718779600,4),(992,733899600,2),(992,750229200,4),(992,765349200,2),(992,781678800,4),(992,796798800,2),(992,813128400,4),(992,828853200,2),(992,844578000,4),(992,860302800,2),(992,876632400,4),(992,891147600,5),(992,909291600,4),(992,922597200,5),(992,941346000,4),(992,954651600,5),(992,972795600,4),(992,986101200,5),(992,1004245200,4),(992,1018155600,5),(992,1035694800,4),(992,1049605200,5),(992,1067144400,4),(992,1080450000,5),(992,1162098000,4),(992,1173589200,5),(992,1193547600,4),(992,1205643600,5),(992,1224997200,4),(992,1236488400,5),(992,1256446800,4),(992,1268542800,5),(992,1288501200,4),(992,1300597200,5),(992,1321160400,4),(992,1333256400,5),(992,1352005200,4),(992,1362891600,5),(992,1383454800,4),(992,1394341200,5),(992,1414904400,4),(992,1425790800,5),(992,1446354000,4),(992,1457845200,5),(992,1478408400,4),(992,1489294800,5),(992,1509858000,4),(992,1520744400,5),(992,1541307600,4),(992,1552194000,5),(992,1572757200,4),(992,1583643600,5),(992,1604206800,4),(992,1615698000,5),(992,1636261200,4),(992,1647147600,5),(992,1667710800,4),(992,1678597200,5),(992,1699160400,4),(992,1710046800,5),(992,1730610000,4),(992,1741496400,5),(992,1762059600,4),(992,1772946000,5),(992,1793509200,4),(992,1805000400,5),(992,1825563600,4),(992,1836450000,5),(992,1857013200,4),(992,1867899600,5),(992,1888462800,4),(992,1899349200,5),(992,1919912400,4),(992,1930798800,5),(992,1951362000,4),(992,1962853200,5),(992,1983416400,4),(992,1994302800,5),(992,2014866000,4),(992,2025752400,5),(992,2046315600,4),(992,2057202000,5),(992,2077765200,4),(992,2088651600,5),(992,2109214800,4),(992,2120101200,5),(992,2140664400,4),(993,228877200,0),(993,243997200,1),(993,260326800,0),(993,276051600,1),(993,291776400,0),(993,307501200,1),(993,323830800,0),(993,338950800,1),(993,354675600,0),(993,370400400,1),(993,386125200,0),(993,401850000,1),(993,417574800,0),(993,433299600,1),(993,449024400,0),(993,465354000,1),(993,481078800,0),(993,496803600,1),(993,512528400,0),(993,528253200,1),(993,543978000,0),(993,559702800,1),(993,575427600,0),(993,591152400,1),(993,606877200,0),(993,622602000,1),(993,638326800,0),(993,654656400,1),(993,670381200,0),(993,686106000,1),(993,701830800,0),(993,717555600,1),(993,733280400,0),(993,749005200,1),(993,764730000,0),(993,780454800,1),(993,796179600,0),(993,811904400,1),(993,828234000,0),(993,846378000,1),(993,859683600,0),(993,877827600,1),(993,891133200,0),(993,909277200,1),(993,922582800,0),(993,941331600,1),(993,954032400,0),(993,972781200,1),(993,985482000,0),(993,1004230800,1),(993,1017536400,0),(993,1035680400,1),(993,1048986000,0),(993,1067130000,1),(993,1080435600,0),(993,1099184400,1),(993,1111885200,0),(993,1130634000,1),(993,1143334800,0),(993,1162083600,1),(993,1174784400,0),(993,1193533200,1),(993,1206838800,0),(993,1224982800,1),(993,1238288400,0),(993,1256432400,1),(993,1269738000,0),(993,1288486800,1),(993,1301187600,0),(993,1319936400,1),(993,1332637200,0),(993,1351386000,1),(993,1364691600,0),(993,1382835600,1),(993,1396141200,0),(993,1414285200,1),(993,1427590800,0),(993,1445734800,1),(993,1459040400,0),(993,1477789200,1),(993,1490490000,0),(993,1509238800,1),(993,1521939600,0),(993,1540688400,1),(993,1553994000,0),(993,1572138000,1),(993,1585443600,0),(993,1603587600,1),(993,1616893200,0),(993,1635642000,1),(993,1648342800,0),(993,1667091600,1),(993,1679792400,0),(993,1698541200,1),(993,1711846800,0),(993,1729990800,1),(993,1743296400,0),(993,1761440400,1),(993,1774746000,0),(993,1792890000,1),(993,1806195600,0),(993,1824944400,1),(993,1837645200,0),(993,1856394000,1),(993,1869094800,0),(993,1887843600,1),(993,1901149200,0),(993,1919293200,1),(993,1932598800,0),(993,1950742800,1),(993,1964048400,0),(993,1982797200,1),(993,1995498000,0),(993,2014246800,1),(993,2026947600,0),(993,2045696400,1),(993,2058397200,0),(993,2077146000,1),(993,2090451600,0),(993,2108595600,1),(993,2121901200,0),(993,2140045200,1),(995,-1633280400,0),(995,-1615140000,1),(995,-1601830800,0),(995,-1583690400,1),(995,-880218000,2),(995,-769395600,3),(995,-765396000,1),(995,-84387600,0),(995,-68666400,1),(995,-52938000,0),(995,-37216800,1),(995,-21488400,0),(995,-5767200,1),(995,9961200,0),(995,25682400,1),(995,41410800,0),(995,57736800,1),(995,73465200,0),(995,89186400,1),(995,104914800,0),(995,120636000,1),(995,126687600,0),(995,152085600,1),(995,162370800,0),(995,183535200,1),(995,199263600,0),(995,215589600,1),(995,230713200,0),(995,247039200,1),(995,262767600,0),(995,278488800,1),(995,294217200,0),(995,309938400,1),(995,325666800,0),(995,341388000,1),(995,357116400,0),(995,372837600,1),(995,388566000,0),(995,404892000,1),(995,420015600,0),(995,436341600,1),(995,452070000,0),(995,467791200,1),(995,483519600,0),(995,499240800,1),(995,514969200,0),(995,530690400,1),(995,544604400,0),(995,562140000,1),(995,576054000,0),(995,594194400,1),(995,607503600,0),(995,625644000,1),(995,638953200,0),(995,657093600,1),(995,671007600,0),(995,688543200,1),(995,702457200,0),(995,719992800,1),(995,733906800,0),(995,752047200,1),(995,765356400,0),(995,783496800,1),(995,796806000,0),(995,814946400,1),(995,828860400,0),(995,846396000,1),(995,860310000,0),(995,877845600,1),(995,891759600,0),(995,909295200,1),(995,923209200,0),(995,941349600,1),(995,954658800,0),(995,972799200,1),(995,986108400,0),(995,1004248800,1),(995,1018162800,0),(995,1035698400,1),(995,1049612400,0),(995,1067148000,1),(995,1081062000,0),(995,1099202400,1),(995,1112511600,0),(995,1130652000,1),(995,1143961200,0),(995,1162101600,1),(995,1173596400,0),(995,1194156000,1),(995,1205046000,0),(995,1225605600,1),(995,1236495600,0),(995,1257055200,1),(995,1268550000,0),(995,1289109600,1),(995,1299999600,0),(995,1320559200,1),(995,1331449200,0),(995,1352008800,1),(995,1362898800,0),(995,1383458400,1),(995,1394348400,0),(995,1414908000,1),(995,1425798000,0),(995,1446357600,1),(995,1457852400,0),(995,1478412000,1),(995,1489302000,0),(995,1509861600,1),(995,1520751600,0),(995,1541311200,1),(995,1552201200,0),(995,1572760800,1),(995,1583650800,0),(995,1604210400,1),(995,1615705200,0),(995,1636264800,1),(995,1647154800,0),(995,1667714400,1),(995,1678604400,0),(995,1699164000,1),(995,1710054000,0),(995,1730613600,1),(995,1741503600,0),(995,1762063200,1),(995,1772953200,0),(995,1793512800,1),(995,1805007600,0),(995,1825567200,1),(995,1836457200,0),(995,1857016800,1),(995,1867906800,0),(995,1888466400,1),(995,1899356400,0),(995,1919916000,1),(995,1930806000,0),(995,1951365600,1),(995,1962860400,0),(995,1983420000,1),(995,1994310000,0),(995,2014869600,1),(995,2025759600,0),(995,2046319200,1),(995,2057209200,0),(995,2077768800,1),(995,2088658800,0),(995,2109218400,1),(995,2120108400,0),(995,2140668000,1),(996,-2147483648,2),(996,-929844000,1),(996,-923108400,2),(996,-906170400,1),(996,-892868400,2),(996,-875844000,1),(996,-857790000,2),(996,-844308000,1),(996,-825822000,2),(996,-812685600,1),(996,-794199600,2),(996,-779853600,1),(996,-762663600,2),(996,-399088800,1),(996,-386650800,2),(996,-368330400,1),(996,-355114800,2),(996,-336790800,1),(996,-323654400,2),(996,-305168400,1),(996,-292032000,2),(996,-273632400,1),(996,-260496000,2),(996,-242096400,1),(996,-228960000,2),(996,-210560400,1),(996,-197424000,2),(996,-178938000,1),(996,-165801600,2),(996,-147402000,1),(996,-134265600,2),(996,-115866000,1),(996,-102643200,2),(996,-84330000,1),(996,-71107200,2),(996,-52707600,1),(996,-39484800,2),(996,-21171600,1),(996,-7948800,2),(996,10364400,1),(996,23587200,2),(996,41900400,1),(996,55123200,2),(996,73522800,1),(996,86745600,2),(996,105058800,1),(996,118281600,2),(996,136594800,1),(996,149817600,2),(996,168130800,1),(996,181353600,2),(996,199753200,1),(996,212976000,2),(996,231289200,1),(996,244512000,2),(996,262825200,1),(996,276048000,2),(996,294361200,1),(996,307584000,2),(996,325983600,1),(996,339206400,2),(996,357519600,1),(996,370742400,2),(996,396399600,1),(996,402278400,2),(996,426812400,1),(996,433814400,2),(996,452214000,1),(996,465436800,2),(996,483750000,1),(996,496972800,2),(996,515286000,1),(996,528508800,2),(996,546822000,1),(996,560044800,2),(996,578444400,1),(996,591667200,2),(996,610412400,1),(996,623203200,2),(996,641516400,1),(996,654739200,2),(996,673052400,1),(996,686275200,2),(996,704674800,1),(996,717897600,2),(996,736210800,1),(996,749433600,2),(996,767746800,1),(996,780969600,2),(996,799020000,3),(996,812322000,2),(996,830469600,3),(996,843771600,2),(996,861919200,3),(996,875221200,2),(996,893368800,3),(996,906670800,2),(996,925423200,3),(996,938725200,2),(996,956872800,3),(996,970174800,2),(996,988322400,3),(996,1001624400,2),(996,1019772000,3),(996,1033074000,2),(996,1051221600,3),(996,1064523600,2),(996,1083276000,3),(996,1096578000,2),(996,1114725600,3),(996,1128027600,2),(996,1146175200,3),(996,1158872400,2),(996,1177624800,3),(996,1189112400,2),(996,1209074400,3),(996,1219957200,2),(996,1240524000,3),(996,1250802000,2),(996,1272578400,3),(996,1281474000,2),(996,1284069600,1),(996,1285880400,2),(996,1400191200,1),(996,1403816400,2),(996,1406844000,1),(996,1411678800,2),(997,-2147483648,1),(997,-1691962479,2),(997,-1680471279,4),(997,-1664143200,3),(997,-1650146400,4),(997,-1633903200,3),(997,-1617487200,4),(997,-1601848800,3),(997,-1586037600,4),(997,-1570399200,3),(997,-1552168800,4),(997,-1538344800,3),(997,-1522533600,4),(997,-1517011200,6),(997,-1507500000,5),(997,-1490565600,4),(997,-1473631200,5),(997,-1460930400,4),(997,-1442786400,5),(997,-1428876000,4),(997,-1410732000,5),(997,-1396216800,4),(997,-1379282400,5),(997,-1364767200,4),(997,-1348437600,5),(997,-1333317600,4),(997,-1315778400,5),(997,-1301263200,4),(997,-1284328800,5),(997,-1269813600,4),(997,-1253484000,5),(997,-1238364000,4),(997,-1221429600,5),(997,-1206914400,4),(997,-1189980000,5),(997,-1175464800,4),(997,-1159135200,5),(997,-1143410400,4),(997,-1126476000,5),(997,-1111960800,4),(997,-1095631200,5),(997,-1080511200,4),(997,-1063576800,5),(997,-1049061600,4),(997,-1032127200,5),(997,-1017612000,4),(997,-1001282400,5),(997,-986162400,4),(997,-969228000,5),(997,-950479200,4),(997,-942012000,5),(997,-733356000,4),(997,-719445600,5),(997,-699487200,4),(997,-684972000,5),(997,-668037600,4),(997,-654732000,5),(997,-636588000,4),(997,-622072800,5),(997,-605743200,4),(997,-590623200,5),(997,-574293600,4),(997,-558568800,5),(997,-542239200,4),(997,-527119200,5),(997,-512604000,4),(997,-496274400,5),(997,-481154400,4),(997,-464220000,5),(997,-449704800,4),(997,-432165600,5),(997,-417650400,4),(997,-401320800,5),(997,-386200800,4),(997,-369266400,5),(997,-354751200,4),(997,-337816800,5),(997,-323301600,4),(997,-306972000,5),(997,-291852000,4),(997,-276732000,5),(997,-257983200,4),(997,-245282400,5),(997,-226533600,4),(997,-213228000,5),(997,-195084000,4),(997,-182383200,5),(997,-163634400,4),(997,-150933600,5),(997,-132184800,4),(997,-119484000,5),(997,-100735200,4),(997,-88034400,5),(997,-68680800,4),(997,-59004000,5),(997,-37242000,9),(997,57722400,7),(997,69818400,8),(997,89172000,7),(997,101268000,8),(997,120621600,7),(997,132717600,8),(997,152071200,7),(997,164167200,8),(997,183520800,7),(997,196221600,8),(997,214970400,7),(997,227671200,8),(997,246420000,7),(997,259120800,8),(997,278474400,7),(997,290570400,8),(997,309924000,7),(997,322020000,8),(997,341373600,7),(997,354675600,8),(997,372819600,7),(997,386125200,8),(997,404269200,7),(997,417574800,8),(997,435718800,7),(997,449024400,8),(997,467773200,7),(997,481078800,8),(997,499222800,7),(997,512528400,8),(997,530672400,7),(997,543978000,8),(997,562122000,7),(997,575427600,8),(997,593571600,7),(997,606877200,8),(997,625626000,7),(997,638326800,8),(997,657075600,7),(997,670381200,8),(997,688525200,7),(997,701830800,8),(997,719974800,7),(997,733280400,8),(997,751424400,7),(997,764730000,8),(997,782874000,7),(997,796179600,8),(997,814323600,7),(997,828234000,8),(997,846378000,7),(997,859683600,8),(997,877827600,7),(997,891133200,8),(997,909277200,7),(997,922582800,8),(997,941331600,7),(997,954032400,8),(997,972781200,7),(997,985482000,8),(997,1004230800,7),(997,1017536400,8),(997,1035680400,7),(997,1048986000,8),(997,1067130000,7),(997,1080435600,8),(997,1099184400,7),(997,1111885200,8),(997,1130634000,7),(997,1143334800,8),(997,1162083600,7),(997,1174784400,8),(997,1193533200,7),(997,1206838800,8),(997,1224982800,7),(997,1238288400,8),(997,1256432400,7),(997,1269738000,8),(997,1288486800,7),(997,1301187600,8),(997,1319936400,7),(997,1332637200,8),(997,1351386000,7),(997,1364691600,8),(997,1382835600,7),(997,1396141200,8),(997,1414285200,7),(997,1427590800,8),(997,1445734800,7),(997,1459040400,8),(997,1477789200,7),(997,1490490000,8),(997,1509238800,7),(997,1521939600,8),(997,1540688400,7),(997,1553994000,8),(997,1572138000,7),(997,1585443600,8),(997,1603587600,7),(997,1616893200,8),(997,1635642000,7),(997,1648342800,8),(997,1667091600,7),(997,1679792400,8),(997,1698541200,7),(997,1711846800,8),(997,1729990800,7),(997,1743296400,8),(997,1761440400,7),(997,1774746000,8),(997,1792890000,7),(997,1806195600,8),(997,1824944400,7),(997,1837645200,8),(997,1856394000,7),(997,1869094800,8),(997,1887843600,7),(997,1901149200,8),(997,1919293200,7),(997,1932598800,8),(997,1950742800,7),(997,1964048400,8),(997,1982797200,7),(997,1995498000,8),(997,2014246800,7),(997,2026947600,8),(997,2045696400,7),(997,2058397200,8),(997,2077146000,7),(997,2090451600,8),(997,2108595600,7),(997,2121901200,8),(997,2140045200,7),(1033,-2147483648,2),(1033,-1693700372,1),(1033,-1680484772,2),(1033,-1663453172,3),(1033,-1650147572,4),(1033,-1633213172,3),(1033,-1617488372,4),(1033,-1601158772,3),(1033,-1586038772,4),(1033,-1569709172,3),(1033,-1554589172,4),(1033,-1538259572,3),(1033,-1523139572,4),(1033,-1507501172,3),(1033,-1490566772,4),(1033,-1470176372,3),(1033,-1459117172,4),(1033,-1443997172,3),(1033,-1427667572,4),(1033,-1406672372,3),(1033,-1396217972,4),(1033,-1376950772,3),(1033,-1364768372,4),(1033,-1345414772,3),(1033,-1333318772,4),(1033,-1313792372,3),(1033,-1301264372,4),(1033,-1282256372,3),(1033,-1269814772,4),(1033,-1250720372,3),(1033,-1238365172,4),(1033,-1219184372,3),(1033,-1206915572,4),(1033,-1186957172,3),(1033,-1175465972,4),(1033,-1156025972,3),(1033,-1143411572,4),(1033,-1124489972,3),(1033,-1111961972,4),(1033,-1092953972,3),(1033,-1080512372,4),(1033,-1061331572,3),(1033,-1049062772,4),(1033,-1029190772,3),(1033,-1025745572,7),(1033,-1017613200,5),(1033,-998259600,6),(1033,-986163600,5),(1033,-966723600,6),(1033,-954109200,5),(1033,-935022000,10),(1033,-857257200,8),(1033,-844556400,9),(1033,-828226800,8),(1033,-812502000,9),(1033,-796777200,8),(1033,-781052400,9),(1033,-766623600,8),(1033,220921200,13),(1033,228877200,11),(1033,243997200,12),(1033,260326800,11),(1033,276051600,12),(1033,291776400,11),(1033,307501200,12),(1033,323830800,11),(1033,338950800,12),(1033,354675600,11),(1033,370400400,12),(1033,386125200,11),(1033,401850000,12),(1033,417574800,11),(1033,433299600,12),(1033,449024400,11),(1033,465354000,12),(1033,481078800,11),(1033,496803600,12),(1033,512528400,11),(1033,528253200,12),(1033,543978000,11),(1033,559702800,12),(1033,575427600,11),(1033,591152400,12),(1033,606877200,11),(1033,622602000,12),(1033,638326800,11),(1033,654656400,12),(1033,670381200,11),(1033,686106000,12),(1033,701830800,11),(1033,717555600,12),(1033,733280400,11),(1033,749005200,12),(1033,764730000,11),(1033,780454800,12),(1033,796179600,11),(1033,811904400,12),(1033,828234000,11),(1033,846378000,12),(1033,859683600,11),(1033,877827600,12),(1033,891133200,11),(1033,909277200,12),(1033,922582800,11),(1033,941331600,12),(1033,954032400,11),(1033,972781200,12),(1033,985482000,11),(1033,1004230800,12),(1033,1017536400,11),(1033,1035680400,12),(1033,1048986000,11),(1033,1067130000,12),(1033,1080435600,11),(1033,1099184400,12),(1033,1111885200,11),(1033,1130634000,12),(1033,1143334800,11),(1033,1162083600,12),(1033,1174784400,11),(1033,1193533200,12),(1033,1206838800,11),(1033,1224982800,12),(1033,1238288400,11),(1033,1256432400,12),(1033,1269738000,11),(1033,1288486800,12),(1033,1301187600,11),(1033,1319936400,12),(1033,1332637200,11),(1033,1351386000,12),(1033,1364691600,11),(1033,1382835600,12),(1033,1396141200,11),(1033,1414285200,12),(1033,1427590800,11),(1033,1445734800,12),(1033,1459040400,11),(1033,1477789200,12),(1033,1490490000,11),(1033,1509238800,12),(1033,1521939600,11),(1033,1540688400,12),(1033,1553994000,11),(1033,1572138000,12),(1033,1585443600,11),(1033,1603587600,12),(1033,1616893200,11),(1033,1635642000,12),(1033,1648342800,11),(1033,1667091600,12),(1033,1679792400,11),(1033,1698541200,12),(1033,1711846800,11),(1033,1729990800,12),(1033,1743296400,11),(1033,1761440400,12),(1033,1774746000,11),(1033,1792890000,12),(1033,1806195600,11),(1033,1824944400,12),(1033,1837645200,11),(1033,1856394000,12),(1033,1869094800,11),(1033,1887843600,12),(1033,1901149200,11),(1033,1919293200,12),(1033,1932598800,11),(1033,1950742800,12),(1033,1964048400,11),(1033,1982797200,12),(1033,1995498000,11),(1033,2014246800,12),(1033,2026947600,11),(1033,2045696400,12),(1033,2058397200,11),(1033,2077146000,12),(1033,2090451600,11),(1033,2108595600,12),(1033,2121901200,11),(1033,2140045200,12),(1034,-2147483648,1),(1034,-733881600,2),(1034,481078800,3),(1034,496803600,4),(1034,512528400,3),(1034,528253200,4),(1034,543978000,3),(1034,559702800,4),(1034,575427600,3),(1034,591152400,4),(1034,606877200,3),(1034,622602000,4),(1034,638326800,3),(1034,654656400,4),(1034,670381200,3),(1034,686106000,4),(1034,701830800,3),(1034,717555600,4),(1034,733280400,3),(1034,749005200,4),(1034,764730000,3),(1034,780454800,4),(1034,796179600,3),(1034,811904400,4),(1034,828234000,3),(1034,846378000,4),(1034,859683600,3),(1034,877827600,4),(1034,891133200,3),(1034,909277200,4),(1034,922582800,3),(1034,941331600,4),(1034,954032400,3),(1034,972781200,4),(1034,985482000,3),(1034,1004230800,4),(1034,1017536400,3),(1034,1035680400,4),(1034,1048986000,3),(1034,1067130000,4),(1034,1080435600,3),(1034,1099184400,4),(1034,1111885200,3),(1034,1130634000,4),(1034,1143334800,3),(1034,1162083600,4),(1034,1174784400,3),(1034,1193533200,4),(1034,1206838800,3),(1034,1224982800,4),(1034,1238288400,3),(1034,1256432400,4),(1034,1269738000,3),(1034,1288486800,4),(1034,1301187600,3),(1034,1319936400,4),(1034,1332637200,3),(1034,1351386000,4),(1034,1364691600,3),(1034,1382835600,4),(1034,1396141200,3),(1034,1414285200,4),(1034,1427590800,3),(1034,1445734800,4),(1034,1459040400,3),(1034,1477789200,4),(1034,1490490000,3),(1034,1509238800,4),(1034,1521939600,3),(1034,1540688400,4),(1034,1553994000,3),(1034,1572138000,4),(1034,1585443600,3),(1034,1603587600,4),(1034,1616893200,3),(1034,1635642000,4),(1034,1648342800,3),(1034,1667091600,4),(1034,1679792400,3),(1034,1698541200,4),(1034,1711846800,3),(1034,1729990800,4),(1034,1743296400,3),(1034,1761440400,4),(1034,1774746000,3),(1034,1792890000,4),(1034,1806195600,3),(1034,1824944400,4),(1034,1837645200,3),(1034,1856394000,4),(1034,1869094800,3),(1034,1887843600,4),(1034,1901149200,3),(1034,1919293200,4),(1034,1932598800,3),(1034,1950742800,4),(1034,1964048400,3),(1034,1982797200,4),(1034,1995498000,3),(1034,2014246800,4),(1034,2026947600,3),(1034,2045696400,4),(1034,2058397200,3),(1034,2077146000,4),(1034,2090451600,3),(1034,2108595600,4),(1034,2121901200,3),(1034,2140045200,4),(1035,-2147483648,0),(1035,-1441249932,1),(1035,-1247540400,3),(1035,354916800,2),(1035,370724400,3),(1035,386452800,2),(1035,402260400,3),(1035,417988800,2),(1035,433796400,3),(1035,449611200,2),(1035,465343200,4),(1035,481068000,5),(1035,496792800,4),(1035,512517600,5),(1035,528242400,4),(1035,543967200,5),(1035,559692000,4),(1035,575416800,5),(1035,591141600,4),(1035,606866400,6),(1035,622594800,7),(1035,638319600,6),(1035,654649200,7),(1035,670374000,4),(1035,701820000,6),(1035,717548400,7),(1035,733273200,6),(1035,748998000,7),(1035,764722800,6),(1035,780447600,7),(1035,796172400,6),(1035,811897200,7),(1035,828226800,6),(1035,846370800,7),(1035,859676400,6),(1035,877820400,7),(1035,891126000,6),(1035,909270000,7),(1035,922575600,6),(1035,941324400,7),(1035,954025200,6),(1035,972774000,7),(1035,985474800,6),(1035,1004223600,7),(1035,1017529200,6),(1035,1035673200,7),(1035,1048978800,6),(1035,1067122800,7),(1035,1080428400,6),(1035,1099177200,7),(1035,1111878000,6),(1035,1130626800,7),(1035,1143327600,6),(1035,1162076400,7),(1035,1174777200,6),(1035,1193526000,7),(1035,1206831600,6),(1035,1224975600,7),(1035,1238281200,6),(1035,1256425200,7),(1035,1269730800,6),(1035,1288479600,7),(1035,1301180400,4),(1035,1414274400,7),(1035,1459033200,4),(1036,-2147483648,1),(1036,-1686101632,3),(1036,-1182996000,2),(1036,-1178161200,3),(1036,-906861600,2),(1036,-904878000,5),(1036,-857257200,4),(1036,-844477200,5),(1036,-828237600,4),(1036,-812422800,3),(1036,-552362400,2),(1036,-541652400,3),(1036,166485600,6),(1036,186184800,7),(1036,198028800,6),(1036,213753600,7),(1036,228873600,6),(1036,244080000,7),(1036,260323200,6),(1036,275446800,3),(1036,291798000,2),(1036,307407600,3),(1036,323388000,2),(1036,338936400,3),(1036,354675600,8),(1036,370400400,9),(1036,386125200,8),(1036,401850000,9),(1036,417574800,8),(1036,433299600,9),(1036,449024400,8),(1036,465354000,9),(1036,481078800,8),(1036,496803600,9),(1036,512528400,8),(1036,528253200,9),(1036,543978000,8),(1036,559702800,9),(1036,575427600,8),(1036,591152400,9),(1036,606877200,8),(1036,622602000,9),(1036,638326800,8),(1036,654656400,9),(1036,670381200,8),(1036,686106000,9),(1036,701830800,8),(1036,717555600,9),(1036,733280400,8),(1036,749005200,9),(1036,764730000,8),(1036,780454800,9),(1036,796179600,8),(1036,811904400,9),(1036,828234000,8),(1036,846378000,9),(1036,859683600,8),(1036,877827600,9),(1036,891133200,8),(1036,909277200,9),(1036,922582800,8),(1036,941331600,9),(1036,954032400,8),(1036,972781200,9),(1036,985482000,8),(1036,1004230800,9),(1036,1017536400,8),(1036,1035680400,9),(1036,1048986000,8),(1036,1067130000,9),(1036,1080435600,8),(1036,1099184400,9),(1036,1111885200,8),(1036,1130634000,9),(1036,1143334800,8),(1036,1162083600,9),(1036,1174784400,8),(1036,1193533200,9),(1036,1206838800,8),(1036,1224982800,9),(1036,1238288400,8),(1036,1256432400,9),(1036,1269738000,8),(1036,1288486800,9),(1036,1301187600,8),(1036,1319936400,9),(1036,1332637200,8),(1036,1351386000,9),(1036,1364691600,8),(1036,1382835600,9),(1036,1396141200,8),(1036,1414285200,9),(1036,1427590800,8),(1036,1445734800,9),(1036,1459040400,8),(1036,1477789200,9),(1036,1490490000,8),(1036,1509238800,9),(1036,1521939600,8),(1036,1540688400,9),(1036,1553994000,8),(1036,1572138000,9),(1036,1585443600,8),(1036,1603587600,9),(1036,1616893200,8),(1036,1635642000,9),(1036,1648342800,8),(1036,1667091600,9),(1036,1679792400,8),(1036,1698541200,9),(1036,1711846800,8),(1036,1729990800,9),(1036,1743296400,8),(1036,1761440400,9),(1036,1774746000,8),(1036,1792890000,9),(1036,1806195600,8),(1036,1824944400,9),(1036,1837645200,8),(1036,1856394000,9),(1036,1869094800,8),(1036,1887843600,9),(1036,1901149200,8),(1036,1919293200,9),(1036,1932598800,8),(1036,1950742800,9),(1036,1964048400,8),(1036,1982797200,9),(1036,1995498000,8),(1036,2014246800,9),(1036,2026947600,8),(1036,2045696400,9),(1036,2058397200,8),(1036,2077146000,9),(1036,2090451600,8),(1036,2108595600,9),(1036,2121901200,8),(1036,2140045200,9),(1037,-2147483648,2),(1037,-1691964000,1),(1037,-1680472800,2),(1037,-1664143200,1),(1037,-1650146400,2),(1037,-1633903200,1),(1037,-1617487200,2),(1037,-1601848800,1),(1037,-1586037600,2),(1037,-1570399200,1),(1037,-1552168800,2),(1037,-1538344800,1),(1037,-1522533600,2),(1037,-1507500000,1),(1037,-1490565600,2),(1037,-1473631200,1),(1037,-1460930400,2),(1037,-1442786400,1),(1037,-1428876000,2),(1037,-1410732000,1),(1037,-1396216800,2),(1037,-1379282400,1),(1037,-1364767200,2),(1037,-1348437600,1),(1037,-1333317600,2),(1037,-1315778400,1),(1037,-1301263200,2),(1037,-1284328800,1),(1037,-1269813600,2),(1037,-1253484000,1),(1037,-1238364000,2),(1037,-1221429600,1),(1037,-1206914400,2),(1037,-1189980000,1),(1037,-1175464800,2),(1037,-1159135200,1),(1037,-1143410400,2),(1037,-1126476000,1),(1037,-1111960800,2),(1037,-1095631200,1),(1037,-1080511200,2),(1037,-1063576800,1),(1037,-1049061600,2),(1037,-1032127200,1),(1037,-1017612000,2),(1037,-1001282400,1),(1037,-986162400,2),(1037,-969228000,1),(1037,-950479200,2),(1037,-942012000,1),(1037,-904518000,3),(1037,-896050800,1),(1037,-875487600,3),(1037,-864601200,1),(1037,-844038000,3),(1037,-832546800,1),(1037,-812588400,3),(1037,-798073200,1),(1037,-781052400,3),(1037,-772066800,1),(1037,-764805600,2),(1037,-748476000,1),(1037,-733356000,2),(1037,-719445600,1),(1037,-717030000,3),(1037,-706748400,1),(1037,-699487200,2),(1037,-687996000,1),(1037,-668037600,2),(1037,-654732000,1),(1037,-636588000,2),(1037,-622072800,1),(1037,-605743200,2),(1037,-590623200,1),(1037,-574293600,2),(1037,-558568800,1),(1037,-542239200,2),(1037,-527119200,1),(1037,-512604000,2),(1037,-496274400,1),(1037,-481154400,2),(1037,-464220000,1),(1037,-449704800,2),(1037,-432165600,1),(1037,-417650400,2),(1037,-401320800,1),(1037,-386200800,2),(1037,-369266400,1),(1037,-354751200,2),(1037,-337816800,1),(1037,-323301600,2),(1037,-306972000,1),(1037,-291852000,2),(1037,-276732000,1),(1037,-257983200,2),(1037,-245282400,1),(1037,-226533600,2),(1037,-213228000,1),(1037,-195084000,2),(1037,-182383200,1),(1037,-163634400,2),(1037,-150933600,1),(1037,-132184800,2),(1037,-119484000,1),(1037,-100735200,2),(1037,-88034400,1),(1037,-68680800,2),(1037,-59004000,1),(1037,-37242000,4),(1037,57722400,6),(1037,69818400,1),(1037,89172000,2),(1037,101268000,1),(1037,120621600,2),(1037,132717600,1),(1037,152071200,2),(1037,164167200,1),(1037,183520800,2),(1037,196221600,1),(1037,214970400,2),(1037,227671200,1),(1037,246420000,2),(1037,259120800,1),(1037,278474400,2),(1037,290570400,1),(1037,309924000,2),(1037,322020000,1),(1037,341373600,2),(1037,354675600,5),(1037,372819600,6),(1037,386125200,5),(1037,404269200,6),(1037,417574800,5),(1037,435718800,6),(1037,449024400,5),(1037,467773200,6),(1037,481078800,5),(1037,499222800,6),(1037,512528400,5),(1037,530672400,6),(1037,543978000,5),(1037,562122000,6),(1037,575427600,5),(1037,593571600,6),(1037,606877200,5),(1037,625626000,6),(1037,638326800,5),(1037,657075600,6),(1037,670381200,5),(1037,688525200,6),(1037,701830800,5),(1037,719974800,6),(1037,733280400,5),(1037,751424400,6),(1037,764730000,5),(1037,782874000,6),(1037,796179600,5),(1037,814323600,6),(1037,820454400,7),(1037,828234000,5),(1037,846378000,6),(1037,859683600,5),(1037,877827600,6),(1037,891133200,5),(1037,909277200,6),(1037,922582800,5),(1037,941331600,6),(1037,954032400,5),(1037,972781200,6),(1037,985482000,5),(1037,1004230800,6),(1037,1017536400,5),(1037,1035680400,6),(1037,1048986000,5),(1037,1067130000,6),(1037,1080435600,5),(1037,1099184400,6),(1037,1111885200,5),(1037,1130634000,6),(1037,1143334800,5),(1037,1162083600,6),(1037,1174784400,5),(1037,1193533200,6),(1037,1206838800,5),(1037,1224982800,6),(1037,1238288400,5),(1037,1256432400,6),(1037,1269738000,5),(1037,1288486800,6),(1037,1301187600,5),(1037,1319936400,6),(1037,1332637200,5),(1037,1351386000,6),(1037,1364691600,5),(1037,1382835600,6),(1037,1396141200,5),(1037,1414285200,6),(1037,1427590800,5),(1037,1445734800,6),(1037,1459040400,5),(1037,1477789200,6),(1037,1490490000,5),(1037,1509238800,6),(1037,1521939600,5),(1037,1540688400,6),(1037,1553994000,5),(1037,1572138000,6),(1037,1585443600,5),(1037,1603587600,6),(1037,1616893200,5),(1037,1635642000,6),(1037,1648342800,5),(1037,1667091600,6),(1037,1679792400,5),(1037,1698541200,6),(1037,1711846800,5),(1037,1729990800,6),(1037,1743296400,5),(1037,1761440400,6),(1037,1774746000,5),(1037,1792890000,6),(1037,1806195600,5),(1037,1824944400,6),(1037,1837645200,5),(1037,1856394000,6),(1037,1869094800,5),(1037,1887843600,6),(1037,1901149200,5),(1037,1919293200,6),(1037,1932598800,5),(1037,1950742800,6),(1037,1964048400,5),(1037,1982797200,6),(1037,1995498000,5),(1037,2014246800,6),(1037,2026947600,5),(1037,2045696400,6),(1037,2058397200,5),(1037,2077146000,6),(1037,2090451600,5),(1037,2108595600,6),(1037,2121901200,5),(1037,2140045200,6),(1038,-2147483648,1),(1038,-905824800,4),(1038,-857257200,2),(1038,-844556400,3),(1038,-828226800,2),(1038,-812502000,3),(1038,-796777200,2),(1038,-788922000,1),(1038,-777942000,3),(1038,-766623600,2),(1038,407199600,1),(1038,417574800,5),(1038,433299600,6),(1038,449024400,5),(1038,465354000,6),(1038,481078800,5),(1038,496803600,6),(1038,512528400,5),(1038,528253200,6),(1038,543978000,5),(1038,559702800,6),(1038,575427600,5),(1038,591152400,6),(1038,606877200,5),(1038,622602000,6),(1038,638326800,5),(1038,654656400,6),(1038,670381200,5),(1038,686106000,6),(1038,701830800,5),(1038,717555600,6),(1038,733280400,5),(1038,749005200,6),(1038,764730000,5),(1038,780454800,6),(1038,796179600,5),(1038,811904400,6),(1038,828234000,5),(1038,846378000,6),(1038,859683600,5),(1038,877827600,6),(1038,891133200,5),(1038,909277200,6),(1038,922582800,5),(1038,941331600,6),(1038,954032400,5),(1038,972781200,6),(1038,985482000,5),(1038,1004230800,6),(1038,1017536400,5),(1038,1035680400,6),(1038,1048986000,5),(1038,1067130000,6),(1038,1080435600,5),(1038,1099184400,6),(1038,1111885200,5),(1038,1130634000,6),(1038,1143334800,5),(1038,1162083600,6),(1038,1174784400,5),(1038,1193533200,6),(1038,1206838800,5),(1038,1224982800,6),(1038,1238288400,5),(1038,1256432400,6),(1038,1269738000,5),(1038,1288486800,6),(1038,1301187600,5),(1038,1319936400,6),(1038,1332637200,5),(1038,1351386000,6),(1038,1364691600,5),(1038,1382835600,6),(1038,1396141200,5),(1038,1414285200,6),(1038,1427590800,5),(1038,1445734800,6),(1038,1459040400,5),(1038,1477789200,6),(1038,1490490000,5),(1038,1509238800,6),(1038,1521939600,5),(1038,1540688400,6),(1038,1553994000,5),(1038,1572138000,6),(1038,1585443600,5),(1038,1603587600,6),(1038,1616893200,5),(1038,1635642000,6),(1038,1648342800,5),(1038,1667091600,6),(1038,1679792400,5),(1038,1698541200,6),(1038,1711846800,5),(1038,1729990800,6),(1038,1743296400,5),(1038,1761440400,6),(1038,1774746000,5),(1038,1792890000,6),(1038,1806195600,5),(1038,1824944400,6),(1038,1837645200,5),(1038,1856394000,6),(1038,1869094800,5),(1038,1887843600,6),(1038,1901149200,5),(1038,1919293200,6),(1038,1932598800,5),(1038,1950742800,6),(1038,1964048400,5),(1038,1982797200,6),(1038,1995498000,5),(1038,2014246800,6),(1038,2026947600,5),(1038,2045696400,6),(1038,2058397200,5),(1038,2077146000,6),(1038,2090451600,5),(1038,2108595600,6),(1038,2121901200,5),(1038,2140045200,6),(1039,-2147483648,2),(1039,-1693706400,1),(1039,-1680483600,2),(1039,-1663455600,3),(1039,-1650150000,4),(1039,-1632006000,3),(1039,-1618700400,4),(1039,-938905200,3),(1039,-857257200,4),(1039,-844556400,3),(1039,-828226800,4),(1039,-812502000,3),(1039,-796777200,4),(1039,-781052400,3),(1039,-776563200,5),(1039,-765936000,1),(1039,-761180400,4),(1039,-757386000,2),(1039,-748479600,3),(1039,-733273200,4),(1039,-717631200,3),(1039,-714610800,6),(1039,-710380800,1),(1039,-701910000,4),(1039,-684975600,3),(1039,-670460400,4),(1039,-654130800,3),(1039,-639010800,4),(1039,315529200,2),(1039,323830800,7),(1039,338950800,8),(1039,354675600,7),(1039,370400400,8),(1039,386125200,7),(1039,401850000,8),(1039,417574800,7),(1039,433299600,8),(1039,449024400,7),(1039,465354000,8),(1039,481078800,7),(1039,496803600,8),(1039,512528400,7),(1039,528253200,8),(1039,543978000,7),(1039,559702800,8),(1039,575427600,7),(1039,591152400,8),(1039,606877200,7),(1039,622602000,8),(1039,638326800,7),(1039,654656400,8),(1039,670381200,7),(1039,686106000,8),(1039,701830800,7),(1039,717555600,8),(1039,733280400,7),(1039,749005200,8),(1039,764730000,7),(1039,780454800,8),(1039,796179600,7),(1039,811904400,8),(1039,828234000,7),(1039,846378000,8),(1039,859683600,7),(1039,877827600,8),(1039,891133200,7),(1039,909277200,8),(1039,922582800,7),(1039,941331600,8),(1039,954032400,7),(1039,972781200,8),(1039,985482000,7),(1039,1004230800,8),(1039,1017536400,7),(1039,1035680400,8),(1039,1048986000,7),(1039,1067130000,8),(1039,1080435600,7),(1039,1099184400,8),(1039,1111885200,7),(1039,1130634000,8),(1039,1143334800,7),(1039,1162083600,8),(1039,1174784400,7),(1039,1193533200,8),(1039,1206838800,7),(1039,1224982800,8),(1039,1238288400,7),(1039,1256432400,8),(1039,1269738000,7),(1039,1288486800,8),(1039,1301187600,7),(1039,1319936400,8),(1039,1332637200,7),(1039,1351386000,8),(1039,1364691600,7),(1039,1382835600,8),(1039,1396141200,7),(1039,1414285200,8),(1039,1427590800,7),(1039,1445734800,8),(1039,1459040400,7),(1039,1477789200,8),(1039,1490490000,7),(1039,1509238800,8),(1039,1521939600,7),(1039,1540688400,8),(1039,1553994000,7),(1039,1572138000,8),(1039,1585443600,7),(1039,1603587600,8),(1039,1616893200,7),(1039,1635642000,8),(1039,1648342800,7),(1039,1667091600,8),(1039,1679792400,7),(1039,1698541200,8),(1039,1711846800,7),(1039,1729990800,8),(1039,1743296400,7),(1039,1761440400,8),(1039,1774746000,7),(1039,1792890000,8),(1039,1806195600,7),(1039,1824944400,8),(1039,1837645200,7),(1039,1856394000,8),(1039,1869094800,7),(1039,1887843600,8),(1039,1901149200,7),(1039,1919293200,8),(1039,1932598800,7),(1039,1950742800,8),(1039,1964048400,7),(1039,1982797200,8),(1039,1995498000,7),(1039,2014246800,8),(1039,2026947600,7),(1039,2045696400,8),(1039,2058397200,7),(1039,2077146000,8),(1039,2090451600,7),(1039,2108595600,8),(1039,2121901200,7),(1039,2140045200,8),(1040,-2147483648,2),(1040,-1693706400,1),(1040,-1680483600,2),(1040,-1663455600,3),(1040,-1650150000,4),(1040,-1632006000,3),(1040,-1618700400,4),(1040,-938905200,3),(1040,-857257200,4),(1040,-844556400,3),(1040,-828226800,4),(1040,-812502000,3),(1040,-796777200,4),(1040,-781052400,3),(1040,-777866400,1),(1040,-765327600,4),(1040,-746578800,3),(1040,-733359600,4),(1040,-728517600,5),(1040,-721260000,2),(1040,-716425200,3),(1040,-701910000,4),(1040,-684975600,3),(1040,-670460400,4),(1040,-654217200,3),(1040,-639010800,4),(1040,283993200,2),(1040,291776400,6),(1040,307501200,7),(1040,323830800,6),(1040,338950800,7),(1040,354675600,6),(1040,370400400,7),(1040,386125200,6),(1040,401850000,7),(1040,417574800,6),(1040,433299600,7),(1040,449024400,6),(1040,465354000,7),(1040,481078800,6),(1040,496803600,7),(1040,512528400,6),(1040,528253200,7),(1040,543978000,6),(1040,559702800,7),(1040,575427600,6),(1040,591152400,7),(1040,606877200,6),(1040,622602000,7),(1040,638326800,6),(1040,654656400,7),(1040,670381200,6),(1040,686106000,7),(1040,701830800,6),(1040,717555600,7),(1040,733280400,6),(1040,749005200,7),(1040,764730000,6),(1040,780454800,7),(1040,796179600,6),(1040,811904400,7),(1040,828234000,6),(1040,846378000,7),(1040,859683600,6),(1040,877827600,7),(1040,891133200,6),(1040,909277200,7),(1040,922582800,6),(1040,941331600,7),(1040,954032400,6),(1040,972781200,7),(1040,985482000,6),(1040,1004230800,7),(1040,1017536400,6),(1040,1035680400,7),(1040,1048986000,6),(1040,1067130000,7),(1040,1080435600,6),(1040,1099184400,7),(1040,1111885200,6),(1040,1130634000,7),(1040,1143334800,6),(1040,1162083600,7),(1040,1174784400,6),(1040,1193533200,7),(1040,1206838800,6),(1040,1224982800,7),(1040,1238288400,6),(1040,1256432400,7),(1040,1269738000,6),(1040,1288486800,7),(1040,1301187600,6),(1040,1319936400,7),(1040,1332637200,6),(1040,1351386000,7),(1040,1364691600,6),(1040,1382835600,7),(1040,1396141200,6),(1040,1414285200,7),(1040,1427590800,6),(1040,1445734800,7),(1040,1459040400,6),(1040,1477789200,7),(1040,1490490000,6),(1040,1509238800,7),(1040,1521939600,6),(1040,1540688400,7),(1040,1553994000,6),(1040,1572138000,7),(1040,1585443600,6),(1040,1603587600,7),(1040,1616893200,6),(1040,1635642000,7),(1040,1648342800,6),(1040,1667091600,7),(1040,1679792400,6),(1040,1698541200,7),(1040,1711846800,6),(1040,1729990800,7),(1040,1743296400,6),(1040,1761440400,7),(1040,1774746000,6),(1040,1792890000,7),(1040,1806195600,6),(1040,1824944400,7),(1040,1837645200,6),(1040,1856394000,7),(1040,1869094800,6),(1040,1887843600,7),(1040,1901149200,6),(1040,1919293200,7),(1040,1932598800,6),(1040,1950742800,7),(1040,1964048400,6),(1040,1982797200,7),(1040,1995498000,6),(1040,2014246800,7),(1040,2026947600,6),(1040,2045696400,7),(1040,2058397200,6),(1040,2077146000,7),(1040,2090451600,6),(1040,2108595600,7),(1040,2121901200,6),(1040,2140045200,7),(1041,-2147483648,1),(1041,-1740355200,2),(1041,-1693702800,5),(1041,-1680483600,2),(1041,-1663455600,3),(1041,-1650150000,4),(1041,-1632006000,3),(1041,-1618700400,4),(1041,-1613826000,8),(1041,-1604278800,6),(1041,-1585530000,7),(1041,-1574038800,6),(1041,-1552266000,7),(1041,-1539997200,6),(1041,-1520557200,7),(1041,-1507510800,6),(1041,-1490576400,7),(1041,-1473642000,6),(1041,-1459126800,7),(1041,-1444006800,6),(1041,-1427677200,7),(1041,-1411952400,6),(1041,-1396227600,7),(1041,-1379293200,6),(1041,-1364778000,7),(1041,-1348448400,6),(1041,-1333328400,7),(1041,-1316394000,6),(1041,-1301263200,7),(1041,-1284328800,6),(1041,-1269813600,7),(1041,-1253484000,6),(1041,-1238364000,7),(1041,-1221429600,6),(1041,-1206914400,7),(1041,-1191189600,6),(1041,-1175464800,7),(1041,-1160344800,6),(1041,-1143410400,7),(1041,-1127685600,6),(1041,-1111960800,7),(1041,-1096840800,6),(1041,-1080511200,7),(1041,-1063576800,6),(1041,-1049061600,7),(1041,-1033336800,6),(1041,-1017612000,7),(1041,-1002492000,6),(1041,-986162400,7),(1041,-969228000,6),(1041,-950479200,7),(1041,-942012000,6),(1041,-934668000,3),(1041,-857257200,4),(1041,-844556400,3),(1041,-828226800,4),(1041,-812502000,3),(1041,-799293600,5),(1041,-798073200,4),(1041,-781052400,3),(1041,-766623600,4),(1041,-745455600,3),(1041,-733273200,4),(1041,220921200,2),(1041,228877200,9),(1041,243997200,10),(1041,260326800,9),(1041,276051600,10),(1041,291776400,9),(1041,307501200,10),(1041,323830800,9),(1041,338950800,10),(1041,354675600,9),(1041,370400400,10),(1041,386125200,9),(1041,401850000,10),(1041,417574800,9),(1041,433299600,10),(1041,449024400,9),(1041,465354000,10),(1041,481078800,9),(1041,496803600,10),(1041,512528400,9),(1041,528253200,10),(1041,543978000,9),(1041,559702800,10),(1041,575427600,9),(1041,591152400,10),(1041,606877200,9),(1041,622602000,10),(1041,638326800,9),(1041,654656400,10),(1041,670381200,9),(1041,686106000,10),(1041,701830800,9),(1041,717555600,10),(1041,733280400,9),(1041,749005200,10),(1041,764730000,9),(1041,780454800,10),(1041,796179600,9),(1041,811904400,10),(1041,828234000,9),(1041,846378000,10),(1041,859683600,9),(1041,877827600,10),(1041,891133200,9),(1041,909277200,10),(1041,922582800,9),(1041,941331600,10),(1041,954032400,9),(1041,972781200,10),(1041,985482000,9),(1041,1004230800,10),(1041,1017536400,9),(1041,1035680400,10),(1041,1048986000,9),(1041,1067130000,10),(1041,1080435600,9),(1041,1099184400,10),(1041,1111885200,9),(1041,1130634000,10),(1041,1143334800,9),(1041,1162083600,10),(1041,1174784400,9),(1041,1193533200,10),(1041,1206838800,9),(1041,1224982800,10),(1041,1238288400,9),(1041,1256432400,10),(1041,1269738000,9),(1041,1288486800,10),(1041,1301187600,9),(1041,1319936400,10),(1041,1332637200,9),(1041,1351386000,10),(1041,1364691600,9),(1041,1382835600,10),(1041,1396141200,9),(1041,1414285200,10),(1041,1427590800,9),(1041,1445734800,10),(1041,1459040400,9),(1041,1477789200,10),(1041,1490490000,9),(1041,1509238800,10),(1041,1521939600,9),(1041,1540688400,10),(1041,1553994000,9),(1041,1572138000,10),(1041,1585443600,9),(1041,1603587600,10),(1041,1616893200,9),(1041,1635642000,10),(1041,1648342800,9),(1041,1667091600,10),(1041,1679792400,9),(1041,1698541200,10),(1041,1711846800,9),(1041,1729990800,10),(1041,1743296400,9),(1041,1761440400,10),(1041,1774746000,9),(1041,1792890000,10),(1041,1806195600,9),(1041,1824944400,10),(1041,1837645200,9),(1041,1856394000,10),(1041,1869094800,9),(1041,1887843600,10),(1041,1901149200,9),(1041,1919293200,10),(1041,1932598800,9),(1041,1950742800,10),(1041,1964048400,9),(1041,1982797200,10),(1041,1995498000,9),(1041,2014246800,10),(1041,2026947600,9),(1041,2045696400,10),(1041,2058397200,9),(1041,2077146000,10),(1041,2090451600,9),(1041,2108595600,10),(1041,2121901200,9),(1041,2140045200,10),(1042,-2147483648,1),(1042,-1213148664,5),(1042,-1187056800,2),(1042,-1175479200,3),(1042,-1159754400,2),(1042,-1144029600,3),(1042,-1127700000,2),(1042,-1111975200,3),(1042,-1096250400,2),(1042,-1080525600,3),(1042,-1064800800,2),(1042,-1049076000,3),(1042,-1033351200,2),(1042,-1017626400,3),(1042,-1001901600,2),(1042,-986176800,3),(1042,-970452000,2),(1042,-954727200,3),(1042,296604000,4),(1042,307486800,5),(1042,323816400,4),(1042,338940000,5),(1042,354672000,2),(1042,370396800,3),(1042,386121600,2),(1042,401846400,3),(1042,417571200,2),(1042,433296000,3),(1042,449020800,2),(1042,465350400,3),(1042,481075200,2),(1042,496800000,3),(1042,512524800,2),(1042,528249600,3),(1042,543974400,2),(1042,559699200,3),(1042,575424000,2),(1042,591148800,3),(1042,606873600,2),(1042,622598400,3),(1042,638323200,2),(1042,654652800,3),(1042,662680800,5),(1042,670370400,2),(1042,686095200,3),(1042,701820000,2),(1042,717544800,3),(1042,733269600,2),(1042,748994400,3),(1042,757375200,5),(1042,764719200,4),(1042,780440400,5),(1042,796168800,4),(1042,811890000,5),(1042,828223200,4),(1042,846363600,5),(1042,859683600,6),(1042,877827600,7),(1042,891133200,6),(1042,909277200,7),(1042,922582800,6),(1042,941331600,7),(1042,954032400,6),(1042,972781200,7),(1042,985482000,6),(1042,1004230800,7),(1042,1017536400,6),(1042,1035680400,7),(1042,1048986000,6),(1042,1067130000,7),(1042,1080435600,6),(1042,1099184400,7),(1042,1111885200,6),(1042,1130634000,7),(1042,1143334800,6),(1042,1162083600,7),(1042,1174784400,6),(1042,1193533200,7),(1042,1206838800,6),(1042,1224982800,7),(1042,1238288400,6),(1042,1256432400,7),(1042,1269738000,6),(1042,1288486800,7),(1042,1301187600,6),(1042,1319936400,7),(1042,1332637200,6),(1042,1351386000,7),(1042,1364691600,6),(1042,1382835600,7),(1042,1396141200,6),(1042,1414285200,7),(1042,1427590800,6),(1042,1445734800,7),(1042,1459040400,6),(1042,1477789200,7),(1042,1490490000,6),(1042,1509238800,7),(1042,1521939600,6),(1042,1540688400,7),(1042,1553994000,6),(1042,1572138000,7),(1042,1585443600,6),(1042,1603587600,7),(1042,1616893200,6),(1042,1635642000,7),(1042,1648342800,6),(1042,1667091600,7),(1042,1679792400,6),(1042,1698541200,7),(1042,1711846800,6),(1042,1729990800,7),(1042,1743296400,6),(1042,1761440400,7),(1042,1774746000,6),(1042,1792890000,7),(1042,1806195600,6),(1042,1824944400,7),(1042,1837645200,6),(1042,1856394000,7),(1042,1869094800,6),(1042,1887843600,7),(1042,1901149200,6),(1042,1919293200,7),(1042,1932598800,6),(1042,1950742800,7),(1042,1964048400,6),(1042,1982797200,7),(1042,1995498000,6),(1042,2014246800,7),(1042,2026947600,6),(1042,2045696400,7),(1042,2058397200,6),(1042,2077146000,7),(1042,2090451600,6),(1042,2108595600,7),(1042,2121901200,6),(1042,2140045200,7),(1043,-2147483648,2),(1043,-1693706400,1),(1043,-1680483600,2),(1043,-1663455600,3),(1043,-1650150000,4),(1043,-1640998800,2),(1043,-1633212000,1),(1043,-1618700400,2),(1043,-1600466400,1),(1043,-1581202800,2),(1043,-906771600,1),(1043,-857257200,4),(1043,-844556400,3),(1043,-828226800,4),(1043,-812502000,3),(1043,-796777200,4),(1043,-788922000,2),(1043,-778471200,1),(1043,-762660000,2),(1043,-749689200,3),(1043,-733359600,4),(1043,-717634800,3),(1043,-701910000,4),(1043,-686185200,3),(1043,-670460400,4),(1043,-654130800,3),(1043,-639010800,4),(1043,-621990000,3),(1043,-605660400,4),(1043,-492656400,1),(1043,-481168800,2),(1043,-461120400,1),(1043,-449632800,2),(1043,-428547600,1),(1043,-418269600,2),(1043,-397094400,1),(1043,-386809200,2),(1043,323827200,1),(1043,338950800,5),(1043,354675600,6),(1043,370400400,5),(1043,386125200,6),(1043,401850000,5),(1043,417574800,6),(1043,433299600,5),(1043,449024400,6),(1043,465354000,5),(1043,481078800,6),(1043,496803600,5),(1043,512528400,6),(1043,528253200,5),(1043,543978000,6),(1043,559702800,5),(1043,575427600,6),(1043,591152400,5),(1043,606877200,6),(1043,622602000,5),(1043,638326800,6),(1043,654656400,5),(1043,670381200,6),(1043,686106000,5),(1043,701830800,6),(1043,717555600,5),(1043,733280400,6),(1043,749005200,5),(1043,764730000,6),(1043,780454800,5),(1043,796179600,6),(1043,811904400,5),(1043,828234000,6),(1043,846378000,5),(1043,859683600,6),(1043,877827600,5),(1043,891133200,6),(1043,909277200,5),(1043,922582800,6),(1043,941331600,5),(1043,954032400,6),(1043,972781200,5),(1043,985482000,6),(1043,1004230800,5),(1043,1017536400,6),(1043,1035680400,5),(1043,1048986000,6),(1043,1067130000,5),(1043,1080435600,6),(1043,1099184400,5),(1043,1111885200,6),(1043,1130634000,5),(1043,1143334800,6),(1043,1162083600,5),(1043,1174784400,6),(1043,1193533200,5),(1043,1206838800,6),(1043,1224982800,5),(1043,1238288400,6),(1043,1256432400,5),(1043,1269738000,6),(1043,1288486800,5),(1043,1301187600,6),(1043,1319936400,5),(1043,1332637200,6),(1043,1351386000,5),(1043,1364691600,6),(1043,1382835600,5),(1043,1396141200,6),(1043,1414285200,5),(1043,1427590800,6),(1043,1445734800,5),(1043,1459040400,6),(1043,1477789200,5),(1043,1490490000,6),(1043,1509238800,5),(1043,1521939600,6),(1043,1540688400,5),(1043,1553994000,6),(1043,1572138000,5),(1043,1585443600,6),(1043,1603587600,5),(1043,1616893200,6),(1043,1635642000,5),(1043,1648342800,6),(1043,1667091600,5),(1043,1679792400,6),(1043,1698541200,5),(1043,1711846800,6),(1043,1729990800,5),(1043,1743296400,6),(1043,1761440400,5),(1043,1774746000,6),(1043,1792890000,5),(1043,1806195600,6),(1043,1824944400,5),(1043,1837645200,6),(1043,1856394000,5),(1043,1869094800,6),(1043,1887843600,5),(1043,1901149200,6),(1043,1919293200,5),(1043,1932598800,6),(1043,1950742800,5),(1043,1964048400,6),(1043,1982797200,5),(1043,1995498000,6),(1043,2014246800,5),(1043,2026947600,6),(1043,2045696400,5),(1043,2058397200,6),(1043,2077146000,5),(1043,2090451600,6),(1043,2108595600,5),(1043,2121901200,6),(1043,2140045200,5),(1044,-2147483648,2),(1044,-904435200,1),(1044,-891129600,2),(1044,-872985600,1),(1044,-859680000,2),(1044,354675600,3),(1044,370400400,4),(1044,386125200,3),(1044,401850000,4),(1044,417574800,3),(1044,433299600,4),(1044,449024400,3),(1044,465354000,4),(1044,481078800,3),(1044,496803600,4),(1044,512528400,3),(1044,528253200,4),(1044,543978000,3),(1044,559702800,4),(1044,575427600,3),(1044,591152400,4),(1044,606877200,3),(1044,622602000,4),(1044,638326800,3),(1044,654656400,4),(1044,670381200,3),(1044,686106000,4),(1044,701830800,3),(1044,717555600,4),(1044,733280400,3),(1044,749005200,4),(1044,764730000,3),(1044,780454800,4),(1044,796179600,3),(1044,811904400,4),(1044,828234000,3),(1044,846378000,4),(1044,859683600,3),(1044,877827600,4),(1044,891133200,3),(1044,909277200,4),(1044,922582800,3),(1044,941331600,4),(1044,954032400,3),(1044,972781200,4),(1044,985482000,3),(1044,1004230800,4),(1044,1017536400,3),(1044,1035680400,4),(1044,1048986000,3),(1044,1067130000,4),(1044,1080435600,3),(1044,1099184400,4),(1044,1111885200,3),(1044,1130634000,4),(1044,1143334800,3),(1044,1162083600,4),(1044,1174784400,3),(1044,1193533200,4),(1044,1206838800,3),(1044,1224982800,4),(1044,1238288400,3),(1044,1256432400,4),(1044,1269738000,3),(1044,1288486800,4),(1044,1301187600,3),(1044,1319936400,4),(1044,1332637200,3),(1044,1351386000,4),(1044,1364691600,3),(1044,1382835600,4),(1044,1396141200,3),(1044,1414285200,4),(1044,1427590800,3),(1044,1445734800,4),(1044,1459040400,3),(1044,1477789200,4),(1044,1490490000,3),(1044,1509238800,4),(1044,1521939600,3),(1044,1540688400,4),(1044,1553994000,3),(1044,1572138000,4),(1044,1585443600,3),(1044,1603587600,4),(1044,1616893200,3),(1044,1635642000,4),(1044,1648342800,3),(1044,1667091600,4),(1044,1679792400,3),(1044,1698541200,4),(1044,1711846800,3),(1044,1729990800,4),(1044,1743296400,3),(1044,1761440400,4),(1044,1774746000,3),(1044,1792890000,4),(1044,1806195600,3),(1044,1824944400,4),(1044,1837645200,3),(1044,1856394000,4),(1044,1869094800,3),(1044,1887843600,4),(1044,1901149200,3),(1044,1919293200,4),(1044,1932598800,3),(1044,1950742800,4),(1044,1964048400,3),(1044,1982797200,4),(1044,1995498000,3),(1044,2014246800,4),(1044,2026947600,3),(1044,2045696400,4),(1044,2058397200,3),(1044,2077146000,4),(1044,2090451600,3),(1044,2108595600,4),(1044,2121901200,3),(1044,2140045200,4),(1045,-2147483648,1),(1045,-1637114100,2),(1045,-1213148664,5),(1045,-1187056800,3),(1045,-1175479200,4),(1045,-1159754400,3),(1045,-1144029600,4),(1045,-1127700000,3),(1045,-1111975200,4),(1045,-1096250400,3),(1045,-1080525600,4),(1045,-1064800800,3),(1045,-1049076000,4),(1045,-1033351200,3),(1045,-1017626400,4),(1045,-1001901600,3),(1045,-986176800,4),(1045,-970452000,3),(1045,-954727200,4),(1045,-927165600,6),(1045,-898138800,9),(1045,-857257200,7),(1045,-844556400,8),(1045,-828226800,7),(1045,-812502000,8),(1045,-800157600,11),(1045,354920400,10),(1045,370728000,11),(1045,386456400,10),(1045,402264000,11),(1045,417992400,10),(1045,433800000,11),(1045,449614800,10),(1045,465346800,12),(1045,481071600,13),(1045,496796400,12),(1045,512521200,13),(1045,528246000,12),(1045,543970800,13),(1045,559695600,12),(1045,575420400,13),(1045,591145200,12),(1045,606870000,13),(1045,622594800,12),(1045,638319600,13),(1045,641944800,6),(1045,654652800,4),(1045,670377600,3),(1045,686102400,4),(1045,694216800,5),(1045,701820000,6),(1045,717541200,5),(1045,733269600,6),(1045,748990800,5),(1045,764719200,6),(1045,780440400,5),(1045,796168800,6),(1045,811890000,5),(1045,828223200,6),(1045,846363600,5),(1045,859680000,6),(1045,877824000,5),(1045,891129600,6),(1045,909273600,5),(1045,922579200,6),(1045,941328000,5),(1045,954028800,6),(1045,972777600,5),(1045,985478400,6),(1045,1004227200,5),(1045,1017532800,6),(1045,1035676800,5),(1045,1048982400,6),(1045,1067126400,5),(1045,1080432000,6),(1045,1099180800,5),(1045,1111881600,6),(1045,1130630400,5),(1045,1143331200,6),(1045,1162080000,5),(1045,1174780800,6),(1045,1193529600,5),(1045,1206835200,6),(1045,1224979200,5),(1045,1238284800,6),(1045,1256428800,5),(1045,1269734400,6),(1045,1288483200,5),(1045,1301184000,6),(1045,1319932800,5),(1045,1332633600,6),(1045,1351382400,5),(1045,1364688000,6),(1045,1382832000,5),(1045,1396137600,6),(1045,1414281600,5),(1045,1427587200,6),(1045,1445731200,5),(1045,1459036800,6),(1045,1477785600,5),(1045,1490486400,6),(1045,1509235200,5),(1045,1521936000,6),(1045,1540684800,5),(1045,1553990400,6),(1045,1572134400,5),(1045,1585440000,6),(1045,1603584000,5),(1045,1616889600,6),(1045,1635638400,5),(1045,1648339200,6),(1045,1667088000,5),(1045,1679788800,6),(1045,1698537600,5),(1045,1711843200,6),(1045,1729987200,5),(1045,1743292800,6),(1045,1761436800,5),(1045,1774742400,6),(1045,1792886400,5),(1045,1806192000,6),(1045,1824940800,5),(1045,1837641600,6),(1045,1856390400,5),(1045,1869091200,6),(1045,1887840000,5),(1045,1901145600,6),(1045,1919289600,5),(1045,1932595200,6),(1045,1950739200,5),(1045,1964044800,6),(1045,1982793600,5),(1045,1995494400,6),(1045,2014243200,5),(1045,2026944000,6),(1045,2045692800,5),(1045,2058393600,6),(1045,2077142400,5),(1045,2090448000,6),(1045,2108592000,5),(1045,2121897600,6),(1045,2140041600,5),(1046,-2147483648,2),(1046,-1692496800,1),(1046,-1680490800,2),(1046,-935110800,1),(1046,-857257200,3),(1046,-844556400,4),(1046,-828226800,3),(1046,-812502000,4),(1046,-796777200,3),(1046,-781052400,4),(1046,-769388400,3),(1046,-747010800,4),(1046,-736383600,3),(1046,-715215600,4),(1046,-706748400,3),(1046,-683161200,4),(1046,-675298800,3),(1046,315529200,2),(1046,323830800,5),(1046,338950800,6),(1046,354675600,5),(1046,370400400,6),(1046,386125200,5),(1046,401850000,6),(1046,417574800,5),(1046,433299600,6),(1046,449024400,5),(1046,465354000,6),(1046,481078800,5),(1046,496803600,6),(1046,512528400,5),(1046,528253200,6),(1046,543978000,5),(1046,559702800,6),(1046,575427600,5),(1046,591152400,6),(1046,606877200,5),(1046,622602000,6),(1046,638326800,5),(1046,654656400,6),(1046,670381200,5),(1046,686106000,6),(1046,701830800,5),(1046,717555600,6),(1046,733280400,5),(1046,749005200,6),(1046,764730000,5),(1046,780454800,6),(1046,796179600,5),(1046,811904400,6),(1046,828234000,5),(1046,846378000,6),(1046,859683600,5),(1046,877827600,6),(1046,891133200,5),(1046,909277200,6),(1046,922582800,5),(1046,941331600,6),(1046,954032400,5),(1046,972781200,6),(1046,985482000,5),(1046,1004230800,6),(1046,1017536400,5),(1046,1035680400,6),(1046,1048986000,5),(1046,1067130000,6),(1046,1080435600,5),(1046,1099184400,6),(1046,1111885200,5),(1046,1130634000,6),(1046,1143334800,5),(1046,1162083600,6),(1046,1174784400,5),(1046,1193533200,6),(1046,1206838800,5),(1046,1224982800,6),(1046,1238288400,5),(1046,1256432400,6),(1046,1269738000,5),(1046,1288486800,6),(1046,1301187600,5),(1046,1319936400,6),(1046,1332637200,5),(1046,1351386000,6),(1046,1364691600,5),(1046,1382835600,6),(1046,1396141200,5),(1046,1414285200,6),(1046,1427590800,5),(1046,1445734800,6),(1046,1459040400,5),(1046,1477789200,6),(1046,1490490000,5),(1046,1509238800,6),(1046,1521939600,5),(1046,1540688400,6),(1046,1553994000,5),(1046,1572138000,6),(1046,1585443600,5),(1046,1603587600,6),(1046,1616893200,5),(1046,1635642000,6),(1046,1648342800,5),(1046,1667091600,6),(1046,1679792400,5),(1046,1698541200,6),(1046,1711846800,5),(1046,1729990800,6),(1046,1743296400,5),(1046,1761440400,6),(1046,1774746000,5),(1046,1792890000,6),(1046,1806195600,5),(1046,1824944400,6),(1046,1837645200,5),(1046,1856394000,6),(1046,1869094800,5),(1046,1887843600,6),(1046,1901149200,5),(1046,1919293200,6),(1046,1932598800,5),(1046,1950742800,6),(1046,1964048400,5),(1046,1982797200,6),(1046,1995498000,5),(1046,2014246800,6),(1046,2026947600,5),(1046,2045696400,6),(1046,2058397200,5),(1046,2077146000,6),(1046,2090451600,5),(1046,2108595600,6),(1046,2121901200,5),(1046,2140045200,6),(1047,-2147483648,1),(1047,-1691962479,2),(1047,-1680471279,4),(1047,-1664143200,3),(1047,-1650146400,4),(1047,-1633903200,3),(1047,-1617487200,4),(1047,-1601848800,3),(1047,-1586037600,4),(1047,-1570399200,3),(1047,-1552168800,4),(1047,-1538344800,3),(1047,-1522533600,4),(1047,-1517011200,6),(1047,-1507500000,5),(1047,-1490565600,4),(1047,-1473631200,5),(1047,-1460930400,4),(1047,-1442786400,5),(1047,-1428876000,4),(1047,-1410732000,5),(1047,-1396216800,4),(1047,-1379282400,5),(1047,-1364767200,4),(1047,-1348437600,5),(1047,-1333317600,4),(1047,-1315778400,5),(1047,-1301263200,4),(1047,-1284328800,5),(1047,-1269813600,4),(1047,-1253484000,5),(1047,-1238364000,4),(1047,-1221429600,5),(1047,-1206914400,4),(1047,-1189980000,5),(1047,-1175464800,4),(1047,-1159135200,5),(1047,-1143410400,4),(1047,-1126476000,5),(1047,-1111960800,4),(1047,-1095631200,5),(1047,-1080511200,4),(1047,-1063576800,5),(1047,-1049061600,4),(1047,-1032127200,5),(1047,-1017612000,4),(1047,-1001282400,5),(1047,-986162400,4),(1047,-969228000,5),(1047,-950479200,4),(1047,-942012000,5),(1047,-733356000,4),(1047,-719445600,5),(1047,-699487200,4),(1047,-684972000,5),(1047,-668037600,4),(1047,-654732000,5),(1047,-636588000,4),(1047,-622072800,5),(1047,-605743200,4),(1047,-590623200,5),(1047,-574293600,4),(1047,-558568800,5),(1047,-542239200,4),(1047,-527119200,5),(1047,-512604000,4),(1047,-496274400,5),(1047,-481154400,4),(1047,-464220000,5),(1047,-449704800,4),(1047,-432165600,5),(1047,-417650400,4),(1047,-401320800,5),(1047,-386200800,4),(1047,-369266400,5),(1047,-354751200,4),(1047,-337816800,5),(1047,-323301600,4),(1047,-306972000,5),(1047,-291852000,4),(1047,-276732000,5),(1047,-257983200,4),(1047,-245282400,5),(1047,-226533600,4),(1047,-213228000,5),(1047,-195084000,4),(1047,-182383200,5),(1047,-163634400,4),(1047,-150933600,5),(1047,-132184800,4),(1047,-119484000,5),(1047,-100735200,4),(1047,-88034400,5),(1047,-68680800,4),(1047,-59004000,5),(1047,-37242000,9),(1047,57722400,7),(1047,69818400,8),(1047,89172000,7),(1047,101268000,8),(1047,120621600,7),(1047,132717600,8),(1047,152071200,7),(1047,164167200,8),(1047,183520800,7),(1047,196221600,8),(1047,214970400,7),(1047,227671200,8),(1047,246420000,7),(1047,259120800,8),(1047,278474400,7),(1047,290570400,8),(1047,309924000,7),(1047,322020000,8),(1047,341373600,7),(1047,354675600,8),(1047,372819600,7),(1047,386125200,8),(1047,404269200,7),(1047,417574800,8),(1047,435718800,7),(1047,449024400,8),(1047,467773200,7),(1047,481078800,8),(1047,499222800,7),(1047,512528400,8),(1047,530672400,7),(1047,543978000,8),(1047,562122000,7),(1047,575427600,8),(1047,593571600,7),(1047,606877200,8),(1047,625626000,7),(1047,638326800,8),(1047,657075600,7),(1047,670381200,8),(1047,688525200,7),(1047,701830800,8),(1047,719974800,7),(1047,733280400,8),(1047,751424400,7),(1047,764730000,8),(1047,782874000,7),(1047,796179600,8),(1047,814323600,7),(1047,828234000,8),(1047,846378000,7),(1047,859683600,8),(1047,877827600,7),(1047,891133200,8),(1047,909277200,7),(1047,922582800,8),(1047,941331600,7),(1047,954032400,8),(1047,972781200,7),(1047,985482000,8),(1047,1004230800,7),(1047,1017536400,8),(1047,1035680400,7),(1047,1048986000,8),(1047,1067130000,7),(1047,1080435600,8),(1047,1099184400,7),(1047,1111885200,8),(1047,1130634000,7),(1047,1143334800,8),(1047,1162083600,7),(1047,1174784400,8),(1047,1193533200,7),(1047,1206838800,8),(1047,1224982800,7),(1047,1238288400,8),(1047,1256432400,7),(1047,1269738000,8),(1047,1288486800,7),(1047,1301187600,8),(1047,1319936400,7),(1047,1332637200,8),(1047,1351386000,7),(1047,1364691600,8),(1047,1382835600,7),(1047,1396141200,8),(1047,1414285200,7),(1047,1427590800,8),(1047,1445734800,7),(1047,1459040400,8),(1047,1477789200,7),(1047,1490490000,8),(1047,1509238800,7),(1047,1521939600,8),(1047,1540688400,7),(1047,1553994000,8),(1047,1572138000,7),(1047,1585443600,8),(1047,1603587600,7),(1047,1616893200,8),(1047,1635642000,7),(1047,1648342800,8),(1047,1667091600,7),(1047,1679792400,8),(1047,1698541200,7),(1047,1711846800,8),(1047,1729990800,7),(1047,1743296400,8),(1047,1761440400,7),(1047,1774746000,8),(1047,1792890000,7),(1047,1806195600,8),(1047,1824944400,7),(1047,1837645200,8),(1047,1856394000,7),(1047,1869094800,8),(1047,1887843600,7),(1047,1901149200,8),(1047,1919293200,7),(1047,1932598800,8),(1047,1950742800,7),(1047,1964048400,8),(1047,1982797200,7),(1047,1995498000,8),(1047,2014246800,7),(1047,2026947600,8),(1047,2045696400,7),(1047,2058397200,8),(1047,2077146000,7),(1047,2090451600,8),(1047,2108595600,7),(1047,2121901200,8),(1047,2140045200,7),(1048,-2147483648,2),(1048,-1691964000,1),(1048,-1680472800,2),(1048,-1664143200,1),(1048,-1650146400,2),(1048,-1633903200,1),(1048,-1617487200,2),(1048,-1601848800,1),(1048,-1586037600,2),(1048,-1570399200,1),(1048,-1552168800,2),(1048,-1538344800,1),(1048,-1522533600,2),(1048,-1507500000,1),(1048,-1490565600,2),(1048,-1473631200,1),(1048,-1460930400,2),(1048,-1442786400,1),(1048,-1428876000,2),(1048,-1410732000,1),(1048,-1396216800,2),(1048,-1379282400,1),(1048,-1364767200,2),(1048,-1348437600,1),(1048,-1333317600,2),(1048,-1315778400,1),(1048,-1301263200,2),(1048,-1284328800,1),(1048,-1269813600,2),(1048,-1253484000,1),(1048,-1238364000,2),(1048,-1221429600,1),(1048,-1206914400,2),(1048,-1189980000,1),(1048,-1175464800,2),(1048,-1159135200,1),(1048,-1143410400,2),(1048,-1126476000,1),(1048,-1111960800,2),(1048,-1095631200,1),(1048,-1080511200,2),(1048,-1063576800,1),(1048,-1049061600,2),(1048,-1032127200,1),(1048,-1017612000,2),(1048,-1001282400,1),(1048,-986162400,2),(1048,-969228000,1),(1048,-950479200,2),(1048,-942012000,1),(1048,-904518000,3),(1048,-896050800,1),(1048,-875487600,3),(1048,-864601200,1),(1048,-844038000,3),(1048,-832546800,1),(1048,-812588400,3),(1048,-798073200,1),(1048,-781052400,3),(1048,-772066800,1),(1048,-764805600,2),(1048,-748476000,1),(1048,-733356000,2),(1048,-719445600,1),(1048,-717030000,3),(1048,-706748400,1),(1048,-699487200,2),(1048,-687996000,1),(1048,-668037600,2),(1048,-654732000,1),(1048,-636588000,2),(1048,-622072800,1),(1048,-605743200,2),(1048,-590623200,1),(1048,-574293600,2),(1048,-558568800,1),(1048,-542239200,2),(1048,-527119200,1),(1048,-512604000,2),(1048,-496274400,1),(1048,-481154400,2),(1048,-464220000,1),(1048,-449704800,2),(1048,-432165600,1),(1048,-417650400,2),(1048,-401320800,4),(1048,386125200,5),(1048,401850000,6),(1048,417574800,5),(1048,433299600,6),(1048,449024400,5),(1048,465354000,6),(1048,481078800,5),(1048,496803600,6),(1048,512528400,5),(1048,528253200,6),(1048,543978000,5),(1048,559702800,6),(1048,575427600,5),(1048,591152400,6),(1048,606877200,5),(1048,622602000,6),(1048,638326800,5),(1048,654656400,6),(1048,670381200,5),(1048,686106000,6),(1048,701830800,5),(1048,717555600,6),(1048,733280400,5),(1048,749005200,6),(1048,764730000,5),(1048,780454800,6),(1048,796179600,5),(1048,811904400,6),(1048,828234000,5),(1048,846378000,6),(1048,859683600,5),(1048,877827600,6),(1048,891133200,5),(1048,909277200,6),(1048,922582800,5),(1048,941331600,6),(1048,954032400,5),(1048,972781200,6),(1048,985482000,5),(1048,1004230800,6),(1048,1017536400,5),(1048,1035680400,6),(1048,1048986000,5),(1048,1067130000,6),(1048,1080435600,5),(1048,1099184400,6),(1048,1111885200,5),(1048,1130634000,6),(1048,1143334800,5),(1048,1162083600,6),(1048,1174784400,5),(1048,1193533200,6),(1048,1206838800,5),(1048,1224982800,6),(1048,1238288400,5),(1048,1256432400,6),(1048,1269738000,5),(1048,1288486800,6),(1048,1301187600,5),(1048,1319936400,6),(1048,1332637200,5),(1048,1351386000,6),(1048,1364691600,5),(1048,1382835600,6),(1048,1396141200,5),(1048,1414285200,6),(1048,1427590800,5),(1048,1445734800,6),(1048,1459040400,5),(1048,1477789200,6),(1048,1490490000,5),(1048,1509238800,6),(1048,1521939600,5),(1048,1540688400,6),(1048,1553994000,5),(1048,1572138000,6),(1048,1585443600,5),(1048,1603587600,6),(1048,1616893200,5),(1048,1635642000,6),(1048,1648342800,5),(1048,1667091600,6),(1048,1679792400,5),(1048,1698541200,6),(1048,1711846800,5),(1048,1729990800,6),(1048,1743296400,5),(1048,1761440400,6),(1048,1774746000,5),(1048,1792890000,6),(1048,1806195600,5),(1048,1824944400,6),(1048,1837645200,5),(1048,1856394000,6),(1048,1869094800,5),(1048,1887843600,6),(1048,1901149200,5),(1048,1919293200,6),(1048,1932598800,5),(1048,1950742800,6),(1048,1964048400,5),(1048,1982797200,6),(1048,1995498000,5),(1048,2014246800,6),(1048,2026947600,5),(1048,2045696400,6),(1048,2058397200,5),(1048,2077146000,6),(1048,2090451600,5),(1048,2108595600,6),(1048,2121901200,5),(1048,2140045200,6),(1049,-2147483648,2),(1049,-1691964000,1),(1049,-1680472800,2),(1049,-1664143200,1),(1049,-1650146400,2),(1049,-1633903200,1),(1049,-1617487200,2),(1049,-1601848800,1),(1049,-1586037600,2),(1049,-1570399200,1),(1049,-1552168800,2),(1049,-1538344800,1),(1049,-1522533600,2),(1049,-1507500000,1),(1049,-1490565600,2),(1049,-1473631200,1),(1049,-1460930400,2),(1049,-1442786400,1),(1049,-1428876000,2),(1049,-1410732000,1),(1049,-1396216800,2),(1049,-1379282400,1),(1049,-1364767200,2),(1049,-1348437600,1),(1049,-1333317600,2),(1049,-1315778400,1),(1049,-1301263200,2),(1049,-1284328800,1),(1049,-1269813600,2),(1049,-1253484000,1),(1049,-1238364000,2),(1049,-1221429600,1),(1049,-1206914400,2),(1049,-1189980000,1),(1049,-1175464800,2),(1049,-1159135200,1),(1049,-1143410400,2),(1049,-1126476000,1),(1049,-1111960800,2),(1049,-1095631200,1),(1049,-1080511200,2),(1049,-1063576800,1),(1049,-1049061600,2),(1049,-1032127200,1),(1049,-1017612000,2),(1049,-1001282400,1),(1049,-986162400,2),(1049,-969228000,1),(1049,-950479200,2),(1049,-942012000,1),(1049,-904518000,3),(1049,-896050800,1),(1049,-875487600,3),(1049,-864601200,1),(1049,-844038000,3),(1049,-832546800,1),(1049,-812588400,3),(1049,-798073200,1),(1049,-781052400,3),(1049,-772066800,1),(1049,-764805600,2),(1049,-748476000,1),(1049,-733356000,2),(1049,-719445600,1),(1049,-717030000,3),(1049,-706748400,1),(1049,-699487200,2),(1049,-687996000,1),(1049,-668037600,2),(1049,-654732000,1),(1049,-636588000,2),(1049,-622072800,1),(1049,-605743200,2),(1049,-590623200,1),(1049,-574293600,2),(1049,-558568800,1),(1049,-542239200,2),(1049,-527119200,1),(1049,-512604000,2),(1049,-496274400,1),(1049,-481154400,2),(1049,-464220000,1),(1049,-449704800,2),(1049,-432165600,1),(1049,-417650400,2),(1049,-401320800,1),(1049,-386200800,2),(1049,-369266400,1),(1049,-354751200,2),(1049,-337816800,1),(1049,-323301600,2),(1049,-306972000,1),(1049,-291852000,2),(1049,-276732000,1),(1049,-257983200,2),(1049,-245282400,1),(1049,-226533600,2),(1049,-213228000,1),(1049,-195084000,2),(1049,-182383200,1),(1049,-163634400,2),(1049,-150933600,1),(1049,-132184800,2),(1049,-119484000,1),(1049,-100735200,2),(1049,-88034400,1),(1049,-68680800,2),(1049,-59004000,1),(1049,-37242000,4),(1049,57722400,6),(1049,69818400,1),(1049,89172000,2),(1049,101268000,1),(1049,120621600,2),(1049,132717600,1),(1049,152071200,2),(1049,164167200,1),(1049,183520800,2),(1049,196221600,1),(1049,214970400,2),(1049,227671200,1),(1049,246420000,2),(1049,259120800,1),(1049,278474400,2),(1049,290570400,1),(1049,309924000,2),(1049,322020000,1),(1049,341373600,2),(1049,354675600,5),(1049,372819600,6),(1049,386125200,5),(1049,404269200,6),(1049,417574800,5),(1049,435718800,6),(1049,449024400,5),(1049,467773200,6),(1049,481078800,5),(1049,499222800,6),(1049,512528400,5),(1049,530672400,6),(1049,543978000,5),(1049,562122000,6),(1049,575427600,5),(1049,593571600,6),(1049,606877200,5),(1049,625626000,6),(1049,638326800,5),(1049,657075600,6),(1049,670381200,5),(1049,688525200,6),(1049,701830800,5),(1049,719974800,6),(1049,733280400,5),(1049,751424400,6),(1049,764730000,5),(1049,782874000,6),(1049,796179600,5),(1049,814323600,6),(1049,820454400,7),(1049,828234000,5),(1049,846378000,6),(1049,859683600,5),(1049,877827600,6),(1049,891133200,5),(1049,909277200,6),(1049,922582800,5),(1049,941331600,6),(1049,954032400,5),(1049,972781200,6),(1049,985482000,5),(1049,1004230800,6),(1049,1017536400,5),(1049,1035680400,6),(1049,1048986000,5),(1049,1067130000,6),(1049,1080435600,5),(1049,1099184400,6),(1049,1111885200,5),(1049,1130634000,6),(1049,1143334800,5),(1049,1162083600,6),(1049,1174784400,5),(1049,1193533200,6),(1049,1206838800,5),(1049,1224982800,6),(1049,1238288400,5),(1049,1256432400,6),(1049,1269738000,5),(1049,1288486800,6),(1049,1301187600,5),(1049,1319936400,6),(1049,1332637200,5),(1049,1351386000,6),(1049,1364691600,5),(1049,1382835600,6),(1049,1396141200,5),(1049,1414285200,6),(1049,1427590800,5),(1049,1445734800,6),(1049,1459040400,5),(1049,1477789200,6),(1049,1490490000,5),(1049,1509238800,6),(1049,1521939600,5),(1049,1540688400,6),(1049,1553994000,5),(1049,1572138000,6),(1049,1585443600,5),(1049,1603587600,6),(1049,1616893200,5),(1049,1635642000,6),(1049,1648342800,5),(1049,1667091600,6),(1049,1679792400,5),(1049,1698541200,6),(1049,1711846800,5),(1049,1729990800,6),(1049,1743296400,5),(1049,1761440400,6),(1049,1774746000,5),(1049,1792890000,6),(1049,1806195600,5),(1049,1824944400,6),(1049,1837645200,5),(1049,1856394000,6),(1049,1869094800,5),(1049,1887843600,6),(1049,1901149200,5),(1049,1919293200,6),(1049,1932598800,5),(1049,1950742800,6),(1049,1964048400,5),(1049,1982797200,6),(1049,1995498000,5),(1049,2014246800,6),(1049,2026947600,5),(1049,2045696400,6),(1049,2058397200,5),(1049,2077146000,6),(1049,2090451600,5),(1049,2108595600,6),(1049,2121901200,5),(1049,2140045200,6),(1050,-2147483648,1),(1050,-1535938789,3),(1050,-875671200,2),(1050,-859773600,3),(1050,354672000,2),(1050,370396800,3),(1050,386121600,2),(1050,401846400,3),(1050,417574800,4),(1050,433299600,5),(1050,449024400,4),(1050,465354000,5),(1050,481078800,4),(1050,496803600,5),(1050,512528400,4),(1050,528253200,5),(1050,543978000,4),(1050,559702800,5),(1050,575427600,4),(1050,591152400,5),(1050,606877200,4),(1050,622602000,5),(1050,638326800,4),(1050,654656400,5),(1050,670381200,4),(1050,686106000,5),(1050,701830800,4),(1050,717555600,5),(1050,733280400,4),(1050,749005200,5),(1050,764730000,4),(1050,780454800,5),(1050,796179600,4),(1050,811904400,5),(1050,828234000,4),(1050,846378000,5),(1050,859683600,4),(1050,877827600,5),(1050,891133200,4),(1050,909277200,5),(1050,922582800,4),(1050,941331600,5),(1050,954032400,4),(1050,972781200,5),(1050,985482000,4),(1050,1004230800,5),(1050,1017536400,4),(1050,1035680400,5),(1050,1048986000,4),(1050,1067130000,5),(1050,1080435600,4),(1050,1099184400,5),(1050,1111885200,4),(1050,1130634000,5),(1050,1143334800,4),(1050,1162083600,5),(1050,1174784400,4),(1050,1193533200,5),(1050,1206838800,4),(1050,1224982800,5),(1050,1238288400,4),(1050,1256432400,5),(1050,1269738000,4),(1050,1288486800,5),(1050,1301187600,4),(1050,1319936400,5),(1050,1332637200,4),(1050,1351386000,5),(1050,1364691600,4),(1050,1382835600,5),(1050,1396141200,4),(1050,1414285200,5),(1050,1427590800,4),(1050,1445734800,5),(1050,1459040400,4),(1050,1477789200,5),(1050,1490490000,4),(1050,1509238800,5),(1050,1521939600,4),(1050,1540688400,5),(1050,1553994000,4),(1050,1572138000,5),(1050,1585443600,4),(1050,1603587600,5),(1050,1616893200,4),(1050,1635642000,5),(1050,1648342800,4),(1050,1667091600,5),(1050,1679792400,4),(1050,1698541200,5),(1050,1711846800,4),(1050,1729990800,5),(1050,1743296400,4),(1050,1761440400,5),(1050,1774746000,4),(1050,1792890000,5),(1050,1806195600,4),(1050,1824944400,5),(1050,1837645200,4),(1050,1856394000,5),(1050,1869094800,4),(1050,1887843600,5),(1050,1901149200,4),(1050,1919293200,5),(1050,1932598800,4),(1050,1950742800,5),(1050,1964048400,4),(1050,1982797200,5),(1050,1995498000,4),(1050,2014246800,5),(1050,2026947600,4),(1050,2045696400,5),(1050,2058397200,4),(1050,2077146000,5),(1050,2090451600,4),(1050,2108595600,5),(1050,2121901200,4),(1050,2140045200,5),(1051,-2147483648,2),(1051,-1691964000,1),(1051,-1680472800,2),(1051,-1664143200,1),(1051,-1650146400,2),(1051,-1633903200,1),(1051,-1617487200,2),(1051,-1601848800,1),(1051,-1586037600,2),(1051,-1570399200,1),(1051,-1552168800,2),(1051,-1538344800,1),(1051,-1522533600,2),(1051,-1507500000,1),(1051,-1490565600,2),(1051,-1473631200,1),(1051,-1460930400,2),(1051,-1442786400,1),(1051,-1428876000,2),(1051,-1410732000,1),(1051,-1396216800,2),(1051,-1379282400,1),(1051,-1364767200,2),(1051,-1348437600,1),(1051,-1333317600,2),(1051,-1315778400,1),(1051,-1301263200,2),(1051,-1284328800,1),(1051,-1269813600,2),(1051,-1253484000,1),(1051,-1238364000,2),(1051,-1221429600,1),(1051,-1206914400,2),(1051,-1189980000,1),(1051,-1175464800,2),(1051,-1159135200,1),(1051,-1143410400,2),(1051,-1126476000,1),(1051,-1111960800,2),(1051,-1095631200,1),(1051,-1080511200,2),(1051,-1063576800,1),(1051,-1049061600,2),(1051,-1032127200,1),(1051,-1017612000,2),(1051,-1001282400,1),(1051,-986162400,2),(1051,-969228000,1),(1051,-950479200,2),(1051,-942012000,1),(1051,-904518000,3),(1051,-896050800,1),(1051,-875487600,3),(1051,-864601200,1),(1051,-844038000,3),(1051,-832546800,1),(1051,-812588400,3),(1051,-798073200,1),(1051,-781052400,3),(1051,-772066800,1),(1051,-764805600,2),(1051,-748476000,1),(1051,-733356000,2),(1051,-719445600,1),(1051,-717030000,3),(1051,-706748400,1),(1051,-699487200,2),(1051,-687996000,1),(1051,-668037600,2),(1051,-654732000,1),(1051,-636588000,2),(1051,-622072800,1),(1051,-605743200,2),(1051,-590623200,1),(1051,-574293600,2),(1051,-558568800,1),(1051,-542239200,2),(1051,-527119200,1),(1051,-512604000,2),(1051,-496274400,1),(1051,-481154400,2),(1051,-464220000,1),(1051,-449704800,2),(1051,-432165600,1),(1051,-417650400,2),(1051,-401320800,1),(1051,-386200800,2),(1051,-369266400,1),(1051,-354751200,2),(1051,-337816800,1),(1051,-323301600,2),(1051,-306972000,1),(1051,-291852000,2),(1051,-276732000,1),(1051,-257983200,2),(1051,-245282400,1),(1051,-226533600,2),(1051,-213228000,1),(1051,-195084000,2),(1051,-182383200,1),(1051,-163634400,2),(1051,-150933600,1),(1051,-132184800,2),(1051,-119484000,1),(1051,-100735200,2),(1051,-88034400,1),(1051,-68680800,2),(1051,-59004000,1),(1051,-37242000,4),(1051,57722400,6),(1051,69818400,1),(1051,89172000,2),(1051,101268000,1),(1051,120621600,2),(1051,132717600,1),(1051,152071200,2),(1051,164167200,1),(1051,183520800,2),(1051,196221600,1),(1051,214970400,2),(1051,227671200,1),(1051,246420000,2),(1051,259120800,1),(1051,278474400,2),(1051,290570400,1),(1051,309924000,2),(1051,322020000,1),(1051,341373600,2),(1051,354675600,5),(1051,372819600,6),(1051,386125200,5),(1051,404269200,6),(1051,417574800,5),(1051,435718800,6),(1051,449024400,5),(1051,467773200,6),(1051,481078800,5),(1051,499222800,6),(1051,512528400,5),(1051,530672400,6),(1051,543978000,5),(1051,562122000,6),(1051,575427600,5),(1051,593571600,6),(1051,606877200,5),(1051,625626000,6),(1051,638326800,5),(1051,657075600,6),(1051,670381200,5),(1051,688525200,6),(1051,701830800,5),(1051,719974800,6),(1051,733280400,5),(1051,751424400,6),(1051,764730000,5),(1051,782874000,6),(1051,796179600,5),(1051,814323600,6),(1051,820454400,7),(1051,828234000,5),(1051,846378000,6),(1051,859683600,5),(1051,877827600,6),(1051,891133200,5),(1051,909277200,6),(1051,922582800,5),(1051,941331600,6),(1051,954032400,5),(1051,972781200,6),(1051,985482000,5),(1051,1004230800,6),(1051,1017536400,5),(1051,1035680400,6),(1051,1048986000,5),(1051,1067130000,6),(1051,1080435600,5),(1051,1099184400,6),(1051,1111885200,5),(1051,1130634000,6),(1051,1143334800,5),(1051,1162083600,6),(1051,1174784400,5),(1051,1193533200,6),(1051,1206838800,5),(1051,1224982800,6),(1051,1238288400,5),(1051,1256432400,6),(1051,1269738000,5),(1051,1288486800,6),(1051,1301187600,5),(1051,1319936400,6),(1051,1332637200,5),(1051,1351386000,6),(1051,1364691600,5),(1051,1382835600,6),(1051,1396141200,5),(1051,1414285200,6),(1051,1427590800,5),(1051,1445734800,6),(1051,1459040400,5),(1051,1477789200,6),(1051,1490490000,5),(1051,1509238800,6),(1051,1521939600,5),(1051,1540688400,6),(1051,1553994000,5),(1051,1572138000,6),(1051,1585443600,5),(1051,1603587600,6),(1051,1616893200,5),(1051,1635642000,6),(1051,1648342800,5),(1051,1667091600,6),(1051,1679792400,5),(1051,1698541200,6),(1051,1711846800,5),(1051,1729990800,6),(1051,1743296400,5),(1051,1761440400,6),(1051,1774746000,5),(1051,1792890000,6),(1051,1806195600,5),(1051,1824944400,6),(1051,1837645200,5),(1051,1856394000,6),(1051,1869094800,5),(1051,1887843600,6),(1051,1901149200,5),(1051,1919293200,6),(1051,1932598800,5),(1051,1950742800,6),(1051,1964048400,5),(1051,1982797200,6),(1051,1995498000,5),(1051,2014246800,6),(1051,2026947600,5),(1051,2045696400,6),(1051,2058397200,5),(1051,2077146000,6),(1051,2090451600,5),(1051,2108595600,6),(1051,2121901200,5),(1051,2140045200,6),(1052,-2147483648,1),(1052,-1869875816,3),(1052,-1693706400,2),(1052,-1680490800,3),(1052,-1570413600,2),(1052,-1552186800,3),(1052,-1538359200,2),(1052,-1522551600,3),(1052,-1507514400,2),(1052,-1490583600,3),(1052,-1440208800,2),(1052,-1428030000,3),(1052,-1409709600,2),(1052,-1396494000,3),(1052,-931053600,2),(1052,-922676400,3),(1052,-917834400,2),(1052,-892436400,3),(1052,-875844000,2),(1052,-764737200,3),(1052,-744343200,2),(1052,-733806000,3),(1052,-716436000,2),(1052,-701924400,3),(1052,-684986400,2),(1052,-670474800,3),(1052,-654141600,2),(1052,-639025200,3),(1052,-622087200,2),(1052,-606970800,3),(1052,-590032800,2),(1052,-575521200,3),(1052,-235620000,2),(1052,-194842800,3),(1052,-177732000,2),(1052,-165726000,3),(1052,107910000,2),(1052,121215600,3),(1052,133920000,2),(1052,152665200,3),(1052,164678400,2),(1052,184114800,3),(1052,196214400,2),(1052,215564400,3),(1052,228873600,2),(1052,245804400,3),(1052,260323200,2),(1052,267915600,4),(1052,428454000,5),(1052,433893600,4),(1052,468111600,3),(1052,482799600,6),(1052,496710000,7),(1052,512521200,6),(1052,528246000,7),(1052,543970800,6),(1052,559695600,7),(1052,575420400,6),(1052,591145200,7),(1052,606870000,6),(1052,622594800,7),(1052,638319600,6),(1052,654649200,7),(1052,670374000,6),(1052,686098800,7),(1052,701823600,6),(1052,717548400,7),(1052,733273200,6),(1052,748998000,7),(1052,764118000,6),(1052,780447600,7),(1052,796172400,6),(1052,811897200,7),(1052,828226800,6),(1052,846370800,7),(1052,859676400,6),(1052,877820400,7),(1052,891126000,6),(1052,909270000,7),(1052,922575600,6),(1052,941324400,7),(1052,954025200,6),(1052,972774000,7),(1052,985474800,6),(1052,1004223600,7),(1052,1017529200,6),(1052,1035673200,7),(1052,1048978800,6),(1052,1067122800,7),(1052,1080428400,6),(1052,1099177200,7),(1052,1111878000,6),(1052,1130626800,7),(1052,1143327600,6),(1052,1162076400,7),(1052,1167602400,3),(1052,1174784400,8),(1052,1193533200,9),(1052,1206838800,8),(1052,1224982800,9),(1052,1238288400,8),(1052,1256432400,9),(1052,1269738000,8),(1052,1288486800,9),(1052,1301274000,8),(1052,1319936400,9),(1052,1332637200,8),(1052,1351386000,9),(1052,1364691600,8),(1052,1382835600,9),(1052,1396227600,8),(1052,1414285200,9),(1052,1427590800,8),(1052,1446944400,9),(1052,1459040400,8),(1052,1473195600,4),(1053,-2147483648,2),(1053,-1691964000,1),(1053,-1680472800,2),(1053,-1664143200,1),(1053,-1650146400,2),(1053,-1633903200,1),(1053,-1617487200,2),(1053,-1601848800,1),(1053,-1586037600,2),(1053,-1570399200,1),(1053,-1552168800,2),(1053,-1538344800,1),(1053,-1522533600,2),(1053,-1507500000,1),(1053,-1490565600,2),(1053,-1473631200,1),(1053,-1460930400,2),(1053,-1442786400,1),(1053,-1428876000,2),(1053,-1410732000,1),(1053,-1396216800,2),(1053,-1379282400,1),(1053,-1364767200,2),(1053,-1348437600,1),(1053,-1333317600,2),(1053,-1315778400,1),(1053,-1301263200,2),(1053,-1284328800,1),(1053,-1269813600,2),(1053,-1253484000,1),(1053,-1238364000,2),(1053,-1221429600,1),(1053,-1206914400,2),(1053,-1189980000,1),(1053,-1175464800,2),(1053,-1159135200,1),(1053,-1143410400,2),(1053,-1126476000,1),(1053,-1111960800,2),(1053,-1095631200,1),(1053,-1080511200,2),(1053,-1063576800,1),(1053,-1049061600,2),(1053,-1032127200,1),(1053,-1017612000,2),(1053,-1001282400,1),(1053,-986162400,2),(1053,-969228000,1),(1053,-950479200,2),(1053,-942012000,1),(1053,-904518000,3),(1053,-896050800,1),(1053,-875487600,3),(1053,-864601200,1),(1053,-844038000,3),(1053,-832546800,1),(1053,-812588400,3),(1053,-798073200,1),(1053,-781052400,3),(1053,-772066800,1),(1053,-764805600,2),(1053,-748476000,1),(1053,-733356000,2),(1053,-719445600,1),(1053,-717030000,3),(1053,-706748400,1),(1053,-699487200,2),(1053,-687996000,1),(1053,-668037600,2),(1053,-654732000,1),(1053,-636588000,2),(1053,-622072800,1),(1053,-605743200,2),(1053,-590623200,1),(1053,-574293600,2),(1053,-558568800,1),(1053,-542239200,2),(1053,-527119200,1),(1053,-512604000,2),(1053,-496274400,1),(1053,-481154400,2),(1053,-464220000,1),(1053,-449704800,2),(1053,-432165600,1),(1053,-417650400,2),(1053,-401320800,1),(1053,-386200800,2),(1053,-369266400,1),(1053,-354751200,2),(1053,-337816800,1),(1053,-323301600,2),(1053,-306972000,1),(1053,-291852000,2),(1053,-276732000,1),(1053,-257983200,2),(1053,-245282400,1),(1053,-226533600,2),(1053,-213228000,1),(1053,-195084000,2),(1053,-182383200,1),(1053,-163634400,2),(1053,-150933600,1),(1053,-132184800,2),(1053,-119484000,1),(1053,-100735200,2),(1053,-88034400,1),(1053,-68680800,2),(1053,-59004000,1),(1053,-37242000,4),(1053,57722400,6),(1053,69818400,1),(1053,89172000,2),(1053,101268000,1),(1053,120621600,2),(1053,132717600,1),(1053,152071200,2),(1053,164167200,1),(1053,183520800,2),(1053,196221600,1),(1053,214970400,2),(1053,227671200,1),(1053,246420000,2),(1053,259120800,1),(1053,278474400,2),(1053,290570400,1),(1053,309924000,2),(1053,322020000,1),(1053,341373600,2),(1053,354675600,5),(1053,372819600,6),(1053,386125200,5),(1053,404269200,6),(1053,417574800,5),(1053,435718800,6),(1053,449024400,5),(1053,467773200,6),(1053,481078800,5),(1053,499222800,6),(1053,512528400,5),(1053,530672400,6),(1053,543978000,5),(1053,562122000,6),(1053,575427600,5),(1053,593571600,6),(1053,606877200,5),(1053,625626000,6),(1053,638326800,5),(1053,657075600,6),(1053,670381200,5),(1053,688525200,6),(1053,701830800,5),(1053,719974800,6),(1053,733280400,5),(1053,751424400,6),(1053,764730000,5),(1053,782874000,6),(1053,796179600,5),(1053,814323600,6),(1053,820454400,7),(1053,828234000,5),(1053,846378000,6),(1053,859683600,5),(1053,877827600,6),(1053,891133200,5),(1053,909277200,6),(1053,922582800,5),(1053,941331600,6),(1053,954032400,5),(1053,972781200,6),(1053,985482000,5),(1053,1004230800,6),(1053,1017536400,5),(1053,1035680400,6),(1053,1048986000,5),(1053,1067130000,6),(1053,1080435600,5),(1053,1099184400,6),(1053,1111885200,5),(1053,1130634000,6),(1053,1143334800,5),(1053,1162083600,6),(1053,1174784400,5),(1053,1193533200,6),(1053,1206838800,5),(1053,1224982800,6),(1053,1238288400,5),(1053,1256432400,6),(1053,1269738000,5),(1053,1288486800,6),(1053,1301187600,5),(1053,1319936400,6),(1053,1332637200,5),(1053,1351386000,6),(1053,1364691600,5),(1053,1382835600,6),(1053,1396141200,5),(1053,1414285200,6),(1053,1427590800,5),(1053,1445734800,6),(1053,1459040400,5),(1053,1477789200,6),(1053,1490490000,5),(1053,1509238800,6),(1053,1521939600,5),(1053,1540688400,6),(1053,1553994000,5),(1053,1572138000,6),(1053,1585443600,5),(1053,1603587600,6),(1053,1616893200,5),(1053,1635642000,6),(1053,1648342800,5),(1053,1667091600,6),(1053,1679792400,5),(1053,1698541200,6),(1053,1711846800,5),(1053,1729990800,6),(1053,1743296400,5),(1053,1761440400,6),(1053,1774746000,5),(1053,1792890000,6),(1053,1806195600,5),(1053,1824944400,6),(1053,1837645200,5),(1053,1856394000,6),(1053,1869094800,5),(1053,1887843600,6),(1053,1901149200,5),(1053,1919293200,6),(1053,1932598800,5),(1053,1950742800,6),(1053,1964048400,5),(1053,1982797200,6),(1053,1995498000,5),(1053,2014246800,6),(1053,2026947600,5),(1053,2045696400,6),(1053,2058397200,5),(1053,2077146000,6),(1053,2090451600,5),(1053,2108595600,6),(1053,2121901200,5),(1053,2140045200,6),(1054,-2147483648,2),(1054,-1693706400,1),(1054,-1680483600,2),(1054,-1663455600,3),(1054,-1650150000,4),(1054,-1632006000,3),(1054,-1618700400,4),(1054,-938905200,3),(1054,-857257200,4),(1054,-844556400,3),(1054,-828226800,4),(1054,-812502000,3),(1054,-796777200,4),(1054,-781052400,3),(1054,-780372000,6),(1054,-778730400,5),(1054,-762663600,6),(1054,-749095200,8),(1054,354920400,7),(1054,370728000,8),(1054,386456400,7),(1054,402264000,8),(1054,417992400,7),(1054,433800000,8),(1054,449614800,7),(1054,465346800,9),(1054,481071600,10),(1054,496796400,9),(1054,512521200,10),(1054,528246000,9),(1054,543970800,10),(1054,559695600,9),(1054,575420400,10),(1054,591145200,9),(1054,606870000,11),(1054,622598400,12),(1054,638323200,11),(1054,654652800,12),(1054,670377600,11),(1054,686102400,12),(1054,701827200,11),(1054,717552000,12),(1054,733276800,11),(1054,749001600,12),(1054,764726400,11),(1054,780451200,12),(1054,796176000,11),(1054,811900800,12),(1054,828230400,11),(1054,846374400,12),(1054,859680000,11),(1054,877824000,12),(1054,891129600,11),(1054,909273600,12),(1054,922579200,11),(1054,941328000,12),(1054,954028800,11),(1054,972777600,12),(1054,985478400,11),(1054,1004227200,12),(1054,1017532800,11),(1054,1035676800,12),(1054,1048982400,11),(1054,1067126400,12),(1054,1080432000,11),(1054,1099180800,12),(1054,1111881600,11),(1054,1130630400,12),(1054,1143331200,11),(1054,1162080000,12),(1054,1174780800,11),(1054,1193529600,12),(1054,1206835200,11),(1054,1224979200,12),(1054,1238284800,11),(1054,1256428800,12),(1054,1269734400,11),(1054,1288483200,12),(1054,1301184000,13),(1054,1414278000,12),(1055,-2147483648,1),(1055,-1441159324,2),(1055,-1247536800,3),(1055,-892522800,6),(1055,-857257200,4),(1055,-844556400,5),(1055,-828226800,4),(1055,-825382800,3),(1055,354920400,7),(1055,370728000,3),(1055,386456400,7),(1055,402264000,3),(1055,417992400,7),(1055,433800000,3),(1055,449614800,7),(1055,465346800,8),(1055,481071600,9),(1055,496796400,8),(1055,512521200,9),(1055,528246000,8),(1055,543970800,9),(1055,559695600,8),(1055,575420400,9),(1055,591145200,8),(1055,606870000,9),(1055,622594800,8),(1055,638319600,9),(1055,646783200,10),(1055,686102400,2),(1055,701820000,10),(1055,717541200,2),(1055,733269600,10),(1055,748990800,2),(1055,764719200,10),(1055,780440400,2),(1055,796179600,11),(1055,811904400,12),(1055,828234000,11),(1055,846378000,12),(1055,859683600,11),(1055,877827600,12),(1055,891133200,11),(1055,909277200,12),(1055,922582800,11),(1055,941331600,12),(1055,954032400,11),(1055,972781200,12),(1055,985482000,11),(1055,1004230800,12),(1055,1017536400,11),(1055,1035680400,12),(1055,1048986000,11),(1055,1067130000,12),(1055,1080435600,11),(1055,1099184400,12),(1055,1111885200,11),(1055,1130634000,12),(1055,1143334800,11),(1055,1162083600,12),(1055,1174784400,11),(1055,1193533200,12),(1055,1206838800,11),(1055,1224982800,12),(1055,1238288400,11),(1055,1256432400,12),(1055,1269738000,11),(1055,1288486800,12),(1055,1301187600,11),(1055,1319936400,12),(1055,1332637200,11),(1055,1351386000,12),(1055,1364691600,11),(1055,1382835600,12),(1055,1396141200,11),(1055,1414285200,12),(1055,1427590800,11),(1055,1445734800,12),(1055,1459040400,11),(1055,1477789200,12),(1055,1490490000,11),(1055,1509238800,12),(1055,1521939600,11),(1055,1540688400,12),(1055,1553994000,11),(1055,1572138000,12),(1055,1585443600,11),(1055,1603587600,12),(1055,1616893200,11),(1055,1635642000,12),(1055,1648342800,11),(1055,1667091600,12),(1055,1679792400,11),(1055,1698541200,12),(1055,1711846800,11),(1055,1729990800,12),(1055,1743296400,11),(1055,1761440400,12),(1055,1774746000,11),(1055,1792890000,12),(1055,1806195600,11),(1055,1824944400,12),(1055,1837645200,11),(1055,1856394000,12),(1055,1869094800,11),(1055,1887843600,12),(1055,1901149200,11),(1055,1919293200,12),(1055,1932598800,11),(1055,1950742800,12),(1055,1964048400,11),(1055,1982797200,12),(1055,1995498000,11),(1055,2014246800,12),(1055,2026947600,11),(1055,2045696400,12),(1055,2058397200,11),(1055,2077146000,12),(1055,2090451600,11),(1055,2108595600,12),(1055,2121901200,11),(1055,2140045200,12),(1056,-2147483648,0),(1056,-1593820800,1),(1056,-1247540400,3),(1056,354916800,2),(1056,370724400,3),(1056,386452800,2),(1056,402260400,3),(1056,417988800,2),(1056,433796400,3),(1056,449611200,2),(1056,465343200,4),(1056,481068000,5),(1056,496792800,4),(1056,512517600,5),(1056,528242400,4),(1056,543967200,5),(1056,559692000,4),(1056,575416800,5),(1056,591141600,4),(1056,606866400,6),(1056,622594800,7),(1056,638319600,6),(1056,654649200,7),(1056,670374000,4),(1056,701820000,6),(1056,717548400,7),(1056,733273200,6),(1056,748998000,7),(1056,764722800,6),(1056,780447600,7),(1056,796172400,6),(1056,811897200,7),(1056,828226800,6),(1056,846370800,7),(1056,859676400,6),(1056,877820400,7),(1056,891126000,6),(1056,909270000,7),(1056,922575600,6),(1056,941324400,7),(1056,954025200,6),(1056,972774000,7),(1056,985474800,6),(1056,1004223600,7),(1056,1017529200,6),(1056,1035673200,7),(1056,1048978800,6),(1056,1067122800,7),(1056,1080428400,6),(1056,1099177200,7),(1056,1111878000,6),(1056,1130626800,7),(1056,1143327600,6),(1056,1162076400,7),(1056,1174777200,6),(1056,1193526000,7),(1056,1206831600,6),(1056,1224975600,7),(1056,1238281200,6),(1056,1256425200,7),(1056,1269730800,6),(1056,1288479600,7),(1056,1301180400,4),(1056,1414274400,7),(1057,-2147483648,0),(1057,-1830384000,6),(1057,-1689555600,1),(1057,-1677801600,2),(1057,-1667437200,3),(1057,-1647738000,4),(1057,-1635814800,3),(1057,-1616202000,4),(1057,-1604365200,3),(1057,-1584666000,4),(1057,-1572742800,3),(1057,-1553043600,4),(1057,-1541206800,3),(1057,-1521507600,4),(1057,-1442451600,3),(1057,-1426813200,4),(1057,-1379293200,3),(1057,-1364778000,4),(1057,-1348448400,3),(1057,-1333328400,4),(1057,-1316394000,3),(1057,-1301274000,4),(1057,-1284339600,3),(1057,-1269824400,4),(1057,-1221440400,3),(1057,-1206925200,4),(1057,-1191200400,3),(1057,-1175475600,4),(1057,-1127696400,3),(1057,-1111971600,4),(1057,-1096851600,3),(1057,-1080522000,4),(1057,-1063587600,3),(1057,-1049072400,4),(1057,-1033347600,3),(1057,-1017622800,4),(1057,-1002502800,3),(1057,-986173200,4),(1057,-969238800,3),(1057,-950490000,4),(1057,-942022800,3),(1057,-922669200,4),(1057,-906944400,3),(1057,-891133200,4),(1057,-877309200,3),(1057,-873684000,5),(1057,-864007200,3),(1057,-857955600,4),(1057,-845859600,3),(1057,-842839200,5),(1057,-831348000,3),(1057,-825901200,4),(1057,-814410000,3),(1057,-810784800,5),(1057,-799898400,3),(1057,-794451600,4),(1057,-782960400,3),(1057,-779335200,5),(1057,-768448800,3),(1057,-763002000,4),(1057,-749091600,3),(1057,-733366800,4),(1057,-717631200,3),(1057,-701906400,4),(1057,-686181600,3),(1057,-670456800,4),(1057,-654732000,3),(1057,-639007200,4),(1057,-591832800,3),(1057,-575503200,4),(1057,-559778400,3),(1057,-544053600,4),(1057,-528328800,3),(1057,-512604000,4),(1057,-496879200,3),(1057,-481154400,4),(1057,-465429600,3),(1057,-449704800,4),(1057,-433980000,3),(1057,-417650400,4),(1057,-401925600,3),(1057,-386200800,4),(1057,-370476000,3),(1057,-354751200,4),(1057,-339026400,3),(1057,-323301600,4),(1057,-307576800,3),(1057,-291852000,4),(1057,-276127200,3),(1057,-260402400,4),(1057,-244677600,3),(1057,-228348000,4),(1057,-212623200,3),(1057,-196898400,4),(1057,-181173600,3),(1057,-165448800,4),(1057,-149724000,3),(1057,-133999200,4),(1057,-118274400,7),(1057,212544000,2),(1057,228268800,3),(1057,243993600,4),(1057,260323200,3),(1057,276048000,4),(1057,291772800,3),(1057,307501200,4),(1057,323222400,3),(1057,338950800,4),(1057,354675600,3),(1057,370400400,4),(1057,386125200,3),(1057,401850000,4),(1057,417578400,3),(1057,433299600,4),(1057,449024400,3),(1057,465354000,4),(1057,481078800,3),(1057,496803600,4),(1057,512528400,3),(1057,528253200,4),(1057,543978000,3),(1057,559702800,4),(1057,575427600,3),(1057,591152400,4),(1057,606877200,3),(1057,622602000,4),(1057,638326800,3),(1057,654656400,4),(1057,670381200,3),(1057,686106000,4),(1057,701830800,3),(1057,717555600,8),(1057,733280400,9),(1057,749005200,8),(1057,764730000,9),(1057,780454800,8),(1057,796179600,9),(1057,811904400,8),(1057,828234000,10),(1057,846378000,6),(1057,859683600,10),(1057,877827600,6),(1057,891133200,10),(1057,909277200,6),(1057,922582800,10),(1057,941331600,6),(1057,954032400,10),(1057,972781200,6),(1057,985482000,10),(1057,1004230800,6),(1057,1017536400,10),(1057,1035680400,6),(1057,1048986000,10),(1057,1067130000,6),(1057,1080435600,10),(1057,1099184400,6),(1057,1111885200,10),(1057,1130634000,6),(1057,1143334800,10),(1057,1162083600,6),(1057,1174784400,10),(1057,1193533200,6),(1057,1206838800,10),(1057,1224982800,6),(1057,1238288400,10),(1057,1256432400,6),(1057,1269738000,10),(1057,1288486800,6),(1057,1301187600,10),(1057,1319936400,6),(1057,1332637200,10),(1057,1351386000,6),(1057,1364691600,10),(1057,1382835600,6),(1057,1396141200,10),(1057,1414285200,6),(1057,1427590800,10),(1057,1445734800,6),(1057,1459040400,10),(1057,1477789200,6),(1057,1490490000,10),(1057,1509238800,6),(1057,1521939600,10),(1057,1540688400,6),(1057,1553994000,10),(1057,1572138000,6),(1057,1585443600,10),(1057,1603587600,6),(1057,1616893200,10),(1057,1635642000,6),(1057,1648342800,10),(1057,1667091600,6),(1057,1679792400,10),(1057,1698541200,6),(1057,1711846800,10),(1057,1729990800,6),(1057,1743296400,10),(1057,1761440400,6),(1057,1774746000,10),(1057,1792890000,6),(1057,1806195600,10),(1057,1824944400,6),(1057,1837645200,10),(1057,1856394000,6),(1057,1869094800,10),(1057,1887843600,6),(1057,1901149200,10),(1057,1919293200,6),(1057,1932598800,10),(1057,1950742800,6),(1057,1964048400,10),(1057,1982797200,6),(1057,1995498000,10),(1057,2014246800,6),(1057,2026947600,10),(1057,2045696400,6),(1057,2058397200,10),(1057,2077146000,6),(1057,2090451600,10),(1057,2108595600,6),(1057,2121901200,10),(1057,2140045200,6),(1058,-2147483648,1),(1058,-905824800,4),(1058,-857257200,2),(1058,-844556400,3),(1058,-828226800,2),(1058,-812502000,3),(1058,-796777200,2),(1058,-788922000,1),(1058,-777942000,3),(1058,-766623600,2),(1058,407199600,1),(1058,417574800,5),(1058,433299600,6),(1058,449024400,5),(1058,465354000,6),(1058,481078800,5),(1058,496803600,6),(1058,512528400,5),(1058,528253200,6),(1058,543978000,5),(1058,559702800,6),(1058,575427600,5),(1058,591152400,6),(1058,606877200,5),(1058,622602000,6),(1058,638326800,5),(1058,654656400,6),(1058,670381200,5),(1058,686106000,6),(1058,701830800,5),(1058,717555600,6),(1058,733280400,5),(1058,749005200,6),(1058,764730000,5),(1058,780454800,6),(1058,796179600,5),(1058,811904400,6),(1058,828234000,5),(1058,846378000,6),(1058,859683600,5),(1058,877827600,6),(1058,891133200,5),(1058,909277200,6),(1058,922582800,5),(1058,941331600,6),(1058,954032400,5),(1058,972781200,6),(1058,985482000,5),(1058,1004230800,6),(1058,1017536400,5),(1058,1035680400,6),(1058,1048986000,5),(1058,1067130000,6),(1058,1080435600,5),(1058,1099184400,6),(1058,1111885200,5),(1058,1130634000,6),(1058,1143334800,5),(1058,1162083600,6),(1058,1174784400,5),(1058,1193533200,6),(1058,1206838800,5),(1058,1224982800,6),(1058,1238288400,5),(1058,1256432400,6),(1058,1269738000,5),(1058,1288486800,6),(1058,1301187600,5),(1058,1319936400,6),(1058,1332637200,5),(1058,1351386000,6),(1058,1364691600,5),(1058,1382835600,6),(1058,1396141200,5),(1058,1414285200,6),(1058,1427590800,5),(1058,1445734800,6),(1058,1459040400,5),(1058,1477789200,6),(1058,1490490000,5),(1058,1509238800,6),(1058,1521939600,5),(1058,1540688400,6),(1058,1553994000,5),(1058,1572138000,6),(1058,1585443600,5),(1058,1603587600,6),(1058,1616893200,5),(1058,1635642000,6),(1058,1648342800,5),(1058,1667091600,6),(1058,1679792400,5),(1058,1698541200,6),(1058,1711846800,5),(1058,1729990800,6),(1058,1743296400,5),(1058,1761440400,6),(1058,1774746000,5),(1058,1792890000,6),(1058,1806195600,5),(1058,1824944400,6),(1058,1837645200,5),(1058,1856394000,6),(1058,1869094800,5),(1058,1887843600,6),(1058,1901149200,5),(1058,1919293200,6),(1058,1932598800,5),(1058,1950742800,6),(1058,1964048400,5),(1058,1982797200,6),(1058,1995498000,5),(1058,2014246800,6),(1058,2026947600,5),(1058,2045696400,6),(1058,2058397200,5),(1058,2077146000,6),(1058,2090451600,5),(1058,2108595600,6),(1058,2121901200,5),(1058,2140045200,6),(1059,-2147483648,2),(1059,-1691964000,1),(1059,-1680472800,2),(1059,-1664143200,1),(1059,-1650146400,2),(1059,-1633903200,1),(1059,-1617487200,2),(1059,-1601848800,1),(1059,-1586037600,2),(1059,-1570399200,1),(1059,-1552168800,2),(1059,-1538344800,1),(1059,-1522533600,2),(1059,-1507500000,1),(1059,-1490565600,2),(1059,-1473631200,1),(1059,-1460930400,2),(1059,-1442786400,1),(1059,-1428876000,2),(1059,-1410732000,1),(1059,-1396216800,2),(1059,-1379282400,1),(1059,-1364767200,2),(1059,-1348437600,1),(1059,-1333317600,2),(1059,-1315778400,1),(1059,-1301263200,2),(1059,-1284328800,1),(1059,-1269813600,2),(1059,-1253484000,1),(1059,-1238364000,2),(1059,-1221429600,1),(1059,-1206914400,2),(1059,-1189980000,1),(1059,-1175464800,2),(1059,-1159135200,1),(1059,-1143410400,2),(1059,-1126476000,1),(1059,-1111960800,2),(1059,-1095631200,1),(1059,-1080511200,2),(1059,-1063576800,1),(1059,-1049061600,2),(1059,-1032127200,1),(1059,-1017612000,2),(1059,-1001282400,1),(1059,-986162400,2),(1059,-969228000,1),(1059,-950479200,2),(1059,-942012000,1),(1059,-904518000,3),(1059,-896050800,1),(1059,-875487600,3),(1059,-864601200,1),(1059,-844038000,3),(1059,-832546800,1),(1059,-812588400,3),(1059,-798073200,1),(1059,-781052400,3),(1059,-772066800,1),(1059,-764805600,2),(1059,-748476000,1),(1059,-733356000,2),(1059,-719445600,1),(1059,-717030000,3),(1059,-706748400,1),(1059,-699487200,2),(1059,-687996000,1),(1059,-668037600,2),(1059,-654732000,1),(1059,-636588000,2),(1059,-622072800,1),(1059,-605743200,2),(1059,-590623200,1),(1059,-574293600,2),(1059,-558568800,1),(1059,-542239200,2),(1059,-527119200,1),(1059,-512604000,2),(1059,-496274400,1),(1059,-481154400,2),(1059,-464220000,1),(1059,-449704800,2),(1059,-432165600,1),(1059,-417650400,2),(1059,-401320800,1),(1059,-386200800,2),(1059,-369266400,1),(1059,-354751200,2),(1059,-337816800,1),(1059,-323301600,2),(1059,-306972000,1),(1059,-291852000,2),(1059,-276732000,1),(1059,-257983200,2),(1059,-245282400,1),(1059,-226533600,2),(1059,-213228000,1),(1059,-195084000,2),(1059,-182383200,1),(1059,-163634400,2),(1059,-150933600,1),(1059,-132184800,2),(1059,-119484000,1),(1059,-100735200,2),(1059,-88034400,1),(1059,-68680800,2),(1059,-59004000,1),(1059,-37242000,4),(1059,57722400,6),(1059,69818400,1),(1059,89172000,2),(1059,101268000,1),(1059,120621600,2),(1059,132717600,1),(1059,152071200,2),(1059,164167200,1),(1059,183520800,2),(1059,196221600,1),(1059,214970400,2),(1059,227671200,1),(1059,246420000,2),(1059,259120800,1),(1059,278474400,2),(1059,290570400,1),(1059,309924000,2),(1059,322020000,1),(1059,341373600,2),(1059,354675600,5),(1059,372819600,6),(1059,386125200,5),(1059,404269200,6),(1059,417574800,5),(1059,435718800,6),(1059,449024400,5),(1059,467773200,6),(1059,481078800,5),(1059,499222800,6),(1059,512528400,5),(1059,530672400,6),(1059,543978000,5),(1059,562122000,6),(1059,575427600,5),(1059,593571600,6),(1059,606877200,5),(1059,625626000,6),(1059,638326800,5),(1059,657075600,6),(1059,670381200,5),(1059,688525200,6),(1059,701830800,5),(1059,719974800,6),(1059,733280400,5),(1059,751424400,6),(1059,764730000,5),(1059,782874000,6),(1059,796179600,5),(1059,814323600,6),(1059,820454400,7),(1059,828234000,5),(1059,846378000,6),(1059,859683600,5),(1059,877827600,6),(1059,891133200,5),(1059,909277200,6),(1059,922582800,5),(1059,941331600,6),(1059,954032400,5),(1059,972781200,6),(1059,985482000,5),(1059,1004230800,6),(1059,1017536400,5),(1059,1035680400,6),(1059,1048986000,5),(1059,1067130000,6),(1059,1080435600,5),(1059,1099184400,6),(1059,1111885200,5),(1059,1130634000,6),(1059,1143334800,5),(1059,1162083600,6),(1059,1174784400,5),(1059,1193533200,6),(1059,1206838800,5),(1059,1224982800,6),(1059,1238288400,5),(1059,1256432400,6),(1059,1269738000,5),(1059,1288486800,6),(1059,1301187600,5),(1059,1319936400,6),(1059,1332637200,5),(1059,1351386000,6),(1059,1364691600,5),(1059,1382835600,6),(1059,1396141200,5),(1059,1414285200,6),(1059,1427590800,5),(1059,1445734800,6),(1059,1459040400,5),(1059,1477789200,6),(1059,1490490000,5),(1059,1509238800,6),(1059,1521939600,5),(1059,1540688400,6),(1059,1553994000,5),(1059,1572138000,6),(1059,1585443600,5),(1059,1603587600,6),(1059,1616893200,5),(1059,1635642000,6),(1059,1648342800,5),(1059,1667091600,6),(1059,1679792400,5),(1059,1698541200,6),(1059,1711846800,5),(1059,1729990800,6),(1059,1743296400,5),(1059,1761440400,6),(1059,1774746000,5),(1059,1792890000,6),(1059,1806195600,5),(1059,1824944400,6),(1059,1837645200,5),(1059,1856394000,6),(1059,1869094800,5),(1059,1887843600,6),(1059,1901149200,5),(1059,1919293200,6),(1059,1932598800,5),(1059,1950742800,6),(1059,1964048400,5),(1059,1982797200,6),(1059,1995498000,5),(1059,2014246800,6),(1059,2026947600,5),(1059,2045696400,6),(1059,2058397200,5),(1059,2077146000,6),(1059,2090451600,5),(1059,2108595600,6),(1059,2121901200,5),(1059,2140045200,6),(1060,-2147483648,0),(1060,-2069713476,2),(1060,-1692496800,1),(1060,-1680483600,2),(1060,-1662343200,1),(1060,-1650157200,2),(1060,-1632006000,3),(1060,-1618700400,4),(1060,-1612659600,6),(1060,-1604278800,5),(1060,-1585519200,6),(1060,-1574038800,5),(1060,-1552258800,6),(1060,-1539997200,5),(1060,-1520550000,6),(1060,-1507510800,5),(1060,-1490572800,6),(1060,-1473642000,5),(1060,-1459119600,6),(1060,-1444006800,5),(1060,-1427673600,6),(1060,-1411866000,5),(1060,-1396224000,6),(1060,-1379293200,5),(1060,-1364774400,6),(1060,-1348448400,5),(1060,-1333324800,6),(1060,-1316394000,5),(1060,-1301270400,6),(1060,-1284339600,5),(1060,-1269813600,7),(1060,-1253484000,8),(1060,-1238364000,7),(1060,-1221429600,8),(1060,-1206914400,7),(1060,-1191189600,8),(1060,-1175464800,7),(1060,-1160344800,8),(1060,-1143410400,7),(1060,-1127685600,8),(1060,-1111960800,7),(1060,-1096840800,8),(1060,-1080511200,7),(1060,-1063576800,8),(1060,-1049061600,7),(1060,-1033336800,8),(1060,-1017612000,7),(1060,-1002492000,8),(1060,-986162400,7),(1060,-969228000,8),(1060,-950479200,7),(1060,-942012000,8),(1060,-935186400,11),(1060,-857257200,9),(1060,-844556400,10),(1060,-828226800,9),(1060,-812502000,10),(1060,-797986800,2),(1060,-781052400,3),(1060,-766623600,4),(1060,-745455600,3),(1060,-733273200,4),(1060,220921200,2),(1060,228877200,12),(1060,243997200,13),(1060,260326800,12),(1060,276051600,13),(1060,291776400,12),(1060,307501200,13),(1060,323830800,12),(1060,338950800,13),(1060,354675600,12),(1060,370400400,13),(1060,386125200,12),(1060,401850000,13),(1060,417574800,12),(1060,433299600,13),(1060,449024400,12),(1060,465354000,13),(1060,481078800,12),(1060,496803600,13),(1060,512528400,12),(1060,528253200,13),(1060,543978000,12),(1060,559702800,13),(1060,575427600,12),(1060,591152400,13),(1060,606877200,12),(1060,622602000,13),(1060,638326800,12),(1060,654656400,13),(1060,670381200,12),(1060,686106000,13),(1060,701830800,12),(1060,717555600,13),(1060,733280400,12),(1060,749005200,13),(1060,764730000,12),(1060,780454800,13),(1060,796179600,12),(1060,811904400,13),(1060,828234000,12),(1060,846378000,13),(1060,859683600,12),(1060,877827600,13),(1060,891133200,12),(1060,909277200,13),(1060,922582800,12),(1060,941331600,13),(1060,954032400,12),(1060,972781200,13),(1060,985482000,12),(1060,1004230800,13),(1060,1017536400,12),(1060,1035680400,13),(1060,1048986000,12),(1060,1067130000,13),(1060,1080435600,12),(1060,1099184400,13),(1060,1111885200,12),(1060,1130634000,13),(1060,1143334800,12),(1060,1162083600,13),(1060,1174784400,12),(1060,1193533200,13),(1060,1206838800,12),(1060,1224982800,13),(1060,1238288400,12),(1060,1256432400,13),(1060,1269738000,12),(1060,1288486800,13),(1060,1301187600,12),(1060,1319936400,13),(1060,1332637200,12),(1060,1351386000,13),(1060,1364691600,12),(1060,1382835600,13),(1060,1396141200,12),(1060,1414285200,13),(1060,1427590800,12),(1060,1445734800,13),(1060,1459040400,12),(1060,1477789200,13),(1060,1490490000,12),(1060,1509238800,13),(1060,1521939600,12),(1060,1540688400,13),(1060,1553994000,12),(1060,1572138000,13),(1060,1585443600,12),(1060,1603587600,13),(1060,1616893200,12),(1060,1635642000,13),(1060,1648342800,12),(1060,1667091600,13),(1060,1679792400,12),(1060,1698541200,13),(1060,1711846800,12),(1060,1729990800,13),(1060,1743296400,12),(1060,1761440400,13),(1060,1774746000,12),(1060,1792890000,13),(1060,1806195600,12),(1060,1824944400,13),(1060,1837645200,12),(1060,1856394000,13),(1060,1869094800,12),(1060,1887843600,13),(1060,1901149200,12),(1060,1919293200,13),(1060,1932598800,12),(1060,1950742800,13),(1060,1964048400,12),(1060,1982797200,13),(1060,1995498000,12),(1060,2014246800,13),(1060,2026947600,12),(1060,2045696400,13),(1060,2058397200,12),(1060,2077146000,13),(1060,2090451600,12),(1060,2108595600,13),(1060,2121901200,12),(1060,2140045200,13),(1061,-2147483648,4),(1061,-1631926800,1),(1061,-1616889600,2),(1061,-1601168400,1),(1061,-1585353600,2),(1061,-1442451600,1),(1061,-1427673600,2),(1061,-1379293200,1),(1061,-1364774400,2),(1061,-1348448400,1),(1061,-1333324800,2),(1061,-1316390400,1),(1061,-1301270400,2),(1061,-1284339600,1),(1061,-1269820800,2),(1061,-1026954000,1),(1061,-1017619200,2),(1061,-1001898000,1),(1061,-999482400,3),(1061,-986090400,1),(1061,-954115200,2),(1061,-940208400,6),(1061,-873079200,5),(1061,-862621200,6),(1061,-842839200,5),(1061,-828320400,6),(1061,-811389600,5),(1061,-796870800,6),(1061,-779940000,5),(1061,-765421200,6),(1061,-748490400,5),(1061,-733971600,6),(1061,-652327200,5),(1061,-639018000,6),(1061,135122400,5),(1061,150246000,6),(1061,166572000,5),(1061,181695600,6),(1061,196812000,5),(1061,212540400,6),(1061,228866400,5),(1061,243990000,6),(1061,260326800,7),(1061,276051600,8),(1061,283993200,6),(1061,291776400,9),(1061,307501200,10),(1061,323830800,9),(1061,338950800,10),(1061,354675600,9),(1061,370400400,10),(1061,386125200,9),(1061,401850000,10),(1061,417574800,9),(1061,433299600,10),(1061,449024400,9),(1061,465354000,10),(1061,481078800,9),(1061,496803600,10),(1061,512528400,9),(1061,528253200,10),(1061,543978000,9),(1061,559702800,10),(1061,575427600,9),(1061,591152400,10),(1061,606877200,9),(1061,622602000,10),(1061,638326800,9),(1061,654656400,10),(1061,670381200,9),(1061,686106000,10),(1061,701830800,9),(1061,717555600,10),(1061,733280400,9),(1061,749005200,10),(1061,764730000,9),(1061,780454800,10),(1061,796179600,9),(1061,811904400,10),(1061,828234000,9),(1061,846378000,10),(1061,859683600,9),(1061,877827600,10),(1061,891133200,9),(1061,909277200,10),(1061,922582800,9),(1061,941331600,10),(1061,954032400,9),(1061,972781200,10),(1061,985482000,9),(1061,1004230800,10),(1061,1017536400,9),(1061,1035680400,10),(1061,1048986000,9),(1061,1067130000,10),(1061,1080435600,9),(1061,1099184400,10),(1061,1111885200,9),(1061,1130634000,10),(1061,1143334800,9),(1061,1162083600,10),(1061,1174784400,9),(1061,1193533200,10),(1061,1206838800,9),(1061,1224982800,10),(1061,1238288400,9),(1061,1256432400,10),(1061,1269738000,9),(1061,1288486800,10),(1061,1301187600,9),(1061,1319936400,10),(1061,1332637200,9),(1061,1351386000,10),(1061,1364691600,9),(1061,1382835600,10),(1061,1396141200,9),(1061,1414285200,10),(1061,1427590800,9),(1061,1445734800,10),(1061,1459040400,9),(1061,1477789200,10),(1061,1490490000,9),(1061,1509238800,10),(1061,1521939600,9),(1061,1540688400,10),(1061,1553994000,9),(1061,1572138000,10),(1061,1585443600,9),(1061,1603587600,10),(1061,1616893200,9),(1061,1635642000,10),(1061,1648342800,9),(1061,1667091600,10),(1061,1679792400,9),(1061,1698541200,10),(1061,1711846800,9),(1061,1729990800,10),(1061,1743296400,9),(1061,1761440400,10),(1061,1774746000,9),(1061,1792890000,10),(1061,1806195600,9),(1061,1824944400,10),(1061,1837645200,9),(1061,1856394000,10),(1061,1869094800,9),(1061,1887843600,10),(1061,1901149200,9),(1061,1919293200,10),(1061,1932598800,9),(1061,1950742800,10),(1061,1964048400,9),(1061,1982797200,10),(1061,1995498000,9),(1061,2014246800,10),(1061,2026947600,9),(1061,2045696400,10),(1061,2058397200,9),(1061,2077146000,10),(1061,2090451600,9),(1061,2108595600,10),(1061,2121901200,9),(1061,2140045200,10),(1062,-2147483648,3),(1062,-1690765200,1),(1062,-1680487200,2),(1062,-1664758800,1),(1062,-1648951200,2),(1062,-1635123600,1),(1062,-1616896800,2),(1062,-1604278800,1),(1062,-1585533600,2),(1062,-1571014800,1),(1062,-1555293600,2),(1062,-932432400,1),(1062,-857257200,3),(1062,-844556400,4),(1062,-828226800,3),(1062,-812588400,4),(1062,-798073200,3),(1062,-781052400,1),(1062,-766717200,2),(1062,-750898800,4),(1062,-733359600,3),(1062,-719456400,4),(1062,-701917200,3),(1062,-689209200,4),(1062,-670460400,3),(1062,-114051600,4),(1062,-103168800,2),(1062,-81997200,4),(1062,-71715600,3),(1062,-50547600,4),(1062,-40266000,3),(1062,-18493200,4),(1062,-8211600,3),(1062,12956400,4),(1062,23238000,3),(1062,43801200,4),(1062,54687600,3),(1062,75855600,4),(1062,86742000,3),(1062,102380400,4),(1062,118105200,3),(1062,135730800,4),(1062,148518000,3),(1062,167187600,1),(1062,180489600,2),(1062,198637200,1),(1062,211939200,2),(1062,230086800,1),(1062,243388800,2),(1062,261536400,1),(1062,274838400,2),(1062,292986000,1),(1062,306288000,2),(1062,323312400,1),(1062,338342400,2),(1062,354675600,5),(1062,370400400,6),(1062,386125200,5),(1062,401850000,6),(1062,417574800,5),(1062,433299600,6),(1062,449024400,5),(1062,465354000,6),(1062,481078800,5),(1062,496803600,6),(1062,512528400,5),(1062,528253200,6),(1062,543978000,5),(1062,559702800,6),(1062,575427600,5),(1062,591152400,6),(1062,606877200,5),(1062,622602000,6),(1062,638326800,5),(1062,654656400,6),(1062,670381200,5),(1062,686106000,6),(1062,701830800,5),(1062,717555600,6),(1062,733280400,5),(1062,749005200,6),(1062,764730000,5),(1062,780454800,6),(1062,796179600,5),(1062,811904400,6),(1062,828234000,5),(1062,846378000,6),(1062,859683600,5),(1062,877827600,6),(1062,891133200,5),(1062,909277200,6),(1062,922582800,5),(1062,941331600,6),(1062,954032400,5),(1062,972781200,6),(1062,985482000,5),(1062,1004230800,6),(1062,1017536400,5),(1062,1035680400,6),(1062,1048986000,5),(1062,1067130000,6),(1062,1080435600,5),(1062,1099184400,6),(1062,1111885200,5),(1062,1130634000,6),(1062,1143334800,5),(1062,1162083600,6),(1062,1174784400,5),(1062,1193533200,6),(1062,1206838800,5),(1062,1224982800,6),(1062,1238288400,5),(1062,1256432400,6),(1062,1269738000,5),(1062,1288486800,6),(1062,1301187600,5),(1062,1319936400,6),(1062,1332637200,5),(1062,1351386000,6),(1062,1364691600,5),(1062,1382835600,6),(1062,1396141200,5),(1062,1414285200,6),(1062,1427590800,5),(1062,1445734800,6),(1062,1459040400,5),(1062,1477789200,6),(1062,1490490000,5),(1062,1509238800,6),(1062,1521939600,5),(1062,1540688400,6),(1062,1553994000,5),(1062,1572138000,6),(1062,1585443600,5),(1062,1603587600,6),(1062,1616893200,5),(1062,1635642000,6),(1062,1648342800,5),(1062,1667091600,6),(1062,1679792400,5),(1062,1698541200,6),(1062,1711846800,5),(1062,1729990800,6),(1062,1743296400,5),(1062,1761440400,6),(1062,1774746000,5),(1062,1792890000,6),(1062,1806195600,5),(1062,1824944400,6),(1062,1837645200,5),(1062,1856394000,6),(1062,1869094800,5),(1062,1887843600,6),(1062,1901149200,5),(1062,1919293200,6),(1062,1932598800,5),(1062,1950742800,6),(1062,1964048400,5),(1062,1982797200,6),(1062,1995498000,5),(1062,2014246800,6),(1062,2026947600,5),(1062,2045696400,6),(1062,2058397200,5),(1062,2077146000,6),(1062,2090451600,5),(1062,2108595600,6),(1062,2121901200,5),(1062,2140045200,6),(1063,-2147483648,1),(1063,-1535938789,3),(1063,-875671200,2),(1063,-859773600,3),(1063,354672000,2),(1063,370396800,3),(1063,386121600,2),(1063,401846400,3),(1063,417574800,4),(1063,433299600,5),(1063,449024400,4),(1063,465354000,5),(1063,481078800,4),(1063,496803600,5),(1063,512528400,4),(1063,528253200,5),(1063,543978000,4),(1063,559702800,5),(1063,575427600,4),(1063,591152400,5),(1063,606877200,4),(1063,622602000,5),(1063,638326800,4),(1063,654656400,5),(1063,670381200,4),(1063,686106000,5),(1063,701830800,4),(1063,717555600,5),(1063,733280400,4),(1063,749005200,5),(1063,764730000,4),(1063,780454800,5),(1063,796179600,4),(1063,811904400,5),(1063,828234000,4),(1063,846378000,5),(1063,859683600,4),(1063,877827600,5),(1063,891133200,4),(1063,909277200,5),(1063,922582800,4),(1063,941331600,5),(1063,954032400,4),(1063,972781200,5),(1063,985482000,4),(1063,1004230800,5),(1063,1017536400,4),(1063,1035680400,5),(1063,1048986000,4),(1063,1067130000,5),(1063,1080435600,4),(1063,1099184400,5),(1063,1111885200,4),(1063,1130634000,5),(1063,1143334800,4),(1063,1162083600,5),(1063,1174784400,4),(1063,1193533200,5),(1063,1206838800,4),(1063,1224982800,5),(1063,1238288400,4),(1063,1256432400,5),(1063,1269738000,4),(1063,1288486800,5),(1063,1301187600,4),(1063,1319936400,5),(1063,1332637200,4),(1063,1351386000,5),(1063,1364691600,4),(1063,1382835600,5),(1063,1396141200,4),(1063,1414285200,5),(1063,1427590800,4),(1063,1445734800,5),(1063,1459040400,4),(1063,1477789200,5),(1063,1490490000,4),(1063,1509238800,5),(1063,1521939600,4),(1063,1540688400,5),(1063,1553994000,4),(1063,1572138000,5),(1063,1585443600,4),(1063,1603587600,5),(1063,1616893200,4),(1063,1635642000,5),(1063,1648342800,4),(1063,1667091600,5),(1063,1679792400,4),(1063,1698541200,5),(1063,1711846800,4),(1063,1729990800,5),(1063,1743296400,4),(1063,1761440400,5),(1063,1774746000,4),(1063,1792890000,5),(1063,1806195600,4),(1063,1824944400,5),(1063,1837645200,4),(1063,1856394000,5),(1063,1869094800,4),(1063,1887843600,5),(1063,1901149200,4),(1063,1919293200,5),(1063,1932598800,4),(1063,1950742800,5),(1063,1964048400,4),(1063,1982797200,5),(1063,1995498000,4),(1063,2014246800,5),(1063,2026947600,4),(1063,2045696400,5),(1063,2058397200,4),(1063,2077146000,5),(1063,2090451600,4),(1063,2108595600,5),(1063,2121901200,4),(1063,2140045200,5),(1064,-2147483648,1),(1064,-1441158600,2),(1064,-1247536800,3),(1064,-899780400,6),(1064,-857257200,4),(1064,-844556400,5),(1064,-828226800,4),(1064,-812502000,5),(1064,-804650400,3),(1064,354920400,7),(1064,370728000,3),(1064,386456400,7),(1064,402264000,3),(1064,417992400,7),(1064,433800000,3),(1064,449614800,7),(1064,465346800,8),(1064,481071600,9),(1064,496796400,8),(1064,512521200,9),(1064,528246000,8),(1064,543970800,9),(1064,559695600,8),(1064,575420400,9),(1064,591145200,8),(1064,606870000,9),(1064,622594800,8),(1064,631141200,3),(1064,670374000,10),(1064,686102400,11),(1064,701827200,10),(1064,717552000,11),(1064,733276800,10),(1064,749001600,11),(1064,764726400,10),(1064,780451200,11),(1064,796176000,10),(1064,811900800,11),(1064,828230400,10),(1064,846374400,11),(1064,859680000,10),(1064,877824000,11),(1064,891129600,10),(1064,909273600,11),(1064,922579200,10),(1064,941328000,11),(1064,954028800,10),(1064,972777600,11),(1064,985478400,10),(1064,1004227200,11),(1064,1017532800,10),(1064,1035676800,11),(1064,1048982400,10),(1064,1067126400,11),(1064,1080432000,10),(1064,1099180800,11),(1064,1111881600,10),(1064,1130630400,11),(1064,1143331200,10),(1064,1162080000,11),(1064,1174780800,10),(1064,1193529600,11),(1064,1206835200,10),(1064,1224979200,11),(1064,1238284800,10),(1064,1256428800,11),(1064,1269734400,10),(1064,1288483200,11),(1064,1301184000,12),(1065,-2147483648,1),(1065,-1855958961,6),(1065,-1689814800,2),(1065,-1680397200,3),(1065,-1665363600,2),(1065,-1648342800,3),(1065,-1635123600,2),(1065,-1616893200,3),(1065,-1604278800,2),(1065,-1585443600,3),(1065,-1574038800,2),(1065,-1552266000,3),(1065,-1539997200,2),(1065,-1520557200,3),(1065,-1507510800,2),(1065,-1490576400,3),(1065,-1470618000,2),(1065,-1459126800,3),(1065,-1444006800,2),(1065,-1427677200,3),(1065,-1411952400,2),(1065,-1396227600,3),(1065,-1379293200,2),(1065,-1364778000,3),(1065,-1348448400,2),(1065,-1333328400,3),(1065,-1316394000,2),(1065,-1301274000,3),(1065,-1284339600,2),(1065,-1269824400,3),(1065,-1253494800,2),(1065,-1238374800,3),(1065,-1221440400,2),(1065,-1206925200,3),(1065,-1191200400,2),(1065,-1175475600,3),(1065,-1160355600,2),(1065,-1143421200,3),(1065,-1127696400,2),(1065,-1111971600,3),(1065,-1096851600,2),(1065,-1080522000,3),(1065,-1063587600,2),(1065,-1049072400,3),(1065,-1033347600,2),(1065,-1017622800,3),(1065,-1002502800,2),(1065,-986173200,3),(1065,-969238800,2),(1065,-950490000,3),(1065,-942012000,4),(1065,-904438800,5),(1065,-891136800,4),(1065,-877827600,5),(1065,-857257200,4),(1065,-844556400,5),(1065,-828226800,4),(1065,-812502000,5),(1065,-796266000,4),(1065,-781052400,5),(1065,-766623600,8),(1065,196819200,7),(1065,212540400,8),(1065,228877200,9),(1065,243997200,10),(1065,260326800,9),(1065,276051600,10),(1065,291776400,9),(1065,307501200,10),(1065,323830800,9),(1065,338950800,10),(1065,354675600,9),(1065,370400400,10),(1065,386125200,9),(1065,401850000,10),(1065,417574800,9),(1065,433299600,10),(1065,449024400,9),(1065,465354000,10),(1065,481078800,9),(1065,496803600,10),(1065,512528400,9),(1065,528253200,10),(1065,543978000,9),(1065,559702800,10),(1065,575427600,9),(1065,591152400,10),(1065,606877200,9),(1065,622602000,10),(1065,638326800,9),(1065,654656400,10),(1065,670381200,9),(1065,686106000,10),(1065,701830800,9),(1065,717555600,10),(1065,733280400,9),(1065,749005200,10),(1065,764730000,9),(1065,780454800,10),(1065,796179600,9),(1065,811904400,10),(1065,828234000,9),(1065,846378000,10),(1065,859683600,9),(1065,877827600,10),(1065,891133200,9),(1065,909277200,10),(1065,922582800,9),(1065,941331600,10),(1065,954032400,9),(1065,972781200,10),(1065,985482000,9),(1065,1004230800,10),(1065,1017536400,9),(1065,1035680400,10),(1065,1048986000,9),(1065,1067130000,10),(1065,1080435600,9),(1065,1099184400,10),(1065,1111885200,9),(1065,1130634000,10),(1065,1143334800,9),(1065,1162083600,10),(1065,1174784400,9),(1065,1193533200,10),(1065,1206838800,9),(1065,1224982800,10),(1065,1238288400,9),(1065,1256432400,10),(1065,1269738000,9),(1065,1288486800,10),(1065,1301187600,9),(1065,1319936400,10),(1065,1332637200,9),(1065,1351386000,10),(1065,1364691600,9),(1065,1382835600,10),(1065,1396141200,9),(1065,1414285200,10),(1065,1427590800,9),(1065,1445734800,10),(1065,1459040400,9),(1065,1477789200,10),(1065,1490490000,9),(1065,1509238800,10),(1065,1521939600,9),(1065,1540688400,10),(1065,1553994000,9),(1065,1572138000,10),(1065,1585443600,9),(1065,1603587600,10),(1065,1616893200,9),(1065,1635642000,10),(1065,1648342800,9),(1065,1667091600,10),(1065,1679792400,9),(1065,1698541200,10),(1065,1711846800,9),(1065,1729990800,10),(1065,1743296400,9),(1065,1761440400,10),(1065,1774746000,9),(1065,1792890000,10),(1065,1806195600,9),(1065,1824944400,10),(1065,1837645200,9),(1065,1856394000,10),(1065,1869094800,9),(1065,1887843600,10),(1065,1901149200,9),(1065,1919293200,10),(1065,1932598800,9),(1065,1950742800,10),(1065,1964048400,9),(1065,1982797200,10),(1065,1995498000,9),(1065,2014246800,10),(1065,2026947600,9),(1065,2045696400,10),(1065,2058397200,9),(1065,2077146000,10),(1065,2090451600,9),(1065,2108595600,10),(1065,2121901200,9),(1065,2140045200,10),(1066,-2147483648,1),(1066,-1688265017,3),(1066,-1656819079,2),(1066,-1641353479,3),(1066,-1627965079,4),(1066,-1618716679,2),(1066,-1596429079,4),(1066,-1593820800,5),(1066,-1589860800,6),(1066,-1542427200,7),(1066,-1539493200,8),(1066,-1525323600,7),(1066,-1522728000,6),(1066,-1491188400,9),(1066,-1247536800,6),(1066,354920400,7),(1066,370728000,6),(1066,386456400,7),(1066,402264000,6),(1066,417992400,7),(1066,433800000,6),(1066,449614800,7),(1066,465346800,10),(1066,481071600,11),(1066,496796400,10),(1066,512521200,11),(1066,528246000,10),(1066,543970800,11),(1066,559695600,10),(1066,575420400,11),(1066,591145200,10),(1066,606870000,11),(1066,622594800,10),(1066,638319600,11),(1066,654649200,10),(1066,670374000,12),(1066,686102400,13),(1066,695779200,10),(1066,701823600,11),(1066,717548400,10),(1066,733273200,11),(1066,748998000,10),(1066,764722800,11),(1066,780447600,10),(1066,796172400,11),(1066,811897200,10),(1066,828226800,11),(1066,846370800,10),(1066,859676400,11),(1066,877820400,10),(1066,891126000,11),(1066,909270000,10),(1066,922575600,11),(1066,941324400,10),(1066,954025200,11),(1066,972774000,10),(1066,985474800,11),(1066,1004223600,10),(1066,1017529200,11),(1066,1035673200,10),(1066,1048978800,11),(1066,1067122800,10),(1066,1080428400,11),(1066,1099177200,10),(1066,1111878000,11),(1066,1130626800,10),(1066,1143327600,11),(1066,1162076400,10),(1066,1174777200,11),(1066,1193526000,10),(1066,1206831600,11),(1066,1224975600,10),(1066,1238281200,11),(1066,1256425200,10),(1066,1269730800,11),(1066,1288479600,10),(1066,1301180400,14),(1066,1414274400,10),(1067,-2147483648,0),(1067,-1518920008,2),(1067,166572000,1),(1067,182293200,2),(1067,200959200,1),(1067,213829200,2),(1067,228866400,1),(1067,243982800,2),(1067,260316000,1),(1067,276123600,2),(1067,291765600,1),(1067,307486800,2),(1067,323820000,1),(1067,338936400,2),(1067,354664800,1),(1067,370386000,2),(1067,386114400,1),(1067,401835600,2),(1067,417564000,1),(1067,433285200,2),(1067,449013600,1),(1067,465339600,2),(1067,481068000,1),(1067,496789200,2),(1067,512517600,1),(1067,528238800,2),(1067,543967200,1),(1067,559688400,2),(1067,575416800,1),(1067,591138000,2),(1067,606866400,1),(1067,622587600,2),(1067,638316000,1),(1067,654642000,2),(1067,670370400,1),(1067,686091600,2),(1067,701820000,1),(1067,717541200,2),(1067,733269600,1),(1067,748990800,2),(1067,764719200,1),(1067,780440400,2),(1067,796168800,1),(1067,811890000,2),(1067,828223200,1),(1067,843944400,2),(1067,859672800,1),(1067,875394000,2),(1067,891122400,1),(1067,909277200,3),(1067,922582800,4),(1067,941331600,3),(1067,954032400,4),(1067,972781200,3),(1067,985482000,4),(1067,1004230800,3),(1067,1017536400,4),(1067,1035680400,3),(1067,1048986000,4),(1067,1067130000,3),(1067,1080435600,4),(1067,1099184400,3),(1067,1111885200,4),(1067,1130634000,3),(1067,1143334800,4),(1067,1162083600,3),(1067,1174784400,4),(1067,1193533200,3),(1067,1206838800,4),(1067,1224982800,3),(1067,1238288400,4),(1067,1256432400,3),(1067,1269738000,4),(1067,1288486800,3),(1067,1301187600,4),(1067,1319936400,3),(1067,1332637200,4),(1067,1351386000,3),(1067,1364691600,4),(1067,1382835600,3),(1067,1396141200,4),(1067,1414285200,3),(1067,1427590800,4),(1067,1445734800,3),(1067,1459040400,4),(1067,1477789200,3),(1067,1490490000,4),(1067,1509238800,3),(1067,1521939600,4),(1067,1540688400,3),(1067,1553994000,4),(1067,1572138000,3),(1067,1585443600,4),(1067,1603587600,3),(1067,1616893200,4),(1067,1635642000,3),(1067,1648342800,4),(1067,1667091600,3),(1067,1679792400,4),(1067,1698541200,3),(1067,1711846800,4),(1067,1729990800,3),(1067,1743296400,4),(1067,1761440400,3),(1067,1774746000,4),(1067,1792890000,3),(1067,1806195600,4),(1067,1824944400,3),(1067,1837645200,4),(1067,1856394000,3),(1067,1869094800,4),(1067,1887843600,3),(1067,1901149200,4),(1067,1919293200,3),(1067,1932598800,4),(1067,1950742800,3),(1067,1964048400,4),(1067,1982797200,3),(1067,1995498000,4),(1067,2014246800,3),(1067,2026947600,4),(1067,2045696400,3),(1067,2058397200,4),(1067,2077146000,3),(1067,2090451600,4),(1067,2108595600,3),(1067,2121901200,4),(1067,2140045200,3),(1068,-2147483648,2),(1068,-1691884800,1),(1068,-1680573600,2),(1068,-927511200,1),(1068,-857257200,3),(1068,-844556400,4),(1068,-828226800,3),(1068,-812502000,4),(1068,-796777200,3),(1068,-781052400,4),(1068,-765327600,3),(1068,-340844400,4),(1068,-324514800,3),(1068,-308790000,4),(1068,-293065200,3),(1068,-277340400,4),(1068,-261615600,3),(1068,-245890800,4),(1068,-230166000,3),(1068,-214441200,4),(1068,-198716400,3),(1068,-182991600,4),(1068,-166662000,3),(1068,-147913200,4),(1068,-135212400,3),(1068,315529200,2),(1068,323830800,5),(1068,338950800,6),(1068,354675600,5),(1068,370400400,6),(1068,386125200,5),(1068,401850000,6),(1068,417574800,5),(1068,433299600,6),(1068,449024400,5),(1068,465354000,6),(1068,481078800,5),(1068,496803600,6),(1068,512528400,5),(1068,528253200,6),(1068,543978000,5),(1068,559702800,6),(1068,575427600,5),(1068,591152400,6),(1068,606877200,5),(1068,622602000,6),(1068,638326800,5),(1068,654656400,6),(1068,670381200,5),(1068,686106000,6),(1068,701830800,5),(1068,717555600,6),(1068,733280400,5),(1068,749005200,6),(1068,764730000,5),(1068,780454800,6),(1068,796179600,5),(1068,811904400,6),(1068,828234000,5),(1068,846378000,6),(1068,859683600,5),(1068,877827600,6),(1068,891133200,5),(1068,909277200,6),(1068,922582800,5),(1068,941331600,6),(1068,954032400,5),(1068,972781200,6),(1068,985482000,5),(1068,1004230800,6),(1068,1017536400,5),(1068,1035680400,6),(1068,1048986000,5),(1068,1067130000,6),(1068,1080435600,5),(1068,1099184400,6),(1068,1111885200,5),(1068,1130634000,6),(1068,1143334800,5),(1068,1162083600,6),(1068,1174784400,5),(1068,1193533200,6),(1068,1206838800,5),(1068,1224982800,6),(1068,1238288400,5),(1068,1256432400,6),(1068,1269738000,5),(1068,1288486800,6),(1068,1301187600,5),(1068,1319936400,6),(1068,1332637200,5),(1068,1351386000,6),(1068,1364691600,5),(1068,1382835600,6),(1068,1396141200,5),(1068,1414285200,6),(1068,1427590800,5),(1068,1445734800,6),(1068,1459040400,5),(1068,1477789200,6),(1068,1490490000,5),(1068,1509238800,6),(1068,1521939600,5),(1068,1540688400,6),(1068,1553994000,5),(1068,1572138000,6),(1068,1585443600,5),(1068,1603587600,6),(1068,1616893200,5),(1068,1635642000,6),(1068,1648342800,5),(1068,1667091600,6),(1068,1679792400,5),(1068,1698541200,6),(1068,1711846800,5),(1068,1729990800,6),(1068,1743296400,5),(1068,1761440400,6),(1068,1774746000,5),(1068,1792890000,6),(1068,1806195600,5),(1068,1824944400,6),(1068,1837645200,5),(1068,1856394000,6),(1068,1869094800,5),(1068,1887843600,6),(1068,1901149200,5),(1068,1919293200,6),(1068,1932598800,5),(1068,1950742800,6),(1068,1964048400,5),(1068,1982797200,6),(1068,1995498000,5),(1068,2014246800,6),(1068,2026947600,5),(1068,2045696400,6),(1068,2058397200,5),(1068,2077146000,6),(1068,2090451600,5),(1068,2108595600,6),(1068,2121901200,5),(1068,2140045200,6),(1069,-2147483648,1),(1069,-1855958901,5),(1069,-1689814800,2),(1069,-1680397200,3),(1069,-1665363600,2),(1069,-1648342800,3),(1069,-1635123600,2),(1069,-1616893200,3),(1069,-1604278800,2),(1069,-1585443600,3),(1069,-1574038800,2),(1069,-1552266000,3),(1069,-1539997200,2),(1069,-1520557200,3),(1069,-1507510800,2),(1069,-1490576400,3),(1069,-1470618000,2),(1069,-1459126800,3),(1069,-1444006800,2),(1069,-1427677200,3),(1069,-1411952400,2),(1069,-1396227600,3),(1069,-1379293200,2),(1069,-1364778000,3),(1069,-1348448400,2),(1069,-1333328400,3),(1069,-1316394000,2),(1069,-1301274000,3),(1069,-1284339600,2),(1069,-1269824400,3),(1069,-1253494800,2),(1069,-1238374800,3),(1069,-1221440400,2),(1069,-1206925200,3),(1069,-1191200400,2),(1069,-1175475600,3),(1069,-1160355600,2),(1069,-1143421200,3),(1069,-1127696400,2),(1069,-1111971600,3),(1069,-1096851600,2),(1069,-1080522000,3),(1069,-1063587600,2),(1069,-1049072400,3),(1069,-1033347600,2),(1069,-1017622800,3),(1069,-1002502800,2),(1069,-986173200,3),(1069,-969238800,2),(1069,-950490000,3),(1069,-942012000,4),(1069,-932436000,8),(1069,-857257200,6),(1069,-844556400,7),(1069,-828226800,6),(1069,-812502000,7),(1069,-800071200,9),(1069,-796266000,4),(1069,-781052400,9),(1069,-766623600,10),(1069,196819200,8),(1069,212540400,10),(1069,228877200,11),(1069,243997200,12),(1069,260326800,11),(1069,276051600,12),(1069,291776400,11),(1069,307501200,12),(1069,323830800,11),(1069,338950800,12),(1069,354675600,11),(1069,370400400,12),(1069,386125200,11),(1069,401850000,12),(1069,417574800,11),(1069,433299600,12),(1069,449024400,11),(1069,465354000,12),(1069,481078800,11),(1069,496803600,12),(1069,512528400,11),(1069,528253200,12),(1069,543978000,11),(1069,559702800,12),(1069,575427600,11),(1069,591152400,12),(1069,606877200,11),(1069,622602000,12),(1069,638326800,11),(1069,654656400,12),(1069,670381200,11),(1069,686106000,12),(1069,701830800,11),(1069,717555600,12),(1069,733280400,11),(1069,749005200,12),(1069,764730000,11),(1069,780454800,12),(1069,796179600,11),(1069,811904400,12),(1069,828234000,11),(1069,846378000,12),(1069,859683600,11),(1069,877827600,12),(1069,891133200,11),(1069,909277200,12),(1069,922582800,11),(1069,941331600,12),(1069,954032400,11),(1069,972781200,12),(1069,985482000,11),(1069,1004230800,12),(1069,1017536400,11),(1069,1035680400,12),(1069,1048986000,11),(1069,1067130000,12),(1069,1080435600,11),(1069,1099184400,12),(1069,1111885200,11),(1069,1130634000,12),(1069,1143334800,11),(1069,1162083600,12),(1069,1174784400,11),(1069,1193533200,12),(1069,1206838800,11),(1069,1224982800,12),(1069,1238288400,11),(1069,1256432400,12),(1069,1269738000,11),(1069,1288486800,12),(1069,1301187600,11),(1069,1319936400,12),(1069,1332637200,11),(1069,1351386000,12),(1069,1364691600,11),(1069,1382835600,12),(1069,1396141200,11),(1069,1414285200,12),(1069,1427590800,11),(1069,1445734800,12),(1069,1459040400,11),(1069,1477789200,12),(1069,1490490000,11),(1069,1509238800,12),(1069,1521939600,11),(1069,1540688400,12),(1069,1553994000,11),(1069,1572138000,12),(1069,1585443600,11),(1069,1603587600,12),(1069,1616893200,11),(1069,1635642000,12),(1069,1648342800,11),(1069,1667091600,12),(1069,1679792400,11),(1069,1698541200,12),(1069,1711846800,11),(1069,1729990800,12),(1069,1743296400,11),(1069,1761440400,12),(1069,1774746000,11),(1069,1792890000,12),(1069,1806195600,11),(1069,1824944400,12),(1069,1837645200,11),(1069,1856394000,12),(1069,1869094800,11),(1069,1887843600,12),(1069,1901149200,11),(1069,1919293200,12),(1069,1932598800,11),(1069,1950742800,12),(1069,1964048400,11),(1069,1982797200,12),(1069,1995498000,11),(1069,2014246800,12),(1069,2026947600,11),(1069,2045696400,12),(1069,2058397200,11),(1069,2077146000,12),(1069,2090451600,11),(1069,2108595600,12),(1069,2121901200,11),(1069,2140045200,12),(1070,-2147483648,1),(1070,-905824800,4),(1070,-857257200,2),(1070,-844556400,3),(1070,-828226800,2),(1070,-812502000,3),(1070,-796777200,2),(1070,-788922000,1),(1070,-777942000,3),(1070,-766623600,2),(1070,407199600,1),(1070,417574800,5),(1070,433299600,6),(1070,449024400,5),(1070,465354000,6),(1070,481078800,5),(1070,496803600,6),(1070,512528400,5),(1070,528253200,6),(1070,543978000,5),(1070,559702800,6),(1070,575427600,5),(1070,591152400,6),(1070,606877200,5),(1070,622602000,6),(1070,638326800,5),(1070,654656400,6),(1070,670381200,5),(1070,686106000,6),(1070,701830800,5),(1070,717555600,6),(1070,733280400,5),(1070,749005200,6),(1070,764730000,5),(1070,780454800,6),(1070,796179600,5),(1070,811904400,6),(1070,828234000,5),(1070,846378000,6),(1070,859683600,5),(1070,877827600,6),(1070,891133200,5),(1070,909277200,6),(1070,922582800,5),(1070,941331600,6),(1070,954032400,5),(1070,972781200,6),(1070,985482000,5),(1070,1004230800,6),(1070,1017536400,5),(1070,1035680400,6),(1070,1048986000,5),(1070,1067130000,6),(1070,1080435600,5),(1070,1099184400,6),(1070,1111885200,5),(1070,1130634000,6),(1070,1143334800,5),(1070,1162083600,6),(1070,1174784400,5),(1070,1193533200,6),(1070,1206838800,5),(1070,1224982800,6),(1070,1238288400,5),(1070,1256432400,6),(1070,1269738000,5),(1070,1288486800,6),(1070,1301187600,5),(1070,1319936400,6),(1070,1332637200,5),(1070,1351386000,6),(1070,1364691600,5),(1070,1382835600,6),(1070,1396141200,5),(1070,1414285200,6),(1070,1427590800,5),(1070,1445734800,6),(1070,1459040400,5),(1070,1477789200,6),(1070,1490490000,5),(1070,1509238800,6),(1070,1521939600,5),(1070,1540688400,6),(1070,1553994000,5),(1070,1572138000,6),(1070,1585443600,5),(1070,1603587600,6),(1070,1616893200,5),(1070,1635642000,6),(1070,1648342800,5),(1070,1667091600,6),(1070,1679792400,5),(1070,1698541200,6),(1070,1711846800,5),(1070,1729990800,6),(1070,1743296400,5),(1070,1761440400,6),(1070,1774746000,5),(1070,1792890000,6),(1070,1806195600,5),(1070,1824944400,6),(1070,1837645200,5),(1070,1856394000,6),(1070,1869094800,5),(1070,1887843600,6),(1070,1901149200,5),(1070,1919293200,6),(1070,1932598800,5),(1070,1950742800,6),(1070,1964048400,5),(1070,1982797200,6),(1070,1995498000,5),(1070,2014246800,6),(1070,2026947600,5),(1070,2045696400,6),(1070,2058397200,5),(1070,2077146000,6),(1070,2090451600,5),(1070,2108595600,6),(1070,2121901200,5),(1070,2140045200,6),(1071,-2147483648,2),(1071,-1693706400,1),(1071,-1680483600,2),(1071,-1663455600,3),(1071,-1650150000,4),(1071,-1632006000,3),(1071,-1618700400,4),(1071,-938905200,3),(1071,-857257200,4),(1071,-844556400,3),(1071,-828226800,4),(1071,-812502000,3),(1071,-796777200,4),(1071,-781052400,3),(1071,-777866400,1),(1071,-765327600,4),(1071,-746578800,3),(1071,-733359600,4),(1071,-728517600,5),(1071,-721260000,2),(1071,-716425200,3),(1071,-701910000,4),(1071,-684975600,3),(1071,-670460400,4),(1071,-654217200,3),(1071,-639010800,4),(1071,283993200,2),(1071,291776400,6),(1071,307501200,7),(1071,323830800,6),(1071,338950800,7),(1071,354675600,6),(1071,370400400,7),(1071,386125200,6),(1071,401850000,7),(1071,417574800,6),(1071,433299600,7),(1071,449024400,6),(1071,465354000,7),(1071,481078800,6),(1071,496803600,7),(1071,512528400,6),(1071,528253200,7),(1071,543978000,6),(1071,559702800,7),(1071,575427600,6),(1071,591152400,7),(1071,606877200,6),(1071,622602000,7),(1071,638326800,6),(1071,654656400,7),(1071,670381200,6),(1071,686106000,7),(1071,701830800,6),(1071,717555600,7),(1071,733280400,6),(1071,749005200,7),(1071,764730000,6),(1071,780454800,7),(1071,796179600,6),(1071,811904400,7),(1071,828234000,6),(1071,846378000,7),(1071,859683600,6),(1071,877827600,7),(1071,891133200,6),(1071,909277200,7),(1071,922582800,6),(1071,941331600,7),(1071,954032400,6),(1071,972781200,7),(1071,985482000,6),(1071,1004230800,7),(1071,1017536400,6),(1071,1035680400,7),(1071,1048986000,6),(1071,1067130000,7),(1071,1080435600,6),(1071,1099184400,7),(1071,1111885200,6),(1071,1130634000,7),(1071,1143334800,6),(1071,1162083600,7),(1071,1174784400,6),(1071,1193533200,7),(1071,1206838800,6),(1071,1224982800,7),(1071,1238288400,6),(1071,1256432400,7),(1071,1269738000,6),(1071,1288486800,7),(1071,1301187600,6),(1071,1319936400,7),(1071,1332637200,6),(1071,1351386000,7),(1071,1364691600,6),(1071,1382835600,7),(1071,1396141200,6),(1071,1414285200,7),(1071,1427590800,6),(1071,1445734800,7),(1071,1459040400,6),(1071,1477789200,7),(1071,1490490000,6),(1071,1509238800,7),(1071,1521939600,6),(1071,1540688400,7),(1071,1553994000,6),(1071,1572138000,7),(1071,1585443600,6),(1071,1603587600,7),(1071,1616893200,6),(1071,1635642000,7),(1071,1648342800,6),(1071,1667091600,7),(1071,1679792400,6),(1071,1698541200,7),(1071,1711846800,6),(1071,1729990800,7),(1071,1743296400,6),(1071,1761440400,7),(1071,1774746000,6),(1071,1792890000,7),(1071,1806195600,6),(1071,1824944400,7),(1071,1837645200,6),(1071,1856394000,7),(1071,1869094800,6),(1071,1887843600,7),(1071,1901149200,6),(1071,1919293200,7),(1071,1932598800,6),(1071,1950742800,7),(1071,1964048400,6),(1071,1982797200,7),(1071,1995498000,6),(1071,2014246800,7),(1071,2026947600,6),(1071,2045696400,7),(1071,2058397200,6),(1071,2077146000,7),(1071,2090451600,6),(1071,2108595600,7),(1071,2121901200,6),(1071,2140045200,7),(1072,-2147483648,1),(1072,-1632008194,2),(1072,-1618702594,1),(1072,-1601681794,2),(1072,-1597275394,1),(1072,-1377308194,3),(1072,-928029600,4),(1072,-899521200,7),(1072,-857257200,5),(1072,-844556400,6),(1072,-828226800,5),(1072,-812502000,6),(1072,-796777200,5),(1072,-795834000,4),(1072,354920400,8),(1072,370728000,4),(1072,386456400,8),(1072,402264000,4),(1072,417992400,8),(1072,433800000,4),(1072,449614800,8),(1072,465346800,9),(1072,481071600,10),(1072,496796400,9),(1072,512521200,10),(1072,528246000,9),(1072,543970800,10),(1072,559695600,9),(1072,575420400,10),(1072,591145200,9),(1072,606870000,11),(1072,622598400,12),(1072,638323200,11),(1072,654652800,12),(1072,670377600,11),(1072,686102400,12),(1072,701827200,11),(1072,717552000,12),(1072,733276800,11),(1072,749001600,12),(1072,764726400,11),(1072,780451200,12),(1072,796176000,11),(1072,811900800,12),(1072,828230400,11),(1072,843955200,12),(1072,853797600,3),(1072,859683600,13),(1072,877827600,14),(1072,891133200,13),(1072,909277200,14),(1072,922582800,13),(1072,941331600,14),(1072,951775200,3),(1072,985482000,13),(1072,1004230800,14),(1072,1017536400,13),(1072,1035680400,14),(1072,1048986000,13),(1072,1067130000,14),(1072,1080435600,13),(1072,1099184400,14),(1072,1111885200,13),(1072,1130634000,14),(1072,1143334800,13),(1072,1162083600,14),(1072,1174784400,13),(1072,1193533200,14),(1072,1206838800,13),(1072,1224982800,14),(1072,1238288400,13),(1072,1256432400,14),(1072,1269738000,13),(1072,1288486800,14),(1072,1301187600,13),(1072,1319936400,14),(1072,1332637200,13),(1072,1351386000,14),(1072,1364691600,13),(1072,1382835600,14),(1072,1396141200,13),(1072,1414285200,14),(1072,1427590800,13),(1072,1445734800,14),(1072,1459040400,13),(1072,1477789200,14),(1072,1490490000,13),(1072,1509238800,14),(1072,1521939600,13),(1072,1540688400,14),(1072,1553994000,13),(1072,1572138000,14),(1072,1585443600,13),(1072,1603587600,14),(1072,1616893200,13),(1072,1635642000,14),(1072,1648342800,13),(1072,1667091600,14),(1072,1679792400,13),(1072,1698541200,14),(1072,1711846800,13),(1072,1729990800,14),(1072,1743296400,13),(1072,1761440400,14),(1072,1774746000,13),(1072,1792890000,14),(1072,1806195600,13),(1072,1824944400,14),(1072,1837645200,13),(1072,1856394000,14),(1072,1869094800,13),(1072,1887843600,14),(1072,1901149200,13),(1072,1919293200,14),(1072,1932598800,13),(1072,1950742800,14),(1072,1964048400,13),(1072,1982797200,14),(1072,1995498000,13),(1072,2014246800,14),(1072,2026947600,13),(1072,2045696400,14),(1072,2058397200,13),(1072,2077146000,14),(1072,2090451600,13),(1072,2108595600,14),(1072,2121901200,13),(1072,2140045200,14),(1073,-2147483648,2),(1073,-1690765200,1),(1073,-1680487200,2),(1073,-1664758800,1),(1073,-1648951200,2),(1073,-1635123600,1),(1073,-1616896800,2),(1073,-1604278800,1),(1073,-1585533600,2),(1073,-1571014800,1),(1073,-1555293600,2),(1073,-932432400,1),(1073,-857257200,3),(1073,-844556400,4),(1073,-830311200,1),(1073,-828226800,3),(1073,-812502000,4),(1073,-807156000,1),(1073,-798073200,3),(1073,-781052400,1),(1073,-766717200,2),(1073,-750898800,4),(1073,-733359600,3),(1073,-719456400,4),(1073,-701917200,3),(1073,-689209200,4),(1073,-670460400,3),(1073,-114051600,4),(1073,-103168800,2),(1073,-81997200,4),(1073,-71715600,3),(1073,-50547600,4),(1073,-40266000,3),(1073,-18493200,4),(1073,-8211600,3),(1073,12956400,4),(1073,23238000,3),(1073,43801200,4),(1073,54687600,3),(1073,75855600,4),(1073,86742000,3),(1073,107910000,4),(1073,118191600,3),(1073,138754800,4),(1073,149641200,3),(1073,170809200,4),(1073,181090800,3),(1073,202258800,4),(1073,212540400,3),(1073,233103600,4),(1073,243990000,3),(1073,265158000,4),(1073,276044400,3),(1073,296607600,4),(1073,307494000,3),(1073,315529200,2),(1073,323830800,5),(1073,338950800,6),(1073,354675600,5),(1073,370400400,6),(1073,386125200,5),(1073,401850000,6),(1073,417574800,5),(1073,433299600,6),(1073,449024400,5),(1073,465354000,6),(1073,481078800,5),(1073,496803600,6),(1073,512528400,5),(1073,528253200,6),(1073,543978000,5),(1073,559702800,6),(1073,575427600,5),(1073,591152400,6),(1073,606877200,5),(1073,622602000,6),(1073,638326800,5),(1073,654656400,6),(1073,670381200,5),(1073,686106000,6),(1073,701830800,5),(1073,717555600,6),(1073,733280400,5),(1073,749005200,6),(1073,764730000,5),(1073,780454800,6),(1073,796179600,5),(1073,811904400,6),(1073,828234000,5),(1073,846378000,6),(1073,859683600,5),(1073,877827600,6),(1073,891133200,5),(1073,909277200,6),(1073,922582800,5),(1073,941331600,6),(1073,954032400,5),(1073,972781200,6),(1073,985482000,5),(1073,1004230800,6),(1073,1017536400,5),(1073,1035680400,6),(1073,1048986000,5),(1073,1067130000,6),(1073,1080435600,5),(1073,1099184400,6),(1073,1111885200,5),(1073,1130634000,6),(1073,1143334800,5),(1073,1162083600,6),(1073,1174784400,5),(1073,1193533200,6),(1073,1206838800,5),(1073,1224982800,6),(1073,1238288400,5),(1073,1256432400,6),(1073,1269738000,5),(1073,1288486800,6),(1073,1301187600,5),(1073,1319936400,6),(1073,1332637200,5),(1073,1351386000,6),(1073,1364691600,5),(1073,1382835600,6),(1073,1396141200,5),(1073,1414285200,6),(1073,1427590800,5),(1073,1445734800,6),(1073,1459040400,5),(1073,1477789200,6),(1073,1490490000,5),(1073,1509238800,6),(1073,1521939600,5),(1073,1540688400,6),(1073,1553994000,5),(1073,1572138000,6),(1073,1585443600,5),(1073,1603587600,6),(1073,1616893200,5),(1073,1635642000,6),(1073,1648342800,5),(1073,1667091600,6),(1073,1679792400,5),(1073,1698541200,6),(1073,1711846800,5),(1073,1729990800,6),(1073,1743296400,5),(1073,1761440400,6),(1073,1774746000,5),(1073,1792890000,6),(1073,1806195600,5),(1073,1824944400,6),(1073,1837645200,5),(1073,1856394000,6),(1073,1869094800,5),(1073,1887843600,6),(1073,1901149200,5),(1073,1919293200,6),(1073,1932598800,5),(1073,1950742800,6),(1073,1964048400,5),(1073,1982797200,6),(1073,1995498000,5),(1073,2014246800,6),(1073,2026947600,5),(1073,2045696400,6),(1073,2058397200,5),(1073,2077146000,6),(1073,2090451600,5),(1073,2108595600,6),(1073,2121901200,5),(1073,2140045200,6),(1074,-2147483648,0),(1074,-1593820800,1),(1074,-1247540400,2),(1074,354916800,3),(1074,370724400,2),(1074,386452800,3),(1074,402260400,2),(1074,417988800,3),(1074,433796400,2),(1074,449611200,3),(1074,465343200,4),(1074,481068000,5),(1074,496792800,4),(1074,512517600,5),(1074,528242400,4),(1074,543967200,5),(1074,559692000,4),(1074,575416800,5),(1074,591141600,4),(1074,606866400,6),(1074,622594800,7),(1074,638319600,6),(1074,654649200,7),(1074,670374000,8),(1074,686102400,7),(1074,687916800,2),(1074,701820000,5),(1074,717544800,4),(1074,733269600,5),(1074,748994400,4),(1074,764719200,5),(1074,780444000,4),(1074,796168800,5),(1074,811893600,4),(1074,828223200,5),(1074,846367200,4),(1074,859672800,5),(1074,877816800,4),(1074,891122400,5),(1074,909266400,4),(1074,922572000,5),(1074,941320800,4),(1074,954021600,5),(1074,972770400,4),(1074,985471200,5),(1074,1004220000,4),(1074,1017525600,5),(1074,1035669600,4),(1074,1048975200,5),(1074,1067119200,4),(1074,1080424800,5),(1074,1099173600,4),(1074,1111874400,5),(1074,1130623200,4),(1074,1143324000,5),(1074,1162072800,4),(1074,1174773600,5),(1074,1193522400,4),(1074,1206828000,5),(1074,1224972000,4),(1074,1238277600,5),(1074,1256421600,4),(1074,1269727200,6),(1074,1288479600,7),(1074,1301180400,4),(1075,-2147483648,2),(1075,-1690765200,1),(1075,-1680487200,2),(1075,-1664758800,1),(1075,-1648951200,2),(1075,-1635123600,1),(1075,-1616896800,2),(1075,-1604278800,1),(1075,-1585533600,2),(1075,-1571014800,1),(1075,-1555293600,2),(1075,-932432400,1),(1075,-857257200,3),(1075,-844556400,4),(1075,-830311200,1),(1075,-828226800,3),(1075,-812502000,4),(1075,-807156000,1),(1075,-798073200,3),(1075,-781052400,1),(1075,-766717200,2),(1075,-750898800,4),(1075,-733359600,3),(1075,-719456400,4),(1075,-701917200,3),(1075,-689209200,4),(1075,-670460400,3),(1075,-114051600,4),(1075,-103168800,2),(1075,-81997200,4),(1075,-71715600,3),(1075,-50547600,4),(1075,-40266000,3),(1075,-18493200,4),(1075,-8211600,3),(1075,12956400,4),(1075,23238000,3),(1075,43801200,4),(1075,54687600,3),(1075,75855600,4),(1075,86742000,3),(1075,107910000,4),(1075,118191600,3),(1075,138754800,4),(1075,149641200,3),(1075,170809200,4),(1075,181090800,3),(1075,202258800,4),(1075,212540400,3),(1075,233103600,4),(1075,243990000,3),(1075,265158000,4),(1075,276044400,3),(1075,296607600,4),(1075,307494000,3),(1075,315529200,2),(1075,323830800,5),(1075,338950800,6),(1075,354675600,5),(1075,370400400,6),(1075,386125200,5),(1075,401850000,6),(1075,417574800,5),(1075,433299600,6),(1075,449024400,5),(1075,465354000,6),(1075,481078800,5),(1075,496803600,6),(1075,512528400,5),(1075,528253200,6),(1075,543978000,5),(1075,559702800,6),(1075,575427600,5),(1075,591152400,6),(1075,606877200,5),(1075,622602000,6),(1075,638326800,5),(1075,654656400,6),(1075,670381200,5),(1075,686106000,6),(1075,701830800,5),(1075,717555600,6),(1075,733280400,5),(1075,749005200,6),(1075,764730000,5),(1075,780454800,6),(1075,796179600,5),(1075,811904400,6),(1075,828234000,5),(1075,846378000,6),(1075,859683600,5),(1075,877827600,6),(1075,891133200,5),(1075,909277200,6),(1075,922582800,5),(1075,941331600,6),(1075,954032400,5),(1075,972781200,6),(1075,985482000,5),(1075,1004230800,6),(1075,1017536400,5),(1075,1035680400,6),(1075,1048986000,5),(1075,1067130000,6),(1075,1080435600,5),(1075,1099184400,6),(1075,1111885200,5),(1075,1130634000,6),(1075,1143334800,5),(1075,1162083600,6),(1075,1174784400,5),(1075,1193533200,6),(1075,1206838800,5),(1075,1224982800,6),(1075,1238288400,5),(1075,1256432400,6),(1075,1269738000,5),(1075,1288486800,6),(1075,1301187600,5),(1075,1319936400,6),(1075,1332637200,5),(1075,1351386000,6),(1075,1364691600,5),(1075,1382835600,6),(1075,1396141200,5),(1075,1414285200,6),(1075,1427590800,5),(1075,1445734800,6),(1075,1459040400,5),(1075,1477789200,6),(1075,1490490000,5),(1075,1509238800,6),(1075,1521939600,5),(1075,1540688400,6),(1075,1553994000,5),(1075,1572138000,6),(1075,1585443600,5),(1075,1603587600,6),(1075,1616893200,5),(1075,1635642000,6),(1075,1648342800,5),(1075,1667091600,6),(1075,1679792400,5),(1075,1698541200,6),(1075,1711846800,5),(1075,1729990800,6),(1075,1743296400,5),(1075,1761440400,6),(1075,1774746000,5),(1075,1792890000,6),(1075,1806195600,5),(1075,1824944400,6),(1075,1837645200,5),(1075,1856394000,6),(1075,1869094800,5),(1075,1887843600,6),(1075,1901149200,5),(1075,1919293200,6),(1075,1932598800,5),(1075,1950742800,6),(1075,1964048400,5),(1075,1982797200,6),(1075,1995498000,5),(1075,2014246800,6),(1075,2026947600,5),(1075,2045696400,6),(1075,2058397200,5),(1075,2077146000,6),(1075,2090451600,5),(1075,2108595600,6),(1075,2121901200,5),(1075,2140045200,6),(1076,-2147483648,1),(1076,-905824800,4),(1076,-857257200,2),(1076,-844556400,3),(1076,-828226800,2),(1076,-812502000,3),(1076,-796777200,2),(1076,-788922000,1),(1076,-777942000,3),(1076,-766623600,2),(1076,407199600,1),(1076,417574800,5),(1076,433299600,6),(1076,449024400,5),(1076,465354000,6),(1076,481078800,5),(1076,496803600,6),(1076,512528400,5),(1076,528253200,6),(1076,543978000,5),(1076,559702800,6),(1076,575427600,5),(1076,591152400,6),(1076,606877200,5),(1076,622602000,6),(1076,638326800,5),(1076,654656400,6),(1076,670381200,5),(1076,686106000,6),(1076,701830800,5),(1076,717555600,6),(1076,733280400,5),(1076,749005200,6),(1076,764730000,5),(1076,780454800,6),(1076,796179600,5),(1076,811904400,6),(1076,828234000,5),(1076,846378000,6),(1076,859683600,5),(1076,877827600,6),(1076,891133200,5),(1076,909277200,6),(1076,922582800,5),(1076,941331600,6),(1076,954032400,5),(1076,972781200,6),(1076,985482000,5),(1076,1004230800,6),(1076,1017536400,5),(1076,1035680400,6),(1076,1048986000,5),(1076,1067130000,6),(1076,1080435600,5),(1076,1099184400,6),(1076,1111885200,5),(1076,1130634000,6),(1076,1143334800,5),(1076,1162083600,6),(1076,1174784400,5),(1076,1193533200,6),(1076,1206838800,5),(1076,1224982800,6),(1076,1238288400,5),(1076,1256432400,6),(1076,1269738000,5),(1076,1288486800,6),(1076,1301187600,5),(1076,1319936400,6),(1076,1332637200,5),(1076,1351386000,6),(1076,1364691600,5),(1076,1382835600,6),(1076,1396141200,5),(1076,1414285200,6),(1076,1427590800,5),(1076,1445734800,6),(1076,1459040400,5),(1076,1477789200,6),(1076,1490490000,5),(1076,1509238800,6),(1076,1521939600,5),(1076,1540688400,6),(1076,1553994000,5),(1076,1572138000,6),(1076,1585443600,5),(1076,1603587600,6),(1076,1616893200,5),(1076,1635642000,6),(1076,1648342800,5),(1076,1667091600,6),(1076,1679792400,5),(1076,1698541200,6),(1076,1711846800,5),(1076,1729990800,6),(1076,1743296400,5),(1076,1761440400,6),(1076,1774746000,5),(1076,1792890000,6),(1076,1806195600,5),(1076,1824944400,6),(1076,1837645200,5),(1076,1856394000,6),(1076,1869094800,5),(1076,1887843600,6),(1076,1901149200,5),(1076,1919293200,6),(1076,1932598800,5),(1076,1950742800,6),(1076,1964048400,5),(1076,1982797200,6),(1076,1995498000,5),(1076,2014246800,6),(1076,2026947600,5),(1076,2045696400,6),(1076,2058397200,5),(1076,2077146000,6),(1076,2090451600,5),(1076,2108595600,6),(1076,2121901200,5),(1076,2140045200,6),(1077,-2147483648,0),(1077,-1593820800,1),(1077,-1247540400,3),(1077,354916800,2),(1077,370724400,3),(1077,386452800,2),(1077,402260400,3),(1077,417988800,2),(1077,433796400,3),(1077,449611200,2),(1077,465343200,4),(1077,481068000,5),(1077,496792800,4),(1077,512517600,5),(1077,528242400,4),(1077,543967200,5),(1077,559692000,4),(1077,575416800,6),(1077,591145200,7),(1077,606870000,6),(1077,622594800,7),(1077,638319600,6),(1077,654649200,7),(1077,670374000,4),(1077,701820000,6),(1077,717548400,7),(1077,733273200,6),(1077,748998000,7),(1077,764722800,6),(1077,780447600,7),(1077,796172400,6),(1077,811897200,7),(1077,828226800,6),(1077,846370800,7),(1077,859676400,6),(1077,877820400,7),(1077,891126000,6),(1077,909270000,7),(1077,922575600,6),(1077,941324400,7),(1077,954025200,6),(1077,972774000,7),(1077,985474800,6),(1077,1004223600,7),(1077,1017529200,6),(1077,1035673200,7),(1077,1048978800,6),(1077,1067122800,7),(1077,1080428400,6),(1077,1099177200,7),(1077,1111878000,6),(1077,1130626800,7),(1077,1143327600,6),(1077,1162076400,7),(1077,1174777200,6),(1077,1193526000,7),(1077,1206831600,6),(1077,1224975600,7),(1077,1238281200,6),(1077,1256425200,7),(1077,1269730800,6),(1077,1288479600,7),(1077,1301180400,4),(1077,1414274400,7),(1077,1480806000,4),(1078,-2147483648,1),(1078,-1441160160,2),(1078,-1247536800,3),(1078,-888894000,6),(1078,-857257200,4),(1078,-844556400,5),(1078,-828226800,4),(1078,-812502000,5),(1078,-811648800,3),(1078,354920400,7),(1078,370728000,3),(1078,386456400,7),(1078,402264000,3),(1078,417992400,7),(1078,433800000,3),(1078,449614800,7),(1078,465346800,8),(1078,481071600,9),(1078,496796400,8),(1078,512521200,9),(1078,528246000,8),(1078,543970800,9),(1078,559695600,8),(1078,575420400,9),(1078,591145200,8),(1078,606870000,9),(1078,622594800,8),(1078,631141200,3),(1078,646786800,2),(1078,701820000,10),(1078,717541200,2),(1078,733269600,10),(1078,748990800,2),(1078,764719200,10),(1078,767739600,7),(1078,780436800,3),(1078,796165200,7),(1078,811886400,3),(1078,828219600,9),(1078,846374400,8),(1078,852066000,3),(1078,859683600,11),(1078,877827600,12),(1078,891133200,11),(1078,909277200,12),(1078,922582800,11),(1078,941331600,12),(1078,954032400,11),(1078,972781200,12),(1078,985482000,11),(1078,1004230800,12),(1078,1017536400,11),(1078,1035680400,12),(1078,1048986000,11),(1078,1067130000,12),(1078,1080435600,11),(1078,1099184400,12),(1078,1111885200,11),(1078,1130634000,12),(1078,1143334800,11),(1078,1162083600,12),(1078,1174784400,11),(1078,1193533200,12),(1078,1206838800,11),(1078,1224982800,12),(1078,1238288400,11),(1078,1256432400,12),(1078,1269738000,11),(1078,1288486800,12),(1078,1301187600,11),(1078,1319936400,12),(1078,1332637200,11),(1078,1351386000,12),(1078,1364691600,11),(1078,1382835600,12),(1078,1396137600,13),(1078,1414274400,8),(1079,-2147483648,1),(1079,-905824800,4),(1079,-857257200,2),(1079,-844556400,3),(1079,-828226800,2),(1079,-812502000,3),(1079,-796777200,2),(1079,-788922000,1),(1079,-777942000,3),(1079,-766623600,2),(1079,407199600,1),(1079,417574800,5),(1079,433299600,6),(1079,449024400,5),(1079,465354000,6),(1079,481078800,5),(1079,496803600,6),(1079,512528400,5),(1079,528253200,6),(1079,543978000,5),(1079,559702800,6),(1079,575427600,5),(1079,591152400,6),(1079,606877200,5),(1079,622602000,6),(1079,638326800,5),(1079,654656400,6),(1079,670381200,5),(1079,686106000,6),(1079,701830800,5),(1079,717555600,6),(1079,733280400,5),(1079,749005200,6),(1079,764730000,5),(1079,780454800,6),(1079,796179600,5),(1079,811904400,6),(1079,828234000,5),(1079,846378000,6),(1079,859683600,5),(1079,877827600,6),(1079,891133200,5),(1079,909277200,6),(1079,922582800,5),(1079,941331600,6),(1079,954032400,5),(1079,972781200,6),(1079,985482000,5),(1079,1004230800,6),(1079,1017536400,5),(1079,1035680400,6),(1079,1048986000,5),(1079,1067130000,6),(1079,1080435600,5),(1079,1099184400,6),(1079,1111885200,5),(1079,1130634000,6),(1079,1143334800,5),(1079,1162083600,6),(1079,1174784400,5),(1079,1193533200,6),(1079,1206838800,5),(1079,1224982800,6),(1079,1238288400,5),(1079,1256432400,6),(1079,1269738000,5),(1079,1288486800,6),(1079,1301187600,5),(1079,1319936400,6),(1079,1332637200,5),(1079,1351386000,6),(1079,1364691600,5),(1079,1382835600,6),(1079,1396141200,5),(1079,1414285200,6),(1079,1427590800,5),(1079,1445734800,6),(1079,1459040400,5),(1079,1477789200,6),(1079,1490490000,5),(1079,1509238800,6),(1079,1521939600,5),(1079,1540688400,6),(1079,1553994000,5),(1079,1572138000,6),(1079,1585443600,5),(1079,1603587600,6),(1079,1616893200,5),(1079,1635642000,6),(1079,1648342800,5),(1079,1667091600,6),(1079,1679792400,5),(1079,1698541200,6),(1079,1711846800,5),(1079,1729990800,6),(1079,1743296400,5),(1079,1761440400,6),(1079,1774746000,5),(1079,1792890000,6),(1079,1806195600,5),(1079,1824944400,6),(1079,1837645200,5),(1079,1856394000,6),(1079,1869094800,5),(1079,1887843600,6),(1079,1901149200,5),(1079,1919293200,6),(1079,1932598800,5),(1079,1950742800,6),(1079,1964048400,5),(1079,1982797200,6),(1079,1995498000,5),(1079,2014246800,6),(1079,2026947600,5),(1079,2045696400,6),(1079,2058397200,5),(1079,2077146000,6),(1079,2090451600,5),(1079,2108595600,6),(1079,2121901200,5),(1079,2140045200,6),(1080,-2147483648,1),(1080,-857257200,2),(1080,-844556400,3),(1080,-828226800,2),(1080,-812502000,3),(1080,-796777200,2),(1080,-788922000,4),(1080,-781048800,1),(1080,291762000,5),(1080,307576800,1),(1080,323816400,5),(1080,339026400,1),(1080,355266000,5),(1080,370393200,1),(1080,386715600,5),(1080,401846400,6),(1080,417571200,7),(1080,433296000,6),(1080,449020800,7),(1080,465350400,6),(1080,481075200,7),(1080,496800000,6),(1080,512524800,7),(1080,528249600,6),(1080,543974400,7),(1080,559699200,6),(1080,575424000,7),(1080,591148800,6),(1080,606873600,7),(1080,622598400,6),(1080,638323200,7),(1080,654652800,6),(1080,662680800,1),(1080,670370400,5),(1080,686091600,1),(1080,701820000,5),(1080,717541200,1),(1080,733269600,5),(1080,748990800,1),(1080,764719200,5),(1080,780440400,1),(1080,796168800,5),(1080,811890000,1),(1080,828223200,5),(1080,846363600,1),(1080,859683600,8),(1080,877827600,9),(1080,891133200,8),(1080,909277200,9),(1080,922582800,8),(1080,941331600,9),(1080,954032400,8),(1080,972781200,9),(1080,985482000,8),(1080,1004230800,9),(1080,1017536400,8),(1080,1035680400,9),(1080,1048986000,8),(1080,1067130000,9),(1080,1080435600,8),(1080,1099184400,9),(1080,1111885200,8),(1080,1130634000,9),(1080,1143334800,8),(1080,1162083600,9),(1080,1174784400,8),(1080,1193533200,9),(1080,1206838800,8),(1080,1224982800,9),(1080,1238288400,8),(1080,1256432400,9),(1080,1269738000,8),(1080,1288486800,9),(1080,1301187600,8),(1080,1319936400,9),(1080,1332637200,8),(1080,1351386000,9),(1080,1364691600,8),(1080,1382835600,9),(1080,1396141200,8),(1080,1414285200,9),(1080,1427590800,8),(1080,1445734800,9),(1080,1459040400,8),(1080,1477789200,9),(1080,1490490000,8),(1080,1509238800,9),(1080,1521939600,8),(1080,1540688400,9),(1080,1553994000,8),(1080,1572138000,9),(1080,1585443600,8),(1080,1603587600,9),(1080,1616893200,8),(1080,1635642000,9),(1080,1648342800,8),(1080,1667091600,9),(1080,1679792400,8),(1080,1698541200,9),(1080,1711846800,8),(1080,1729990800,9),(1080,1743296400,8),(1080,1761440400,9),(1080,1774746000,8),(1080,1792890000,9),(1080,1806195600,8),(1080,1824944400,9),(1080,1837645200,8),(1080,1856394000,9),(1080,1869094800,8),(1080,1887843600,9),(1080,1901149200,8),(1080,1919293200,9),(1080,1932598800,8),(1080,1950742800,9),(1080,1964048400,8),(1080,1982797200,9),(1080,1995498000,8),(1080,2014246800,9),(1080,2026947600,8),(1080,2045696400,9),(1080,2058397200,8),(1080,2077146000,9),(1080,2090451600,8),(1080,2108595600,9),(1080,2121901200,8),(1080,2140045200,9),(1081,-2147483648,1),(1081,-1692496800,2),(1081,-1680483600,1),(1081,323830800,3),(1081,338950800,4),(1081,354675600,3),(1081,370400400,4),(1081,386125200,3),(1081,401850000,4),(1081,417574800,3),(1081,433299600,4),(1081,449024400,3),(1081,465354000,4),(1081,481078800,3),(1081,496803600,4),(1081,512528400,3),(1081,528253200,4),(1081,543978000,3),(1081,559702800,4),(1081,575427600,3),(1081,591152400,4),(1081,606877200,3),(1081,622602000,4),(1081,638326800,3),(1081,654656400,4),(1081,670381200,3),(1081,686106000,4),(1081,701830800,3),(1081,717555600,4),(1081,733280400,3),(1081,749005200,4),(1081,764730000,3),(1081,780454800,4),(1081,796179600,3),(1081,811904400,4),(1081,828234000,3),(1081,846378000,4),(1081,859683600,3),(1081,877827600,4),(1081,891133200,3),(1081,909277200,4),(1081,922582800,3),(1081,941331600,4),(1081,954032400,3),(1081,972781200,4),(1081,985482000,3),(1081,1004230800,4),(1081,1017536400,3),(1081,1035680400,4),(1081,1048986000,3),(1081,1067130000,4),(1081,1080435600,3),(1081,1099184400,4),(1081,1111885200,3),(1081,1130634000,4),(1081,1143334800,3),(1081,1162083600,4),(1081,1174784400,3),(1081,1193533200,4),(1081,1206838800,3),(1081,1224982800,4),(1081,1238288400,3),(1081,1256432400,4),(1081,1269738000,3),(1081,1288486800,4),(1081,1301187600,3),(1081,1319936400,4),(1081,1332637200,3),(1081,1351386000,4),(1081,1364691600,3),(1081,1382835600,4),(1081,1396141200,3),(1081,1414285200,4),(1081,1427590800,3),(1081,1445734800,4),(1081,1459040400,3),(1081,1477789200,4),(1081,1490490000,3),(1081,1509238800,4),(1081,1521939600,3),(1081,1540688400,4),(1081,1553994000,3),(1081,1572138000,4),(1081,1585443600,3),(1081,1603587600,4),(1081,1616893200,3),(1081,1635642000,4),(1081,1648342800,3),(1081,1667091600,4),(1081,1679792400,3),(1081,1698541200,4),(1081,1711846800,3),(1081,1729990800,4),(1081,1743296400,3),(1081,1761440400,4),(1081,1774746000,3),(1081,1792890000,4),(1081,1806195600,3),(1081,1824944400,4),(1081,1837645200,3),(1081,1856394000,4),(1081,1869094800,3),(1081,1887843600,4),(1081,1901149200,3),(1081,1919293200,4),(1081,1932598800,3),(1081,1950742800,4),(1081,1964048400,3),(1081,1982797200,4),(1081,1995498000,3),(1081,2014246800,4),(1081,2026947600,3),(1081,2045696400,4),(1081,2058397200,3),(1081,2077146000,4),(1081,2090451600,3),(1081,2108595600,4),(1081,2121901200,3),(1081,2140045200,4),(1082,-2147483648,1),(1082,-1638322740,4),(1082,-1632006000,2),(1082,-1618700400,3),(1082,-1593824400,1),(1082,-1535938740,5),(1082,-927943200,6),(1082,-892954800,7),(1082,-857257200,3),(1082,-844556400,2),(1082,-828226800,3),(1082,-812502000,2),(1082,-797652000,6),(1082,354920400,8),(1082,370728000,6),(1082,386456400,8),(1082,402264000,6),(1082,417992400,8),(1082,433800000,6),(1082,449614800,8),(1082,465346800,9),(1082,481071600,10),(1082,496796400,9),(1082,512521200,10),(1082,528246000,9),(1082,543970800,10),(1082,559695600,9),(1082,575420400,10),(1082,591145200,9),(1082,606870000,11),(1082,622598400,12),(1082,638323200,11),(1082,654652800,12),(1082,670377600,11),(1082,686102400,12),(1082,701827200,11),(1082,717552000,12),(1082,733276800,11),(1082,749001600,12),(1082,764726400,11),(1082,780451200,12),(1082,796176000,11),(1082,811900800,12),(1082,828230400,11),(1082,846374400,12),(1082,859680000,11),(1082,877824000,12),(1082,891129600,11),(1082,906411600,15),(1082,909277200,13),(1082,922582800,14),(1082,941331600,5),(1082,1017536400,14),(1082,1035680400,13),(1082,1048986000,14),(1082,1067130000,13),(1082,1080435600,14),(1082,1099184400,13),(1082,1111885200,14),(1082,1130634000,13),(1082,1143334800,14),(1082,1162083600,13),(1082,1174784400,14),(1082,1193533200,13),(1082,1206838800,14),(1082,1224982800,13),(1082,1238288400,14),(1082,1256432400,13),(1082,1269738000,14),(1082,1288486800,13),(1082,1301187600,14),(1082,1319936400,13),(1082,1332637200,14),(1082,1351386000,13),(1082,1364691600,14),(1082,1382835600,13),(1082,1396141200,14),(1082,1414285200,13),(1082,1427590800,14),(1082,1445734800,13),(1082,1459040400,14),(1082,1477789200,13),(1082,1490490000,14),(1082,1509238800,13),(1082,1521939600,14),(1082,1540688400,13),(1082,1553994000,14),(1082,1572138000,13),(1082,1585443600,14),(1082,1603587600,13),(1082,1616893200,14),(1082,1635642000,13),(1082,1648342800,14),(1082,1667091600,13),(1082,1679792400,14),(1082,1698541200,13),(1082,1711846800,14),(1082,1729990800,13),(1082,1743296400,14),(1082,1761440400,13),(1082,1774746000,14),(1082,1792890000,13),(1082,1806195600,14),(1082,1824944400,13),(1082,1837645200,14),(1082,1856394000,13),(1082,1869094800,14),(1082,1887843600,13),(1082,1901149200,14),(1082,1919293200,13),(1082,1932598800,14),(1082,1950742800,13),(1082,1964048400,14),(1082,1982797200,13),(1082,1995498000,14),(1082,2014246800,13),(1082,2026947600,14),(1082,2045696400,13),(1082,2058397200,14),(1082,2077146000,13),(1082,2090451600,14),(1082,2108595600,13),(1082,2121901200,14),(1082,2140045200,13),(1083,-2147483648,0),(1083,-1767230360,1),(1083,-932346000,2),(1083,-857257200,1),(1083,-844556400,2),(1083,-843519600,1),(1083,136854000,2),(1083,149896800,1),(1083,168130800,2),(1083,181432800,1),(1083,199839600,2),(1083,213141600,1),(1083,231894000,2),(1083,244591200,1),(1083,263257200,2),(1083,276040800,1),(1083,294706800,2),(1083,307490400,1),(1083,326156400,2),(1083,339458400,1),(1083,357087600,2),(1083,370389600,1),(1083,389142000,2),(1083,402444000,1),(1083,419468400,2),(1083,433807200,1),(1083,449622000,2),(1083,465354000,3),(1083,481078800,4),(1083,496803600,3),(1083,512528400,4),(1083,528253200,3),(1083,543978000,4),(1083,559702800,3),(1083,575427600,4),(1083,591152400,3),(1083,606877200,4),(1083,622602000,3),(1083,638326800,4),(1083,654656400,3),(1083,670381200,4),(1083,686106000,3),(1083,701830800,4),(1083,717555600,3),(1083,733280400,4),(1083,749005200,3),(1083,764730000,4),(1083,780454800,3),(1083,796179600,4),(1083,811904400,3),(1083,828234000,4),(1083,846378000,3),(1083,859683600,4),(1083,877827600,3),(1083,891133200,4),(1083,909277200,3),(1083,922582800,4),(1083,941331600,3),(1083,954032400,4),(1083,972781200,3),(1083,985482000,4),(1083,1004230800,3),(1083,1017536400,4),(1083,1035680400,3),(1083,1048986000,4),(1083,1067130000,3),(1083,1080435600,4),(1083,1099184400,3),(1083,1111885200,4),(1083,1130634000,3),(1083,1143334800,4),(1083,1162083600,3),(1083,1174784400,4),(1083,1193533200,3),(1083,1206838800,4),(1083,1224982800,3),(1083,1238288400,4),(1083,1256432400,3),(1083,1269738000,4),(1083,1288486800,3),(1083,1301187600,4),(1083,1319936400,3),(1083,1332637200,4),(1083,1351386000,3),(1083,1364691600,4),(1083,1382835600,3),(1083,1396141200,4),(1083,1414285200,3),(1083,1427590800,4),(1083,1445734800,3),(1083,1459040400,4),(1083,1477789200,3),(1083,1490490000,4),(1083,1509238800,3),(1083,1521939600,4),(1083,1540688400,3),(1083,1553994000,4),(1083,1572138000,3),(1083,1585443600,4),(1083,1603587600,3),(1083,1616893200,4),(1083,1635642000,3),(1083,1648342800,4),(1083,1667091600,3),(1083,1679792400,4),(1083,1698541200,3),(1083,1711846800,4),(1083,1729990800,3),(1083,1743296400,4),(1083,1761440400,3),(1083,1774746000,4),(1083,1792890000,3),(1083,1806195600,4),(1083,1824944400,3),(1083,1837645200,4),(1083,1856394000,3),(1083,1869094800,4),(1083,1887843600,3),(1083,1901149200,4),(1083,1919293200,3),(1083,1932598800,4),(1083,1950742800,3),(1083,1964048400,4),(1083,1982797200,3),(1083,1995498000,4),(1083,2014246800,3),(1083,2026947600,4),(1083,2045696400,3),(1083,2058397200,4),(1083,2077146000,3),(1083,2090451600,4),(1083,2108595600,3),(1083,2121901200,4),(1083,2140045200,3),(1084,-2147483648,1),(1084,-1637114100,2),(1084,-1213148664,5),(1084,-1187056800,3),(1084,-1175479200,4),(1084,-1159754400,3),(1084,-1144029600,4),(1084,-1127700000,3),(1084,-1111975200,4),(1084,-1096250400,3),(1084,-1080525600,4),(1084,-1064800800,3),(1084,-1049076000,4),(1084,-1033351200,3),(1084,-1017626400,4),(1084,-1001901600,3),(1084,-986176800,4),(1084,-970452000,3),(1084,-954727200,4),(1084,-927165600,6),(1084,-898138800,9),(1084,-857257200,7),(1084,-844556400,8),(1084,-828226800,7),(1084,-812502000,8),(1084,-800157600,11),(1084,354920400,10),(1084,370728000,11),(1084,386456400,10),(1084,402264000,11),(1084,417992400,10),(1084,433800000,11),(1084,449614800,10),(1084,465346800,12),(1084,481071600,13),(1084,496796400,12),(1084,512521200,13),(1084,528246000,12),(1084,543970800,13),(1084,559695600,12),(1084,575420400,13),(1084,591145200,12),(1084,606870000,13),(1084,622594800,12),(1084,638319600,13),(1084,641944800,6),(1084,654652800,4),(1084,670377600,3),(1084,686102400,4),(1084,694216800,5),(1084,701820000,6),(1084,717541200,5),(1084,733269600,6),(1084,748990800,5),(1084,764719200,6),(1084,780440400,5),(1084,796168800,6),(1084,811890000,5),(1084,828223200,6),(1084,846363600,5),(1084,859680000,6),(1084,877824000,5),(1084,891129600,6),(1084,909273600,5),(1084,922579200,6),(1084,941328000,5),(1084,954028800,6),(1084,972777600,5),(1084,985478400,6),(1084,1004227200,5),(1084,1017532800,6),(1084,1035676800,5),(1084,1048982400,6),(1084,1067126400,5),(1084,1080432000,6),(1084,1099180800,5),(1084,1111881600,6),(1084,1130630400,5),(1084,1143331200,6),(1084,1162080000,5),(1084,1174780800,6),(1084,1193529600,5),(1084,1206835200,6),(1084,1224979200,5),(1084,1238284800,6),(1084,1256428800,5),(1084,1269734400,6),(1084,1288483200,5),(1084,1301184000,6),(1084,1319932800,5),(1084,1332633600,6),(1084,1351382400,5),(1084,1364688000,6),(1084,1382832000,5),(1084,1396137600,6),(1084,1414281600,5),(1084,1427587200,6),(1084,1445731200,5),(1084,1459036800,6),(1084,1477785600,5),(1084,1490486400,6),(1084,1509235200,5),(1084,1521936000,6),(1084,1540684800,5),(1084,1553990400,6),(1084,1572134400,5),(1084,1585440000,6),(1084,1603584000,5),(1084,1616889600,6),(1084,1635638400,5),(1084,1648339200,6),(1084,1667088000,5),(1084,1679788800,6),(1084,1698537600,5),(1084,1711843200,6),(1084,1729987200,5),(1084,1743292800,6),(1084,1761436800,5),(1084,1774742400,6),(1084,1792886400,5),(1084,1806192000,6),(1084,1824940800,5),(1084,1837641600,6),(1084,1856390400,5),(1084,1869091200,6),(1084,1887840000,5),(1084,1901145600,6),(1084,1919289600,5),(1084,1932595200,6),(1084,1950739200,5),(1084,1964044800,6),(1084,1982793600,5),(1084,1995494400,6),(1084,2014243200,5),(1084,2026944000,6),(1084,2045692800,5),(1084,2058393600,6),(1084,2077142400,5),(1084,2090448000,6),(1084,2108592000,5),(1084,2121897600,6),(1084,2140041600,5),(1085,-2147483648,0),(1085,-1593820800,1),(1085,-1247540400,3),(1085,354916800,2),(1085,370724400,3),(1085,386452800,2),(1085,402260400,3),(1085,417988800,2),(1085,433796400,3),(1085,449611200,2),(1085,465343200,4),(1085,481068000,5),(1085,496792800,4),(1085,512517600,5),(1085,528242400,4),(1085,543967200,5),(1085,559692000,4),(1085,575416800,5),(1085,591141600,4),(1085,606866400,6),(1085,622594800,7),(1085,638319600,6),(1085,654649200,7),(1085,670374000,8),(1085,686102400,9),(1085,695779200,7),(1085,701823600,6),(1085,717548400,7),(1085,733273200,6),(1085,748998000,7),(1085,764722800,6),(1085,780447600,7),(1085,796172400,6),(1085,811897200,7),(1085,828226800,6),(1085,846370800,7),(1085,859676400,6),(1085,877820400,7),(1085,891126000,6),(1085,909270000,7),(1085,922575600,6),(1085,941324400,7),(1085,954025200,6),(1085,972774000,7),(1085,985474800,6),(1085,1004223600,7),(1085,1017529200,6),(1085,1035673200,7),(1085,1048978800,6),(1085,1067122800,7),(1085,1080428400,6),(1085,1099177200,7),(1085,1111878000,6),(1085,1130626800,7),(1085,1143327600,6),(1085,1162076400,7),(1085,1174777200,6),(1085,1193526000,7),(1085,1206831600,6),(1085,1224975600,7),(1085,1238281200,6),(1085,1256425200,7),(1085,1269730800,6),(1085,1288479600,7),(1085,1301180400,4),(1085,1414274400,7),(1085,1459033200,4),(1086,-2147483648,1),(1086,-938905200,2),(1086,-857257200,3),(1086,-844556400,2),(1086,-828226800,3),(1086,-812502000,2),(1086,-796874400,4),(1086,-794714400,1),(1086,-773456400,6),(1086,354920400,5),(1086,370728000,6),(1086,386456400,5),(1086,402264000,6),(1086,417992400,5),(1086,433800000,6),(1086,449614800,5),(1086,465346800,7),(1086,481071600,8),(1086,496796400,7),(1086,512521200,8),(1086,528246000,7),(1086,543970800,8),(1086,559695600,7),(1086,575420400,8),(1086,591145200,7),(1086,606870000,8),(1086,622594800,7),(1086,631141200,6),(1086,646786800,1),(1086,670384800,9),(1086,701820000,10),(1086,717541200,9),(1086,733269600,10),(1086,748990800,9),(1086,764719200,10),(1086,780440400,9),(1086,796179600,11),(1086,811904400,12),(1086,828234000,11),(1086,846378000,12),(1086,859683600,11),(1086,877827600,12),(1086,891133200,11),(1086,909277200,12),(1086,922582800,11),(1086,941331600,12),(1086,954032400,11),(1086,972781200,12),(1086,985482000,11),(1086,1004230800,12),(1086,1017536400,11),(1086,1035680400,12),(1086,1048986000,11),(1086,1067130000,12),(1086,1080435600,11),(1086,1099184400,12),(1086,1111885200,11),(1086,1130634000,12),(1086,1143334800,11),(1086,1162083600,12),(1086,1174784400,11),(1086,1193533200,12),(1086,1206838800,11),(1086,1224982800,12),(1086,1238288400,11),(1086,1256432400,12),(1086,1269738000,11),(1086,1288486800,12),(1086,1301187600,11),(1086,1319936400,12),(1086,1332637200,11),(1086,1351386000,12),(1086,1364691600,11),(1086,1382835600,12),(1086,1396141200,11),(1086,1414285200,12),(1086,1427590800,11),(1086,1445734800,12),(1086,1459040400,11),(1086,1477789200,12),(1086,1490490000,11),(1086,1509238800,12),(1086,1521939600,11),(1086,1540688400,12),(1086,1553994000,11),(1086,1572138000,12),(1086,1585443600,11),(1086,1603587600,12),(1086,1616893200,11),(1086,1635642000,12),(1086,1648342800,11),(1086,1667091600,12),(1086,1679792400,11),(1086,1698541200,12),(1086,1711846800,11),(1086,1729990800,12),(1086,1743296400,11),(1086,1761440400,12),(1086,1774746000,11),(1086,1792890000,12),(1086,1806195600,11),(1086,1824944400,12),(1086,1837645200,11),(1086,1856394000,12),(1086,1869094800,11),(1086,1887843600,12),(1086,1901149200,11),(1086,1919293200,12),(1086,1932598800,11),(1086,1950742800,12),(1086,1964048400,11),(1086,1982797200,12),(1086,1995498000,11),(1086,2014246800,12),(1086,2026947600,11),(1086,2045696400,12),(1086,2058397200,11),(1086,2077146000,12),(1086,2090451600,11),(1086,2108595600,12),(1086,2121901200,11),(1086,2140045200,12),(1087,-2147483648,2),(1087,-904435200,1),(1087,-891129600,2),(1087,-872985600,1),(1087,-859680000,2),(1087,354675600,3),(1087,370400400,4),(1087,386125200,3),(1087,401850000,4),(1087,417574800,3),(1087,433299600,4),(1087,449024400,3),(1087,465354000,4),(1087,481078800,3),(1087,496803600,4),(1087,512528400,3),(1087,528253200,4),(1087,543978000,3),(1087,559702800,4),(1087,575427600,3),(1087,591152400,4),(1087,606877200,3),(1087,622602000,4),(1087,638326800,3),(1087,654656400,4),(1087,670381200,3),(1087,686106000,4),(1087,701830800,3),(1087,717555600,4),(1087,733280400,3),(1087,749005200,4),(1087,764730000,3),(1087,780454800,4),(1087,796179600,3),(1087,811904400,4),(1087,828234000,3),(1087,846378000,4),(1087,859683600,3),(1087,877827600,4),(1087,891133200,3),(1087,909277200,4),(1087,922582800,3),(1087,941331600,4),(1087,954032400,3),(1087,972781200,4),(1087,985482000,3),(1087,1004230800,4),(1087,1017536400,3),(1087,1035680400,4),(1087,1048986000,3),(1087,1067130000,4),(1087,1080435600,3),(1087,1099184400,4),(1087,1111885200,3),(1087,1130634000,4),(1087,1143334800,3),(1087,1162083600,4),(1087,1174784400,3),(1087,1193533200,4),(1087,1206838800,3),(1087,1224982800,4),(1087,1238288400,3),(1087,1256432400,4),(1087,1269738000,3),(1087,1288486800,4),(1087,1301187600,3),(1087,1319936400,4),(1087,1332637200,3),(1087,1351386000,4),(1087,1364691600,3),(1087,1382835600,4),(1087,1396141200,3),(1087,1414285200,4),(1087,1427590800,3),(1087,1445734800,4),(1087,1459040400,3),(1087,1477789200,4),(1087,1490490000,3),(1087,1509238800,4),(1087,1521939600,3),(1087,1540688400,4),(1087,1553994000,3),(1087,1572138000,4),(1087,1585443600,3),(1087,1603587600,4),(1087,1616893200,3),(1087,1635642000,4),(1087,1648342800,3),(1087,1667091600,4),(1087,1679792400,3),(1087,1698541200,4),(1087,1711846800,3),(1087,1729990800,4),(1087,1743296400,3),(1087,1761440400,4),(1087,1774746000,3),(1087,1792890000,4),(1087,1806195600,3),(1087,1824944400,4),(1087,1837645200,3),(1087,1856394000,4),(1087,1869094800,3),(1087,1887843600,4),(1087,1901149200,3),(1087,1919293200,4),(1087,1932598800,3),(1087,1950742800,4),(1087,1964048400,3),(1087,1982797200,4),(1087,1995498000,3),(1087,2014246800,4),(1087,2026947600,3),(1087,2045696400,4),(1087,2058397200,3),(1087,2077146000,4),(1087,2090451600,3),(1087,2108595600,4),(1087,2121901200,3),(1087,2140045200,4),(1088,-2147483648,2),(1088,-1690765200,1),(1088,-1680487200,2),(1088,-1664758800,1),(1088,-1648951200,2),(1088,-1635123600,1),(1088,-1616896800,2),(1088,-1604278800,1),(1088,-1585533600,2),(1088,-1571014800,1),(1088,-1555293600,2),(1088,-932432400,1),(1088,-857257200,3),(1088,-844556400,4),(1088,-830311200,1),(1088,-828226800,3),(1088,-812502000,4),(1088,-807156000,1),(1088,-798073200,3),(1088,-781052400,1),(1088,-766717200,2),(1088,-750898800,4),(1088,-733359600,3),(1088,-719456400,4),(1088,-701917200,3),(1088,-689209200,4),(1088,-670460400,3),(1088,-114051600,4),(1088,-103168800,2),(1088,-81997200,4),(1088,-71715600,3),(1088,-50547600,4),(1088,-40266000,3),(1088,-18493200,4),(1088,-8211600,3),(1088,12956400,4),(1088,23238000,3),(1088,43801200,4),(1088,54687600,3),(1088,75855600,4),(1088,86742000,3),(1088,107910000,4),(1088,118191600,3),(1088,138754800,4),(1088,149641200,3),(1088,170809200,4),(1088,181090800,3),(1088,202258800,4),(1088,212540400,3),(1088,233103600,4),(1088,243990000,3),(1088,265158000,4),(1088,276044400,3),(1088,296607600,4),(1088,307494000,3),(1088,315529200,2),(1088,323830800,5),(1088,338950800,6),(1088,354675600,5),(1088,370400400,6),(1088,386125200,5),(1088,401850000,6),(1088,417574800,5),(1088,433299600,6),(1088,449024400,5),(1088,465354000,6),(1088,481078800,5),(1088,496803600,6),(1088,512528400,5),(1088,528253200,6),(1088,543978000,5),(1088,559702800,6),(1088,575427600,5),(1088,591152400,6),(1088,606877200,5),(1088,622602000,6),(1088,638326800,5),(1088,654656400,6),(1088,670381200,5),(1088,686106000,6),(1088,701830800,5),(1088,717555600,6),(1088,733280400,5),(1088,749005200,6),(1088,764730000,5),(1088,780454800,6),(1088,796179600,5),(1088,811904400,6),(1088,828234000,5),(1088,846378000,6),(1088,859683600,5),(1088,877827600,6),(1088,891133200,5),(1088,909277200,6),(1088,922582800,5),(1088,941331600,6),(1088,954032400,5),(1088,972781200,6),(1088,985482000,5),(1088,1004230800,6),(1088,1017536400,5),(1088,1035680400,6),(1088,1048986000,5),(1088,1067130000,6),(1088,1080435600,5),(1088,1099184400,6),(1088,1111885200,5),(1088,1130634000,6),(1088,1143334800,5),(1088,1162083600,6),(1088,1174784400,5),(1088,1193533200,6),(1088,1206838800,5),(1088,1224982800,6),(1088,1238288400,5),(1088,1256432400,6),(1088,1269738000,5),(1088,1288486800,6),(1088,1301187600,5),(1088,1319936400,6),(1088,1332637200,5),(1088,1351386000,6),(1088,1364691600,5),(1088,1382835600,6),(1088,1396141200,5),(1088,1414285200,6),(1088,1427590800,5),(1088,1445734800,6),(1088,1459040400,5),(1088,1477789200,6),(1088,1490490000,5),(1088,1509238800,6),(1088,1521939600,5),(1088,1540688400,6),(1088,1553994000,5),(1088,1572138000,6),(1088,1585443600,5),(1088,1603587600,6),(1088,1616893200,5),(1088,1635642000,6),(1088,1648342800,5),(1088,1667091600,6),(1088,1679792400,5),(1088,1698541200,6),(1088,1711846800,5),(1088,1729990800,6),(1088,1743296400,5),(1088,1761440400,6),(1088,1774746000,5),(1088,1792890000,6),(1088,1806195600,5),(1088,1824944400,6),(1088,1837645200,5),(1088,1856394000,6),(1088,1869094800,5),(1088,1887843600,6),(1088,1901149200,5),(1088,1919293200,6),(1088,1932598800,5),(1088,1950742800,6),(1088,1964048400,5),(1088,1982797200,6),(1088,1995498000,5),(1088,2014246800,6),(1088,2026947600,5),(1088,2045696400,6),(1088,2058397200,5),(1088,2077146000,6),(1088,2090451600,5),(1088,2108595600,6),(1088,2121901200,5),(1088,2140045200,6),(1089,-2147483648,2),(1089,-1693706400,1),(1089,-1680483600,2),(1089,-1663455600,3),(1089,-1650150000,4),(1089,-1632006000,3),(1089,-1618700400,4),(1089,-1577926800,2),(1089,-1569711600,3),(1089,-1555801200,4),(1089,-938905200,3),(1089,-857257200,4),(1089,-844556400,3),(1089,-828226800,4),(1089,-812502000,3),(1089,-796777200,4),(1089,-781052400,3),(1089,-780188400,4),(1089,-757386000,2),(1089,-748479600,3),(1089,-733273200,4),(1089,-717634800,3),(1089,-701910000,4),(1089,-684975600,3),(1089,-670460400,4),(1089,323823600,1),(1089,338940000,2),(1089,354675600,5),(1089,370400400,6),(1089,386125200,5),(1089,401850000,6),(1089,417574800,5),(1089,433299600,6),(1089,449024400,5),(1089,465354000,6),(1089,481078800,5),(1089,496803600,6),(1089,512528400,5),(1089,528253200,6),(1089,543978000,5),(1089,559702800,6),(1089,575427600,5),(1089,591152400,6),(1089,606877200,5),(1089,622602000,6),(1089,638326800,5),(1089,654656400,6),(1089,670381200,5),(1089,686106000,6),(1089,701830800,5),(1089,717555600,6),(1089,733280400,5),(1089,749005200,6),(1089,764730000,5),(1089,780454800,6),(1089,796179600,5),(1089,811904400,6),(1089,828234000,5),(1089,846378000,6),(1089,859683600,5),(1089,877827600,6),(1089,891133200,5),(1089,909277200,6),(1089,922582800,5),(1089,941331600,6),(1089,954032400,5),(1089,972781200,6),(1089,985482000,5),(1089,1004230800,6),(1089,1017536400,5),(1089,1035680400,6),(1089,1048986000,5),(1089,1067130000,6),(1089,1080435600,5),(1089,1099184400,6),(1089,1111885200,5),(1089,1130634000,6),(1089,1143334800,5),(1089,1162083600,6),(1089,1174784400,5),(1089,1193533200,6),(1089,1206838800,5),(1089,1224982800,6),(1089,1238288400,5),(1089,1256432400,6),(1089,1269738000,5),(1089,1288486800,6),(1089,1301187600,5),(1089,1319936400,6),(1089,1332637200,5),(1089,1351386000,6),(1089,1364691600,5),(1089,1382835600,6),(1089,1396141200,5),(1089,1414285200,6),(1089,1427590800,5),(1089,1445734800,6),(1089,1459040400,5),(1089,1477789200,6),(1089,1490490000,5),(1089,1509238800,6),(1089,1521939600,5),(1089,1540688400,6),(1089,1553994000,5),(1089,1572138000,6),(1089,1585443600,5),(1089,1603587600,6),(1089,1616893200,5),(1089,1635642000,6),(1089,1648342800,5),(1089,1667091600,6),(1089,1679792400,5),(1089,1698541200,6),(1089,1711846800,5),(1089,1729990800,6),(1089,1743296400,5),(1089,1761440400,6),(1089,1774746000,5),(1089,1792890000,6),(1089,1806195600,5),(1089,1824944400,6),(1089,1837645200,5),(1089,1856394000,6),(1089,1869094800,5),(1089,1887843600,6),(1089,1901149200,5),(1089,1919293200,6),(1089,1932598800,5),(1089,1950742800,6),(1089,1964048400,5),(1089,1982797200,6),(1089,1995498000,5),(1089,2014246800,6),(1089,2026947600,5),(1089,2045696400,6),(1089,2058397200,5),(1089,2077146000,6),(1089,2090451600,5),(1089,2108595600,6),(1089,2121901200,5),(1089,2140045200,6),(1090,-2147483648,1),(1090,-1672536240,2),(1090,-1585100136,3),(1090,-1561251600,4),(1090,-1553565600,3),(1090,-928198800,5),(1090,-900126000,8),(1090,-857257200,6),(1090,-844556400,7),(1090,-828226800,6),(1090,-812502000,7),(1090,-802144800,5),(1090,354920400,9),(1090,370728000,5),(1090,386456400,9),(1090,402264000,5),(1090,417992400,9),(1090,433800000,5),(1090,449614800,9),(1090,465346800,10),(1090,481071600,11),(1090,496796400,10),(1090,512521200,11),(1090,528246000,10),(1090,543970800,11),(1090,559695600,10),(1090,575420400,11),(1090,591145200,10),(1090,606870000,12),(1090,622598400,13),(1090,638323200,12),(1090,654652800,13),(1090,670377600,12),(1090,686102400,13),(1090,701827200,12),(1090,717552000,13),(1090,733276800,12),(1090,749001600,13),(1090,764726400,12),(1090,780451200,13),(1090,796176000,12),(1090,811900800,13),(1090,828230400,12),(1090,846374400,13),(1090,859680000,12),(1090,877824000,13),(1090,883605600,4),(1090,891133200,14),(1090,909277200,15),(1090,922582800,14),(1090,941331600,16),(1090,1041372000,4),(1090,1048986000,17),(1090,1067130000,16),(1090,1080435600,17),(1090,1099184400,16),(1090,1111885200,17),(1090,1130634000,16),(1090,1143334800,17),(1090,1162083600,16),(1090,1174784400,17),(1090,1193533200,16),(1090,1206838800,17),(1090,1224982800,16),(1090,1238288400,17),(1090,1256432400,16),(1090,1269738000,17),(1090,1288486800,16),(1090,1301187600,17),(1090,1319936400,16),(1090,1332637200,17),(1090,1351386000,16),(1090,1364691600,17),(1090,1382835600,16),(1090,1396141200,17),(1090,1414285200,16),(1090,1427590800,17),(1090,1445734800,16),(1090,1459040400,17),(1090,1477789200,16),(1090,1490490000,17),(1090,1509238800,16),(1090,1521939600,17),(1090,1540688400,16),(1090,1553994000,17),(1090,1572138000,16),(1090,1585443600,17),(1090,1603587600,16),(1090,1616893200,17),(1090,1635642000,16),(1090,1648342800,17),(1090,1667091600,16),(1090,1679792400,17),(1090,1698541200,16),(1090,1711846800,17),(1090,1729990800,16),(1090,1743296400,17),(1090,1761440400,16),(1090,1774746000,17),(1090,1792890000,16),(1090,1806195600,17),(1090,1824944400,16),(1090,1837645200,17),(1090,1856394000,16),(1090,1869094800,17),(1090,1887843600,16),(1090,1901149200,17),(1090,1919293200,16),(1090,1932598800,17),(1090,1950742800,16),(1090,1964048400,17),(1090,1982797200,16),(1090,1995498000,17),(1090,2014246800,16),(1090,2026947600,17),(1090,2045696400,16),(1090,2058397200,17),(1090,2077146000,16),(1090,2090451600,17),(1090,2108595600,16),(1090,2121901200,17),(1090,2140045200,16),(1091,-2147483648,0),(1091,-1577761060,1),(1091,-1247540400,2),(1091,354916800,3),(1091,370724400,2),(1091,386452800,3),(1091,402260400,2),(1091,417988800,3),(1091,433796400,2),(1091,449611200,3),(1091,465343200,4),(1091,481068000,5),(1091,496792800,4),(1091,512517600,5),(1091,528242400,4),(1091,543967200,5),(1091,559692000,4),(1091,575416800,6),(1091,591145200,7),(1091,606870000,6),(1091,622594800,7),(1091,638319600,6),(1091,654649200,7),(1091,670374000,4),(1091,701820000,6),(1091,717548400,7),(1091,733273200,6),(1091,748998000,7),(1091,764722800,6),(1091,780447600,7),(1091,796172400,6),(1091,811897200,7),(1091,828226800,6),(1091,846370800,7),(1091,859676400,6),(1091,877820400,7),(1091,891126000,6),(1091,909270000,7),(1091,922575600,6),(1091,941324400,7),(1091,954025200,6),(1091,972774000,7),(1091,985474800,6),(1091,1004223600,7),(1091,1017529200,6),(1091,1035673200,7),(1091,1048978800,6),(1091,1067122800,7),(1091,1080428400,6),(1091,1099177200,7),(1091,1111878000,6),(1091,1130626800,7),(1091,1143327600,6),(1091,1162076400,7),(1091,1174777200,6),(1091,1193526000,7),(1091,1206831600,6),(1091,1224975600,7),(1091,1238281200,6),(1091,1256425200,7),(1091,1269730800,6),(1091,1288479600,7),(1091,1301180400,4),(1091,1414274400,7),(1091,1540681200,4),(1092,-2147483648,1),(1092,-1717032240,3),(1092,-1693706400,2),(1092,-1680483600,3),(1092,-1663455600,4),(1092,-1650150000,5),(1092,-1632006000,4),(1092,-1618700400,8),(1092,-1600473600,6),(1092,-1587168000,7),(1092,-1501725600,3),(1092,-931734000,2),(1092,-857257200,5),(1092,-844556400,4),(1092,-828226800,5),(1092,-812502000,4),(1092,-796874400,2),(1092,-796608000,3),(1092,-778726800,2),(1092,-762660000,3),(1092,-748486800,4),(1092,-733273200,5),(1092,-715215600,4),(1092,-701910000,5),(1092,-684975600,4),(1092,-670460400,5),(1092,-654130800,4),(1092,-639010800,5),(1092,-397094400,4),(1092,-386812800,5),(1092,-371088000,4),(1092,-355363200,5),(1092,-334195200,4),(1092,-323308800,5),(1092,-307584000,4),(1092,-291859200,5),(1092,-271296000,4),(1092,-260409600,5),(1092,-239846400,4),(1092,-228960000,5),(1092,-208396800,4),(1092,-197510400,5),(1092,-176342400,4),(1092,-166060800,5),(1092,220921200,3),(1092,228873600,4),(1092,243993600,5),(1092,260323200,4),(1092,276048000,5),(1092,291772800,4),(1092,307497600,5),(1092,323827200,4),(1092,338947200,5),(1092,354672000,4),(1092,370396800,5),(1092,386121600,4),(1092,401846400,5),(1092,417571200,4),(1092,433296000,5),(1092,449020800,4),(1092,465350400,5),(1092,481075200,4),(1092,496800000,5),(1092,512524800,4),(1092,528249600,5),(1092,543974400,4),(1092,559699200,5),(1092,567990000,3),(1092,575427600,9),(1092,591152400,10),(1092,606877200,9),(1092,622602000,10),(1092,638326800,9),(1092,654656400,10),(1092,670381200,9),(1092,686106000,10),(1092,701830800,9),(1092,717555600,10),(1092,733280400,9),(1092,749005200,10),(1092,764730000,9),(1092,780454800,10),(1092,796179600,9),(1092,811904400,10),(1092,828234000,9),(1092,846378000,10),(1092,859683600,9),(1092,877827600,10),(1092,891133200,9),(1092,909277200,10),(1092,922582800,9),(1092,941331600,10),(1092,954032400,9),(1092,972781200,10),(1092,985482000,9),(1092,1004230800,10),(1092,1017536400,9),(1092,1035680400,10),(1092,1048986000,9),(1092,1067130000,10),(1092,1080435600,9),(1092,1099184400,10),(1092,1111885200,9),(1092,1130634000,10),(1092,1143334800,9),(1092,1162083600,10),(1092,1174784400,9),(1092,1193533200,10),(1092,1206838800,9),(1092,1224982800,10),(1092,1238288400,9),(1092,1256432400,10),(1092,1269738000,9),(1092,1288486800,10),(1092,1301187600,9),(1092,1319936400,10),(1092,1332637200,9),(1092,1351386000,10),(1092,1364691600,9),(1092,1382835600,10),(1092,1396141200,9),(1092,1414285200,10),(1092,1427590800,9),(1092,1445734800,10),(1092,1459040400,9),(1092,1477789200,10),(1092,1490490000,9),(1092,1509238800,10),(1092,1521939600,9),(1092,1540688400,10),(1092,1553994000,9),(1092,1572138000,10),(1092,1585443600,9),(1092,1603587600,10),(1092,1616893200,9),(1092,1635642000,10),(1092,1648342800,9),(1092,1667091600,10),(1092,1679792400,9),(1092,1698541200,10),(1092,1711846800,9),(1092,1729990800,10),(1092,1743296400,9),(1092,1761440400,10),(1092,1774746000,9),(1092,1792890000,10),(1092,1806195600,9),(1092,1824944400,10),(1092,1837645200,9),(1092,1856394000,10),(1092,1869094800,9),(1092,1887843600,10),(1092,1901149200,9),(1092,1919293200,10),(1092,1932598800,9),(1092,1950742800,10),(1092,1964048400,9),(1092,1982797200,10),(1092,1995498000,9),(1092,2014246800,10),(1092,2026947600,9),(1092,2045696400,10),(1092,2058397200,9),(1092,2077146000,10),(1092,2090451600,9),(1092,2108595600,10),(1092,2121901200,9),(1092,2140045200,10),(1093,-2147483648,1),(1093,-905824800,4),(1093,-857257200,2),(1093,-844556400,3),(1093,-828226800,2),(1093,-812502000,3),(1093,-796777200,2),(1093,-788922000,1),(1093,-777942000,3),(1093,-766623600,2),(1093,407199600,1),(1093,417574800,5),(1093,433299600,6),(1093,449024400,5),(1093,465354000,6),(1093,481078800,5),(1093,496803600,6),(1093,512528400,5),(1093,528253200,6),(1093,543978000,5),(1093,559702800,6),(1093,575427600,5),(1093,591152400,6),(1093,606877200,5),(1093,622602000,6),(1093,638326800,5),(1093,654656400,6),(1093,670381200,5),(1093,686106000,6),(1093,701830800,5),(1093,717555600,6),(1093,733280400,5),(1093,749005200,6),(1093,764730000,5),(1093,780454800,6),(1093,796179600,5),(1093,811904400,6),(1093,828234000,5),(1093,846378000,6),(1093,859683600,5),(1093,877827600,6),(1093,891133200,5),(1093,909277200,6),(1093,922582800,5),(1093,941331600,6),(1093,954032400,5),(1093,972781200,6),(1093,985482000,5),(1093,1004230800,6),(1093,1017536400,5),(1093,1035680400,6),(1093,1048986000,5),(1093,1067130000,6),(1093,1080435600,5),(1093,1099184400,6),(1093,1111885200,5),(1093,1130634000,6),(1093,1143334800,5),(1093,1162083600,6),(1093,1174784400,5),(1093,1193533200,6),(1093,1206838800,5),(1093,1224982800,6),(1093,1238288400,5),(1093,1256432400,6),(1093,1269738000,5),(1093,1288486800,6),(1093,1301187600,5),(1093,1319936400,6),(1093,1332637200,5),(1093,1351386000,6),(1093,1364691600,5),(1093,1382835600,6),(1093,1396141200,5),(1093,1414285200,6),(1093,1427590800,5),(1093,1445734800,6),(1093,1459040400,5),(1093,1477789200,6),(1093,1490490000,5),(1093,1509238800,6),(1093,1521939600,5),(1093,1540688400,6),(1093,1553994000,5),(1093,1572138000,6),(1093,1585443600,5),(1093,1603587600,6),(1093,1616893200,5),(1093,1635642000,6),(1093,1648342800,5),(1093,1667091600,6),(1093,1679792400,5),(1093,1698541200,6),(1093,1711846800,5),(1093,1729990800,6),(1093,1743296400,5),(1093,1761440400,6),(1093,1774746000,5),(1093,1792890000,6),(1093,1806195600,5),(1093,1824944400,6),(1093,1837645200,5),(1093,1856394000,6),(1093,1869094800,5),(1093,1887843600,6),(1093,1901149200,5),(1093,1919293200,6),(1093,1932598800,5),(1093,1950742800,6),(1093,1964048400,5),(1093,1982797200,6),(1093,1995498000,5),(1093,2014246800,6),(1093,2026947600,5),(1093,2045696400,6),(1093,2058397200,5),(1093,2077146000,6),(1093,2090451600,5),(1093,2108595600,6),(1093,2121901200,5),(1093,2140045200,6),(1094,-2147483648,1),(1094,-1441160400,2),(1094,-1247536800,3),(1094,-894769200,6),(1094,-857257200,4),(1094,-844556400,5),(1094,-828226800,4),(1094,-826419600,3),(1094,354920400,7),(1094,370728000,3),(1094,386456400,7),(1094,402264000,3),(1094,417992400,7),(1094,433800000,3),(1094,449614800,7),(1094,465346800,8),(1094,481071600,9),(1094,496796400,8),(1094,512521200,9),(1094,528246000,8),(1094,543970800,9),(1094,559695600,8),(1094,575420400,9),(1094,591145200,8),(1094,606870000,9),(1094,622594800,8),(1094,638319600,9),(1094,654649200,8),(1094,670374000,10),(1094,686091600,2),(1094,701820000,10),(1094,717541200,2),(1094,733269600,10),(1094,748990800,2),(1094,764719200,10),(1094,780440400,2),(1094,796179600,11),(1094,811904400,12),(1094,828234000,11),(1094,846378000,12),(1094,859683600,11),(1094,877827600,12),(1094,891133200,11),(1094,909277200,12),(1094,922582800,11),(1094,941331600,12),(1094,954032400,11),(1094,972781200,12),(1094,985482000,11),(1094,1004230800,12),(1094,1017536400,11),(1094,1035680400,12),(1094,1048986000,11),(1094,1067130000,12),(1094,1080435600,11),(1094,1099184400,12),(1094,1111885200,11),(1094,1130634000,12),(1094,1143334800,11),(1094,1162083600,12),(1094,1174784400,11),(1094,1193533200,12),(1094,1206838800,11),(1094,1224982800,12),(1094,1238288400,11),(1094,1256432400,12),(1094,1269738000,11),(1094,1288486800,12),(1094,1301187600,11),(1094,1319936400,12),(1094,1332637200,11),(1094,1351386000,12),(1094,1364691600,11),(1094,1382835600,12),(1094,1396141200,11),(1094,1414285200,12),(1094,1427590800,11),(1094,1445734800,12),(1094,1459040400,11),(1094,1477789200,12),(1094,1490490000,11),(1094,1509238800,12),(1094,1521939600,11),(1094,1540688400,12),(1094,1553994000,11),(1094,1572138000,12),(1094,1585443600,11),(1094,1603587600,12),(1094,1616893200,11),(1094,1635642000,12),(1094,1648342800,11),(1094,1667091600,12),(1094,1679792400,11),(1094,1698541200,12),(1094,1711846800,11),(1094,1729990800,12),(1094,1743296400,11),(1094,1761440400,12),(1094,1774746000,11),(1094,1792890000,12),(1094,1806195600,11),(1094,1824944400,12),(1094,1837645200,11),(1094,1856394000,12),(1094,1869094800,11),(1094,1887843600,12),(1094,1901149200,11),(1094,1919293200,12),(1094,1932598800,11),(1094,1950742800,12),(1094,1964048400,11),(1094,1982797200,12),(1094,1995498000,11),(1094,2014246800,12),(1094,2026947600,11),(1094,2045696400,12),(1094,2058397200,11),(1094,2077146000,12),(1094,2090451600,11),(1094,2108595600,12),(1094,2121901200,11),(1094,2140045200,12),(1095,-2147483648,2),(1095,-904435200,1),(1095,-891129600,2),(1095,-872985600,1),(1095,-859680000,2),(1095,354675600,3),(1095,370400400,4),(1095,386125200,3),(1095,401850000,4),(1095,417574800,3),(1095,433299600,4),(1095,449024400,3),(1095,465354000,4),(1095,481078800,3),(1095,496803600,4),(1095,512528400,3),(1095,528253200,4),(1095,543978000,3),(1095,559702800,4),(1095,575427600,3),(1095,591152400,4),(1095,606877200,3),(1095,622602000,4),(1095,638326800,3),(1095,654656400,4),(1095,670381200,3),(1095,686106000,4),(1095,701830800,3),(1095,717555600,4),(1095,733280400,3),(1095,749005200,4),(1095,764730000,3),(1095,780454800,4),(1095,796179600,3),(1095,811904400,4),(1095,828234000,3),(1095,846378000,4),(1095,859683600,3),(1095,877827600,4),(1095,891133200,3),(1095,909277200,4),(1095,922582800,3),(1095,941331600,4),(1095,954032400,3),(1095,972781200,4),(1095,985482000,3),(1095,1004230800,4),(1095,1017536400,3),(1095,1035680400,4),(1095,1048986000,3),(1095,1067130000,4),(1095,1080435600,3),(1095,1099184400,4),(1095,1111885200,3),(1095,1130634000,4),(1095,1143334800,3),(1095,1162083600,4),(1095,1174784400,3),(1095,1193533200,4),(1095,1206838800,3),(1095,1224982800,4),(1095,1238288400,3),(1095,1256432400,4),(1095,1269738000,3),(1095,1288486800,4),(1095,1301187600,3),(1095,1319936400,4),(1095,1332637200,3),(1095,1351386000,4),(1095,1364691600,3),(1095,1382835600,4),(1095,1396141200,3),(1095,1414285200,4),(1095,1427590800,3),(1095,1445734800,4),(1095,1459040400,3),(1095,1477789200,4),(1095,1490490000,3),(1095,1509238800,4),(1095,1521939600,3),(1095,1540688400,4),(1095,1553994000,3),(1095,1572138000,4),(1095,1585443600,3),(1095,1603587600,4),(1095,1616893200,3),(1095,1635642000,4),(1095,1648342800,3),(1095,1667091600,4),(1095,1679792400,3),(1095,1698541200,4),(1095,1711846800,3),(1095,1729990800,4),(1095,1743296400,3),(1095,1761440400,4),(1095,1774746000,3),(1095,1792890000,4),(1095,1806195600,3),(1095,1824944400,4),(1095,1837645200,3),(1095,1856394000,4),(1095,1869094800,3),(1095,1887843600,4),(1095,1901149200,3),(1095,1919293200,4),(1095,1932598800,3),(1095,1950742800,4),(1095,1964048400,3),(1095,1982797200,4),(1095,1995498000,3),(1095,2014246800,4),(1095,2026947600,3),(1095,2045696400,4),(1095,2058397200,3),(1095,2077146000,4),(1095,2090451600,3),(1095,2108595600,4),(1095,2121901200,3),(1095,2140045200,4),(1097,-2147483648,2),(1097,-1691964000,1),(1097,-1680472800,2),(1097,-1664143200,1),(1097,-1650146400,2),(1097,-1633903200,1),(1097,-1617487200,2),(1097,-1601848800,1),(1097,-1586037600,2),(1097,-1570399200,1),(1097,-1552168800,2),(1097,-1538344800,1),(1097,-1522533600,2),(1097,-1507500000,1),(1097,-1490565600,2),(1097,-1473631200,1),(1097,-1460930400,2),(1097,-1442786400,1),(1097,-1428876000,2),(1097,-1410732000,1),(1097,-1396216800,2),(1097,-1379282400,1),(1097,-1364767200,2),(1097,-1348437600,1),(1097,-1333317600,2),(1097,-1315778400,1),(1097,-1301263200,2),(1097,-1284328800,1),(1097,-1269813600,2),(1097,-1253484000,1),(1097,-1238364000,2),(1097,-1221429600,1),(1097,-1206914400,2),(1097,-1189980000,1),(1097,-1175464800,2),(1097,-1159135200,1),(1097,-1143410400,2),(1097,-1126476000,1),(1097,-1111960800,2),(1097,-1095631200,1),(1097,-1080511200,2),(1097,-1063576800,1),(1097,-1049061600,2),(1097,-1032127200,1),(1097,-1017612000,2),(1097,-1001282400,1),(1097,-986162400,2),(1097,-969228000,1),(1097,-950479200,2),(1097,-942012000,1),(1097,-904518000,3),(1097,-896050800,1),(1097,-875487600,3),(1097,-864601200,1),(1097,-844038000,3),(1097,-832546800,1),(1097,-812588400,3),(1097,-798073200,1),(1097,-781052400,3),(1097,-772066800,1),(1097,-764805600,2),(1097,-748476000,1),(1097,-733356000,2),(1097,-719445600,1),(1097,-717030000,3),(1097,-706748400,1),(1097,-699487200,2),(1097,-687996000,1),(1097,-668037600,2),(1097,-654732000,1),(1097,-636588000,2),(1097,-622072800,1),(1097,-605743200,2),(1097,-590623200,1),(1097,-574293600,2),(1097,-558568800,1),(1097,-542239200,2),(1097,-527119200,1),(1097,-512604000,2),(1097,-496274400,1),(1097,-481154400,2),(1097,-464220000,1),(1097,-449704800,2),(1097,-432165600,1),(1097,-417650400,2),(1097,-401320800,1),(1097,-386200800,2),(1097,-369266400,1),(1097,-354751200,2),(1097,-337816800,1),(1097,-323301600,2),(1097,-306972000,1),(1097,-291852000,2),(1097,-276732000,1),(1097,-257983200,2),(1097,-245282400,1),(1097,-226533600,2),(1097,-213228000,1),(1097,-195084000,2),(1097,-182383200,1),(1097,-163634400,2),(1097,-150933600,1),(1097,-132184800,2),(1097,-119484000,1),(1097,-100735200,2),(1097,-88034400,1),(1097,-68680800,2),(1097,-59004000,1),(1097,-37242000,4),(1097,57722400,6),(1097,69818400,1),(1097,89172000,2),(1097,101268000,1),(1097,120621600,2),(1097,132717600,1),(1097,152071200,2),(1097,164167200,1),(1097,183520800,2),(1097,196221600,1),(1097,214970400,2),(1097,227671200,1),(1097,246420000,2),(1097,259120800,1),(1097,278474400,2),(1097,290570400,1),(1097,309924000,2),(1097,322020000,1),(1097,341373600,2),(1097,354675600,5),(1097,372819600,6),(1097,386125200,5),(1097,404269200,6),(1097,417574800,5),(1097,435718800,6),(1097,449024400,5),(1097,467773200,6),(1097,481078800,5),(1097,499222800,6),(1097,512528400,5),(1097,530672400,6),(1097,543978000,5),(1097,562122000,6),(1097,575427600,5),(1097,593571600,6),(1097,606877200,5),(1097,625626000,6),(1097,638326800,5),(1097,657075600,6),(1097,670381200,5),(1097,688525200,6),(1097,701830800,5),(1097,719974800,6),(1097,733280400,5),(1097,751424400,6),(1097,764730000,5),(1097,782874000,6),(1097,796179600,5),(1097,814323600,6),(1097,820454400,7),(1097,828234000,5),(1097,846378000,6),(1097,859683600,5),(1097,877827600,6),(1097,891133200,5),(1097,909277200,6),(1097,922582800,5),(1097,941331600,6),(1097,954032400,5),(1097,972781200,6),(1097,985482000,5),(1097,1004230800,6),(1097,1017536400,5),(1097,1035680400,6),(1097,1048986000,5),(1097,1067130000,6),(1097,1080435600,5),(1097,1099184400,6),(1097,1111885200,5),(1097,1130634000,6),(1097,1143334800,5),(1097,1162083600,6),(1097,1174784400,5),(1097,1193533200,6),(1097,1206838800,5),(1097,1224982800,6),(1097,1238288400,5),(1097,1256432400,6),(1097,1269738000,5),(1097,1288486800,6),(1097,1301187600,5),(1097,1319936400,6),(1097,1332637200,5),(1097,1351386000,6),(1097,1364691600,5),(1097,1382835600,6),(1097,1396141200,5),(1097,1414285200,6),(1097,1427590800,5),(1097,1445734800,6),(1097,1459040400,5),(1097,1477789200,6),(1097,1490490000,5),(1097,1509238800,6),(1097,1521939600,5),(1097,1540688400,6),(1097,1553994000,5),(1097,1572138000,6),(1097,1585443600,5),(1097,1603587600,6),(1097,1616893200,5),(1097,1635642000,6),(1097,1648342800,5),(1097,1667091600,6),(1097,1679792400,5),(1097,1698541200,6),(1097,1711846800,5),(1097,1729990800,6),(1097,1743296400,5),(1097,1761440400,6),(1097,1774746000,5),(1097,1792890000,6),(1097,1806195600,5),(1097,1824944400,6),(1097,1837645200,5),(1097,1856394000,6),(1097,1869094800,5),(1097,1887843600,6),(1097,1901149200,5),(1097,1919293200,6),(1097,1932598800,5),(1097,1950742800,6),(1097,1964048400,5),(1097,1982797200,6),(1097,1995498000,5),(1097,2014246800,6),(1097,2026947600,5),(1097,2045696400,6),(1097,2058397200,5),(1097,2077146000,6),(1097,2090451600,5),(1097,2108595600,6),(1097,2121901200,5),(1097,2140045200,6),(1098,-2147483648,2),(1098,-1691964000,1),(1098,-1680472800,2),(1098,-1664143200,1),(1098,-1650146400,2),(1098,-1633903200,1),(1098,-1617487200,2),(1098,-1601848800,1),(1098,-1586037600,2),(1098,-1570399200,1),(1098,-1552168800,2),(1098,-1538344800,1),(1098,-1522533600,2),(1098,-1507500000,1),(1098,-1490565600,2),(1098,-1473631200,1),(1098,-1460930400,2),(1098,-1442786400,1),(1098,-1428876000,2),(1098,-1410732000,1),(1098,-1396216800,2),(1098,-1379282400,1),(1098,-1364767200,2),(1098,-1348437600,1),(1098,-1333317600,2),(1098,-1315778400,1),(1098,-1301263200,2),(1098,-1284328800,1),(1098,-1269813600,2),(1098,-1253484000,1),(1098,-1238364000,2),(1098,-1221429600,1),(1098,-1206914400,2),(1098,-1189980000,1),(1098,-1175464800,2),(1098,-1159135200,1),(1098,-1143410400,2),(1098,-1126476000,1),(1098,-1111960800,2),(1098,-1095631200,1),(1098,-1080511200,2),(1098,-1063576800,1),(1098,-1049061600,2),(1098,-1032127200,1),(1098,-1017612000,2),(1098,-1001282400,1),(1098,-986162400,2),(1098,-969228000,1),(1098,-950479200,2),(1098,-942012000,1),(1098,-904518000,3),(1098,-896050800,1),(1098,-875487600,3),(1098,-864601200,1),(1098,-844038000,3),(1098,-832546800,1),(1098,-812588400,3),(1098,-798073200,1),(1098,-781052400,3),(1098,-772066800,1),(1098,-764805600,2),(1098,-748476000,1),(1098,-733356000,2),(1098,-719445600,1),(1098,-717030000,3),(1098,-706748400,1),(1098,-699487200,2),(1098,-687996000,1),(1098,-668037600,2),(1098,-654732000,1),(1098,-636588000,2),(1098,-622072800,1),(1098,-605743200,2),(1098,-590623200,1),(1098,-574293600,2),(1098,-558568800,1),(1098,-542239200,2),(1098,-527119200,1),(1098,-512604000,2),(1098,-496274400,1),(1098,-481154400,2),(1098,-464220000,1),(1098,-449704800,2),(1098,-432165600,1),(1098,-417650400,2),(1098,-401320800,1),(1098,-386200800,2),(1098,-369266400,1),(1098,-354751200,2),(1098,-337816800,1),(1098,-323301600,2),(1098,-306972000,1),(1098,-291852000,2),(1098,-276732000,1),(1098,-257983200,2),(1098,-245282400,1),(1098,-226533600,2),(1098,-213228000,1),(1098,-195084000,2),(1098,-182383200,1),(1098,-163634400,2),(1098,-150933600,1),(1098,-132184800,2),(1098,-119484000,1),(1098,-100735200,2),(1098,-88034400,1),(1098,-68680800,2),(1098,-59004000,1),(1098,-37242000,4),(1098,57722400,6),(1098,69818400,1),(1098,89172000,2),(1098,101268000,1),(1098,120621600,2),(1098,132717600,1),(1098,152071200,2),(1098,164167200,1),(1098,183520800,2),(1098,196221600,1),(1098,214970400,2),(1098,227671200,1),(1098,246420000,2),(1098,259120800,1),(1098,278474400,2),(1098,290570400,1),(1098,309924000,2),(1098,322020000,1),(1098,341373600,2),(1098,354675600,5),(1098,372819600,6),(1098,386125200,5),(1098,404269200,6),(1098,417574800,5),(1098,435718800,6),(1098,449024400,5),(1098,467773200,6),(1098,481078800,5),(1098,499222800,6),(1098,512528400,5),(1098,530672400,6),(1098,543978000,5),(1098,562122000,6),(1098,575427600,5),(1098,593571600,6),(1098,606877200,5),(1098,625626000,6),(1098,638326800,5),(1098,657075600,6),(1098,670381200,5),(1098,688525200,6),(1098,701830800,5),(1098,719974800,6),(1098,733280400,5),(1098,751424400,6),(1098,764730000,5),(1098,782874000,6),(1098,796179600,5),(1098,814323600,6),(1098,820454400,7),(1098,828234000,5),(1098,846378000,6),(1098,859683600,5),(1098,877827600,6),(1098,891133200,5),(1098,909277200,6),(1098,922582800,5),(1098,941331600,6),(1098,954032400,5),(1098,972781200,6),(1098,985482000,5),(1098,1004230800,6),(1098,1017536400,5),(1098,1035680400,6),(1098,1048986000,5),(1098,1067130000,6),(1098,1080435600,5),(1098,1099184400,6),(1098,1111885200,5),(1098,1130634000,6),(1098,1143334800,5),(1098,1162083600,6),(1098,1174784400,5),(1098,1193533200,6),(1098,1206838800,5),(1098,1224982800,6),(1098,1238288400,5),(1098,1256432400,6),(1098,1269738000,5),(1098,1288486800,6),(1098,1301187600,5),(1098,1319936400,6),(1098,1332637200,5),(1098,1351386000,6),(1098,1364691600,5),(1098,1382835600,6),(1098,1396141200,5),(1098,1414285200,6),(1098,1427590800,5),(1098,1445734800,6),(1098,1459040400,5),(1098,1477789200,6),(1098,1490490000,5),(1098,1509238800,6),(1098,1521939600,5),(1098,1540688400,6),(1098,1553994000,5),(1098,1572138000,6),(1098,1585443600,5),(1098,1603587600,6),(1098,1616893200,5),(1098,1635642000,6),(1098,1648342800,5),(1098,1667091600,6),(1098,1679792400,5),(1098,1698541200,6),(1098,1711846800,5),(1098,1729990800,6),(1098,1743296400,5),(1098,1761440400,6),(1098,1774746000,5),(1098,1792890000,6),(1098,1806195600,5),(1098,1824944400,6),(1098,1837645200,5),(1098,1856394000,6),(1098,1869094800,5),(1098,1887843600,6),(1098,1901149200,5),(1098,1919293200,6),(1098,1932598800,5),(1098,1950742800,6),(1098,1964048400,5),(1098,1982797200,6),(1098,1995498000,5),(1098,2014246800,6),(1098,2026947600,5),(1098,2045696400,6),(1098,2058397200,5),(1098,2077146000,6),(1098,2090451600,5),(1098,2108595600,6),(1098,2121901200,5),(1098,2140045200,6),(1105,-2147483648,0),(1105,-2056690800,1),(1105,-900910800,2),(1105,-891579600,3),(1105,-884248200,4),(1105,-761209200,1),(1105,-747907200,2),(1105,-728541000,5),(1105,-717049800,6),(1105,-697091400,5),(1105,-683785800,6),(1105,-668061000,5),(1105,-654755400,2),(1105,-636611400,5),(1105,-623305800,2),(1105,-605161800,5),(1105,-591856200,2),(1105,-573712200,5),(1105,-559801800,2),(1105,-541657800,5),(1105,-528352200,2),(1105,-510211800,1),(1105,-498112200,2),(1105,-478762200,1),(1105,-466662600,2),(1105,-446707800,1),(1105,-435213000,2),(1105,-415258200,1),(1105,-403158600,2),(1105,-383808600,1),(1105,-371709000,2),(1105,-352359000,1),(1105,-340259400,2),(1105,-320909400,1),(1105,-308809800,2),(1105,-288855000,1),(1105,-277360200,2),(1105,-257405400,1),(1105,-245910600,2),(1105,-225955800,1),(1105,-213856200,2),(1105,-194506200,1),(1105,-182406600,2),(1105,-163056600,1),(1105,-148537800,2),(1105,-132816600,1),(1105,-117088200,2),(1105,-101367000,1),(1105,-85638600,2),(1105,-69312600,1),(1105,-53584200,2),(1105,-37863000,1),(1105,-22134600,2),(1105,-6413400,1),(1105,9315000,2),(1105,25036200,1),(1105,40764600,2),(1105,56485800,1),(1105,72214200,2),(1105,88540200,1),(1105,104268600,2),(1105,119989800,1),(1105,126041400,2),(1105,151439400,1),(1105,167167800,2),(1105,182889000,1),(1105,198617400,2),(1105,214338600,1),(1105,295385400,2),(1105,309292200,1),(1106,-2147483648,0),(1106,-1956609120,2),(1106,-1668211200,1),(1106,-1647212400,2),(1106,-1636675200,1),(1106,-1613430000,2),(1106,-1605139200,1),(1106,-1581894000,2),(1106,-1539561600,1),(1106,-1531350000,2),(1106,-968025600,1),(1106,-952293600,2),(1106,-942008400,1),(1106,-920239200,3),(1106,-909957600,4),(1106,-888789600,3),(1106,-877903200,4),(1106,-857944800,3),(1106,-846453600,4),(1106,-826495200,3),(1106,-815004000,4),(1106,-795045600,3),(1106,-783554400,4),(1106,-762991200,3),(1106,-752104800,4),(1106,-731541600,3),(1106,-717631200,4),(1106,-700092000,3),(1106,-686181600,4),(1106,-668642400,3),(1106,-654732000,4),(1106,-636588000,3),(1106,-623282400,4),(1106,-605743200,3),(1106,-591832800,4),(1106,-573688800,3),(1106,-559778400,4),(1106,-542239200,3),(1106,-528328800,4),(1106,-510789600,3),(1106,-496879200,4),(1106,-479340000,3),(1106,-465429600,4),(1106,-447890400,3),(1106,-433980000,4),(1106,-415836000,3),(1106,-401925600,4),(1106,-384386400,3),(1106,-370476000,4),(1106,-352936800,3),(1106,-339026400,4),(1106,-321487200,3),(1106,-307576800,4),(1106,-290037600,3),(1106,-276127200,4),(1106,-258588000,3),(1106,-244677600,4),(1106,-226533600,3),(1106,-212623200,4),(1106,-195084000,3),(1106,-181173600,4),(1106,-163634400,3),(1106,-149724000,4),(1106,-132184800,3),(1106,-118274400,4),(1106,-100735200,3),(1106,-86824800,4),(1106,-68680800,3),(1106,-54770400,5),(1107,-2147483648,0),(1107,-1309746436,1),(1107,-1262314800,2),(1107,-946780200,3),(1107,-315629100,1),(1108,-2147483648,0),(1108,-1988167780,1),(1108,820436400,2),(1111,-2147483648,0),(1111,-1309746436,1),(1111,-1262314800,2),(1111,-946780200,3),(1111,-315629100,1),(1112,-2147483648,0),(1112,-631152000,1),(1113,-2147483648,0),(1113,-2006653308,1),(1114,-2147483648,1),(1114,-315636840,2),(1115,-2147483648,0),(1115,-1988164200,2),(1115,403041600,1),(1115,417034800,2),(1115,1224972000,1),(1115,1238274000,2),(1116,-2147483648,0),(1116,-1309746436,1),(1116,-1262314800,2),(1116,-946780200,3),(1116,-315629100,1),(1117,-2147483648,0),(1117,-1848886912,1),(1118,-2147483648,0),(1118,-1704165944,1),(1118,-757394744,2),(1118,247177800,4),(1118,259272000,3),(1118,277758000,4),(1118,283982400,2),(1118,290809800,5),(1118,306531000,2),(1118,322432200,5),(1118,338499000,2),(1118,673216200,5),(1118,685481400,2),(1118,701209800,5),(1118,717103800,2),(1118,732745800,5),(1118,748639800,2),(1118,764281800,5),(1118,780175800,2),(1118,795817800,5),(1118,811711800,2),(1118,827353800,5),(1118,843247800,2),(1118,858976200,5),(1118,874870200,2),(1118,890512200,5),(1118,906406200,2),(1118,922048200,5),(1118,937942200,2),(1118,953584200,5),(1118,969478200,2),(1118,985206600,5),(1118,1001100600,2),(1118,1016742600,5),(1118,1032636600,2),(1118,1048278600,5),(1118,1064172600,2),(1118,1079814600,5),(1118,1095708600,2),(1118,1111437000,5),(1118,1127331000,2),(1118,1206045000,5),(1118,1221939000,2),(1118,1237667400,5),(1118,1253561400,2),(1118,1269203400,5),(1118,1285097400,2),(1118,1300739400,5),(1118,1316633400,2),(1118,1332275400,5),(1118,1348169400,2),(1118,1363897800,5),(1118,1379791800,2),(1118,1395433800,5),(1118,1411327800,2),(1118,1426969800,5),(1118,1442863800,2),(1118,1458505800,5),(1118,1474399800,2),(1118,1490128200,5),(1118,1506022200,2),(1118,1521664200,5),(1118,1537558200,2),(1118,1553200200,5),(1118,1569094200,2),(1118,1584736200,5),(1118,1600630200,2),(1118,1616358600,5),(1118,1632252600,2),(1118,1647894600,5),(1118,1663788600,2),(1118,1679430600,5),(1118,1695324600,2),(1118,1710966600,5),(1118,1726860600,2),(1118,1742589000,5),(1118,1758483000,2),(1118,1774125000,5),(1118,1790019000,2),(1118,1805661000,5),(1118,1821555000,2),(1118,1837197000,5),(1118,1853091000,2),(1118,1868733000,5),(1118,1884627000,2),(1118,1900355400,5),(1118,1916249400,2),(1118,1931891400,5),(1118,1947785400,2),(1118,1963427400,5),(1118,1979321400,2),(1118,1994963400,5),(1118,2010857400,2),(1118,2026585800,5),(1118,2042479800,2),(1118,2058121800,5),(1118,2074015800,2),(1118,2089657800,5),(1118,2105551800,2),(1118,2121193800,5),(1118,2137087800,2),(1119,-2147483648,1),(1119,-1641003640,3),(1119,-933645600,2),(1119,-857358000,3),(1119,-844300800,2),(1119,-825822000,3),(1119,-812685600,2),(1119,-794199600,3),(1119,-779853600,2),(1119,-762656400,3),(1119,-748310400,2),(1119,-731127600,3),(1119,-681962400,4),(1119,-673243200,2),(1119,-667962000,3),(1119,-652327200,2),(1119,-636426000,3),(1119,-622087200,2),(1119,-608947200,3),(1119,-591847200,2),(1119,-572486400,3),(1119,-558576000,2),(1119,-542851200,3),(1119,-527731200,2),(1119,-514425600,3),(1119,-490845600,2),(1119,-482986800,3),(1119,-459475200,2),(1119,-451537200,3),(1119,-428551200,2),(1119,-418262400,3),(1119,-400032000,2),(1119,-387428400,3),(1119,142380000,2),(1119,150843600,3),(1119,167176800,2),(1119,178664400,3),(1119,334015200,2),(1119,337644000,3),(1119,452556000,2),(1119,462232800,3),(1119,482277600,2),(1119,495579600,3),(1119,516751200,2),(1119,526424400,3),(1119,545436000,2),(1119,558478800,3),(1119,576626400,2),(1119,589323600,3),(1119,609890400,2),(1119,620773200,3),(1119,638316000,2),(1119,651618000,3),(1119,669765600,2),(1119,683672400,3),(1119,701820000,2),(1119,715726800,3),(1119,733701600,2),(1119,747176400,3),(1119,765151200,2),(1119,778021200,3),(1119,796600800,2),(1119,810075600,3),(1119,826840800,2),(1119,842821200,3),(1119,858895200,2),(1119,874184400,3),(1119,890344800,2),(1119,905029200,3),(1119,923011200,2),(1119,936313200,3),(1119,955670400,2),(1119,970783200,3),(1119,986770800,2),(1119,1001282400,3),(1119,1017356400,2),(1119,1033941600,3),(1119,1048806000,2),(1119,1065132000,3),(1119,1081292400,2),(1119,1095804000,3),(1119,1112313600,2),(1119,1128812400,3),(1119,1143763200,2),(1119,1159657200,3),(1119,1175212800,2),(1119,1189897200,3),(1119,1206662400,2),(1119,1223161200,3),(1119,1238112000,2),(1119,1254006000,3),(1119,1269561600,2),(1119,1284246000,3),(1119,1301616000,2),(1119,1317510000,3),(1119,1333065600,2),(1119,1348354800,3),(1119,1364515200,2),(1119,1382828400,3),(1119,1395964800,2),(1119,1414278000,3),(1119,1427414400,2),(1119,1445727600,3),(1119,1458864000,2),(1119,1477782000,3),(1119,1490313600,2),(1119,1509231600,3),(1119,1521763200,2),(1119,1540681200,3),(1119,1553817600,2),(1119,1572130800,3),(1119,1585267200,2),(1119,1603580400,3),(1119,1616716800,2),(1119,1635634800,3),(1119,1648166400,2),(1119,1667084400,3),(1119,1679616000,2),(1119,1698534000,3),(1119,1711670400,2),(1119,1729983600,3),(1119,1743120000,2),(1119,1761433200,3),(1119,1774569600,2),(1119,1792882800,3),(1119,1806019200,2),(1119,1824937200,3),(1119,1837468800,2),(1119,1856386800,3),(1119,1868918400,2),(1119,1887836400,3),(1119,1900972800,2),(1119,1919286000,3),(1119,1932422400,2),(1119,1950735600,3),(1119,1963872000,2),(1119,1982790000,3),(1119,1995321600,2),(1119,2014239600,3),(1119,2026771200,2),(1119,2045689200,3),(1119,2058220800,2),(1119,2077138800,3),(1119,2090275200,2),(1119,2108588400,3),(1119,2121724800,2),(1119,2140038000,3),(1120,-2147483648,1),(1120,-1827687170,2),(1120,126687600,3),(1120,152085600,2),(1120,162370800,3),(1120,183535200,2),(1120,199263600,3),(1120,215589600,2),(1120,230713200,3),(1120,247039200,2),(1120,262767600,3),(1120,278488800,2),(1120,294217200,3),(1120,309938400,2),(1120,325666800,3),(1120,341388000,2),(1120,357116400,3),(1120,372837600,2),(1120,388566000,3),(1120,404892000,2),(1120,420015600,3),(1120,436341600,2),(1121,-2147483648,3),(1121,-683802000,1),(1121,-672310800,2),(1121,-654771600,1),(1121,-640861200,2),(1121,-620298000,1),(1121,-609411600,2),(1121,-588848400,1),(1121,-577962000,2),(1122,-2147483648,1),(1122,-1041418800,2),(1122,-907408800,3),(1122,-817462800,1),(1122,-7988400,4),(1122,745934400,5),(1123,-2147483648,0),(1123,-1577926364,2),(1123,-574902000,1),(1123,-568087200,2),(1123,-512175600,1),(1123,-504928800,2),(1123,-449888400,1),(1123,-441856800,2),(1123,-347158800,3),(1123,378684000,2),(1123,386463600,1),(1123,402271200,2),(1123,417999600,1),(1123,433807200,2),(1123,449622000,1),(1123,465429600,2),(1123,481590000,1),(1123,496965600,2),(1123,512953200,1),(1123,528674400,2),(1123,544230000,1),(1123,560037600,2),(1123,575852400,1),(1123,591660000,2),(1123,607388400,1),(1123,623196000,2),(1123,641775600,3),(1123,844034400,2),(1123,860108400,1),(1123,875916000,3),(1123,1352505600,2),(1123,1364515200,1),(1123,1382659200,3),(1124,-1693706400,0),(1124,-1680483600,1),(1124,-1663455600,2),(1124,-1650150000,3),(1124,-1632006000,2),(1124,-1618700400,3),(1124,-938905200,2),(1124,-857257200,3),(1124,-844556400,2),(1124,-828226800,3),(1124,-812502000,2),(1124,-796777200,3),(1124,-781052400,2),(1124,-766623600,3),(1124,228877200,2),(1124,243997200,3),(1124,260326800,2),(1124,276051600,3),(1124,291776400,2),(1124,307501200,3),(1124,323830800,2),(1124,338950800,3),(1124,354675600,2),(1124,370400400,3),(1124,386125200,2),(1124,401850000,3),(1124,417574800,2),(1124,433299600,3),(1124,449024400,2),(1124,465354000,3),(1124,481078800,2),(1124,496803600,3),(1124,512528400,2),(1124,528253200,3),(1124,543978000,2),(1124,559702800,3),(1124,575427600,2),(1124,591152400,3),(1124,606877200,2),(1124,622602000,3),(1124,638326800,2),(1124,654656400,3),(1124,670381200,2),(1124,686106000,3),(1124,701830800,2),(1124,717555600,3),(1124,733280400,2),(1124,749005200,3),(1124,764730000,2),(1124,780454800,3),(1124,796179600,2),(1124,811904400,3),(1124,828234000,2),(1124,846378000,3),(1124,859683600,2),(1124,877827600,3),(1124,891133200,2),(1124,909277200,3),(1124,922582800,2),(1124,941331600,3),(1124,954032400,2),(1124,972781200,3),(1124,985482000,2),(1124,1004230800,3),(1124,1017536400,2),(1124,1035680400,3),(1124,1048986000,2),(1124,1067130000,3),(1124,1080435600,2),(1124,1099184400,3),(1124,1111885200,2),(1124,1130634000,3),(1124,1143334800,2),(1124,1162083600,3),(1124,1174784400,2),(1124,1193533200,3),(1124,1206838800,2),(1124,1224982800,3),(1124,1238288400,2),(1124,1256432400,3),(1124,1269738000,2),(1124,1288486800,3),(1124,1301187600,2),(1124,1319936400,3),(1124,1332637200,2),(1124,1351386000,3),(1124,1364691600,2),(1124,1382835600,3),(1124,1396141200,2),(1124,1414285200,3),(1124,1427590800,2),(1124,1445734800,3),(1124,1459040400,2),(1124,1477789200,3),(1124,1490490000,2),(1124,1509238800,3),(1124,1521939600,2),(1124,1540688400,3),(1124,1553994000,2),(1124,1572138000,3),(1124,1585443600,2),(1124,1603587600,3),(1124,1616893200,2),(1124,1635642000,3),(1124,1648342800,2),(1124,1667091600,3),(1124,1679792400,2),(1124,1698541200,3),(1124,1711846800,2),(1124,1729990800,3),(1124,1743296400,2),(1124,1761440400,3),(1124,1774746000,2),(1124,1792890000,3),(1124,1806195600,2),(1124,1824944400,3),(1124,1837645200,2),(1124,1856394000,3),(1124,1869094800,2),(1124,1887843600,3),(1124,1901149200,2),(1124,1919293200,3),(1124,1932598800,2),(1124,1950742800,3),(1124,1964048400,2),(1124,1982797200,3),(1124,1995498000,2),(1124,2014246800,3),(1124,2026947600,2),(1124,2045696400,3),(1124,2058397200,2),(1124,2077146000,3),(1124,2090451600,2),(1124,2108595600,3),(1124,2121901200,2),(1124,2140045200,3),(1126,-1633273200,0),(1126,-1615132800,1),(1126,-1601823600,0),(1126,-1583683200,1),(1126,-880210800,2),(1126,-769395600,3),(1126,-765388800,1),(1126,-84380400,0),(1126,-68659200,1),(1126,-52930800,0),(1126,-37209600,1),(1126,-21481200,0),(1126,-5760000,1),(1126,9968400,0),(1126,25689600,1),(1126,41418000,0),(1126,57744000,1),(1126,73472400,0),(1126,89193600,1),(1126,104922000,0),(1126,120643200,1),(1126,126694800,0),(1126,152092800,1),(1126,162378000,0),(1126,183542400,1),(1126,199270800,0),(1126,215596800,1),(1126,230720400,0),(1126,247046400,1),(1126,262774800,0),(1126,278496000,1),(1126,294224400,0),(1126,309945600,1),(1126,325674000,0),(1126,341395200,1),(1126,357123600,0),(1126,372844800,1),(1126,388573200,0),(1126,404899200,1),(1126,420022800,0),(1126,436348800,1),(1126,452077200,0),(1126,467798400,1),(1126,483526800,0),(1126,499248000,1),(1126,514976400,0),(1126,530697600,1),(1126,544611600,0),(1126,562147200,1),(1126,576061200,0),(1126,594201600,1),(1126,607510800,0),(1126,625651200,1),(1126,638960400,0),(1126,657100800,1),(1126,671014800,0),(1126,688550400,1),(1126,702464400,0),(1126,720000000,1),(1126,733914000,0),(1126,752054400,1),(1126,765363600,0),(1126,783504000,1),(1126,796813200,0),(1126,814953600,1),(1126,828867600,0),(1126,846403200,1),(1126,860317200,0),(1126,877852800,1),(1126,891766800,0),(1126,909302400,1),(1126,923216400,0),(1126,941356800,1),(1126,954666000,0),(1126,972806400,1),(1126,986115600,0),(1126,1004256000,1),(1126,1018170000,0),(1126,1035705600,1),(1126,1049619600,0),(1126,1067155200,1),(1126,1081069200,0),(1126,1099209600,1),(1126,1112518800,0),(1126,1130659200,1),(1126,1143968400,0),(1126,1162108800,1),(1126,1173603600,0),(1126,1194163200,1),(1126,1205053200,0),(1126,1225612800,1),(1126,1236502800,0),(1126,1257062400,1),(1126,1268557200,0),(1126,1289116800,1),(1126,1300006800,0),(1126,1320566400,1),(1126,1331456400,0),(1126,1352016000,1),(1126,1362906000,0),(1126,1383465600,1),(1126,1394355600,0),(1126,1414915200,1),(1126,1425805200,0),(1126,1446364800,1),(1126,1457859600,0),(1126,1478419200,1),(1126,1489309200,0),(1126,1509868800,1),(1126,1520758800,0),(1126,1541318400,1),(1126,1552208400,0),(1126,1572768000,1),(1126,1583658000,0),(1126,1604217600,1),(1126,1615712400,0),(1126,1636272000,1),(1126,1647162000,0),(1126,1667721600,1),(1126,1678611600,0),(1126,1699171200,1),(1126,1710061200,0),(1126,1730620800,1),(1126,1741510800,0),(1126,1762070400,1),(1126,1772960400,0),(1126,1793520000,1),(1126,1805014800,0),(1126,1825574400,1),(1126,1836464400,0),(1126,1857024000,1),(1126,1867914000,0),(1126,1888473600,1),(1126,1899363600,0),(1126,1919923200,1),(1126,1930813200,0),(1126,1951372800,1),(1126,1962867600,0),(1126,1983427200,1),(1126,1994317200,0),(1126,2014876800,1),(1126,2025766800,0),(1126,2046326400,1),(1126,2057216400,0),(1126,2077776000,1),(1126,2088666000,0),(1126,2109225600,1),(1126,2120115600,0),(1126,2140675200,1),(1127,-2147483648,0),(1127,-1514736000,1),(1127,-1451667600,2),(1127,-1343062800,1),(1127,-1234803600,2),(1127,-1222963200,3),(1127,-1207242000,2),(1127,-873820800,4),(1127,-769395600,5),(1127,-761677200,2),(1127,-686073600,3),(1127,-661539600,2),(1127,-495039600,3),(1127,-481734000,2),(1127,-463590000,3),(1127,-450284400,2),(1127,-431535600,3),(1127,-418230000,2),(1127,-400086000,3),(1127,-386780400,2),(1127,-368636400,3),(1127,-355330800,2),(1127,-337186800,3),(1127,-323881200,2),(1127,-305737200,3),(1127,-292431600,2),(1127,199274400,3),(1127,215600400,2),(1127,230724000,3),(1127,247050000,2),(1127,262778400,3),(1127,278499600,2),(1127,294228000,3),(1127,309949200,2),(1127,325677600,3),(1127,341398800,2),(1127,357127200,3),(1127,372848400,2),(1127,388576800,3),(1127,404902800,2),(1127,420026400,3),(1127,436352400,2),(1127,452080800,3),(1127,467802000,2),(1127,483530400,3),(1127,499251600,2),(1127,514980000,3),(1127,530701200,2),(1127,544615200,3),(1127,562150800,2),(1127,576064800,3),(1127,594205200,2),(1127,607514400,3),(1127,625654800,2),(1127,638964000,3),(1127,657104400,2),(1127,671018400,3),(1127,688554000,2),(1127,702468000,3),(1127,720003600,2),(1127,733917600,3),(1127,752058000,2),(1127,765367200,3),(1127,783507600,2),(1127,796816800,3),(1127,814957200,2),(1127,828871200,3),(1127,846406800,2),(1127,860320800,3),(1127,877856400,2),(1127,891770400,3),(1127,909306000,2),(1127,923220000,3),(1127,941360400,2),(1127,954669600,3),(1127,972810000,2),(1127,986119200,3),(1127,1004259600,2),(1127,1018173600,3),(1127,1035709200,2),(1127,1049623200,3),(1127,1067158800,2),(1127,1081072800,3),(1127,1099213200,2),(1127,1112522400,3),(1127,1130662800,2),(1127,1143972000,3),(1127,1162112400,2),(1127,1175421600,3),(1127,1193562000,2),(1127,1207476000,3),(1127,1225011600,2),(1127,1238925600,3),(1127,1256461200,2),(1127,1268560800,3),(1127,1289120400,2),(1127,1300010400,3),(1127,1320570000,2),(1127,1331460000,3),(1127,1352019600,2),(1127,1362909600,3),(1127,1383469200,2),(1127,1394359200,3),(1127,1414918800,2),(1127,1425808800,3),(1127,1446368400,2),(1127,1457863200,3),(1127,1478422800,2),(1127,1489312800,3),(1127,1509872400,2),(1127,1520762400,3),(1127,1541322000,2),(1127,1552212000,3),(1127,1572771600,2),(1127,1583661600,3),(1127,1604221200,2),(1127,1615716000,3),(1127,1636275600,2),(1127,1647165600,3),(1127,1667725200,2),(1127,1678615200,3),(1127,1699174800,2),(1127,1710064800,3),(1127,1730624400,2),(1127,1741514400,3),(1127,1762074000,2),(1127,1772964000,3),(1127,1793523600,2),(1127,1805018400,3),(1127,1825578000,2),(1127,1836468000,3),(1127,1857027600,2),(1127,1867917600,3),(1127,1888477200,2),(1127,1899367200,3),(1127,1919926800,2),(1127,1930816800,3),(1127,1951376400,2),(1127,1962871200,3),(1127,1983430800,2),(1127,1994320800,3),(1127,2014880400,2),(1127,2025770400,3),(1127,2046330000,2),(1127,2057220000,3),(1127,2077779600,2),(1127,2088669600,3),(1127,2109229200,2),(1127,2120119200,3),(1127,2140678800,2),(1128,-2147483648,0),(1128,-1514739600,1),(1128,-1343066400,2),(1128,-1234807200,1),(1128,-1220292000,2),(1128,-1207159200,1),(1128,-1191344400,2),(1128,-873828000,1),(1128,-661539600,3),(1128,28800,1),(1128,828867600,4),(1128,846403200,1),(1128,860317200,4),(1128,877852800,1),(1128,891766800,4),(1128,909302400,1),(1128,923216400,4),(1128,941356800,1),(1128,954666000,4),(1128,972806400,1),(1128,989139600,4),(1128,1001836800,1),(1128,1018170000,4),(1128,1035705600,1),(1128,1049619600,4),(1128,1067155200,1),(1128,1081069200,4),(1128,1099209600,1),(1128,1112518800,4),(1128,1130659200,1),(1128,1143968400,4),(1128,1162108800,1),(1128,1175418000,4),(1128,1193558400,1),(1128,1207472400,4),(1128,1225008000,1),(1128,1238922000,4),(1128,1256457600,1),(1128,1270371600,4),(1128,1288512000,1),(1128,1301821200,4),(1128,1319961600,1),(1128,1333270800,4),(1128,1351411200,1),(1128,1365325200,4),(1128,1382860800,1),(1128,1396774800,4),(1128,1414310400,1),(1128,1428224400,4),(1128,1445760000,1),(1128,1459674000,4),(1128,1477814400,1),(1128,1491123600,4),(1128,1509264000,1),(1128,1522573200,4),(1128,1540713600,1),(1128,1554627600,4),(1128,1572163200,1),(1128,1586077200,4),(1128,1603612800,1),(1128,1617526800,4),(1128,1635667200,1),(1128,1648976400,4),(1128,1667116800,1),(1128,1680426000,4),(1128,1698566400,1),(1128,1712480400,4),(1128,1730016000,1),(1128,1743930000,4),(1128,1761465600,1),(1128,1775379600,4),(1128,1792915200,1),(1128,1806829200,4),(1128,1824969600,1),(1128,1838278800,4),(1128,1856419200,1),(1128,1869728400,4),(1128,1887868800,1),(1128,1901782800,4),(1128,1919318400,1),(1128,1933232400,4),(1128,1950768000,1),(1128,1964682000,4),(1128,1982822400,1),(1128,1996131600,4),(1128,2014272000,1),(1128,2027581200,4),(1128,2045721600,1),(1128,2059030800,4),(1128,2077171200,1),(1128,2091085200,4),(1128,2108620800,1),(1128,2122534800,4),(1128,2140070400,1),(1129,-2147483648,0),(1129,-1514739600,1),(1129,-1343066400,2),(1129,-1234807200,1),(1129,-1220292000,2),(1129,-1207159200,1),(1129,-1191344400,2),(1129,-975261600,3),(1129,-963169200,2),(1129,-917114400,3),(1129,-907354800,2),(1129,-821901600,4),(1129,-810068400,2),(1129,-627501600,3),(1129,-612990000,2),(1129,828864000,3),(1129,846399600,2),(1129,860313600,3),(1129,877849200,2),(1129,891763200,3),(1129,909298800,2),(1129,923212800,3),(1129,941353200,2),(1129,954662400,3),(1129,972802800,2),(1129,989136000,3),(1129,1001833200,2),(1129,1018166400,3),(1129,1035702000,2),(1129,1049616000,3),(1129,1067151600,2),(1129,1081065600,3),(1129,1099206000,2),(1129,1112515200,3),(1129,1130655600,2),(1129,1143964800,3),(1129,1162105200,2),(1129,1175414400,3),(1129,1193554800,2),(1129,1207468800,3),(1129,1225004400,2),(1129,1238918400,3),(1129,1256454000,2),(1129,1270368000,3),(1129,1288508400,2),(1129,1301817600,3),(1129,1319958000,2),(1129,1333267200,3),(1129,1351407600,2),(1129,1365321600,3),(1129,1382857200,2),(1129,1396771200,3),(1129,1414306800,2),(1129,1428220800,3),(1129,1445756400,2),(1129,1459670400,3),(1129,1477810800,2),(1129,1491120000,3),(1129,1509260400,2),(1129,1522569600,3),(1129,1540710000,2),(1129,1554624000,3),(1129,1572159600,2),(1129,1586073600,3),(1129,1603609200,2),(1129,1617523200,3),(1129,1635663600,2),(1129,1648972800,3),(1129,1667113200,2),(1129,1680422400,3),(1129,1698562800,2),(1129,1712476800,3),(1129,1730012400,2),(1129,1743926400,3),(1129,1761462000,2),(1129,1775376000,3),(1129,1792911600,2),(1129,1806825600,3),(1129,1824966000,2),(1129,1838275200,3),(1129,1856415600,2),(1129,1869724800,3),(1129,1887865200,2),(1129,1901779200,3),(1129,1919314800,2),(1129,1933228800,3),(1129,1950764400,2),(1129,1964678400,3),(1129,1982818800,2),(1129,1996128000,3),(1129,2014268400,2),(1129,2027577600,3),(1129,2045718000,2),(1129,2059027200,3),(1129,2077167600,2),(1129,2091081600,3),(1129,2108617200,2),(1129,2122531200,3),(1129,2140066800,2),(1130,-2147483648,2),(1130,-1330335000,1),(1130,-1320057000,2),(1130,-1300699800,3),(1130,-1287396000,2),(1130,-1269250200,3),(1130,-1255946400,2),(1130,-1237800600,3),(1130,-1224496800,2),(1130,-1206351000,3),(1130,-1192442400,2),(1130,-1174901400,3),(1130,-1160992800,2),(1130,-1143451800,3),(1130,-1125914400,2),(1130,-1112607000,3),(1130,-1094464800,2),(1130,-1081157400,3),(1130,-1063015200,2),(1130,-1049707800,3),(1130,-1031565600,2),(1130,-1018258200,3),(1130,-1000116000,2),(1130,-986808600,3),(1130,-968061600,2),(1130,-955359000,3),(1130,-936612000,2),(1130,-923304600,3),(1130,-757425600,6),(1130,152632800,4),(1130,162309600,5),(1130,183477600,4),(1130,194968800,5),(1130,215532000,4),(1130,226418400,5),(1130,246981600,4),(1130,257868000,5),(1130,278431200,4),(1130,289317600,5),(1130,309880800,4),(1130,320767200,5),(1130,341330400,4),(1130,352216800,5),(1130,372780000,4),(1130,384271200,5),(1130,404834400,4),(1130,415720800,5),(1130,436284000,4),(1130,447170400,5),(1130,467733600,4),(1130,478620000,5),(1130,499183200,4),(1130,510069600,5),(1130,530632800,4),(1130,541519200,5),(1130,562082400,4),(1130,573573600,5),(1130,594136800,4),(1130,605023200,5),(1130,623772000,4),(1130,637682400,5),(1130,655221600,4),(1130,669132000,5),(1130,686671200,4),(1130,700581600,5),(1130,718120800,4),(1130,732636000,5),(1130,749570400,4),(1130,764085600,5),(1130,781020000,4),(1130,795535200,5),(1130,812469600,4),(1130,826984800,5),(1130,844524000,4),(1130,858434400,5),(1130,875973600,4),(1130,889884000,5),(1130,907423200,4),(1130,921938400,5),(1130,938872800,4),(1130,953388000,5),(1130,970322400,4),(1130,984837600,5),(1130,1002376800,4),(1130,1016287200,5),(1130,1033826400,4),(1130,1047736800,5),(1130,1065276000,4),(1130,1079791200,5),(1130,1096725600,4),(1130,1111240800,5),(1130,1128175200,4),(1130,1142690400,5),(1130,1159624800,4),(1130,1174140000,5),(1130,1191074400,4),(1130,1207404000,5),(1130,1222524000,4),(1130,1238853600,5),(1130,1253973600,4),(1130,1270303200,5),(1130,1285423200,4),(1130,1301752800,5),(1130,1316872800,4),(1130,1333202400,5),(1130,1348927200,4),(1130,1365256800,5),(1130,1380376800,4),(1130,1396706400,5),(1130,1411826400,4),(1130,1428156000,5),(1130,1443276000,4),(1130,1459605600,5),(1130,1474725600,4),(1130,1491055200,5),(1130,1506175200,4),(1130,1522504800,5),(1130,1538229600,4),(1130,1554559200,5),(1130,1569679200,4),(1130,1586008800,5),(1130,1601128800,4),(1130,1617458400,5),(1130,1632578400,4),(1130,1648908000,5),(1130,1664028000,4),(1130,1680357600,5),(1130,1695477600,4),(1130,1712412000,5),(1130,1727532000,4),(1130,1743861600,5),(1130,1758981600,4),(1130,1775311200,5),(1130,1790431200,4),(1130,1806760800,5),(1130,1821880800,4),(1130,1838210400,5),(1130,1853330400,4),(1130,1869660000,5),(1130,1885384800,4),(1130,1901714400,5),(1130,1916834400,4),(1130,1933164000,5),(1130,1948284000,4),(1130,1964613600,5),(1130,1979733600,4),(1130,1996063200,5),(1130,2011183200,4),(1130,2027512800,5),(1130,2042632800,4),(1130,2058962400,5),(1130,2074687200,4),(1130,2091016800,5),(1130,2106136800,4),(1130,2122466400,5),(1130,2137586400,4),(1131,-2147483648,1),(1131,-757426500,4),(1131,152632800,2),(1131,162309600,3),(1131,183477600,2),(1131,194968800,3),(1131,215532000,2),(1131,226418400,3),(1131,246981600,2),(1131,257868000,3),(1131,278431200,2),(1131,289317600,3),(1131,309880800,2),(1131,320767200,3),(1131,341330400,2),(1131,352216800,3),(1131,372780000,2),(1131,384271200,3),(1131,404834400,2),(1131,415720800,3),(1131,436284000,2),(1131,447170400,3),(1131,467733600,2),(1131,478620000,3),(1131,499183200,2),(1131,510069600,3),(1131,530632800,2),(1131,541519200,3),(1131,562082400,2),(1131,573573600,3),(1131,594136800,2),(1131,605023200,3),(1131,623772000,2),(1131,637682400,3),(1131,655221600,2),(1131,669132000,3),(1131,686671200,2),(1131,700581600,3),(1131,718120800,2),(1131,732636000,3),(1131,749570400,2),(1131,764085600,3),(1131,781020000,2),(1131,795535200,3),(1131,812469600,2),(1131,826984800,3),(1131,844524000,2),(1131,858434400,3),(1131,875973600,2),(1131,889884000,3),(1131,907423200,2),(1131,921938400,3),(1131,938872800,2),(1131,953388000,3),(1131,970322400,2),(1131,984837600,3),(1131,1002376800,2),(1131,1016287200,3),(1131,1033826400,2),(1131,1047736800,3),(1131,1065276000,2),(1131,1079791200,3),(1131,1096725600,2),(1131,1111240800,3),(1131,1128175200,2),(1131,1142690400,3),(1131,1159624800,2),(1131,1174140000,3),(1131,1191074400,2),(1131,1207404000,3),(1131,1222524000,2),(1131,1238853600,3),(1131,1253973600,2),(1131,1270303200,3),(1131,1285423200,2),(1131,1301752800,3),(1131,1316872800,2),(1131,1333202400,3),(1131,1348927200,2),(1131,1365256800,3),(1131,1380376800,2),(1131,1396706400,3),(1131,1411826400,2),(1131,1428156000,3),(1131,1443276000,2),(1131,1459605600,3),(1131,1474725600,2),(1131,1491055200,3),(1131,1506175200,2),(1131,1522504800,3),(1131,1538229600,2),(1131,1554559200,3),(1131,1569679200,2),(1131,1586008800,3),(1131,1601128800,2),(1131,1617458400,3),(1131,1632578400,2),(1131,1648908000,3),(1131,1664028000,2),(1131,1680357600,3),(1131,1695477600,2),(1131,1712412000,3),(1131,1727532000,2),(1131,1743861600,3),(1131,1758981600,2),(1131,1775311200,3),(1131,1790431200,2),(1131,1806760800,3),(1131,1821880800,2),(1131,1838210400,3),(1131,1853330400,2),(1131,1869660000,3),(1131,1885384800,2),(1131,1901714400,3),(1131,1916834400,2),(1131,1933164000,3),(1131,1948284000,2),(1131,1964613600,3),(1131,1979733600,2),(1131,1996063200,3),(1131,2011183200,2),(1131,2027512800,3),(1131,2042632800,2),(1131,2058962400,3),(1131,2074687200,2),(1131,2091016800,3),(1131,2106136800,2),(1131,2122466400,3),(1131,2137586400,2),(1132,-2147483648,2),(1132,-1633273200,1),(1132,-1615132800,2),(1132,-1601823600,1),(1132,-1583683200,2),(1132,-1570374000,1),(1132,-1551628800,2),(1132,-1538924400,1),(1132,-1534089600,2),(1132,-880210800,3),(1132,-769395600,4),(1132,-765388800,2),(1132,-147884400,1),(1132,-131558400,2),(1132,-116434800,1),(1132,-100108800,2),(1132,-84380400,1),(1132,-68659200,2),(1132,-52930800,1),(1132,-37209600,2),(1132,-21481200,1),(1132,-5760000,2),(1132,9968400,1),(1132,25689600,2),(1132,41418000,1),(1132,57744000,2),(1132,73472400,1),(1132,89193600,2),(1132,104922000,1),(1132,120643200,2),(1132,126694800,1),(1132,152092800,2),(1132,162378000,1),(1132,183542400,2),(1132,199270800,1),(1132,215596800,2),(1132,230720400,1),(1132,247046400,2),(1132,262774800,1),(1132,278496000,2),(1132,294224400,1),(1132,309945600,2),(1132,325674000,1),(1132,341395200,2),(1132,357123600,1),(1132,372844800,2),(1132,388573200,1),(1132,404899200,2),(1132,420022800,1),(1132,436348800,2),(1132,452077200,1),(1132,467798400,2),(1132,483526800,1),(1132,499248000,2),(1132,514976400,1),(1132,530697600,2),(1132,544611600,1),(1132,562147200,2),(1132,576061200,1),(1132,594201600,2),(1132,607510800,1),(1132,625651200,2),(1132,638960400,1),(1132,657100800,2),(1132,671014800,1),(1132,688550400,2),(1132,702464400,1),(1132,720000000,2),(1132,733914000,1),(1132,752054400,2),(1132,765363600,1),(1132,783504000,2),(1132,796813200,1),(1132,814953600,2),(1132,828867600,1),(1132,846403200,2),(1132,860317200,1),(1132,877852800,2),(1132,891766800,1),(1132,909302400,2),(1132,923216400,1),(1132,941356800,2),(1132,954666000,1),(1132,972806400,2),(1132,986115600,1),(1132,1004256000,2),(1132,1018170000,1),(1132,1035705600,2),(1132,1049619600,1),(1132,1067155200,2),(1132,1081069200,1),(1132,1099209600,2),(1132,1112518800,1),(1132,1130659200,2),(1132,1143968400,1),(1132,1162108800,2),(1132,1173603600,1),(1132,1194163200,2),(1132,1205053200,1),(1132,1225612800,2),(1132,1236502800,1),(1132,1257062400,2),(1132,1268557200,1),(1132,1289116800,2),(1132,1300006800,1),(1132,1320566400,2),(1132,1331456400,1),(1132,1352016000,2),(1132,1362906000,1),(1132,1383465600,2),(1132,1394355600,1),(1132,1414915200,2),(1132,1425805200,1),(1132,1446364800,2),(1132,1457859600,1),(1132,1478419200,2),(1132,1489309200,1),(1132,1509868800,2),(1132,1520758800,1),(1132,1541318400,2),(1132,1552208400,1),(1132,1572768000,2),(1132,1583658000,1),(1132,1604217600,2),(1132,1615712400,1),(1132,1636272000,2),(1132,1647162000,1),(1132,1667721600,2),(1132,1678611600,1),(1132,1699171200,2),(1132,1710061200,1),(1132,1730620800,2),(1132,1741510800,1),(1132,1762070400,2),(1132,1772960400,1),(1132,1793520000,2),(1132,1805014800,1),(1132,1825574400,2),(1132,1836464400,1),(1132,1857024000,2),(1132,1867914000,1),(1132,1888473600,2),(1132,1899363600,1),(1132,1919923200,2),(1132,1930813200,1),(1132,1951372800,2),(1132,1962867600,1),(1132,1983427200,2),(1132,1994317200,1),(1132,2014876800,2),(1132,2025766800,1),(1132,2046326400,2),(1132,2057216400,1),(1132,2077776000,2),(1132,2088666000,1),(1132,2109225600,2),(1132,2120115600,1),(1132,2140675200,2),(1133,-2147483648,2),(1133,-933667200,1),(1133,-922093200,2),(1133,-908870400,1),(1133,-888829200,2),(1133,-881049600,1),(1133,-767869200,2),(1133,-745833600,1),(1133,-733827600,2),(1133,-716889600,1),(1133,-699613200,2),(1133,-683884800,1),(1133,-670669200,2),(1133,-652348800,1),(1133,-650019600,2),(1133,515527200,1),(1133,527014800,2),(1133,545162400,1),(1133,558464400,2),(1133,577216800,1),(1133,589914000,2),(1133,608666400,1),(1133,621968400,2),(1133,640116000,1),(1133,653418000,2),(1133,671565600,1),(1133,684867600,2),(1134,-1633269600,0),(1134,-1615129200,1),(1134,-1601820000,0),(1134,-1583679600,1),(1134,-880207200,2),(1134,-769395600,3),(1134,-765385200,1),(1134,-84376800,0),(1134,-68655600,1),(1134,-52927200,0),(1134,-37206000,1),(1134,-21477600,0),(1134,-5756400,1),(1134,9972000,0),(1134,25693200,1),(1134,41421600,0),(1134,57747600,1),(1134,73476000,0),(1134,89197200,1),(1134,104925600,0),(1134,120646800,1),(1134,126698400,0),(1134,152096400,1),(1134,162381600,0),(1134,183546000,1),(1134,199274400,0),(1134,215600400,1),(1134,230724000,0),(1134,247050000,1),(1134,262778400,0),(1134,278499600,1),(1134,294228000,0),(1134,309949200,1),(1134,325677600,0),(1134,341398800,1),(1134,357127200,0),(1134,372848400,1),(1134,388576800,0),(1134,404902800,1),(1134,420026400,0),(1134,436352400,1),(1134,452080800,0),(1134,467802000,1),(1134,483530400,0),(1134,499251600,1),(1134,514980000,0),(1134,530701200,1),(1134,544615200,0),(1134,562150800,1),(1134,576064800,0),(1134,594205200,1),(1134,607514400,0),(1134,625654800,1),(1134,638964000,0),(1134,657104400,1),(1134,671018400,0),(1134,688554000,1),(1134,702468000,0),(1134,720003600,1),(1134,733917600,0),(1134,752058000,1),(1134,765367200,0),(1134,783507600,1),(1134,796816800,0),(1134,814957200,1),(1134,828871200,0),(1134,846406800,1),(1134,860320800,0),(1134,877856400,1),(1134,891770400,0),(1134,909306000,1),(1134,923220000,0),(1134,941360400,1),(1134,954669600,0),(1134,972810000,1),(1134,986119200,0),(1134,1004259600,1),(1134,1018173600,0),(1134,1035709200,1),(1134,1049623200,0),(1134,1067158800,1),(1134,1081072800,0),(1134,1099213200,1),(1134,1112522400,0),(1134,1130662800,1),(1134,1143972000,0),(1134,1162112400,1),(1134,1173607200,0),(1134,1194166800,1),(1134,1205056800,0),(1134,1225616400,1),(1134,1236506400,0),(1134,1257066000,1),(1134,1268560800,0),(1134,1289120400,1),(1134,1300010400,0),(1134,1320570000,1),(1134,1331460000,0),(1134,1352019600,1),(1134,1362909600,0),(1134,1383469200,1),(1134,1394359200,0),(1134,1414918800,1),(1134,1425808800,0),(1134,1446368400,1),(1134,1457863200,0),(1134,1478422800,1),(1134,1489312800,0),(1134,1509872400,1),(1134,1520762400,0),(1134,1541322000,1),(1134,1552212000,0),(1134,1572771600,1),(1134,1583661600,0),(1134,1604221200,1),(1134,1615716000,0),(1134,1636275600,1),(1134,1647165600,0),(1134,1667725200,1),(1134,1678615200,0),(1134,1699174800,1),(1134,1710064800,0),(1134,1730624400,1),(1134,1741514400,0),(1134,1762074000,1),(1134,1772964000,0),(1134,1793523600,1),(1134,1805018400,0),(1134,1825578000,1),(1134,1836468000,0),(1134,1857027600,1),(1134,1867917600,0),(1134,1888477200,1),(1134,1899367200,0),(1134,1919926800,1),(1134,1930816800,0),(1134,1951376400,1),(1134,1962871200,0),(1134,1983430800,1),(1134,1994320800,0),(1134,2014880400,1),(1134,2025770400,0),(1134,2046330000,1),(1134,2057220000,0),(1134,2077779600,1),(1134,2088669600,0),(1134,2109229200,1),(1134,2120119200,0),(1134,2140678800,1),(1135,-2147483648,1),(1135,-1861878784,2),(1135,-631110600,4),(1135,1285498800,3),(1135,1301752800,4),(1135,1316872800,3),(1135,1325239200,6),(1135,1333202400,5),(1135,1348927200,6),(1135,1365256800,5),(1135,1380376800,6),(1135,1396706400,5),(1135,1411826400,6),(1135,1428156000,5),(1135,1443276000,6),(1135,1459605600,5),(1135,1474725600,6),(1135,1491055200,5),(1135,1506175200,6),(1135,1522504800,5),(1135,1538229600,6),(1135,1554559200,5),(1135,1569679200,6),(1135,1586008800,5),(1135,1601128800,6),(1135,1617458400,5),(1135,1632578400,6),(1135,1648908000,5),(1135,1664028000,6),(1135,1680357600,5),(1135,1695477600,6),(1135,1712412000,5),(1135,1727532000,6),(1135,1743861600,5),(1135,1758981600,6),(1135,1775311200,5),(1135,1790431200,6),(1135,1806760800,5),(1135,1821880800,6),(1135,1838210400,5),(1135,1853330400,6),(1135,1869660000,5),(1135,1885384800,6),(1135,1901714400,5),(1135,1916834400,6),(1135,1933164000,5),(1135,1948284000,6),(1135,1964613600,5),(1135,1979733600,6),(1135,1996063200,5),(1135,2011183200,6),(1135,2027512800,5),(1135,2042632800,6),(1135,2058962400,5),(1135,2074687200,6),(1135,2091016800,5),(1135,2106136800,6),(1135,2122466400,5),(1135,2137586400,6),(1136,-2147483648,2),(1136,-1330335000,1),(1136,-1320057000,2),(1136,-1300699800,3),(1136,-1287396000,2),(1136,-1269250200,3),(1136,-1255946400,2),(1136,-1237800600,3),(1136,-1224496800,2),(1136,-1206351000,3),(1136,-1192442400,2),(1136,-1174901400,3),(1136,-1160992800,2),(1136,-1143451800,3),(1136,-1125914400,2),(1136,-1112607000,3),(1136,-1094464800,2),(1136,-1081157400,3),(1136,-1063015200,2),(1136,-1049707800,3),(1136,-1031565600,2),(1136,-1018258200,3),(1136,-1000116000,2),(1136,-986808600,3),(1136,-968061600,2),(1136,-955359000,3),(1136,-936612000,2),(1136,-923304600,3),(1136,-757425600,6),(1136,152632800,4),(1136,162309600,5),(1136,183477600,4),(1136,194968800,5),(1136,215532000,4),(1136,226418400,5),(1136,246981600,4),(1136,257868000,5),(1136,278431200,4),(1136,289317600,5),(1136,309880800,4),(1136,320767200,5),(1136,341330400,4),(1136,352216800,5),(1136,372780000,4),(1136,384271200,5),(1136,404834400,4),(1136,415720800,5),(1136,436284000,4),(1136,447170400,5),(1136,467733600,4),(1136,478620000,5),(1136,499183200,4),(1136,510069600,5),(1136,530632800,4),(1136,541519200,5),(1136,562082400,4),(1136,573573600,5),(1136,594136800,4),(1136,605023200,5),(1136,623772000,4),(1136,637682400,5),(1136,655221600,4),(1136,669132000,5),(1136,686671200,4),(1136,700581600,5),(1136,718120800,4),(1136,732636000,5),(1136,749570400,4),(1136,764085600,5),(1136,781020000,4),(1136,795535200,5),(1136,812469600,4),(1136,826984800,5),(1136,844524000,4),(1136,858434400,5),(1136,875973600,4),(1136,889884000,5),(1136,907423200,4),(1136,921938400,5),(1136,938872800,4),(1136,953388000,5),(1136,970322400,4),(1136,984837600,5),(1136,1002376800,4),(1136,1016287200,5),(1136,1033826400,4),(1136,1047736800,5),(1136,1065276000,4),(1136,1079791200,5),(1136,1096725600,4),(1136,1111240800,5),(1136,1128175200,4),(1136,1142690400,5),(1136,1159624800,4),(1136,1174140000,5),(1136,1191074400,4),(1136,1207404000,5),(1136,1222524000,4),(1136,1238853600,5),(1136,1253973600,4),(1136,1270303200,5),(1136,1285423200,4),(1136,1301752800,5),(1136,1316872800,4),(1136,1333202400,5),(1136,1348927200,4),(1136,1365256800,5),(1136,1380376800,4),(1136,1396706400,5),(1136,1411826400,4),(1136,1428156000,5),(1136,1443276000,4),(1136,1459605600,5),(1136,1474725600,4),(1136,1491055200,5),(1136,1506175200,4),(1136,1522504800,5),(1136,1538229600,4),(1136,1554559200,5),(1136,1569679200,4),(1136,1586008800,5),(1136,1601128800,4),(1136,1617458400,5),(1136,1632578400,4),(1136,1648908000,5),(1136,1664028000,4),(1136,1680357600,5),(1136,1695477600,4),(1136,1712412000,5),(1136,1727532000,4),(1136,1743861600,5),(1136,1758981600,4),(1136,1775311200,5),(1136,1790431200,4),(1136,1806760800,5),(1136,1821880800,4),(1136,1838210400,5),(1136,1853330400,4),(1136,1869660000,5),(1136,1885384800,4),(1136,1901714400,5),(1136,1916834400,4),(1136,1933164000,5),(1136,1948284000,4),(1136,1964613600,5),(1136,1979733600,4),(1136,1996063200,5),(1136,2011183200,4),(1136,2027512800,5),(1136,2042632800,4),(1136,2058962400,5),(1136,2074687200,4),(1136,2091016800,5),(1136,2106136800,4),(1136,2122466400,5),(1136,2137586400,4),(1137,-2147483648,1),(1137,-868010400,2),(1137,-768906000,1),(1137,1419696000,3),(1138,-2147483648,1),(1138,-757426500,4),(1138,152632800,2),(1138,162309600,3),(1138,183477600,2),(1138,194968800,3),(1138,215532000,2),(1138,226418400,3),(1138,246981600,2),(1138,257868000,3),(1138,278431200,2),(1138,289317600,3),(1138,309880800,2),(1138,320767200,3),(1138,341330400,2),(1138,352216800,3),(1138,372780000,2),(1138,384271200,3),(1138,404834400,2),(1138,415720800,3),(1138,436284000,2),(1138,447170400,3),(1138,467733600,2),(1138,478620000,3),(1138,499183200,2),(1138,510069600,3),(1138,530632800,2),(1138,541519200,3),(1138,562082400,2),(1138,573573600,3),(1138,594136800,2),(1138,605023200,3),(1138,623772000,2),(1138,637682400,3),(1138,655221600,2),(1138,669132000,3),(1138,686671200,2),(1138,700581600,3),(1138,718120800,2),(1138,732636000,3),(1138,749570400,2),(1138,764085600,3),(1138,781020000,2),(1138,795535200,3),(1138,812469600,2),(1138,826984800,3),(1138,844524000,2),(1138,858434400,3),(1138,875973600,2),(1138,889884000,3),(1138,907423200,2),(1138,921938400,3),(1138,938872800,2),(1138,953388000,3),(1138,970322400,2),(1138,984837600,3),(1138,1002376800,2),(1138,1016287200,3),(1138,1033826400,2),(1138,1047736800,3),(1138,1065276000,2),(1138,1079791200,3),(1138,1096725600,2),(1138,1111240800,3),(1138,1128175200,2),(1138,1142690400,3),(1138,1159624800,2),(1138,1174140000,3),(1138,1191074400,2),(1138,1207404000,3),(1138,1222524000,2),(1138,1238853600,3),(1138,1253973600,2),(1138,1270303200,3),(1138,1285423200,2),(1138,1301752800,3),(1138,1316872800,2),(1138,1333202400,3),(1138,1348927200,2),(1138,1365256800,3),(1138,1380376800,2),(1138,1396706400,3),(1138,1411826400,2),(1138,1428156000,3),(1138,1443276000,2),(1138,1459605600,3),(1138,1474725600,2),(1138,1491055200,3),(1138,1506175200,2),(1138,1522504800,3),(1138,1538229600,2),(1138,1554559200,3),(1138,1569679200,2),(1138,1586008800,3),(1138,1601128800,2),(1138,1617458400,3),(1138,1632578400,2),(1138,1648908000,3),(1138,1664028000,2),(1138,1680357600,3),(1138,1695477600,2),(1138,1712412000,3),(1138,1727532000,2),(1138,1743861600,3),(1138,1758981600,2),(1138,1775311200,3),(1138,1790431200,2),(1138,1806760800,3),(1138,1821880800,2),(1138,1838210400,3),(1138,1853330400,2),(1138,1869660000,3),(1138,1885384800,2),(1138,1901714400,3),(1138,1916834400,2),(1138,1933164000,3),(1138,1948284000,2),(1138,1964613600,3),(1138,1979733600,2),(1138,1996063200,3),(1138,2011183200,2),(1138,2027512800,3),(1138,2042632800,2),(1138,2058962400,3),(1138,2074687200,2),(1138,2091016800,3),(1138,2106136800,2),(1138,2122466400,3),(1138,2137586400,2),(1139,-2147483648,1),(1139,-1743674400,2),(1139,-1606813200,1),(1139,-907408800,2),(1139,-770634000,1),(1140,-2147483648,1),(1140,-1178124152,4),(1140,-36619200,2),(1140,-23922000,3),(1140,-3355200,2),(1140,7527600,3),(1140,24465600,2),(1140,37767600,3),(1140,55915200,2),(1140,69217200,3),(1140,87969600,2),(1140,100666800,3),(1140,118209600,2),(1140,132116400,3),(1140,150868800,2),(1140,163566000,3),(1140,182318400,2),(1140,195620400,3),(1140,213768000,2),(1140,227070000,3),(1140,245217600,2),(1140,258519600,3),(1140,277272000,2),(1140,289969200,3),(1140,308721600,2),(1140,321418800,3),(1140,340171200,2),(1140,353473200,3),(1140,371620800,2),(1140,384922800,5),(1140,403070400,6),(1140,416372400,5),(1140,434520000,6),(1140,447822000,5),(1140,466574400,6),(1140,479271600,5),(1140,498024000,6),(1140,510721200,5),(1140,529473600,6),(1140,545194800,5),(1140,560923200,6),(1140,574225200,5),(1140,592372800,6),(1140,605674800,5),(1140,624427200,6),(1140,637124400,5),(1140,653457600,6),(1140,668574000,5),(1140,687326400,6),(1140,700628400,5),(1140,718776000,6),(1140,732078000,5),(1140,750225600,6),(1140,763527600,5),(1140,781675200,6),(1140,794977200,5),(1140,813729600,6),(1140,826426800,5),(1140,845179200,6),(1140,859690800,5),(1140,876628800,6),(1140,889930800,5),(1140,906868800,6),(1140,923194800,5),(1140,939528000,6),(1140,952830000,5),(1140,971582400,6),(1140,984279600,5),(1140,1003032000,6),(1140,1015729200,5),(1140,1034481600,6),(1140,1047178800,5),(1140,1065931200,6),(1140,1079233200,5),(1140,1097380800,6),(1140,1110682800,5),(1140,1128830400,6),(1140,1142132400,5),(1140,1160884800,6),(1140,1173582000,5),(1140,1192334400,6),(1140,1206846000,5),(1140,1223784000,6),(1140,1237086000,5),(1140,1255233600,6),(1140,1270350000,5),(1140,1286683200,6),(1140,1304823600,5),(1140,1313899200,6),(1140,1335668400,5),(1140,1346558400,6),(1140,1367118000,5),(1140,1378612800,6),(1140,1398567600,5),(1140,1410062400,6),(1140,1463281200,5),(1140,1471147200,6),(1140,1494730800,5),(1140,1502596800,6),(1140,1526180400,5),(1140,1534046400,6),(1140,1554606000,5),(1140,1567915200,6),(1140,1586055600,5),(1140,1599364800,6),(1140,1617505200,5),(1140,1630814400,6),(1140,1648954800,5),(1140,1662264000,6),(1140,1680404400,5),(1140,1693713600,6),(1140,1712458800,5),(1140,1725768000,6),(1140,1743908400,5),(1140,1757217600,6),(1140,1775358000,5),(1140,1788667200,6),(1140,1806807600,5),(1140,1820116800,6),(1140,1838257200,5),(1140,1851566400,6),(1140,1870311600,5),(1140,1883016000,6),(1140,1901761200,5),(1140,1915070400,6),(1140,1933210800,5),(1140,1946520000,6),(1140,1964660400,5),(1140,1977969600,6),(1140,1996110000,5),(1140,2009419200,6),(1140,2027559600,5),(1140,2040868800,6),(1140,2059614000,5),(1140,2072318400,6),(1140,2091063600,5),(1140,2104372800,6),(1140,2122513200,5),(1140,2135822400,6),(1141,-2147483648,0),(1141,-1829387596,2),(1141,433256400,1),(1141,448977600,2),(1141,467298000,1),(1141,480427200,2),(1141,496760400,1),(1141,511876800,2),(1141,528210000,1),(1141,543931200,2),(1141,559659600,1),(1141,575380800,2),(1141,591109200,1),(1141,606830400,2),(1141,622558800,1),(1141,638280000,2),(1141,654008400,1),(1141,669729600,2),(1141,686062800,1),(1141,696340800,2),(1141,719931600,1),(1141,727790400,2),(1142,-2147483648,1),(1142,307627200,2),(1142,788871600,3),(1143,-2147483648,1),(1143,1325242800,2),(1144,-2147483648,0),(1144,-1709985344,2),(1144,909842400,1),(1144,920124000,2),(1144,941896800,1),(1144,951573600,2),(1144,1259416800,1),(1144,1269698400,2),(1144,1287842400,1),(1144,1299333600,2),(1144,1319292000,1),(1144,1327154400,2),(1144,1350741600,1),(1144,1358604000,2),(1144,1382796000,1),(1144,1390050000,2),(1144,1414850400,1),(1144,1421503200,2),(1144,1446300000,1),(1144,1452952800,2),(1144,1478354400,1),(1144,1484402400,2),(1144,1509804000,1),(1144,1515852000,2),(1144,1541253600,1),(1144,1547301600,2),(1144,1573308000,1),(1144,1578751200,2),(1144,1604757600,1),(1144,1610805600,2),(1144,1636812000,1),(1144,1642255200,2),(1144,1668261600,1),(1144,1673704800,2),(1144,1699711200,1),(1144,1705154400,2),(1144,1731160800,1),(1144,1736604000,2),(1144,1762610400,1),(1144,1768658400,2),(1144,1794060000,1),(1144,1800108000,2),(1144,1826114400,1),(1144,1831557600,2),(1144,1857564000,1),(1144,1863007200,2),(1144,1889013600,1),(1144,1894456800,2),(1144,1920463200,1),(1144,1925906400,2),(1144,1951912800,1),(1144,1957960800,2),(1144,1983967200,1),(1144,1989410400,2),(1144,2015416800,1),(1144,2020860000,2),(1144,2046866400,1),(1144,2052309600,2),(1144,2078316000,1),(1144,2083759200,2),(1144,2109765600,1),(1144,2115813600,2),(1144,2141215200,1),(1146,-2147483648,0),(1146,-1230746496,1),(1146,504939600,3),(1146,722930400,2),(1146,728888400,3),(1147,-2147483648,0),(1147,-1806678012,1),(1148,-2147483648,0),(1148,-1806748788,1),(1149,-2147483648,1),(1149,-885549600,2),(1149,-802256400,1),(1149,-331891200,3),(1149,-281610000,1),(1149,-73728000,3),(1149,-29415540,1),(1149,-16704000,3),(1149,-10659600,1),(1149,9907200,3),(1149,21394800,1),(1149,41356800,3),(1149,52844400,1),(1149,124819200,3),(1149,130863600,1),(1149,201888000,3),(1149,209487660,1),(1149,230659200,3),(1149,241542000,1),(1149,977493600,4),(1150,-2147483648,1),(1150,-1157283000,2),(1150,-1155436200,1),(1150,-880198200,3),(1150,-769395600,4),(1150,-765376200,1),(1150,-712150200,5),(1151,-2147483648,1),(1151,-1157283000,2),(1151,-1155436200,1),(1151,-880198200,3),(1151,-769395600,4),(1151,-765376200,1),(1151,-712150200,5),(1152,-2147483648,1),(1152,307622400,2),(1152,788868000,3),(1153,-2147483648,1),(1153,-1743678000,2),(1153,-1606813200,1),(1153,-1041418800,3),(1153,-907408800,2),(1153,-770634000,1),(1153,-7988400,4),(1153,915105600,1),(1154,-2147483648,1),(1154,-1041418800,2),(1154,-907408800,3),(1154,-817462800,1),(1154,-7988400,4),(1154,745934400,5),(1155,-2147483648,1),(1155,-1743678000,2),(1155,-1606813200,1),(1155,-1041418800,3),(1155,-907408800,2),(1155,-818067600,1),(1155,-7988400,4),(1156,-2147483648,0),(1156,-1806676920,1),(1157,-2147483648,1),(1157,-1861879032,2),(1158,-2147483648,0),(1158,-1545131260,1),(1158,-862918200,2),(1158,-767350800,1),(1158,287418600,3),(1159,-2147483648,1),(1159,-599575200,2),(1159,276089400,3),(1160,-2147483648,1),(1160,-599656320,2),(1160,152029800,3),(1160,162916200,4),(1160,1443882600,5),(1160,1561899600,7),(1160,1570287600,6),(1160,1586012400,5),(1160,1601737200,6),(1160,1617462000,5),(1160,1633186800,6),(1160,1648911600,5),(1160,1664636400,6),(1160,1680361200,5),(1160,1696086000,6),(1160,1712415600,5),(1160,1728140400,6),(1160,1743865200,5),(1160,1759590000,6),(1160,1775314800,5),(1160,1791039600,6),(1160,1806764400,5),(1160,1822489200,6),(1160,1838214000,5),(1160,1853938800,6),(1160,1869663600,5),(1160,1885993200,6),(1160,1901718000,5),(1160,1917442800,6),(1160,1933167600,5),(1160,1948892400,6),(1160,1964617200,5),(1160,1980342000,6),(1160,1996066800,5),(1160,2011791600,6),(1160,2027516400,5),(1160,2043241200,6),(1160,2058966000,5),(1160,2075295600,6),(1160,2091020400,5),(1160,2106745200,6),(1160,2122470000,5),(1160,2138194800,6),(1161,-2147483648,0),(1161,-1829387148,2),(1161,250002000,1),(1161,257342400,2),(1161,281451600,1),(1161,288878400,2),(1161,849366000,3),(1161,857228400,4),(1162,-2147483648,1),(1162,-1861879032,2),(1164,-2147483648,1),(1164,893665800,2),(1165,-2147483648,1),(1165,-1743678000,2),(1165,-1606813200,1),(1165,-1041418800,3),(1165,-907408800,2),(1165,-770634000,1),(1166,-2147483648,1),(1166,-1743678000,2),(1166,-1606813200,1),(1166,-1041418800,3),(1166,-907408800,2),(1166,-770634000,1),(1168,-2147483648,1),(1168,279714600,3),(1168,289387800,2),(1168,309952800,3),(1168,320837400,2),(1168,341402400,3),(1168,352287000,2),(1168,372852000,3),(1168,384341400,2),(1168,404906400,3),(1168,415791000,2),(1168,436356000,3),(1168,447240600,2),(1168,467805600,3),(1168,478690200,2),(1168,499255200,3),(1168,510139800,2),(1168,530704800,3),(1168,541589400,2),(1168,562154400,3),(1168,573643800,2),(1168,594208800,3),(1168,605093400,2),(1168,625658400,3),(1168,636543000,2),(1168,657108000,3),(1168,667992600,2),(1169,-2147483648,1),(1169,-885549600,2),(1169,-802256400,1),(1169,-331891200,3),(1169,-281610000,1),(1169,-73728000,3),(1169,-29415540,1),(1169,-16704000,3),(1169,-10659600,1),(1169,9907200,3),(1169,21394800,1),(1169,41356800,3),(1169,52844400,1),(1169,124819200,3),(1169,130863600,1),(1169,201888000,3),(1169,209487660,1),(1169,230659200,3),(1169,241542000,1),(1169,977493600,4),(1170,-2147483648,1),(1170,-1861879032,2),(1171,-2147483648,0),(1171,-1806674504,1),(1173,-2147483648,1),(1173,-915193200,2),(1173,939214800,3),(1173,953384400,4),(1173,973342800,5),(1173,980596800,2),(1173,1004792400,5),(1173,1012046400,2),(1173,1478350800,5),(1173,1484398800,2),(1174,-2147483648,1),(1174,-1743674400,2),(1174,-1606813200,1),(1174,-907408800,2),(1174,-770634000,1),(1177,-2147483648,1),(1177,-1743674400,2),(1177,-1606813200,1),(1177,-907408800,2),(1177,-770634000,1),(1178,-2147483648,1),(1178,-1717032240,3),(1178,-1693706400,2),(1178,-1680483600,3),(1178,-1663455600,4),(1178,-1650150000,5),(1178,-1632006000,4),(1178,-1618700400,8),(1178,-1600473600,6),(1178,-1587168000,7),(1178,-1501725600,3),(1178,-931734000,2),(1178,-857257200,5),(1178,-844556400,4),(1178,-828226800,5),(1178,-812502000,4),(1178,-796874400,2),(1178,-796608000,3),(1178,-778726800,2),(1178,-762660000,3),(1178,-748486800,4),(1178,-733273200,5),(1178,-715215600,4),(1178,-701910000,5),(1178,-684975600,4),(1178,-670460400,5),(1178,-654130800,4),(1178,-639010800,5),(1178,-397094400,4),(1178,-386812800,5),(1178,-371088000,4),(1178,-355363200,5),(1178,-334195200,4),(1178,-323308800,5),(1178,-307584000,4),(1178,-291859200,5),(1178,-271296000,4),(1178,-260409600,5),(1178,-239846400,4),(1178,-228960000,5),(1178,-208396800,4),(1178,-197510400,5),(1178,-176342400,4),(1178,-166060800,5),(1178,220921200,3),(1178,228873600,4),(1178,243993600,5),(1178,260323200,4),(1178,276048000,5),(1178,291772800,4),(1178,307497600,5),(1178,323827200,4),(1178,338947200,5),(1178,354672000,4),(1178,370396800,5),(1178,386121600,4),(1178,401846400,5),(1178,417571200,4),(1178,433296000,5),(1178,449020800,4),(1178,465350400,5),(1178,481075200,4),(1178,496800000,5),(1178,512524800,4),(1178,528249600,5),(1178,543974400,4),(1178,559699200,5),(1178,567990000,3),(1178,575427600,9),(1178,591152400,10),(1178,606877200,9),(1178,622602000,10),(1178,638326800,9),(1178,654656400,10),(1178,670381200,9),(1178,686106000,10),(1178,701830800,9),(1178,717555600,10),(1178,733280400,9),(1178,749005200,10),(1178,764730000,9),(1178,780454800,10),(1178,796179600,9),(1178,811904400,10),(1178,828234000,9),(1178,846378000,10),(1178,859683600,9),(1178,877827600,10),(1178,891133200,9),(1178,909277200,10),(1178,922582800,9),(1178,941331600,10),(1178,954032400,9),(1178,972781200,10),(1178,985482000,9),(1178,1004230800,10),(1178,1017536400,9),(1178,1035680400,10),(1178,1048986000,9),(1178,1067130000,10),(1178,1080435600,9),(1178,1099184400,10),(1178,1111885200,9),(1178,1130634000,10),(1178,1143334800,9),(1178,1162083600,10),(1178,1174784400,9),(1178,1193533200,10),(1178,1206838800,9),(1178,1224982800,10),(1178,1238288400,9),(1178,1256432400,10),(1178,1269738000,9),(1178,1288486800,10),(1178,1301187600,9),(1178,1319936400,10),(1178,1332637200,9),(1178,1351386000,10),(1178,1364691600,9),(1178,1382835600,10),(1178,1396141200,9),(1178,1414285200,10),(1178,1427590800,9),(1178,1445734800,10),(1178,1459040400,9),(1178,1477789200,10),(1178,1490490000,9),(1178,1509238800,10),(1178,1521939600,9),(1178,1540688400,10),(1178,1553994000,9),(1178,1572138000,10),(1178,1585443600,9),(1178,1603587600,10),(1178,1616893200,9),(1178,1635642000,10),(1178,1648342800,9),(1178,1667091600,10),(1178,1679792400,9),(1178,1698541200,10),(1178,1711846800,9),(1178,1729990800,10),(1178,1743296400,9),(1178,1761440400,10),(1178,1774746000,9),(1178,1792890000,10),(1178,1806195600,9),(1178,1824944400,10),(1178,1837645200,9),(1178,1856394000,10),(1178,1869094800,9),(1178,1887843600,10),(1178,1901149200,9),(1178,1919293200,10),(1178,1932598800,9),(1178,1950742800,10),(1178,1964048400,9),(1178,1982797200,10),(1178,1995498000,9),(1178,2014246800,10),(1178,2026947600,9),(1178,2045696400,10),(1178,2058397200,9),(1178,2077146000,10),(1178,2090451600,9),(1178,2108595600,10),(1178,2121901200,9),(1178,2140045200,10),(1179,-2147483648,0),(1179,-1830384000,6),(1179,-1689555600,1),(1179,-1677801600,2),(1179,-1667437200,3),(1179,-1647738000,4),(1179,-1635814800,3),(1179,-1616202000,4),(1179,-1604365200,3),(1179,-1584666000,4),(1179,-1572742800,3),(1179,-1553043600,4),(1179,-1541206800,3),(1179,-1521507600,4),(1179,-1442451600,3),(1179,-1426813200,4),(1179,-1379293200,3),(1179,-1364778000,4),(1179,-1348448400,3),(1179,-1333328400,4),(1179,-1316394000,3),(1179,-1301274000,4),(1179,-1284339600,3),(1179,-1269824400,4),(1179,-1221440400,3),(1179,-1206925200,4),(1179,-1191200400,3),(1179,-1175475600,4),(1179,-1127696400,3),(1179,-1111971600,4),(1179,-1096851600,3),(1179,-1080522000,4),(1179,-1063587600,3),(1179,-1049072400,4),(1179,-1033347600,3),(1179,-1017622800,4),(1179,-1002502800,3),(1179,-986173200,4),(1179,-969238800,3),(1179,-950490000,4),(1179,-942022800,3),(1179,-922669200,4),(1179,-906944400,3),(1179,-891133200,4),(1179,-877309200,3),(1179,-873684000,5),(1179,-864007200,3),(1179,-857955600,4),(1179,-845859600,3),(1179,-842839200,5),(1179,-831348000,3),(1179,-825901200,4),(1179,-814410000,3),(1179,-810784800,5),(1179,-799898400,3),(1179,-794451600,4),(1179,-782960400,3),(1179,-779335200,5),(1179,-768448800,3),(1179,-763002000,4),(1179,-749091600,3),(1179,-733366800,4),(1179,-717631200,3),(1179,-701906400,4),(1179,-686181600,3),(1179,-670456800,4),(1179,-654732000,3),(1179,-639007200,4),(1179,-591832800,3),(1179,-575503200,4),(1179,-559778400,3),(1179,-544053600,4),(1179,-528328800,3),(1179,-512604000,4),(1179,-496879200,3),(1179,-481154400,4),(1179,-465429600,3),(1179,-449704800,4),(1179,-433980000,3),(1179,-417650400,4),(1179,-401925600,3),(1179,-386200800,4),(1179,-370476000,3),(1179,-354751200,4),(1179,-339026400,3),(1179,-323301600,4),(1179,-307576800,3),(1179,-291852000,4),(1179,-276127200,3),(1179,-260402400,4),(1179,-244677600,3),(1179,-228348000,4),(1179,-212623200,3),(1179,-196898400,4),(1179,-181173600,3),(1179,-165448800,4),(1179,-149724000,3),(1179,-133999200,4),(1179,-118274400,7),(1179,212544000,2),(1179,228268800,3),(1179,243993600,4),(1179,260323200,3),(1179,276048000,4),(1179,291772800,3),(1179,307501200,4),(1179,323222400,3),(1179,338950800,4),(1179,354675600,3),(1179,370400400,4),(1179,386125200,3),(1179,401850000,4),(1179,417578400,3),(1179,433299600,4),(1179,449024400,3),(1179,465354000,4),(1179,481078800,3),(1179,496803600,4),(1179,512528400,3),(1179,528253200,4),(1179,543978000,3),(1179,559702800,4),(1179,575427600,3),(1179,591152400,4),(1179,606877200,3),(1179,622602000,4),(1179,638326800,3),(1179,654656400,4),(1179,670381200,3),(1179,686106000,4),(1179,701830800,3),(1179,717555600,8),(1179,733280400,9),(1179,749005200,8),(1179,764730000,9),(1179,780454800,8),(1179,796179600,9),(1179,811904400,8),(1179,828234000,10),(1179,846378000,6),(1179,859683600,10),(1179,877827600,6),(1179,891133200,10),(1179,909277200,6),(1179,922582800,10),(1179,941331600,6),(1179,954032400,10),(1179,972781200,6),(1179,985482000,10),(1179,1004230800,6),(1179,1017536400,10),(1179,1035680400,6),(1179,1048986000,10),(1179,1067130000,6),(1179,1080435600,10),(1179,1099184400,6),(1179,1111885200,10),(1179,1130634000,6),(1179,1143334800,10),(1179,1162083600,6),(1179,1174784400,10),(1179,1193533200,6),(1179,1206838800,10),(1179,1224982800,6),(1179,1238288400,10),(1179,1256432400,6),(1179,1269738000,10),(1179,1288486800,6),(1179,1301187600,10),(1179,1319936400,6),(1179,1332637200,10),(1179,1351386000,6),(1179,1364691600,10),(1179,1382835600,6),(1179,1396141200,10),(1179,1414285200,6),(1179,1427590800,10),(1179,1445734800,6),(1179,1459040400,10),(1179,1477789200,6),(1179,1490490000,10),(1179,1509238800,6),(1179,1521939600,10),(1179,1540688400,6),(1179,1553994000,10),(1179,1572138000,6),(1179,1585443600,10),(1179,1603587600,6),(1179,1616893200,10),(1179,1635642000,6),(1179,1648342800,10),(1179,1667091600,6),(1179,1679792400,10),(1179,1698541200,6),(1179,1711846800,10),(1179,1729990800,6),(1179,1743296400,10),(1179,1761440400,6),(1179,1774746000,10),(1179,1792890000,6),(1179,1806195600,10),(1179,1824944400,6),(1179,1837645200,10),(1179,1856394000,6),(1179,1869094800,10),(1179,1887843600,6),(1179,1901149200,10),(1179,1919293200,6),(1179,1932598800,10),(1179,1950742800,6),(1179,1964048400,10),(1179,1982797200,6),(1179,1995498000,10),(1179,2014246800,6),(1179,2026947600,10),(1179,2045696400,6),(1179,2058397200,10),(1179,2077146000,6),(1179,2090451600,10),(1179,2108595600,6),(1179,2121901200,10),(1179,2140045200,6),(1180,-2147483648,1),(1180,-1017820800,2),(1180,-766224000,1),(1180,-745833600,3),(1180,-733827600,1),(1180,-716889600,3),(1180,-699613200,1),(1180,-683884800,3),(1180,-670669200,1),(1180,-652348800,3),(1180,-639133200,1),(1180,-620812800,3),(1180,-607597200,1),(1180,-589276800,3),(1180,-576061200,1),(1180,-562924800,3),(1180,-541760400,1),(1180,-528710400,3),(1180,-510224400,1),(1180,-497174400,3),(1180,-478688400,1),(1180,-465638400,3),(1180,-449830800,1),(1180,-434016000,3),(1180,-418208400,1),(1180,-402480000,3),(1180,-386672400,1),(1180,-370944000,3),(1180,-355136400,1),(1180,-339408000,3),(1180,-323600400,1),(1180,-302515200,3),(1180,-291978000,1),(1180,-270979200,3),(1180,-260442000,1),(1180,133977600,3),(1180,149785200,1),(1180,165513600,3),(1180,181321200,1),(1180,299606400,3),(1180,307551600,1),(1181,-2147483648,0),(1181,-1948782472,1),(1181,-1830414600,2),(1181,-767350800,4),(1181,-681210000,3),(1181,-672228000,4),(1181,-654771600,3),(1181,-640864800,4),(1181,-623408400,3),(1181,-609415200,4),(1181,-588848400,3),(1181,-577965600,4),(1181,-498128400,1),(1181,-462702600,5),(1181,-451733400,1),(1181,-429784200,5),(1181,-418296600,1),(1181,-399544200,5),(1181,-387451800,1),(1181,-368094600,5),(1181,-356002200,1),(1181,-336645000,5),(1181,-324552600,1),(1181,-305195400,5),(1181,-293103000,1),(1181,-264933000,4),(1181,547578000,3),(1181,560883600,4),(1181,579027600,3),(1181,592333200,4),(1182,-2147483648,1),(1182,-2038200925,2),(1182,-1167634800,3),(1182,-1073028000,4),(1182,-894180000,5),(1182,-879665400,6),(1182,-767005200,5),(1182,378664200,7),(1183,-2147483648,1),(1183,-873057600,3),(1183,-769395600,2),(1183,-765399600,1),(1184,-2147483648,0),(1184,-2131645536,2),(1184,-1696276800,1),(1184,-1680469200,2),(1184,-1632074400,1),(1184,-1615143600,2),(1184,-1566763200,1),(1184,-1557090000,2),(1184,-1535486400,1),(1184,-1524949200,2),(1184,-1504468800,1),(1184,-1493413200,2),(1184,-1472414400,1),(1184,-1461963600,2),(1184,-1440964800,1),(1184,-1429390800,2),(1184,-1409515200,1),(1184,-1396731600,2),(1184,-1376856000,1),(1184,-1366491600,2),(1184,-1346616000,1),(1184,-1333832400,2),(1184,-1313956800,1),(1184,-1303678800,2),(1184,-1282507200,1),(1184,-1272661200,2),(1184,-1251057600,1),(1184,-1240088400,2),(1184,-1219608000,1),(1184,-1207429200,2),(1184,-1188763200,1),(1184,-1175979600,2),(1184,-1157313600,1),(1184,-1143925200,2),(1184,-1124049600,1),(1184,-1113771600,2),(1184,-1091390400,1),(1184,-1081026000,2),(1184,-1059854400,1),(1184,-1050786000,2),(1184,-1030910400,1),(1184,-1018126800,2),(1184,-999460800,1),(1184,-986677200,2),(1184,-965592000,1),(1184,-955227600,2),(1184,-935956800,1),(1184,-923173200,2),(1184,-904507200,1),(1184,-891723600,2),(1184,-880221600,3),(1184,-769395600,4),(1184,-765399600,2),(1184,-747252000,1),(1184,-733950000,2),(1184,-715802400,1),(1184,-702500400,2),(1184,-684352800,1),(1184,-671050800,2),(1184,-652903200,1),(1184,-639601200,2),(1184,-589399200,1),(1184,-576097200,2),(1184,-557949600,1),(1184,-544647600,2),(1184,-526500000,1),(1184,-513198000,2),(1184,-495050400,1),(1184,-481748400,2),(1184,-431546400,1),(1184,-418244400,2),(1184,-400096800,1),(1184,-386794800,2),(1184,-368647200,1),(1184,-355345200,2),(1184,-337197600,1),(1184,-323895600,2),(1184,-242244000,1),(1184,-226522800,2),(1184,-210794400,1),(1184,-195073200,2),(1184,-179344800,1),(1184,-163623600,2),(1184,-147895200,1),(1184,-131569200,2),(1184,-116445600,1),(1184,-100119600,2),(1184,-84391200,1),(1184,-68670000,2),(1184,-52941600,1),(1184,-37220400,2),(1184,-21492000,1),(1184,-5770800,2),(1184,9957600,1),(1184,25678800,2),(1184,41407200,1),(1184,57733200,2),(1184,73461600,1),(1184,89182800,2),(1184,104911200,1),(1184,120632400,2),(1184,136360800,1),(1184,152082000,2),(1184,167810400,1),(1184,183531600,2),(1184,199260000,1),(1184,215586000,2),(1184,230709600,1),(1184,247035600,2),(1184,262764000,1),(1184,278485200,2),(1184,294213600,1),(1184,309934800,2),(1184,325663200,1),(1184,341384400,2),(1184,357112800,1),(1184,372834000,2),(1184,388562400,1),(1184,404888400,2),(1184,420012000,1),(1184,436338000,2),(1184,452066400,1),(1184,467787600,2),(1184,483516000,1),(1184,499237200,2),(1184,514965600,1),(1184,530686800,2),(1184,544600800,1),(1184,562136400,2),(1184,576050400,1),(1184,594190800,2),(1184,607500000,1),(1184,625640400,2),(1184,638949600,1),(1184,657090000,2),(1184,671004000,1),(1184,688539600,2),(1184,702453600,1),(1184,719989200,2),(1184,733903200,1),(1184,752043600,2),(1184,765352800,1),(1184,783493200,2),(1184,796802400,1),(1184,814942800,2),(1184,828856800,1),(1184,846392400,2),(1184,860306400,1),(1184,877842000,2),(1184,891756000,1),(1184,909291600,2),(1184,923205600,1),(1184,941346000,2),(1184,954655200,1),(1184,972795600,2),(1184,986104800,1),(1184,1004245200,2),(1184,1018159200,1),(1184,1035694800,2),(1184,1049608800,1),(1184,1067144400,2),(1184,1081058400,1),(1184,1099198800,2),(1184,1112508000,1),(1184,1130648400,2),(1184,1143957600,1),(1184,1162098000,2),(1184,1173592800,1),(1184,1194152400,2),(1184,1205042400,1),(1184,1225602000,2),(1184,1236492000,1),(1184,1257051600,2),(1184,1268546400,1),(1184,1289106000,2),(1184,1299996000,1),(1184,1320555600,2),(1184,1331445600,1),(1184,1352005200,2),(1184,1362895200,1),(1184,1383454800,2),(1184,1394344800,1),(1184,1414904400,2),(1184,1425794400,1),(1184,1446354000,2),(1184,1457848800,1),(1184,1478408400,2),(1184,1489298400,1),(1184,1509858000,2),(1184,1520748000,1),(1184,1541307600,2),(1184,1552197600,1),(1184,1572757200,2),(1184,1583647200,1),(1184,1604206800,2),(1184,1615701600,1),(1184,1636261200,2),(1184,1647151200,1),(1184,1667710800,2),(1184,1678600800,1),(1184,1699160400,2),(1184,1710050400,1),(1184,1730610000,2),(1184,1741500000,1),(1184,1762059600,2),(1184,1772949600,1),(1184,1793509200,2),(1184,1805004000,1),(1184,1825563600,2),(1184,1836453600,1),(1184,1857013200,2),(1184,1867903200,1),(1184,1888462800,2),(1184,1899352800,1),(1184,1919912400,2),(1184,1930802400,1),(1184,1951362000,2),(1184,1962856800,1),(1184,1983416400,2),(1184,1994306400,1),(1184,2014866000,2),(1184,2025756000,1),(1184,2046315600,2),(1184,2057205600,1),(1184,2077765200,2),(1184,2088655200,1),(1184,2109214800,2),(1184,2120104800,1),(1184,2140664400,2),(1185,-2147483648,0),(1185,-2030202084,2),(1185,-1632063600,1),(1185,-1615132800,2),(1185,-1251651600,1),(1185,-1238349600,2),(1185,-1220202000,1),(1185,-1206900000,2),(1185,-1188752400,1),(1185,-1175450400,2),(1185,-1156698000,1),(1185,-1144000800,2),(1185,-1125248400,1),(1185,-1111946400,2),(1185,-1032714000,1),(1185,-1016992800,2),(1185,-1001264400,1),(1185,-986148000,2),(1185,-969814800,1),(1185,-954093600,2),(1185,-937760400,1),(1185,-922039200,2),(1185,-906310800,1),(1185,-890589600,2),(1185,-880210800,3),(1185,-769395600,4),(1185,-765388800,2),(1185,-748450800,1),(1185,-732729600,2),(1185,-715791600,1),(1185,-702489600,2),(1185,-684342000,1),(1185,-671040000,2),(1185,-652892400,1),(1185,-639590400,2),(1185,-620838000,1),(1185,-608140800,2),(1185,-589388400,1),(1185,-576086400,2),(1185,-557938800,1),(1185,-544636800,2),(1185,-526489200,1),(1185,-513187200,2),(1185,-495039600,1),(1185,-481737600,2),(1185,-463590000,1),(1185,-450288000,2),(1185,-431535600,1),(1185,-418233600,2),(1185,-400086000,1),(1185,-386784000,2),(1185,-337186800,1),(1185,-321465600,2),(1185,-305737200,5),(1186,-2147483648,2),(1186,-1633276800,1),(1186,-1615136400,2),(1186,-1601827200,1),(1186,-1583686800,2),(1186,-1563724800,1),(1186,-1551632400,2),(1186,-1538928000,1),(1186,-1520182800,2),(1186,-1504454400,1),(1186,-1491757200,2),(1186,-1473004800,1),(1186,-1459702800,2),(1186,-1441555200,1),(1186,-1428253200,2),(1186,-1410105600,1),(1186,-1396803600,2),(1186,-1378656000,1),(1186,-1365354000,2),(1186,-1347206400,1),(1186,-1333904400,2),(1186,-1315152000,1),(1186,-1301850000,2),(1186,-1283702400,1),(1186,-1270400400,2),(1186,-1252252800,1),(1186,-1238950800,2),(1186,-1220803200,1),(1186,-1207501200,2),(1186,-1189353600,1),(1186,-1176051600,2),(1186,-1157299200,1),(1186,-1144602000,2),(1186,-1125849600,1),(1186,-1112547600,2),(1186,-1094400000,1),(1186,-1081098000,2),(1186,-1067788800,3),(1186,-1045414800,2),(1186,-1031500800,1),(1186,-1018198800,2),(1186,-1000051200,1),(1186,-986749200,2),(1186,-967996800,1),(1186,-955299600,2),(1186,-936547200,1),(1186,-923245200,2),(1186,-905097600,1),(1186,-891795600,2),(1186,-880214400,4),(1186,-769395600,5),(1186,-765392400,2),(1186,-747244800,1),(1186,-733942800,2),(1186,-715795200,1),(1186,-702493200,2),(1186,-684345600,1),(1186,-671043600,2),(1186,-652896000,1),(1186,-639594000,2),(1186,-620841600,1),(1186,-608144400,2),(1186,-589392000,1),(1186,-576090000,2),(1186,-557942400,1),(1186,-544640400,2),(1186,-526492800,1),(1186,-513190800,2),(1186,-495043200,1),(1186,-481741200,2),(1186,-463593600,1),(1186,-447267600,2),(1186,-431539200,1),(1186,-415818000,2),(1186,-400089600,1),(1186,-384368400,2),(1186,-368640000,1),(1186,-352918800,2),(1186,-337190400,1),(1186,-321469200,2),(1186,-305740800,1),(1186,-289414800,2),(1186,-273686400,1),(1186,-257965200,2),(1186,-242236800,1),(1186,-226515600,2),(1186,-210787200,1),(1186,-195066000,2),(1186,-179337600,1),(1186,-163616400,2),(1186,-147888000,1),(1186,-131562000,2),(1186,-116438400,1),(1186,-100112400,2),(1186,-84384000,1),(1186,-68662800,2),(1186,-52934400,1),(1186,-37213200,2),(1186,-21484800,1),(1186,-5763600,2),(1186,9964800,1),(1186,25686000,2),(1186,41414400,1),(1186,57740400,2),(1186,73468800,1),(1186,89190000,2),(1186,104918400,1),(1186,120639600,2),(1186,126691200,1),(1186,152089200,2),(1186,162374400,1),(1186,183538800,2),(1186,199267200,1),(1186,215593200,2),(1186,230716800,1),(1186,247042800,2),(1186,262771200,1),(1186,278492400,2),(1186,294220800,1),(1186,309942000,2),(1186,325670400,1),(1186,341391600,2),(1186,357120000,1),(1186,372841200,2),(1186,388569600,1),(1186,404895600,2),(1186,420019200,1),(1186,436345200,2),(1186,452073600,1),(1186,467794800,2),(1186,483523200,1),(1186,499244400,2),(1186,514972800,1),(1186,530694000,2),(1186,544608000,1),(1186,562143600,2),(1186,576057600,1),(1186,594198000,2),(1186,607507200,1),(1186,625647600,2),(1186,638956800,1),(1186,657097200,2),(1186,671011200,1),(1186,688546800,2),(1186,702460800,1),(1186,719996400,2),(1186,733910400,1),(1186,752050800,2),(1186,765360000,1),(1186,783500400,2),(1186,796809600,1),(1186,814950000,2),(1186,828864000,1),(1186,846399600,2),(1186,860313600,1),(1186,877849200,2),(1186,891763200,1),(1186,909298800,2),(1186,923212800,1),(1186,941353200,2),(1186,954662400,1),(1186,972802800,2),(1186,986112000,1),(1186,1004252400,2),(1186,1018166400,1),(1186,1035702000,2),(1186,1049616000,1),(1186,1067151600,2),(1186,1081065600,1),(1186,1099206000,2),(1186,1112515200,1),(1186,1130655600,2),(1186,1143964800,1),(1186,1162105200,2),(1186,1173600000,1),(1186,1194159600,2),(1186,1205049600,1),(1186,1225609200,2),(1186,1236499200,1),(1186,1257058800,2),(1186,1268553600,1),(1186,1289113200,2),(1186,1300003200,1),(1186,1320562800,2),(1186,1331452800,1),(1186,1352012400,2),(1186,1362902400,1),(1186,1383462000,2),(1186,1394352000,1),(1186,1414911600,2),(1186,1425801600,1),(1186,1446361200,2),(1186,1457856000,1),(1186,1478415600,2),(1186,1489305600,1),(1186,1509865200,2),(1186,1520755200,1),(1186,1541314800,2),(1186,1552204800,1),(1186,1572764400,2),(1186,1583654400,1),(1186,1604214000,2),(1186,1615708800,1),(1186,1636268400,2),(1186,1647158400,1),(1186,1667718000,2),(1186,1678608000,1),(1186,1699167600,2),(1186,1710057600,1),(1186,1730617200,2),(1186,1741507200,1),(1186,1762066800,2),(1186,1772956800,1),(1186,1793516400,2),(1186,1805011200,1),(1186,1825570800,2),(1186,1836460800,1),(1186,1857020400,2),(1186,1867910400,1),(1186,1888470000,2),(1186,1899360000,1),(1186,1919919600,2),(1186,1930809600,1),(1186,1951369200,2),(1186,1962864000,1),(1186,1983423600,2),(1186,1994313600,1),(1186,2014873200,2),(1186,2025763200,1),(1186,2046322800,2),(1186,2057212800,1),(1186,2077772400,2),(1186,2088662400,1),(1186,2109222000,2),(1186,2120112000,1),(1186,2140671600,2),(1187,-2147483648,1),(1187,-1946918424,2),(1188,-2147483648,2),(1188,-1633280400,1),(1188,-1615140000,2),(1188,-1601830800,1),(1188,-1583690400,2),(1188,-1570381200,1),(1188,-1551636000,2),(1188,-1536512400,1),(1188,-1523210400,2),(1188,-1504458000,1),(1188,-1491760800,2),(1188,-1473008400,1),(1188,-1459706400,2),(1188,-1441558800,1),(1188,-1428256800,2),(1188,-1410109200,1),(1188,-1396807200,2),(1188,-1378659600,1),(1188,-1365357600,2),(1188,-1347210000,1),(1188,-1333908000,2),(1188,-1315155600,1),(1188,-1301853600,2),(1188,-1283706000,1),(1188,-1270404000,2),(1188,-1252256400,1),(1188,-1238954400,2),(1188,-1220806800,1),(1188,-1207504800,2),(1188,-1189357200,1),(1188,-1176055200,2),(1188,-1157302800,1),(1188,-1144605600,2),(1188,-1125853200,1),(1188,-1112551200,2),(1188,-1094403600,1),(1188,-1081101600,2),(1188,-1062954000,1),(1188,-1049652000,2),(1188,-1031504400,1),(1188,-1018202400,2),(1188,-1000054800,1),(1188,-986752800,2),(1188,-968000400,1),(1188,-955303200,2),(1188,-936550800,1),(1188,-923248800,2),(1188,-905101200,1),(1188,-891799200,2),(1188,-880218000,3),(1188,-769395600,4),(1188,-765396000,2),(1188,-747248400,1),(1188,-733946400,2),(1188,-715798800,1),(1188,-702496800,2),(1188,-684349200,1),(1188,-671047200,2),(1188,-652899600,1),(1188,-639597600,2),(1188,-620845200,1),(1188,-608148000,2),(1188,-589395600,1),(1188,-576093600,2),(1188,-557946000,1),(1188,-544644000,2),(1188,-526496400,1),(1188,-513194400,2),(1188,-495046800,1),(1188,-481744800,2),(1188,-463597200,1),(1188,-447271200,2),(1188,-431542800,1),(1188,-415821600,2),(1188,-400093200,1),(1188,-384372000,2),(1188,-368643600,1),(1188,-352922400,2),(1188,-337194000,1),(1188,-321472800,2),(1188,-305744400,1),(1188,-289418400,2),(1188,-273690000,1),(1188,-257968800,2),(1188,-242240400,1),(1188,-226519200,2),(1188,-210790800,1),(1188,-195069600,2),(1188,-179341200,1),(1188,-163620000,2),(1188,-147891600,1),(1188,-131565600,2),(1188,-116442000,1),(1188,-100116000,2),(1188,-84387600,1),(1188,-68666400,2),(1188,-52938000,1),(1188,-37216800,2),(1188,-21488400,1),(1188,-5767200,2),(1188,9961200,1),(1188,25682400,2),(1188,41410800,1),(1188,57736800,2),(1188,73465200,1),(1188,89186400,2),(1188,104914800,1),(1188,120636000,2),(1188,126687600,1),(1188,152085600,2),(1188,162370800,1),(1188,183535200,2),(1188,199263600,1),(1188,215589600,2),(1188,230713200,1),(1188,247039200,2),(1188,262767600,1),(1188,278488800,2),(1188,294217200,1),(1188,309938400,2),(1188,325666800,1),(1188,341388000,2),(1188,357116400,1),(1188,372837600,2),(1188,388566000,1),(1188,404892000,2),(1188,420015600,1),(1188,436341600,2),(1188,452070000,1),(1188,467791200,2),(1188,483519600,1),(1188,499240800,2),(1188,514969200,1),(1188,530690400,2),(1188,544604400,1),(1188,562140000,2),(1188,576054000,1),(1188,594194400,2),(1188,607503600,1),(1188,625644000,2),(1188,638953200,1),(1188,657093600,2),(1188,671007600,1),(1188,688543200,2),(1188,702457200,1),(1188,719992800,2),(1188,733906800,1),(1188,752047200,2),(1188,765356400,1),(1188,783496800,2),(1188,796806000,1),(1188,814946400,2),(1188,828860400,1),(1188,846396000,2),(1188,860310000,1),(1188,877845600,2),(1188,891759600,1),(1188,909295200,2),(1188,923209200,1),(1188,941349600,2),(1188,954658800,1),(1188,972799200,2),(1188,986108400,1),(1188,1004248800,2),(1188,1018162800,1),(1188,1035698400,2),(1188,1049612400,1),(1188,1067148000,2),(1188,1081062000,1),(1188,1099202400,2),(1188,1112511600,1),(1188,1130652000,2),(1188,1143961200,1),(1188,1162101600,2),(1188,1173596400,1),(1188,1194156000,2),(1188,1205046000,1),(1188,1225605600,2),(1188,1236495600,1),(1188,1257055200,2),(1188,1268550000,1),(1188,1289109600,2),(1188,1299999600,1),(1188,1320559200,2),(1188,1331449200,1),(1188,1352008800,2),(1188,1362898800,1),(1188,1383458400,2),(1188,1394348400,1),(1188,1414908000,2),(1188,1425798000,1),(1188,1446357600,2),(1188,1457852400,1),(1188,1478412000,2),(1188,1489302000,1),(1188,1509861600,2),(1188,1520751600,1),(1188,1541311200,2),(1188,1552201200,1),(1188,1572760800,2),(1188,1583650800,1),(1188,1604210400,2),(1188,1615705200,1),(1188,1636264800,2),(1188,1647154800,1),(1188,1667714400,2),(1188,1678604400,1),(1188,1699164000,2),(1188,1710054000,1),(1188,1730613600,2),(1188,1741503600,1),(1188,1762063200,2),(1188,1772953200,1),(1188,1793512800,2),(1188,1805007600,1),(1188,1825567200,2),(1188,1836457200,1),(1188,1857016800,2),(1188,1867906800,1),(1188,1888466400,2),(1188,1899356400,1),(1188,1919916000,2),(1188,1930806000,1),(1188,1951365600,2),(1188,1962860400,1),(1188,1983420000,2),(1188,1994310000,1),(1188,2014869600,2),(1188,2025759600,1),(1188,2046319200,2),(1188,2057209200,1),(1188,2077768800,2),(1188,2088658800,1),(1188,2109218400,2),(1188,2120108400,1),(1188,2140668000,2),(1189,-2147483648,1),(1189,-1157283000,2),(1189,-1155436200,1),(1189,-880198200,3),(1189,-769395600,4),(1189,-765376200,1),(1189,-712150200,5),(1190,-2147483648,2),(1190,-1633273200,1),(1190,-1615132800,2),(1190,-1601823600,1),(1190,-1583683200,2),(1190,-880210800,3),(1190,-820519140,2),(1190,-812653140,3),(1190,-796845540,2),(1190,-84380400,1),(1190,-68659200,2),(1191,-2147483648,2),(1191,-1633273200,1),(1191,-1615132800,2),(1191,-1601823600,1),(1191,-1583683200,2),(1191,-1570374000,1),(1191,-1551628800,2),(1191,-1538924400,1),(1191,-1534089600,2),(1191,-880210800,3),(1191,-769395600,4),(1191,-765388800,2),(1191,-147884400,1),(1191,-131558400,2),(1191,-116434800,1),(1191,-100108800,2),(1191,-84380400,1),(1191,-68659200,2),(1191,-52930800,1),(1191,-37209600,2),(1191,-21481200,1),(1191,-5760000,2),(1191,9968400,1),(1191,25689600,2),(1191,41418000,1),(1191,57744000,2),(1191,73472400,1),(1191,89193600,2),(1191,104922000,1),(1191,120643200,2),(1191,126694800,1),(1191,152092800,2),(1191,162378000,1),(1191,183542400,2),(1191,199270800,1),(1191,215596800,2),(1191,230720400,1),(1191,247046400,2),(1191,262774800,1),(1191,278496000,2),(1191,294224400,1),(1191,309945600,2),(1191,325674000,1),(1191,341395200,2),(1191,357123600,1),(1191,372844800,2),(1191,388573200,1),(1191,404899200,2),(1191,420022800,1),(1191,436348800,2),(1191,452077200,1),(1191,467798400,2),(1191,483526800,1),(1191,499248000,2),(1191,514976400,1),(1191,530697600,2),(1191,544611600,1),(1191,562147200,2),(1191,576061200,1),(1191,594201600,2),(1191,607510800,1),(1191,625651200,2),(1191,638960400,1),(1191,657100800,2),(1191,671014800,1),(1191,688550400,2),(1191,702464400,1),(1191,720000000,2),(1191,733914000,1),(1191,752054400,2),(1191,765363600,1),(1191,783504000,2),(1191,796813200,1),(1191,814953600,2),(1191,828867600,1),(1191,846403200,2),(1191,860317200,1),(1191,877852800,2),(1191,891766800,1),(1191,909302400,2),(1191,923216400,1),(1191,941356800,2),(1191,954666000,1),(1191,972806400,2),(1191,986115600,1),(1191,1004256000,2),(1191,1018170000,1),(1191,1035705600,2),(1191,1049619600,1),(1191,1067155200,2),(1191,1081069200,1),(1191,1099209600,2),(1191,1112518800,1),(1191,1130659200,2),(1191,1143968400,1),(1191,1162108800,2),(1191,1173603600,1),(1191,1194163200,2),(1191,1205053200,1),(1191,1225612800,2),(1191,1236502800,1),(1191,1257062400,2),(1191,1268557200,1),(1191,1289116800,2),(1191,1300006800,1),(1191,1320566400,2),(1191,1331456400,1),(1191,1352016000,2),(1191,1362906000,1),(1191,1383465600,2),(1191,1394355600,1),(1191,1414915200,2),(1191,1425805200,1),(1191,1446364800,2),(1191,1457859600,1),(1191,1478419200,2),(1191,1489309200,1),(1191,1509868800,2),(1191,1520758800,1),(1191,1541318400,2),(1191,1552208400,1),(1191,1572768000,2),(1191,1583658000,1),(1191,1604217600,2),(1191,1615712400,1),(1191,1636272000,2),(1191,1647162000,1),(1191,1667721600,2),(1191,1678611600,1),(1191,1699171200,2),(1191,1710061200,1),(1191,1730620800,2),(1191,1741510800,1),(1191,1762070400,2),(1191,1772960400,1),(1191,1793520000,2),(1191,1805014800,1),(1191,1825574400,2),(1191,1836464400,1),(1191,1857024000,2),(1191,1867914000,1),(1191,1888473600,2),(1191,1899363600,1),(1191,1919923200,2),(1191,1930813200,1),(1191,1951372800,2),(1191,1962867600,1),(1191,1983427200,2),(1191,1994317200,1),(1191,2014876800,2),(1191,2025766800,1),(1191,2046326400,2),(1191,2057216400,1),(1191,2077776000,2),(1191,2088666000,1),(1191,2109225600,2),(1191,2120115600,1),(1191,2140675200,2),(1192,-2147483648,1),(1192,893665800,2),(1193,-2147483648,2),(1193,-1633269600,1),(1193,-1615129200,2),(1193,-1601820000,1),(1193,-1583679600,2),(1193,-880207200,3),(1193,-769395600,4),(1193,-765385200,2),(1193,-687967140,1),(1193,-662655600,2),(1193,-620838000,1),(1193,-608137200,2),(1193,-589388400,1),(1193,-576082800,2),(1193,-557938800,1),(1193,-544633200,2),(1193,-526489200,1),(1193,-513183600,2),(1193,-495039600,1),(1193,-481734000,2),(1193,-463590000,1),(1193,-450284400,2),(1193,-431535600,1),(1193,-418230000,2),(1193,-400086000,1),(1193,-386780400,2),(1193,-368636400,1),(1193,-355330800,2),(1193,-337186800,1),(1193,-323881200,2),(1193,-305737200,1),(1193,-292431600,2),(1193,-273682800,1),(1193,-260982000,2),(1193,-242233200,1),(1193,-226508400,2),(1193,-210783600,1),(1193,-195058800,2),(1193,-179334000,1),(1193,-163609200,2),(1193,-147884400,1),(1193,-131554800,2),(1193,-116434800,1),(1193,-100105200,2),(1193,-84376800,1),(1193,-68655600,2),(1193,-52927200,1),(1193,-37206000,2),(1193,-21477600,1),(1193,-5756400,2),(1193,9972000,1),(1193,25693200,2),(1193,41421600,1),(1193,57747600,2),(1193,73476000,1),(1193,89197200,2),(1193,104925600,1),(1193,120646800,2),(1193,126698400,1),(1193,152096400,2),(1193,162381600,1),(1193,183546000,2),(1193,199274400,1),(1193,215600400,2),(1193,230724000,1),(1193,247050000,2),(1193,262778400,1),(1193,278499600,2),(1193,294228000,1),(1193,309949200,2),(1193,325677600,1),(1193,341398800,2),(1193,357127200,1),(1193,372848400,2),(1193,388576800,1),(1193,404902800,2),(1193,420026400,1),(1193,436352400,2),(1193,452080800,1),(1193,467802000,2),(1193,483530400,1),(1193,499251600,2),(1193,514980000,1),(1193,530701200,2),(1193,544615200,1),(1193,562150800,2),(1193,576064800,1),(1193,594205200,2),(1193,607514400,1),(1193,625654800,2),(1193,638964000,1),(1193,657104400,2),(1193,671018400,1),(1193,688554000,2),(1193,702468000,1),(1193,720003600,2),(1193,733917600,1),(1193,752058000,2),(1193,765367200,1),(1193,783507600,2),(1193,796816800,1),(1193,814957200,2),(1193,828871200,1),(1193,846406800,2),(1193,860320800,1),(1193,877856400,2),(1193,891770400,1),(1193,909306000,2),(1193,923220000,1),(1193,941360400,2),(1193,954669600,1),(1193,972810000,2),(1193,986119200,1),(1193,1004259600,2),(1193,1018173600,1),(1193,1035709200,2),(1193,1049623200,1),(1193,1067158800,2),(1193,1081072800,1),(1193,1099213200,2),(1193,1112522400,1),(1193,1130662800,2),(1193,1143972000,1),(1193,1162112400,2),(1193,1173607200,1),(1193,1194166800,2),(1193,1205056800,1),(1193,1225616400,2),(1193,1236506400,1),(1193,1257066000,2),(1193,1268560800,1),(1193,1289120400,2),(1193,1300010400,1),(1193,1320570000,2),(1193,1331460000,1),(1193,1352019600,2),(1193,1362909600,1),(1193,1383469200,2),(1193,1394359200,1),(1193,1414918800,2),(1193,1425808800,1),(1193,1446368400,2),(1193,1457863200,1),(1193,1478422800,2),(1193,1489312800,1),(1193,1509872400,2),(1193,1520762400,1),(1193,1541322000,2),(1193,1552212000,1),(1193,1572771600,2),(1193,1583661600,1),(1193,1604221200,2),(1193,1615716000,1),(1193,1636275600,2),(1193,1647165600,1),(1193,1667725200,2),(1193,1678615200,1),(1193,1699174800,2),(1193,1710064800,1),(1193,1730624400,2),(1193,1741514400,1),(1193,1762074000,2),(1193,1772964000,1),(1193,1793523600,2),(1193,1805018400,1),(1193,1825578000,2),(1193,1836468000,1),(1193,1857027600,2),(1193,1867917600,1),(1193,1888477200,2),(1193,1899367200,1),(1193,1919926800,2),(1193,1930816800,1),(1193,1951376400,2),(1193,1962871200,1),(1193,1983430800,2),(1193,1994320800,1),(1193,2014880400,2),(1193,2025770400,1),(1193,2046330000,2),(1193,2057220000,1),(1193,2077779600,2),(1193,2088669600,1),(1193,2109229200,2),(1193,2120119200,1),(1193,2140678800,2),(1194,-2147483648,0),(1194,-1806678012,1),(1195,-2147483648,1),(1195,-880200000,2),(1195,-769395600,3),(1195,-765378000,1),(1195,-86882400,4),(1195,-21470400,5),(1195,-5749200,4),(1195,9979200,5),(1195,25700400,4),(1195,41428800,5),(1195,57754800,4),(1195,73483200,5),(1195,89204400,4),(1195,104932800,5),(1195,120654000,4),(1195,126705600,5),(1195,152103600,4),(1195,162388800,5),(1195,183553200,4),(1195,199281600,5),(1195,215607600,4),(1195,230731200,5),(1195,247057200,4),(1195,262785600,5),(1195,278506800,4),(1195,294235200,5),(1195,309956400,4),(1195,325684800,5),(1195,341406000,4),(1195,357134400,5),(1195,372855600,4),(1195,388584000,5),(1195,404910000,4),(1195,420033600,5),(1195,436359600,6),(1195,439030800,8),(1195,452084400,7),(1195,467805600,8),(1195,483534000,7),(1195,499255200,8),(1195,514983600,7),(1195,530704800,8),(1195,544618800,7),(1195,562154400,8),(1195,576068400,7),(1195,594208800,8),(1195,607518000,7),(1195,625658400,8),(1195,638967600,7),(1195,657108000,8),(1195,671022000,7),(1195,688557600,8),(1195,702471600,7),(1195,720007200,8),(1195,733921200,7),(1195,752061600,8),(1195,765370800,7),(1195,783511200,8),(1195,796820400,7),(1195,814960800,8),(1195,828874800,7),(1195,846410400,8),(1195,860324400,7),(1195,877860000,8),(1195,891774000,7),(1195,909309600,8),(1195,923223600,7),(1195,941364000,8),(1195,954673200,7),(1195,972813600,8),(1195,986122800,7),(1195,1004263200,8),(1195,1018177200,7),(1195,1035712800,8),(1195,1049626800,7),(1195,1067162400,8),(1195,1081076400,7),(1195,1099216800,8),(1195,1112526000,7),(1195,1130666400,8),(1195,1143975600,7),(1195,1162116000,8),(1195,1173610800,7),(1195,1194170400,8),(1195,1205060400,7),(1195,1225620000,8),(1195,1236510000,7),(1195,1257069600,8),(1195,1268564400,7),(1195,1289124000,8),(1195,1300014000,7),(1195,1320573600,8),(1195,1331463600,7),(1195,1352023200,8),(1195,1362913200,7),(1195,1383472800,8),(1195,1394362800,7),(1195,1414922400,8),(1195,1425812400,7),(1195,1446372000,8),(1195,1457866800,7),(1195,1478426400,8),(1195,1489316400,7),(1195,1509876000,8),(1195,1520766000,7),(1195,1541325600,8),(1195,1552215600,7),(1195,1572775200,8),(1195,1583665200,7),(1195,1604224800,8),(1195,1615719600,7),(1195,1636279200,8),(1195,1647169200,7),(1195,1667728800,8),(1195,1678618800,7),(1195,1699178400,8),(1195,1710068400,7),(1195,1730628000,8),(1195,1741518000,7),(1195,1762077600,8),(1195,1772967600,7),(1195,1793527200,8),(1195,1805022000,7),(1195,1825581600,8),(1195,1836471600,7),(1195,1857031200,8),(1195,1867921200,7),(1195,1888480800,8),(1195,1899370800,7),(1195,1919930400,8),(1195,1930820400,7),(1195,1951380000,8),(1195,1962874800,7),(1195,1983434400,8),(1195,1994324400,7),(1195,2014884000,8),(1195,2025774000,7),(1195,2046333600,8),(1195,2057223600,7),(1195,2077783200,8),(1195,2088673200,7),(1195,2109232800,8),(1195,2120122800,7),(1195,2140682400,8),(1196,-2147483648,1),(1196,-1869875816,3),(1196,-1693706400,2),(1196,-1680490800,3),(1196,-1570413600,2),(1196,-1552186800,3),(1196,-1538359200,2),(1196,-1522551600,3),(1196,-1507514400,2),(1196,-1490583600,3),(1196,-1440208800,2),(1196,-1428030000,3),(1196,-1409709600,2),(1196,-1396494000,3),(1196,-931053600,2),(1196,-922676400,3),(1196,-917834400,2),(1196,-892436400,3),(1196,-875844000,2),(1196,-764737200,3),(1196,-744343200,2),(1196,-733806000,3),(1196,-716436000,2),(1196,-701924400,3),(1196,-684986400,2),(1196,-670474800,3),(1196,-654141600,2),(1196,-639025200,3),(1196,-622087200,2),(1196,-606970800,3),(1196,-590032800,2),(1196,-575521200,3),(1196,-235620000,2),(1196,-194842800,3),(1196,-177732000,2),(1196,-165726000,3),(1196,107910000,2),(1196,121215600,3),(1196,133920000,2),(1196,152665200,3),(1196,164678400,2),(1196,184114800,3),(1196,196214400,2),(1196,215564400,3),(1196,228873600,2),(1196,245804400,3),(1196,260323200,2),(1196,267915600,4),(1196,428454000,5),(1196,433893600,4),(1196,468111600,3),(1196,482799600,6),(1196,496710000,7),(1196,512521200,6),(1196,528246000,7),(1196,543970800,6),(1196,559695600,7),(1196,575420400,6),(1196,591145200,7),(1196,606870000,6),(1196,622594800,7),(1196,638319600,6),(1196,654649200,7),(1196,670374000,6),(1196,686098800,7),(1196,701823600,6),(1196,717548400,7),(1196,733273200,6),(1196,748998000,7),(1196,764118000,6),(1196,780447600,7),(1196,796172400,6),(1196,811897200,7),(1196,828226800,6),(1196,846370800,7),(1196,859676400,6),(1196,877820400,7),(1196,891126000,6),(1196,909270000,7),(1196,922575600,6),(1196,941324400,7),(1196,954025200,6),(1196,972774000,7),(1196,985474800,6),(1196,1004223600,7),(1196,1017529200,6),(1196,1035673200,7),(1196,1048978800,6),(1196,1067122800,7),(1196,1080428400,6),(1196,1099177200,7),(1196,1111878000,6),(1196,1130626800,7),(1196,1143327600,6),(1196,1162076400,7),(1196,1167602400,3),(1196,1174784400,8),(1196,1193533200,9),(1196,1206838800,8),(1196,1224982800,9),(1196,1238288400,8),(1196,1256432400,9),(1196,1269738000,8),(1196,1288486800,9),(1196,1301274000,8),(1196,1319936400,9),(1196,1332637200,8),(1196,1351386000,9),(1196,1364691600,8),(1196,1382835600,9),(1196,1396227600,8),(1196,1414285200,9),(1196,1427590800,8),(1196,1446944400,9),(1196,1459040400,8),(1196,1473195600,4),(1198,-2147483648,1),(1198,-880200000,2),(1198,-769395600,3),(1198,-765378000,1),(1198,-86882400,4),(1198,-21470400,5),(1198,-5749200,4),(1198,9979200,5),(1198,25700400,4),(1198,41428800,5),(1198,57754800,4),(1198,73483200,5),(1198,89204400,4),(1198,104932800,5),(1198,120654000,4),(1198,126705600,5),(1198,152103600,4),(1198,162388800,5),(1198,183553200,4),(1198,199281600,5),(1198,215607600,4),(1198,230731200,5),(1198,247057200,4),(1198,262785600,5),(1198,278506800,4),(1198,294235200,5),(1198,309956400,4),(1198,325684800,5),(1198,341406000,4),(1198,357134400,5),(1198,372855600,4),(1198,388584000,5),(1198,404910000,4),(1198,420033600,5),(1198,436359600,6),(1198,439030800,8),(1198,452084400,7),(1198,467805600,8),(1198,483534000,7),(1198,499255200,8),(1198,514983600,7),(1198,530704800,8),(1198,544618800,7),(1198,562154400,8),(1198,576068400,7),(1198,594208800,8),(1198,607518000,7),(1198,625658400,8),(1198,638967600,7),(1198,657108000,8),(1198,671022000,7),(1198,688557600,8),(1198,702471600,7),(1198,720007200,8),(1198,733921200,7),(1198,752061600,8),(1198,765370800,7),(1198,783511200,8),(1198,796820400,7),(1198,814960800,8),(1198,828874800,7),(1198,846410400,8),(1198,860324400,7),(1198,877860000,8),(1198,891774000,7),(1198,909309600,8),(1198,923223600,7),(1198,941364000,8),(1198,954673200,7),(1198,972813600,8),(1198,986122800,7),(1198,1004263200,8),(1198,1018177200,7),(1198,1035712800,8),(1198,1049626800,7),(1198,1067162400,8),(1198,1081076400,7),(1198,1099216800,8),(1198,1112526000,7),(1198,1130666400,8),(1198,1143975600,7),(1198,1162116000,8),(1198,1173610800,7),(1198,1194170400,8),(1198,1205060400,7),(1198,1225620000,8),(1198,1236510000,7),(1198,1257069600,8),(1198,1268564400,7),(1198,1289124000,8),(1198,1300014000,7),(1198,1320573600,8),(1198,1331463600,7),(1198,1352023200,8),(1198,1362913200,7),(1198,1383472800,8),(1198,1394362800,7),(1198,1414922400,8),(1198,1425812400,7),(1198,1446372000,8),(1198,1457866800,7),(1198,1478426400,8),(1198,1489316400,7),(1198,1509876000,8),(1198,1520766000,7),(1198,1541325600,8),(1198,1552215600,7),(1198,1572775200,8),(1198,1583665200,7),(1198,1604224800,8),(1198,1615719600,7),(1198,1636279200,8),(1198,1647169200,7),(1198,1667728800,8),(1198,1678618800,7),(1198,1699178400,8),(1198,1710068400,7),(1198,1730628000,8),(1198,1741518000,7),(1198,1762077600,8),(1198,1772967600,7),(1198,1793527200,8),(1198,1805022000,7),(1198,1825581600,8),(1198,1836471600,7),(1198,1857031200,8),(1198,1867921200,7),(1198,1888480800,8),(1198,1899370800,7),(1198,1919930400,8),(1198,1930820400,7),(1198,1951380000,8),(1198,1962874800,7),(1198,1983434400,8),(1198,1994324400,7),(1198,2014884000,8),(1198,2025774000,7),(1198,2046333600,8),(1198,2057223600,7),(1198,2077783200,8),(1198,2088673200,7),(1198,2109232800,8),(1198,2120122800,7),(1198,2140682400,8),(1199,-2147483648,1),(1199,-880196400,2),(1199,-769395600,3),(1199,-765374400,1),(1199,-86878800,4),(1199,-21466800,5),(1199,-5745600,4),(1199,9982800,5),(1199,25704000,4),(1199,41432400,5),(1199,57758400,4),(1199,73486800,5),(1199,89208000,4),(1199,104936400,5),(1199,120657600,4),(1199,126709200,5),(1199,152107200,4),(1199,162392400,5),(1199,183556800,4),(1199,199285200,5),(1199,215611200,4),(1199,230734800,5),(1199,247060800,4),(1199,262789200,5),(1199,278510400,4),(1199,294238800,5),(1199,309960000,4),(1199,325688400,5),(1199,341409600,4),(1199,357138000,5),(1199,372859200,4),(1199,388587600,5),(1199,404913600,4),(1199,420037200,5),(1199,436363200,6),(1199,439034400,8),(1199,452088000,7),(1199,467809200,8),(1199,483537600,7),(1199,499258800,8),(1199,514987200,7),(1199,530708400,8),(1199,544622400,7),(1199,562158000,8),(1199,576072000,7),(1199,594212400,8),(1199,607521600,7),(1199,625662000,8),(1199,638971200,7),(1199,657111600,8),(1199,671025600,7),(1199,688561200,8),(1199,702475200,7),(1199,720010800,8),(1199,733924800,7),(1199,752065200,8),(1199,765374400,7),(1199,783514800,8),(1199,796824000,7),(1199,814964400,8),(1199,828878400,7),(1199,846414000,8),(1199,860328000,7),(1199,877863600,8),(1199,891777600,7),(1199,909313200,8),(1199,923227200,7),(1199,941367600,8),(1199,954676800,7),(1199,972817200,8),(1199,986126400,7),(1199,1004266800,8),(1199,1018180800,7),(1199,1035716400,8),(1199,1049630400,7),(1199,1067166000,8),(1199,1081080000,7),(1199,1099220400,8),(1199,1112529600,7),(1199,1130670000,8),(1199,1143979200,7),(1199,1162119600,8),(1199,1173614400,7),(1199,1194174000,8),(1199,1205064000,7),(1199,1225623600,8),(1199,1236513600,7),(1199,1257073200,8),(1199,1268568000,7),(1199,1289127600,8),(1199,1300017600,7),(1199,1320577200,8),(1199,1331467200,7),(1199,1352026800,8),(1199,1362916800,7),(1199,1383476400,8),(1199,1394366400,7),(1199,1414926000,8),(1199,1425816000,7),(1199,1446375600,8),(1199,1457870400,7),(1199,1478430000,8),(1199,1489320000,7),(1199,1509879600,8),(1199,1520769600,7),(1199,1541329200,8),(1199,1552219200,7),(1199,1572778800,8),(1199,1583668800,7),(1199,1604228400,8),(1199,1615723200,7),(1199,1636282800,8),(1199,1647172800,7),(1199,1667732400,8),(1199,1678622400,7),(1199,1699182000,8),(1199,1710072000,7),(1199,1730631600,8),(1199,1741521600,7),(1199,1762081200,8),(1199,1772971200,7),(1199,1793530800,8),(1199,1805025600,7),(1199,1825585200,8),(1199,1836475200,7),(1199,1857034800,8),(1199,1867924800,7),(1199,1888484400,8),(1199,1899374400,7),(1199,1919934000,8),(1199,1930824000,7),(1199,1951383600,8),(1199,1962878400,7),(1199,1983438000,8),(1199,1994328000,7),(1199,2014887600,8),(1199,2025777600,7),(1199,2046337200,8),(1199,2057227200,7),(1199,2077786800,8),(1199,2088676800,7),(1199,2109236400,8),(1199,2120126400,7),(1199,2140686000,8),(1200,-2147483648,2),(1200,-1633273200,1),(1200,-1615132800,2),(1200,-1601823600,1),(1200,-1583683200,2),(1200,-880210800,3),(1200,-820519140,2),(1200,-812653140,3),(1200,-796845540,2),(1200,-84380400,1),(1200,-68659200,2),(1201,-2147483648,2),(1201,-1633276800,1),(1201,-1615136400,2),(1201,-1601827200,1),(1201,-1583686800,2),(1201,-1563724800,1),(1201,-1551632400,2),(1201,-1538928000,1),(1201,-1520182800,2),(1201,-1504454400,1),(1201,-1491757200,2),(1201,-1473004800,1),(1201,-1459702800,2),(1201,-1441555200,1),(1201,-1428253200,2),(1201,-1410105600,1),(1201,-1396803600,2),(1201,-1378656000,1),(1201,-1365354000,2),(1201,-1347206400,1),(1201,-1333904400,2),(1201,-1315152000,1),(1201,-1301850000,2),(1201,-1283702400,1),(1201,-1270400400,2),(1201,-1252252800,1),(1201,-1238950800,2),(1201,-1220803200,1),(1201,-1207501200,2),(1201,-1189353600,1),(1201,-1176051600,2),(1201,-1157299200,1),(1201,-1144602000,2),(1201,-1125849600,1),(1201,-1112547600,2),(1201,-1094400000,1),(1201,-1081098000,2),(1201,-1067788800,3),(1201,-1045414800,2),(1201,-1031500800,1),(1201,-1018198800,2),(1201,-1000051200,1),(1201,-986749200,2),(1201,-967996800,1),(1201,-955299600,2),(1201,-936547200,1),(1201,-923245200,2),(1201,-905097600,1),(1201,-891795600,2),(1201,-880214400,4),(1201,-769395600,5),(1201,-765392400,2),(1201,-747244800,1),(1201,-733942800,2),(1201,-715795200,1),(1201,-702493200,2),(1201,-684345600,1),(1201,-671043600,2),(1201,-652896000,1),(1201,-639594000,2),(1201,-620841600,1),(1201,-608144400,2),(1201,-589392000,1),(1201,-576090000,2),(1201,-557942400,1),(1201,-544640400,2),(1201,-526492800,1),(1201,-513190800,2),(1201,-495043200,1),(1201,-481741200,2),(1201,-463593600,1),(1201,-447267600,2),(1201,-431539200,1),(1201,-415818000,2),(1201,-400089600,1),(1201,-384368400,2),(1201,-368640000,1),(1201,-352918800,2),(1201,-337190400,1),(1201,-321469200,2),(1201,-305740800,1),(1201,-289414800,2),(1201,-273686400,1),(1201,-257965200,2),(1201,-242236800,1),(1201,-226515600,2),(1201,-210787200,1),(1201,-195066000,2),(1201,-179337600,1),(1201,-163616400,2),(1201,-147888000,1),(1201,-131562000,2),(1201,-116438400,1),(1201,-100112400,2),(1201,-84384000,1),(1201,-68662800,2),(1201,-52934400,1),(1201,-37213200,2),(1201,-21484800,1),(1201,-5763600,2),(1201,9964800,1),(1201,25686000,2),(1201,41414400,1),(1201,57740400,2),(1201,73468800,1),(1201,89190000,2),(1201,104918400,1),(1201,120639600,2),(1201,126691200,1),(1201,152089200,2),(1201,162374400,1),(1201,183538800,2),(1201,199267200,1),(1201,215593200,2),(1201,230716800,1),(1201,247042800,2),(1201,262771200,1),(1201,278492400,2),(1201,294220800,1),(1201,309942000,2),(1201,325670400,1),(1201,341391600,2),(1201,357120000,1),(1201,372841200,2),(1201,388569600,1),(1201,404895600,2),(1201,420019200,1),(1201,436345200,2),(1201,452073600,1),(1201,467794800,2),(1201,483523200,1),(1201,499244400,2),(1201,514972800,1),(1201,530694000,2),(1201,544608000,1),(1201,562143600,2),(1201,576057600,1),(1201,594198000,2),(1201,607507200,1),(1201,625647600,2),(1201,638956800,1),(1201,657097200,2),(1201,671011200,1),(1201,688546800,2),(1201,702460800,1),(1201,719996400,2),(1201,733910400,1),(1201,752050800,2),(1201,765360000,1),(1201,783500400,2),(1201,796809600,1),(1201,814950000,2),(1201,828864000,1),(1201,846399600,2),(1201,860313600,1),(1201,877849200,2),(1201,891763200,1),(1201,909298800,2),(1201,923212800,1),(1201,941353200,2),(1201,954662400,1),(1201,972802800,2),(1201,986112000,1),(1201,1004252400,2),(1201,1018166400,1),(1201,1035702000,2),(1201,1049616000,1),(1201,1067151600,2),(1201,1081065600,1),(1201,1099206000,2),(1201,1112515200,1),(1201,1130655600,2),(1201,1143964800,1),(1201,1162105200,2),(1201,1173600000,1),(1201,1194159600,2),(1201,1205049600,1),(1201,1225609200,2),(1201,1236499200,1),(1201,1257058800,2),(1201,1268553600,1),(1201,1289113200,2),(1201,1300003200,1),(1201,1320562800,2),(1201,1331452800,1),(1201,1352012400,2),(1201,1362902400,1),(1201,1383462000,2),(1201,1394352000,1),(1201,1414911600,2),(1201,1425801600,1),(1201,1446361200,2),(1201,1457856000,1),(1201,1478415600,2),(1201,1489305600,1),(1201,1509865200,2),(1201,1520755200,1),(1201,1541314800,2),(1201,1552204800,1),(1201,1572764400,2),(1201,1583654400,1),(1201,1604214000,2),(1201,1615708800,1),(1201,1636268400,2),(1201,1647158400,1),(1201,1667718000,2),(1201,1678608000,1),(1201,1699167600,2),(1201,1710057600,1),(1201,1730617200,2),(1201,1741507200,1),(1201,1762066800,2),(1201,1772956800,1),(1201,1793516400,2),(1201,1805011200,1),(1201,1825570800,2),(1201,1836460800,1),(1201,1857020400,2),(1201,1867910400,1),(1201,1888470000,2),(1201,1899360000,1),(1201,1919919600,2),(1201,1930809600,1),(1201,1951369200,2),(1201,1962864000,1),(1201,1983423600,2),(1201,1994313600,1),(1201,2014873200,2),(1201,2025763200,1),(1201,2046322800,2),(1201,2057212800,1),(1201,2077772400,2),(1201,2088662400,1),(1201,2109222000,2),(1201,2120112000,1),(1201,2140671600,2),(1202,-2147483648,2),(1202,-1633276800,1),(1202,-1615136400,2),(1202,-1601827200,1),(1202,-1583686800,2),(1202,-900259200,1),(1202,-891795600,2),(1202,-880214400,3),(1202,-769395600,4),(1202,-765392400,2),(1202,-747244800,1),(1202,-733942800,2),(1202,-715795200,1),(1202,-702493200,2),(1202,-684345600,1),(1202,-671043600,2),(1202,-652896000,1),(1202,-639594000,2),(1202,-620841600,1),(1202,-608144400,2),(1202,-589392000,1),(1202,-576090000,2),(1202,-557942400,1),(1202,-544640400,2),(1202,-526492800,1),(1202,-513190800,2),(1202,-495043200,1),(1202,-481741200,2),(1202,-463593600,5),(1202,-386787600,2),(1202,-368640000,5),(1202,-21488400,6),(1202,-5767200,5),(1202,9961200,6),(1202,25682400,5),(1202,1143961200,6),(1202,1162101600,5),(1202,1173596400,6),(1202,1194156000,5),(1202,1205046000,6),(1202,1225605600,5),(1202,1236495600,6),(1202,1257055200,5),(1202,1268550000,6),(1202,1289109600,5),(1202,1299999600,6),(1202,1320559200,5),(1202,1331449200,6),(1202,1352008800,5),(1202,1362898800,6),(1202,1383458400,5),(1202,1394348400,6),(1202,1414908000,5),(1202,1425798000,6),(1202,1446357600,5),(1202,1457852400,6),(1202,1478412000,5),(1202,1489302000,6),(1202,1509861600,5),(1202,1520751600,6),(1202,1541311200,5),(1202,1552201200,6),(1202,1572760800,5),(1202,1583650800,6),(1202,1604210400,5),(1202,1615705200,6),(1202,1636264800,5),(1202,1647154800,6),(1202,1667714400,5),(1202,1678604400,6),(1202,1699164000,5),(1202,1710054000,6),(1202,1730613600,5),(1202,1741503600,6),(1202,1762063200,5),(1202,1772953200,6),(1202,1793512800,5),(1202,1805007600,6),(1202,1825567200,5),(1202,1836457200,6),(1202,1857016800,5),(1202,1867906800,6),(1202,1888466400,5),(1202,1899356400,6),(1202,1919916000,5),(1202,1930806000,6),(1202,1951365600,5),(1202,1962860400,6),(1202,1983420000,5),(1202,1994310000,6),(1202,2014869600,5),(1202,2025759600,6),(1202,2046319200,5),(1202,2057209200,6),(1202,2077768800,5),(1202,2088658800,6),(1202,2109218400,5),(1202,2120108400,6),(1202,2140668000,5),(1203,-2147483648,2),(1203,-1633280400,1),(1203,-1615140000,2),(1203,-1601830800,1),(1203,-1583690400,2),(1203,-1570381200,1),(1203,-1551636000,2),(1203,-1536512400,1),(1203,-1523210400,2),(1203,-1504458000,1),(1203,-1491760800,2),(1203,-1473008400,1),(1203,-1459706400,2),(1203,-1441558800,1),(1203,-1428256800,2),(1203,-1410109200,1),(1203,-1396807200,2),(1203,-1378659600,1),(1203,-1365357600,2),(1203,-1347210000,1),(1203,-1333908000,2),(1203,-1315155600,1),(1203,-1301853600,2),(1203,-1283706000,1),(1203,-1270404000,2),(1203,-1252256400,1),(1203,-1238954400,2),(1203,-1220806800,1),(1203,-1207504800,2),(1203,-1189357200,1),(1203,-1176055200,2),(1203,-1157302800,1),(1203,-1144605600,2),(1203,-1125853200,1),(1203,-1112551200,2),(1203,-1094403600,1),(1203,-1081101600,2),(1203,-1062954000,1),(1203,-1049652000,2),(1203,-1031504400,1),(1203,-1018202400,2),(1203,-1000054800,1),(1203,-986752800,2),(1203,-968000400,1),(1203,-955303200,2),(1203,-936550800,1),(1203,-923248800,2),(1203,-905101200,1),(1203,-891799200,2),(1203,-880218000,3),(1203,-769395600,4),(1203,-765396000,2),(1203,-747248400,1),(1203,-733946400,2),(1203,-715798800,1),(1203,-702496800,2),(1203,-684349200,1),(1203,-671047200,2),(1203,-652899600,1),(1203,-639597600,2),(1203,-620845200,1),(1203,-608148000,2),(1203,-589395600,1),(1203,-576093600,2),(1203,-557946000,1),(1203,-544644000,2),(1203,-526496400,1),(1203,-513194400,2),(1203,-495046800,1),(1203,-481744800,2),(1203,-463597200,1),(1203,-447271200,2),(1203,-431542800,1),(1203,-415821600,2),(1203,-400093200,1),(1203,-384372000,2),(1203,-368643600,1),(1203,-352922400,2),(1203,-337194000,1),(1203,-321472800,2),(1203,-305744400,1),(1203,-289418400,2),(1203,-273690000,1),(1203,-257968800,2),(1203,-242240400,1),(1203,-226519200,2),(1203,-210790800,1),(1203,-195069600,2),(1203,-179341200,1),(1203,-163620000,2),(1203,-147891600,1),(1203,-131565600,2),(1203,-116442000,1),(1203,-100116000,2),(1203,-84387600,1),(1203,-68666400,2),(1203,-52938000,1),(1203,-37216800,2),(1203,-21488400,1),(1203,-5767200,2),(1203,9961200,1),(1203,25682400,2),(1203,41410800,1),(1203,57736800,2),(1203,73465200,1),(1203,89186400,2),(1203,104914800,1),(1203,120636000,2),(1203,126687600,1),(1203,152085600,2),(1203,162370800,1),(1203,183535200,2),(1203,199263600,1),(1203,215589600,2),(1203,230713200,1),(1203,247039200,2),(1203,262767600,1),(1203,278488800,2),(1203,294217200,1),(1203,309938400,2),(1203,325666800,1),(1203,341388000,2),(1203,357116400,1),(1203,372837600,2),(1203,388566000,1),(1203,404892000,2),(1203,420015600,1),(1203,436341600,2),(1203,452070000,1),(1203,467791200,2),(1203,483519600,1),(1203,499240800,2),(1203,514969200,1),(1203,530690400,2),(1203,544604400,1),(1203,562140000,2),(1203,576054000,1),(1203,594194400,2),(1203,607503600,1),(1203,625644000,2),(1203,638953200,1),(1203,657093600,2),(1203,671007600,1),(1203,688543200,2),(1203,702457200,1),(1203,719992800,2),(1203,733906800,1),(1203,752047200,2),(1203,765356400,1),(1203,783496800,2),(1203,796806000,1),(1203,814946400,2),(1203,828860400,1),(1203,846396000,2),(1203,860310000,1),(1203,877845600,2),(1203,891759600,1),(1203,909295200,2),(1203,923209200,1),(1203,941349600,2),(1203,954658800,1),(1203,972799200,2),(1203,986108400,1),(1203,1004248800,2),(1203,1018162800,1),(1203,1035698400,2),(1203,1049612400,1),(1203,1067148000,2),(1203,1081062000,1),(1203,1099202400,2),(1203,1112511600,1),(1203,1130652000,2),(1203,1143961200,1),(1203,1162101600,2),(1203,1173596400,1),(1203,1194156000,2),(1203,1205046000,1),(1203,1225605600,2),(1203,1236495600,1),(1203,1257055200,2),(1203,1268550000,1),(1203,1289109600,2),(1203,1299999600,1),(1203,1320559200,2),(1203,1331449200,1),(1203,1352008800,2),(1203,1362898800,1),(1203,1383458400,2),(1203,1394348400,1),(1203,1414908000,2),(1203,1425798000,1),(1203,1446357600,2),(1203,1457852400,1),(1203,1478412000,2),(1203,1489302000,1),(1203,1509861600,2),(1203,1520751600,1),(1203,1541311200,2),(1203,1552201200,1),(1203,1572760800,2),(1203,1583650800,1),(1203,1604210400,2),(1203,1615705200,1),(1203,1636264800,2),(1203,1647154800,1),(1203,1667714400,2),(1203,1678604400,1),(1203,1699164000,2),(1203,1710054000,1),(1203,1730613600,2),(1203,1741503600,1),(1203,1762063200,2),(1203,1772953200,1),(1203,1793512800,2),(1203,1805007600,1),(1203,1825567200,2),(1203,1836457200,1),(1203,1857016800,2),(1203,1867906800,1),(1203,1888466400,2),(1203,1899356400,1),(1203,1919916000,2),(1203,1930806000,1),(1203,1951365600,2),(1203,1962860400,1),(1203,1983420000,2),(1203,1994310000,1),(1203,2014869600,2),(1203,2025759600,1),(1203,2046319200,2),(1203,2057209200,1),(1203,2077768800,2),(1203,2088658800,1),(1203,2109218400,2),(1203,2120108400,1),(1203,2140668000,2),(1204,-2147483648,1),(1204,-1157283000,2),(1204,-1155436200,1),(1204,-880198200,3),(1204,-769395600,4),(1204,-765376200,1),(1204,-712150200,5),(1205,-2147483648,2),(1205,-1633276800,1),(1205,-1615136400,2),(1205,-1601827200,1),(1205,-1583686800,2),(1205,-880214400,3),(1205,-769395600,4),(1205,-765392400,2),(1205,-715795200,1),(1205,-702493200,2),(1205,-684345600,1),(1205,-671043600,2),(1205,-652896000,1),(1205,-639594000,2),(1205,-620841600,1),(1205,-608144400,2),(1205,-589392000,1),(1205,-576090000,2),(1205,-557942400,1),(1205,-544640400,2),(1205,-526492800,1),(1205,-513190800,2),(1205,-495043200,1),(1205,-481741200,2),(1205,-463593600,1),(1205,-447267600,2),(1205,-431539200,1),(1205,-415818000,2),(1205,-400089600,1),(1205,-386787600,2),(1205,-368640000,1),(1205,-355338000,2),(1205,-337190400,1),(1205,-321469200,2),(1205,-305740800,1),(1205,-289414800,2),(1205,-273686400,1),(1205,-257965200,2),(1205,-242236800,5),(1205,-195066000,2),(1205,-84384000,1),(1205,-68662800,2),(1205,-52934400,1),(1205,-37213200,2),(1205,-21484800,1),(1205,-5763600,2),(1205,9964800,1),(1205,25686000,2),(1205,41414400,1),(1205,57740400,2),(1205,73468800,1),(1205,89190000,2),(1205,104918400,1),(1205,120639600,2),(1205,126691200,1),(1205,152089200,2),(1205,162374400,1),(1205,183538800,2),(1205,199267200,1),(1205,215593200,2),(1205,230716800,1),(1205,247042800,2),(1205,262771200,1),(1205,278492400,2),(1205,294220800,1),(1205,309942000,2),(1205,325670400,1),(1205,341391600,2),(1205,357120000,1),(1205,372841200,2),(1205,388569600,1),(1205,404895600,2),(1205,420019200,1),(1205,436345200,2),(1205,452073600,1),(1205,467794800,2),(1205,483523200,1),(1205,499244400,2),(1205,514972800,1),(1205,530694000,2),(1205,544608000,1),(1205,562143600,2),(1205,576057600,1),(1205,594198000,2),(1205,607507200,1),(1205,625647600,2),(1205,638956800,1),(1205,657097200,2),(1205,671011200,1),(1205,688546800,5),(1205,1143961200,1),(1205,1162105200,2),(1205,1173600000,1),(1205,1194159600,2),(1205,1205049600,1),(1205,1225609200,2),(1205,1236499200,1),(1205,1257058800,2),(1205,1268553600,1),(1205,1289113200,2),(1205,1300003200,1),(1205,1320562800,2),(1205,1331452800,1),(1205,1352012400,2),(1205,1362902400,1),(1205,1383462000,2),(1205,1394352000,1),(1205,1414911600,2),(1205,1425801600,1),(1205,1446361200,2),(1205,1457856000,1),(1205,1478415600,2),(1205,1489305600,1),(1205,1509865200,2),(1205,1520755200,1),(1205,1541314800,2),(1205,1552204800,1),(1205,1572764400,2),(1205,1583654400,1),(1205,1604214000,2),(1205,1615708800,1),(1205,1636268400,2),(1205,1647158400,1),(1205,1667718000,2),(1205,1678608000,1),(1205,1699167600,2),(1205,1710057600,1),(1205,1730617200,2),(1205,1741507200,1),(1205,1762066800,2),(1205,1772956800,1),(1205,1793516400,2),(1205,1805011200,1),(1205,1825570800,2),(1205,1836460800,1),(1205,1857020400,2),(1205,1867910400,1),(1205,1888470000,2),(1205,1899360000,1),(1205,1919919600,2),(1205,1930809600,1),(1205,1951369200,2),(1205,1962864000,1),(1205,1983423600,2),(1205,1994313600,1),(1205,2014873200,2),(1205,2025763200,1),(1205,2046322800,2),(1205,2057212800,1),(1205,2077772400,2),(1205,2088662400,1),(1205,2109222000,2),(1205,2120112000,1),(1205,2140671600,2),(1206,-2147483648,0),(1206,-2051202469,1),(1206,-1724083200,2),(1206,-880218000,3),(1206,-769395600,4),(1206,-765396000,2),(1206,-684349200,5),(1206,-671047200,2),(1206,-80506740,5),(1206,-68666400,2),(1206,-52938000,5),(1206,-37216800,2),(1206,104914800,5),(1206,120636000,2),(1206,126687600,5),(1206,152085600,2),(1206,167814000,5),(1206,183535200,2),(1206,199263600,5),(1206,215589600,2),(1206,230713200,5),(1206,247039200,2),(1206,262767600,5),(1206,278488800,2),(1206,294217200,5),(1206,309938400,2),(1206,325666800,5),(1206,341388000,2),(1206,357116400,5),(1206,372837600,2),(1206,388566000,5),(1206,404892000,2),(1206,420015600,5),(1206,436341600,2),(1206,452070000,5),(1206,467791200,2),(1206,483519600,5),(1206,499240800,2),(1206,514969200,5),(1206,530690400,2),(1206,544604400,5),(1206,562140000,2),(1206,576054000,5),(1206,594194400,2),(1206,607503600,5),(1206,625644000,2),(1206,638953200,5),(1206,657093600,2),(1206,671007600,5),(1206,688543200,2),(1206,702457200,5),(1206,719992800,2),(1206,733906800,5),(1206,752047200,2),(1206,765356400,5),(1206,783496800,2),(1206,796806000,5),(1206,814946400,2),(1206,828860400,5),(1206,846396000,2),(1206,860310000,5),(1206,877845600,2),(1206,891759600,5),(1206,909295200,2),(1206,923209200,5),(1206,941349600,2),(1206,954658800,5),(1206,972799200,2),(1206,986108400,5),(1206,1004248800,2),(1206,1018162800,5),(1206,1035698400,2),(1206,1049612400,5),(1206,1067148000,2),(1206,1081062000,5),(1206,1099202400,2),(1206,1112511600,5),(1206,1130652000,2),(1206,1143961200,5),(1206,1162101600,2),(1206,1173596400,5),(1206,1194156000,2),(1206,1205046000,5),(1206,1225605600,2),(1206,1236495600,5),(1206,1257055200,2),(1206,1268550000,5),(1206,1289109600,2),(1206,1299999600,5),(1206,1320559200,2),(1206,1331449200,5),(1206,1352008800,2),(1206,1362898800,5),(1206,1383458400,2),(1206,1394348400,5),(1206,1414908000,2),(1206,1425798000,5),(1206,1446357600,2),(1206,1457852400,5),(1206,1478412000,2),(1206,1489302000,5),(1206,1509861600,2),(1206,1520751600,5),(1206,1541311200,2),(1206,1552201200,5),(1206,1572760800,2),(1206,1583650800,5),(1206,1604210400,2),(1206,1615705200,5),(1206,1636264800,2),(1206,1647154800,5),(1206,1667714400,2),(1206,1678604400,5),(1206,1699164000,2),(1206,1710054000,5),(1206,1730613600,2),(1206,1741503600,5),(1206,1762063200,2),(1206,1772953200,5),(1206,1793512800,2),(1206,1805007600,5),(1206,1825567200,2),(1206,1836457200,5),(1206,1857016800,2),(1206,1867906800,5),(1206,1888466400,2),(1206,1899356400,5),(1206,1919916000,2),(1206,1930806000,5),(1206,1951365600,2),(1206,1962860400,5),(1206,1983420000,2),(1206,1994310000,5),(1206,2014869600,2),(1206,2025759600,5),(1206,2046319200,2),(1206,2057209200,5),(1206,2077768800,2),(1206,2088658800,5),(1206,2109218400,2),(1206,2120108400,5),(1206,2140668000,2),(1207,-2147483648,2),(1207,-1633273200,1),(1207,-1615132800,2),(1207,-1601823600,1),(1207,-1583683200,2),(1207,-1570374000,1),(1207,-1551628800,2),(1207,-1538924400,1),(1207,-1534089600,2),(1207,-880210800,3),(1207,-769395600,4),(1207,-765388800,2),(1207,-147884400,1),(1207,-131558400,2),(1207,-116434800,1),(1207,-100108800,2),(1207,-84380400,1),(1207,-68659200,2),(1207,-52930800,1),(1207,-37209600,2),(1207,-21481200,1),(1207,-5760000,2),(1207,9968400,1),(1207,25689600,2),(1207,41418000,1),(1207,57744000,2),(1207,73472400,1),(1207,89193600,2),(1207,104922000,1),(1207,120643200,2),(1207,126694800,1),(1207,152092800,2),(1207,162378000,1),(1207,183542400,2),(1207,199270800,1),(1207,215596800,2),(1207,230720400,1),(1207,247046400,2),(1207,262774800,1),(1207,278496000,2),(1207,294224400,1),(1207,309945600,2),(1207,325674000,1),(1207,341395200,2),(1207,357123600,1),(1207,372844800,2),(1207,388573200,1),(1207,404899200,2),(1207,420022800,1),(1207,436348800,2),(1207,452077200,1),(1207,467798400,2),(1207,483526800,1),(1207,499248000,2),(1207,514976400,1),(1207,530697600,2),(1207,544611600,1),(1207,562147200,2),(1207,576061200,1),(1207,594201600,2),(1207,607510800,1),(1207,625651200,2),(1207,638960400,1),(1207,657100800,2),(1207,671014800,1),(1207,688550400,2),(1207,702464400,1),(1207,720000000,2),(1207,733914000,1),(1207,752054400,2),(1207,765363600,1),(1207,783504000,2),(1207,796813200,1),(1207,814953600,2),(1207,828867600,1),(1207,846403200,2),(1207,860317200,1),(1207,877852800,2),(1207,891766800,1),(1207,909302400,2),(1207,923216400,1),(1207,941356800,2),(1207,954666000,1),(1207,972806400,2),(1207,986115600,1),(1207,1004256000,2),(1207,1018170000,1),(1207,1035705600,2),(1207,1049619600,1),(1207,1067155200,2),(1207,1081069200,1),(1207,1099209600,2),(1207,1112518800,1),(1207,1130659200,2),(1207,1143968400,1),(1207,1162108800,2),(1207,1173603600,1),(1207,1194163200,2),(1207,1205053200,1),(1207,1225612800,2),(1207,1236502800,1),(1207,1257062400,2),(1207,1268557200,1),(1207,1289116800,2),(1207,1300006800,1),(1207,1320566400,2),(1207,1331456400,1),(1207,1352016000,2),(1207,1362906000,1),(1207,1383465600,2),(1207,1394355600,1),(1207,1414915200,2),(1207,1425805200,1),(1207,1446364800,2),(1207,1457859600,1),(1207,1478419200,2),(1207,1489309200,1),(1207,1509868800,2),(1207,1520758800,1),(1207,1541318400,2),(1207,1552208400,1),(1207,1572768000,2),(1207,1583658000,1),(1207,1604217600,2),(1207,1615712400,1),(1207,1636272000,2),(1207,1647162000,1),(1207,1667721600,2),(1207,1678611600,1),(1207,1699171200,2),(1207,1710061200,1),(1207,1730620800,2),(1207,1741510800,1),(1207,1762070400,2),(1207,1772960400,1),(1207,1793520000,2),(1207,1805014800,1),(1207,1825574400,2),(1207,1836464400,1),(1207,1857024000,2),(1207,1867914000,1),(1207,1888473600,2),(1207,1899363600,1),(1207,1919923200,2),(1207,1930813200,1),(1207,1951372800,2),(1207,1962867600,1),(1207,1983427200,2),(1207,1994317200,1),(1207,2014876800,2),(1207,2025766800,1),(1207,2046326400,2),(1207,2057216400,1),(1207,2077776000,2),(1207,2088666000,1),(1207,2109225600,2),(1207,2120115600,1),(1207,2140675200,2),(1208,-2147483648,2),(1208,-1633269600,1),(1208,-1615129200,2),(1208,-1601820000,1),(1208,-1583679600,2),(1208,-880207200,3),(1208,-769395600,4),(1208,-765385200,2),(1208,-687967140,1),(1208,-662655600,2),(1208,-620838000,1),(1208,-608137200,2),(1208,-589388400,1),(1208,-576082800,2),(1208,-557938800,1),(1208,-544633200,2),(1208,-526489200,1),(1208,-513183600,2),(1208,-495039600,1),(1208,-481734000,2),(1208,-463590000,1),(1208,-450284400,2),(1208,-431535600,1),(1208,-418230000,2),(1208,-400086000,1),(1208,-386780400,2),(1208,-368636400,1),(1208,-355330800,2),(1208,-337186800,1),(1208,-323881200,2),(1208,-305737200,1),(1208,-292431600,2),(1208,-273682800,1),(1208,-260982000,2),(1208,-242233200,1),(1208,-226508400,2),(1208,-210783600,1),(1208,-195058800,2),(1208,-179334000,1),(1208,-163609200,2),(1208,-147884400,1),(1208,-131554800,2),(1208,-116434800,1),(1208,-100105200,2),(1208,-84376800,1),(1208,-68655600,2),(1208,-52927200,1),(1208,-37206000,2),(1208,-21477600,1),(1208,-5756400,2),(1208,9972000,1),(1208,25693200,2),(1208,41421600,1),(1208,57747600,2),(1208,73476000,1),(1208,89197200,2),(1208,104925600,1),(1208,120646800,2),(1208,126698400,1),(1208,152096400,2),(1208,162381600,1),(1208,183546000,2),(1208,199274400,1),(1208,215600400,2),(1208,230724000,1),(1208,247050000,2),(1208,262778400,1),(1208,278499600,2),(1208,294228000,1),(1208,309949200,2),(1208,325677600,1),(1208,341398800,2),(1208,357127200,1),(1208,372848400,2),(1208,388576800,1),(1208,404902800,2),(1208,420026400,1),(1208,436352400,2),(1208,452080800,1),(1208,467802000,2),(1208,483530400,1),(1208,499251600,2),(1208,514980000,1),(1208,530701200,2),(1208,544615200,1),(1208,562150800,2),(1208,576064800,1),(1208,594205200,2),(1208,607514400,1),(1208,625654800,2),(1208,638964000,1),(1208,657104400,2),(1208,671018400,1),(1208,688554000,2),(1208,702468000,1),(1208,720003600,2),(1208,733917600,1),(1208,752058000,2),(1208,765367200,1),(1208,783507600,2),(1208,796816800,1),(1208,814957200,2),(1208,828871200,1),(1208,846406800,2),(1208,860320800,1),(1208,877856400,2),(1208,891770400,1),(1208,909306000,2),(1208,923220000,1),(1208,941360400,2),(1208,954669600,1),(1208,972810000,2),(1208,986119200,1),(1208,1004259600,2),(1208,1018173600,1),(1208,1035709200,2),(1208,1049623200,1),(1208,1067158800,2),(1208,1081072800,1),(1208,1099213200,2),(1208,1112522400,1),(1208,1130662800,2),(1208,1143972000,1),(1208,1162112400,2),(1208,1173607200,1),(1208,1194166800,2),(1208,1205056800,1),(1208,1225616400,2),(1208,1236506400,1),(1208,1257066000,2),(1208,1268560800,1),(1208,1289120400,2),(1208,1300010400,1),(1208,1320570000,2),(1208,1331460000,1),(1208,1352019600,2),(1208,1362909600,1),(1208,1383469200,2),(1208,1394359200,1),(1208,1414918800,2),(1208,1425808800,1),(1208,1446368400,2),(1208,1457863200,1),(1208,1478422800,2),(1208,1489312800,1),(1208,1509872400,2),(1208,1520762400,1),(1208,1541322000,2),(1208,1552212000,1),(1208,1572771600,2),(1208,1583661600,1),(1208,1604221200,2),(1208,1615716000,1),(1208,1636275600,2),(1208,1647165600,1),(1208,1667725200,2),(1208,1678615200,1),(1208,1699174800,2),(1208,1710064800,1),(1208,1730624400,2),(1208,1741514400,1),(1208,1762074000,2),(1208,1772964000,1),(1208,1793523600,2),(1208,1805018400,1),(1208,1825578000,2),(1208,1836468000,1),(1208,1857027600,2),(1208,1867917600,1),(1208,1888477200,2),(1208,1899367200,1),(1208,1919926800,2),(1208,1930816800,1),(1208,1951376400,2),(1208,1962871200,1),(1208,1983430800,2),(1208,1994320800,1),(1208,2014880400,2),(1208,2025770400,1),(1208,2046330000,2),(1208,2057220000,1),(1208,2077779600,2),(1208,2088669600,1),(1208,2109229200,2),(1208,2120119200,1),(1208,2140678800,2),(1209,-2147483648,2),(1209,-1633269600,1),(1209,-1615129200,2),(1209,-1601820000,1),(1209,-1583679600,2),(1209,-880207200,3),(1209,-769395600,4),(1209,-765385200,2),(1209,-687967140,1),(1209,-662655600,2),(1209,-620838000,1),(1209,-608137200,2),(1209,-589388400,1),(1209,-576082800,2),(1209,-557938800,1),(1209,-544633200,2),(1209,-526489200,1),(1209,-513183600,2),(1209,-495039600,1),(1209,-481734000,2),(1209,-463590000,1),(1209,-450284400,2),(1209,-431535600,1),(1209,-418230000,2),(1209,-400086000,1),(1209,-386780400,2),(1209,-368636400,1),(1209,-355330800,2),(1209,-337186800,1),(1209,-323881200,2),(1209,-305737200,1),(1209,-292431600,2),(1209,-273682800,1),(1209,-260982000,2),(1209,-242233200,1),(1209,-226508400,2),(1209,-210783600,1),(1209,-195058800,2),(1209,-179334000,1),(1209,-163609200,2),(1209,-147884400,1),(1209,-131554800,2),(1209,-116434800,1),(1209,-100105200,2),(1209,-84376800,1),(1209,-68655600,2),(1209,-52927200,1),(1209,-37206000,2),(1209,-21477600,1),(1209,-5756400,2),(1209,9972000,1),(1209,25693200,2),(1209,41421600,1),(1209,57747600,2),(1209,73476000,1),(1209,89197200,2),(1209,104925600,1),(1209,120646800,2),(1209,126698400,1),(1209,152096400,2),(1209,162381600,1),(1209,183546000,2),(1209,199274400,1),(1209,215600400,2),(1209,230724000,1),(1209,247050000,2),(1209,262778400,1),(1209,278499600,2),(1209,294228000,1),(1209,309949200,2),(1209,325677600,1),(1209,341398800,2),(1209,357127200,1),(1209,372848400,2),(1209,388576800,1),(1209,404902800,2),(1209,420026400,1),(1209,436352400,2),(1209,452080800,1),(1209,467802000,2),(1209,483530400,1),(1209,499251600,2),(1209,514980000,1),(1209,530701200,2),(1209,544615200,1),(1209,562150800,2),(1209,576064800,1),(1209,594205200,2),(1209,607514400,1),(1209,625654800,2),(1209,638964000,1),(1209,657104400,2),(1209,671018400,1),(1209,688554000,2),(1209,702468000,1),(1209,720003600,2),(1209,733917600,1),(1209,752058000,2),(1209,765367200,1),(1209,783507600,2),(1209,796816800,1),(1209,814957200,2),(1209,828871200,1),(1209,846406800,2),(1209,860320800,1),(1209,877856400,2),(1209,891770400,1),(1209,909306000,2),(1209,923220000,1),(1209,941360400,2),(1209,954669600,1),(1209,972810000,2),(1209,986119200,1),(1209,1004259600,2),(1209,1018173600,1),(1209,1035709200,2),(1209,1049623200,1),(1209,1067158800,2),(1209,1081072800,1),(1209,1099213200,2),(1209,1112522400,1),(1209,1130662800,2),(1209,1143972000,1),(1209,1162112400,2),(1209,1173607200,1),(1209,1194166800,2),(1209,1205056800,1),(1209,1225616400,2),(1209,1236506400,1),(1209,1257066000,2),(1209,1268560800,1),(1209,1289120400,2),(1209,1300010400,1),(1209,1320570000,2),(1209,1331460000,1),(1209,1352019600,2),(1209,1362909600,1),(1209,1383469200,2),(1209,1394359200,1),(1209,1414918800,2),(1209,1425808800,1),(1209,1446368400,2),(1209,1457863200,1),(1209,1478422800,2),(1209,1489312800,1),(1209,1509872400,2),(1209,1520762400,1),(1209,1541322000,2),(1209,1552212000,1),(1209,1572771600,2),(1209,1583661600,1),(1209,1604221200,2),(1209,1615716000,1),(1209,1636275600,2),(1209,1647165600,1),(1209,1667725200,2),(1209,1678615200,1),(1209,1699174800,2),(1209,1710064800,1),(1209,1730624400,2),(1209,1741514400,1),(1209,1762074000,2),(1209,1772964000,1),(1209,1793523600,2),(1209,1805018400,1),(1209,1825578000,2),(1209,1836468000,1),(1209,1857027600,2),(1209,1867917600,1),(1209,1888477200,2),(1209,1899367200,1),(1209,1919926800,2),(1209,1930816800,1),(1209,1951376400,2),(1209,1962871200,1),(1209,1983430800,2),(1209,1994320800,1),(1209,2014880400,2),(1209,2025770400,1),(1209,2046330000,2),(1209,2057220000,1),(1209,2077779600,2),(1209,2088669600,1),(1209,2109229200,2),(1209,2120119200,1),(1209,2140678800,2),(1210,-2147483648,1),(1210,-1861879032,2),(1213,-2147483648,1),(1213,-1688265017,3),(1213,-1656819079,2),(1213,-1641353479,3),(1213,-1627965079,4),(1213,-1618716679,2),(1213,-1596429079,4),(1213,-1593820800,5),(1213,-1589860800,6),(1213,-1542427200,7),(1213,-1539493200,8),(1213,-1525323600,7),(1213,-1522728000,6),(1213,-1491188400,9),(1213,-1247536800,6),(1213,354920400,7),(1213,370728000,6),(1213,386456400,7),(1213,402264000,6),(1213,417992400,7),(1213,433800000,6),(1213,449614800,7),(1213,465346800,10),(1213,481071600,11),(1213,496796400,10),(1213,512521200,11),(1213,528246000,10),(1213,543970800,11),(1213,559695600,10),(1213,575420400,11),(1213,591145200,10),(1213,606870000,11),(1213,622594800,10),(1213,638319600,11),(1213,654649200,10),(1213,670374000,12),(1213,686102400,13),(1213,695779200,10),(1213,701823600,11),(1213,717548400,10),(1213,733273200,11),(1213,748998000,10),(1213,764722800,11),(1213,780447600,10),(1213,796172400,11),(1213,811897200,10),(1213,828226800,11),(1213,846370800,10),(1213,859676400,11),(1213,877820400,10),(1213,891126000,11),(1213,909270000,10),(1213,922575600,11),(1213,941324400,10),(1213,954025200,11),(1213,972774000,10),(1213,985474800,11),(1213,1004223600,10),(1213,1017529200,11),(1213,1035673200,10),(1213,1048978800,11),(1213,1067122800,10),(1213,1080428400,11),(1213,1099177200,10),(1213,1111878000,11),(1213,1130626800,10),(1213,1143327600,11),(1213,1162076400,10),(1213,1174777200,11),(1213,1193526000,10),(1213,1206831600,11),(1213,1224975600,10),(1213,1238281200,11),(1213,1256425200,10),(1213,1269730800,11),(1213,1288479600,10),(1213,1301180400,14),(1213,1414274400,10),(1214,228877200,0),(1214,243997200,1),(1214,260326800,0),(1214,276051600,1),(1214,291776400,0),(1214,307501200,1),(1214,323830800,0),(1214,338950800,1),(1214,354675600,0),(1214,370400400,1),(1214,386125200,0),(1214,401850000,1),(1214,417574800,0),(1214,433299600,1),(1214,449024400,0),(1214,465354000,1),(1214,481078800,0),(1214,496803600,1),(1214,512528400,0),(1214,528253200,1),(1214,543978000,0),(1214,559702800,1),(1214,575427600,0),(1214,591152400,1),(1214,606877200,0),(1214,622602000,1),(1214,638326800,0),(1214,654656400,1),(1214,670381200,0),(1214,686106000,1),(1214,701830800,0),(1214,717555600,1),(1214,733280400,0),(1214,749005200,1),(1214,764730000,0),(1214,780454800,1),(1214,796179600,0),(1214,811904400,1),(1214,828234000,0),(1214,846378000,1),(1214,859683600,0),(1214,877827600,1),(1214,891133200,0),(1214,909277200,1),(1214,922582800,0),(1214,941331600,1),(1214,954032400,0),(1214,972781200,1),(1214,985482000,0),(1214,1004230800,1),(1214,1017536400,0),(1214,1035680400,1),(1214,1048986000,0),(1214,1067130000,1),(1214,1080435600,0),(1214,1099184400,1),(1214,1111885200,0),(1214,1130634000,1),(1214,1143334800,0),(1214,1162083600,1),(1214,1174784400,0),(1214,1193533200,1),(1214,1206838800,0),(1214,1224982800,1),(1214,1238288400,0),(1214,1256432400,1),(1214,1269738000,0),(1214,1288486800,1),(1214,1301187600,0),(1214,1319936400,1),(1214,1332637200,0),(1214,1351386000,1),(1214,1364691600,0),(1214,1382835600,1),(1214,1396141200,0),(1214,1414285200,1),(1214,1427590800,0),(1214,1445734800,1),(1214,1459040400,0),(1214,1477789200,1),(1214,1490490000,0),(1214,1509238800,1),(1214,1521939600,0),(1214,1540688400,1),(1214,1553994000,0),(1214,1572138000,1),(1214,1585443600,0),(1214,1603587600,1),(1214,1616893200,0),(1214,1635642000,1),(1214,1648342800,0),(1214,1667091600,1),(1214,1679792400,0),(1214,1698541200,1),(1214,1711846800,0),(1214,1729990800,1),(1214,1743296400,0),(1214,1761440400,1),(1214,1774746000,0),(1214,1792890000,1),(1214,1806195600,0),(1214,1824944400,1),(1214,1837645200,0),(1214,1856394000,1),(1214,1869094800,0),(1214,1887843600,1),(1214,1901149200,0),(1214,1919293200,1),(1214,1932598800,0),(1214,1950742800,1),(1214,1964048400,0),(1214,1982797200,1),(1214,1995498000,0),(1214,2014246800,1),(1214,2026947600,0),(1214,2045696400,1),(1214,2058397200,0),(1214,2077146000,1),(1214,2090451600,0),(1214,2108595600,1),(1214,2121901200,0),(1214,2140045200,1),(1216,-2147483648,2),(1216,-1633280400,1),(1216,-1615140000,2),(1216,-1601830800,1),(1216,-1583690400,2),(1216,-1570381200,1),(1216,-1551636000,2),(1216,-1536512400,1),(1216,-1523210400,2),(1216,-1504458000,1),(1216,-1491760800,2),(1216,-1473008400,1),(1216,-1459706400,2),(1216,-1441558800,1),(1216,-1428256800,2),(1216,-1410109200,1),(1216,-1396807200,2),(1216,-1378659600,1),(1216,-1365357600,2),(1216,-1347210000,1),(1216,-1333908000,2),(1216,-1315155600,1),(1216,-1301853600,2),(1216,-1283706000,1),(1216,-1270404000,2),(1216,-1252256400,1),(1216,-1238954400,2),(1216,-1220806800,1),(1216,-1207504800,2),(1216,-1189357200,1),(1216,-1176055200,2),(1216,-1157302800,1),(1216,-1144605600,2),(1216,-1125853200,1),(1216,-1112551200,2),(1216,-1094403600,1),(1216,-1081101600,2),(1216,-1062954000,1),(1216,-1049652000,2),(1216,-1031504400,1),(1216,-1018202400,2),(1216,-1000054800,1),(1216,-986752800,2),(1216,-968000400,1),(1216,-955303200,2),(1216,-936550800,1),(1216,-923248800,2),(1216,-905101200,1),(1216,-891799200,2),(1216,-880218000,3),(1216,-769395600,4),(1216,-765396000,2),(1216,-747248400,1),(1216,-733946400,2),(1216,-715798800,1),(1216,-702496800,2),(1216,-684349200,1),(1216,-671047200,2),(1216,-652899600,1),(1216,-639597600,2),(1216,-620845200,1),(1216,-608148000,2),(1216,-589395600,1),(1216,-576093600,2),(1216,-557946000,1),(1216,-544644000,2),(1216,-526496400,1),(1216,-513194400,2),(1216,-495046800,1),(1216,-481744800,2),(1216,-463597200,1),(1216,-447271200,2),(1216,-431542800,1),(1216,-415821600,2),(1216,-400093200,1),(1216,-384372000,2),(1216,-368643600,1),(1216,-352922400,2),(1216,-337194000,1),(1216,-321472800,2),(1216,-305744400,1),(1216,-289418400,2),(1216,-273690000,1),(1216,-257968800,2),(1216,-242240400,1),(1216,-226519200,2),(1216,-210790800,1),(1216,-195069600,2),(1216,-179341200,1),(1216,-163620000,2),(1216,-147891600,1),(1216,-131565600,2),(1216,-116442000,1),(1216,-100116000,2),(1216,-84387600,1),(1216,-68666400,2),(1216,-52938000,1),(1216,-37216800,2),(1216,-21488400,1),(1216,-5767200,2),(1216,9961200,1),(1216,25682400,2),(1216,41410800,1),(1216,57736800,2),(1216,73465200,1),(1216,89186400,2),(1216,104914800,1),(1216,120636000,2),(1216,126687600,1),(1216,152085600,2),(1216,162370800,1),(1216,183535200,2),(1216,199263600,1),(1216,215589600,2),(1216,230713200,1),(1216,247039200,2),(1216,262767600,1),(1216,278488800,2),(1216,294217200,1),(1216,309938400,2),(1216,325666800,1),(1216,341388000,2),(1216,357116400,1),(1216,372837600,2),(1216,388566000,1),(1216,404892000,2),(1216,420015600,1),(1216,436341600,2),(1216,452070000,1),(1216,467791200,2),(1216,483519600,1),(1216,499240800,2),(1216,514969200,1),(1216,530690400,2),(1216,544604400,1),(1216,562140000,2),(1216,576054000,1),(1216,594194400,2),(1216,607503600,1),(1216,625644000,2),(1216,638953200,1),(1216,657093600,2),(1216,671007600,1),(1216,688543200,2),(1216,702457200,1),(1216,719992800,2),(1216,733906800,1),(1216,752047200,2),(1216,765356400,1),(1216,783496800,2),(1216,796806000,1),(1216,814946400,2),(1216,828860400,1),(1216,846396000,2),(1216,860310000,1),(1216,877845600,2),(1216,891759600,1),(1216,909295200,2),(1216,923209200,1),(1216,941349600,2),(1216,954658800,1),(1216,972799200,2),(1216,986108400,1),(1216,1004248800,2),(1216,1018162800,1),(1216,1035698400,2),(1216,1049612400,1),(1216,1067148000,2),(1216,1081062000,1),(1216,1099202400,2),(1216,1112511600,1),(1216,1130652000,2),(1216,1143961200,1),(1216,1162101600,2),(1216,1173596400,1),(1216,1194156000,2),(1216,1205046000,1),(1216,1225605600,2),(1216,1236495600,1),(1216,1257055200,2),(1216,1268550000,1),(1216,1289109600,2),(1216,1299999600,1),(1216,1320559200,2),(1216,1331449200,1),(1216,1352008800,2),(1216,1362898800,1),(1216,1383458400,2),(1216,1394348400,1),(1216,1414908000,2),(1216,1425798000,1),(1216,1446357600,2),(1216,1457852400,1),(1216,1478412000,2),(1216,1489302000,1),(1216,1509861600,2),(1216,1520751600,1),(1216,1541311200,2),(1216,1552201200,1),(1216,1572760800,2),(1216,1583650800,1),(1216,1604210400,2),(1216,1615705200,1),(1216,1636264800,2),(1216,1647154800,1),(1216,1667714400,2),(1216,1678604400,1),(1216,1699164000,2),(1216,1710054000,1),(1216,1730613600,2),(1216,1741503600,1),(1216,1762063200,2),(1216,1772953200,1),(1216,1793512800,2),(1216,1805007600,1),(1216,1825567200,2),(1216,1836457200,1),(1216,1857016800,2),(1216,1867906800,1),(1216,1888466400,2),(1216,1899356400,1),(1216,1919916000,2),(1216,1930806000,1),(1216,1951365600,2),(1216,1962860400,1),(1216,1983420000,2),(1216,1994310000,1),(1216,2014869600,2),(1216,2025759600,1),(1216,2046319200,2),(1216,2057209200,1),(1216,2077768800,2),(1216,2088658800,1),(1216,2109218400,2),(1216,2120108400,1),(1216,2140668000,2),(1217,-2147483648,0),(1217,-1830383032,1),(1218,-2147483648,0),(1218,-1640995148,2),(1218,-1556841600,1),(1218,-1546388400,2),(1218,-1525305600,1),(1218,-1514852400,2),(1218,-1493769600,1),(1218,-1483316400,2),(1218,-1462233600,1),(1218,-1451780400,2),(1218,-1430611200,1),(1218,-1420158000,2),(1218,-1399075200,1),(1218,-1388622000,2),(1218,-1367539200,1),(1218,-1357086000,2),(1218,-1336003200,1),(1218,-1325550000,2),(1218,-1304380800,1),(1218,-1293927600,2),(1218,-1272844800,1),(1218,-1262391600,2),(1218,-1241308800,1),(1218,-1230855600,2),(1218,-1209772800,1),(1218,-1199319600,2),(1218,-1178150400,1),(1218,-1167697200,2),(1218,-1146614400,1),(1218,-1136161200,2),(1218,-1115078400,1),(1218,-1104625200,2),(1218,-1083542400,1),(1218,-1073089200,2),(1218,-1051920000,1),(1218,-1041466800,2),(1218,-1020384000,1),(1218,-1009930800,2),(1218,-988848000,1),(1218,-978394800,2),(1218,-957312000,1),(1218,-946858800,2),(1218,-925689600,1),(1218,-915236400,2),(1218,-894153600,1),(1218,-883700400,2),(1218,-862617600,1),(1218,-852164400,2),(1219,-2147483648,0),(1219,-1309746436,1),(1219,-1262314800,2),(1219,-946780200,3),(1219,-315629100,1),(1220,-2147483648,1),(1220,-1855958961,4),(1220,-1689814800,2),(1220,-1680397200,3),(1220,-1665363600,2),(1220,-1648342800,3),(1220,-1635123600,2),(1220,-1616893200,3),(1220,-1604278800,2),(1220,-1585443600,3),(1220,-1574038800,2),(1220,-1552266000,3),(1220,-1539997200,2),(1220,-1531443600,3),(1220,-956365200,2),(1220,-950486400,4),(1220,-942012000,6),(1220,-812502000,5),(1220,-796262400,6),(1220,-781052400,5),(1220,-766630800,6),(1220,-733280400,4),(1220,-439430400,6),(1220,-212029200,4),(1220,41468400,2),(1220,54774000,3),(1220,231724806,7),(1220,246236406,6),(1220,259545607,5),(1220,275274007,6),(1220,309740408,4),(1220,325468809,7),(1220,341802009,4),(1220,357523209,6),(1221,-2147483648,0),(1221,-1309746436,1),(1221,-1262314800,2),(1221,-946780200,3),(1221,-315629100,1),(1222,-2147483648,0),(1222,-1309746436,1),(1222,-1262314800,2),(1222,-946780200,3),(1222,-315629100,1),(1223,-2147483648,0),(1223,-1830383032,1),(1224,-2147483648,0),(1224,-1588464816,1),(1225,-2147483648,0),(1225,-1830383032,1),(1226,-2147483648,0),(1226,-1830380400,1),(1226,157770004,2),(1227,-2147483648,0),(1227,-2109291020,1),(1228,-2147483648,0),(1228,-1588464816,1),(1229,-2147483648,0),(1229,-2109291020,1),(1230,-2147483648,2),(1230,-929844000,1),(1230,-923108400,2),(1230,-906170400,1),(1230,-892868400,2),(1230,-875844000,1),(1230,-857790000,2),(1230,-844308000,1),(1230,-825822000,2),(1230,-812685600,1),(1230,-794199600,2),(1230,-779853600,1),(1230,-762663600,2),(1230,-399088800,1),(1230,-386650800,2),(1230,-368330400,1),(1230,-355114800,2),(1230,-336790800,1),(1230,-323654400,2),(1230,-305168400,1),(1230,-292032000,2),(1230,-273632400,1),(1230,-260496000,2),(1230,-242096400,1),(1230,-228960000,2),(1230,-210560400,1),(1230,-197424000,2),(1230,-178938000,1),(1230,-165801600,2),(1230,-147402000,1),(1230,-134265600,2),(1230,-115866000,1),(1230,-102643200,2),(1230,-84330000,1),(1230,-71107200,2),(1230,-52707600,1),(1230,-39484800,2),(1230,-21171600,1),(1230,-7948800,2),(1230,10364400,1),(1230,23587200,2),(1230,41900400,1),(1230,55123200,2),(1230,73522800,1),(1230,86745601,2),(1230,105058802,1),(1230,118281602,2),(1230,136594803,1),(1230,149817603,2),(1230,168130804,1),(1230,181353604,2),(1230,199753205,1),(1230,212976005,2),(1230,231289206,1),(1230,244512006,2),(1230,262825207,1),(1230,276048007,2),(1230,294361208,1),(1230,307584008,2),(1230,325983609,1),(1230,339206409,2),(1230,357519609,1),(1230,370742410,2),(1230,396399611,1),(1230,402278411,2),(1230,426812412,1),(1230,433814412,2),(1230,452214012,1),(1230,465436812,2),(1230,483750012,1),(1230,496972813,2),(1230,515286013,1),(1230,528508813,2),(1230,546822013,1),(1230,560044813,2),(1230,578444414,1),(1230,591667214,2),(1230,610412414,1),(1230,623203214,2),(1230,641516415,1),(1230,654739215,2),(1230,673052416,1),(1230,686275216,2),(1230,704674816,1),(1230,717897617,2),(1230,736210817,1),(1230,749433618,2),(1230,767746818,1),(1230,780969619,2),(1230,799020019,3),(1230,812322019,2),(1230,830469620,3),(1230,843771620,2),(1230,861919220,3),(1230,875221221,2),(1230,893368821,3),(1230,906670821,2),(1230,925423222,3),(1230,938725222,2),(1230,956872822,3),(1230,970174822,2),(1230,988322422,3),(1230,1001624422,2),(1230,1019772022,3),(1230,1033074022,2),(1230,1051221622,3),(1230,1064523622,2),(1230,1083276022,3),(1230,1096578022,2),(1230,1114725622,3),(1230,1128027622,2),(1230,1146175223,3),(1230,1158872423,2),(1230,1177624823,3),(1230,1189112423,2),(1230,1209074423,3),(1230,1219957223,2),(1230,1240524024,3),(1230,1250802024,2),(1230,1272578424,3),(1230,1281474024,2),(1230,1284069624,1),(1230,1285880424,2),(1230,1400191225,1),(1230,1403816425,2),(1230,1406844025,1),(1230,1411678825,2),(1231,-2147483648,0),(1231,-1773012580,2),(1231,-956361600,1),(1231,-950490000,2),(1231,-942019200,1),(1231,-761187600,2),(1231,-617241600,1),(1231,-605149200,2),(1231,-81432000,1),(1231,-71110800,2),(1231,141264003,1),(1231,147222003,2),(1231,199756805,1),(1231,207702005,2),(1231,231292806,1),(1231,244249206,2),(1231,265507207,1),(1231,271033207,2),(1231,448243212,3),(1231,504918013,2),(1231,1212278423,1),(1231,1220223623,2),(1231,1243814424,1),(1231,1250809224,2),(1231,1272758424,1),(1231,1281222024,2),(1231,1301788824,1),(1231,1312066824,2),(1231,1335664824,1),(1231,1342749625,2),(1231,1345428025,1),(1231,1348970425,2),(1231,1367114425,1),(1231,1373162425,2),(1231,1376100025,1),(1231,1382839225,2),(1231,1396144825,1),(1231,1403920825,2),(1231,1406944825,1),(1231,1414288825,2),(1231,1427594425,1),(1231,1434247225,2),(1231,1437271226,1),(1231,1445738426,2),(1231,1459044026,1),(1231,1465092026,2),(1231,1468116026,1),(1231,1477792826,2),(1231,1490493627,1),(1231,1495332027,2),(1231,1498960827,1),(1231,1509242427,2),(1231,1521943227,1),(1231,1526176827,2),(1231,1529200827,1),(1231,1540692027,3),(1231,1557021627,4),(1231,1560045627,3),(1231,1587261627,4),(1231,1590285627,3),(1231,1618106427,4),(1231,1621130427,3),(1231,1648346427,4),(1231,1651975227,3),(1231,1679191227,4),(1231,1682215227,3),(1231,1710036027,4),(1231,1713060027,3),(1231,1740276027,4),(1231,1743904827,3),(1231,1771120827,4),(1231,1774144827,3),(1231,1801965627,4),(1231,1804989627,3),(1231,1832205627,4),(1231,1835229627,3),(1231,1863050427,4),(1231,1866074427,3),(1231,1893290427,4),(1231,1896919227,3),(1231,1924135227,4),(1231,1927159227,3),(1231,1954980027,4),(1231,1958004027,3),(1231,1985220027,4),(1231,1988848827,3),(1231,2016064827,4),(1231,2019088827,3),(1231,2046304827,4),(1231,2049933627,3),(1231,2077149627,4),(1231,2080173627,3),(1231,2107994427,4),(1231,2111018427,3),(1231,2138234427,4),(1231,2141863227,3),(1232,-2147483648,1),(1232,-1630112400,2),(1232,-1616810400,1),(1232,-1442451600,2),(1232,-1427673600,3),(1232,-1379293200,2),(1232,-1364774400,3),(1232,-1348448400,2),(1232,-1333324800,3),(1232,-1316390400,2),(1232,-1301270400,3),(1232,-1293840000,1),(1232,-81432000,2),(1232,-71110800,1),(1232,141264003,2),(1232,147222003,1),(1232,199756805,2),(1232,207702005,1),(1232,231292806,2),(1232,244249206,1),(1232,265507207,2),(1232,271033207,1),(1232,448243212,4),(1232,512528413,5),(1232,528253213,6),(1232,543978013,5),(1232,559702813,6),(1232,575427614,5),(1232,591152414,6),(1232,606877214,5),(1232,622602014,6),(1232,638326815,5),(1232,654656415,6),(1232,670381216,5),(1232,686106016,6),(1232,701830816,5),(1232,717555617,6),(1232,733280417,5),(1232,749005218,6),(1232,764730018,5),(1232,780454819,6),(1232,796179619,5),(1232,811904419,6),(1232,828234020,5),(1232,846378020,6),(1232,859683620,5),(1232,877827621,6),(1232,891133221,5),(1232,909277221,6),(1232,922582822,5),(1232,941331622,6),(1232,954032422,5),(1232,972781222,6),(1232,985482022,5),(1232,1004230822,6),(1232,1017536422,5),(1232,1035680422,6),(1232,1048986022,5),(1232,1067130022,6),(1232,1080435622,5),(1232,1099184422,6),(1232,1111885222,5),(1232,1130634022,6),(1232,1143334823,5),(1232,1162083623,6),(1232,1174784423,5),(1232,1193533223,6),(1232,1206838823,5),(1232,1224982823,6),(1232,1238288424,5),(1232,1256432424,6),(1232,1269738024,5),(1232,1288486824,6),(1232,1301187624,5),(1232,1319936424,6),(1232,1332637224,5),(1232,1351386025,6),(1232,1364691625,5),(1232,1382835625,6),(1232,1396141225,5),(1232,1414285225,6),(1232,1427590825,5),(1232,1445734826,6),(1232,1459040426,5),(1232,1477789226,6),(1232,1490490027,5),(1232,1509238827,6),(1232,1521939627,5),(1232,1540688427,6),(1232,1553994027,5),(1232,1572138027,6),(1232,1585443627,5),(1232,1603587627,6),(1232,1616893227,5),(1232,1635642027,6),(1232,1648342827,5),(1232,1667091627,6),(1232,1679792427,5),(1232,1698541227,6),(1232,1711846827,5),(1232,1729990827,6),(1232,1743296427,5),(1232,1761440427,6),(1232,1774746027,5),(1232,1792890027,6),(1232,1806195627,5),(1232,1824944427,6),(1232,1837645227,5),(1232,1856394027,6),(1232,1869094827,5),(1232,1887843627,6),(1232,1901149227,5),(1232,1919293227,6),(1232,1932598827,5),(1232,1950742827,6),(1232,1964048427,5),(1232,1982797227,6),(1232,1995498027,5),(1232,2014246827,6),(1232,2026947627,5),(1232,2045696427,6),(1232,2058397227,5),(1232,2077146027,6),(1232,2090451627,5),(1232,2108595627,6),(1232,2121901227,5),(1232,2140045227,6),(1233,-2147483648,0),(1233,-1830383032,1),(1234,-2147483648,0),(1234,-1830383032,1),(1235,-2147483648,0),(1235,-1309746436,1),(1235,-1262314800,2),(1235,-946780200,3),(1235,-315629100,1),(1236,-2147483648,0),(1236,-1309746436,1),(1236,-1262314800,2),(1236,-946780200,3),(1236,-315629100,1),(1237,-2147483648,0),(1237,-1588464816,1),(1238,-2147483648,0),(1238,-1136070432,1),(1238,198291605,3),(1238,199756805,2),(1238,207702005,3),(1238,231292806,2),(1238,244249206,3),(1238,265507207,2),(1238,271033207,3),(1238,1212278423,2),(1238,1220223623,3),(1238,1243814424,2),(1238,1250809224,3),(1238,1272758424,2),(1238,1281222024,3),(1238,1301788824,2),(1238,1312066824,3),(1238,1335664824,2),(1238,1342749625,3),(1238,1345428025,2),(1238,1348970425,3),(1238,1367114425,2),(1238,1373162425,3),(1238,1376100025,2),(1238,1382839225,3),(1238,1396144825,2),(1238,1403920825,3),(1238,1406944825,2),(1238,1414288825,3),(1238,1427594425,2),(1238,1434247225,3),(1238,1437271226,2),(1238,1445738426,3),(1238,1459044026,2),(1238,1465092026,3),(1238,1468116026,2),(1238,1477792826,3),(1238,1490493627,2),(1238,1495332027,3),(1238,1498960827,2),(1238,1509242427,3),(1238,1521943227,2),(1238,1526176827,3),(1238,1529200827,2),(1238,1540692027,5),(1238,1557021627,4),(1238,1560045627,5),(1238,1587261627,4),(1238,1590285627,5),(1238,1618106427,4),(1238,1621130427,5),(1238,1648346427,4),(1238,1651975227,5),(1238,1679191227,4),(1238,1682215227,5),(1238,1710036027,4),(1238,1713060027,5),(1238,1740276027,4),(1238,1743904827,5),(1238,1771120827,4),(1238,1774144827,5),(1238,1801965627,4),(1238,1804989627,5),(1238,1832205627,4),(1238,1835229627,5),(1238,1863050427,4),(1238,1866074427,5),(1238,1893290427,4),(1238,1896919227,5),(1238,1924135227,4),(1238,1927159227,5),(1238,1954980027,4),(1238,1958004027,5),(1238,1985220027,4),(1238,1988848827,5),(1238,2016064827,4),(1238,2019088827,5),(1238,2046304827,4),(1238,2049933627,5),(1238,2077149627,4),(1238,2080173627,5),(1238,2107994427,4),(1238,2111018427,5),(1238,2138234427,4),(1238,2141863227,5),(1239,-2147483648,0),(1239,-1830383032,1),(1240,-2147483648,0),(1240,-2109291020,1),(1241,-2147483648,0),(1241,-2109291020,1),(1242,-2147483648,1),(1242,-2109288600,3),(1242,-860976000,2),(1242,-845254800,3),(1242,-829526400,2),(1242,-813805200,3),(1243,-2147483648,0),(1243,-1230775588,2),(1243,10360800,1),(1243,24786000,2),(1243,41810400,1),(1243,56322000,2),(1243,73432800,1),(1243,87944401,2),(1243,104882402,1),(1243,119480402,2),(1243,136332003,1),(1243,151016403,2),(1243,167781604,1),(1243,182552404,2),(1243,199231205,1),(1243,214174805,2),(1243,230680806,1),(1243,245710806,2),(1243,262735207,1),(1243,277246807,2),(1243,294184808,1),(1243,308782808,2),(1243,325634409,1),(1243,340405209,2),(1243,357084009,1),(1243,371941210,2),(1243,388533610,1),(1243,403477211,2),(1243,419983211,1),(1243,435013212,2),(1243,452037612,1),(1243,466635612,2),(1243,483487212,1),(1243,498171613,2),(1243,947930422,3),(1244,-2147483648,0),(1244,-1309746436,1),(1244,-1262314800,2),(1244,-946780200,3),(1244,-315629100,1),(1245,-2147483648,0),(1245,-1230775808,2),(1245,10360800,1),(1245,24786000,2),(1245,41810400,1),(1245,56322000,2),(1245,73432800,1),(1245,87944401,2),(1245,104882402,1),(1245,119480402,2),(1245,136332003,1),(1245,151016403,2),(1245,167781604,1),(1245,182552404,2),(1245,199231205,1),(1245,214174805,2),(1245,230680806,1),(1245,245710806,2),(1245,262735207,1),(1245,277246807,2),(1245,294184808,1),(1245,308782808,2),(1245,325634409,1),(1245,340405209,2),(1245,357084009,1),(1245,371941210,2),(1245,388533610,1),(1245,403477211,2),(1245,419983211,1),(1245,435013212,2),(1245,452037612,1),(1245,466635612,2),(1245,483487212,1),(1245,498171613,2),(1245,947930422,3),(1245,1509483627,2),(1246,-2147483648,0),(1246,-2109291020,1),(1247,-2147483648,0),(1247,-1588464816,1),(1248,-2147483648,0),(1248,-1588464816,1),(1249,-2147483648,0),(1249,-1588464816,1),(1250,-2147483648,0),(1250,-1830383032,1),(1251,-2147483648,0),(1251,-1588464816,1),(1252,-2147483648,0),(1252,-2109291020,1),(1253,-2147483648,0),(1253,-2109291020,1),(1254,-2147483648,0),(1254,-1588464816,1),(1255,-2147483648,0),(1255,-2109291020,1),(1256,-2147483648,1),(1256,-2109288600,3),(1256,-860976000,2),(1256,-845254800,3),(1256,-829526400,2),(1256,-813805200,3),(1257,-2147483648,1),(1257,-2109288600,3),(1257,-860976000,2),(1257,-845254800,3),(1257,-829526400,2),(1257,-813805200,3),(1258,-2147483648,0),(1258,-1309746436,1),(1258,-1262314800,2),(1258,-946780200,3),(1258,-315629100,1),(1259,-2147483648,1),(1259,-1604359012,2),(1259,63593070,3),(1260,-2147483648,0),(1260,-1309746436,1),(1260,-1262314800,2),(1260,-946780200,3),(1260,-315629100,1),(1261,-2147483648,0),(1261,-1830387612,1),(1261,308703608,2),(1261,321314409,1),(1262,-2147483648,0),(1262,-1588464816,1),(1263,-2147483648,0),(1263,-1830383032,1),(1264,-2147483648,0),(1264,-1830383032,1),(1265,-2147483648,0),(1265,-1588464816,1),(1266,-2147483648,1),(1266,-1830384000,2),(1266,1514768427,3),(1266,1546304427,4),(1267,-2147483648,0),(1267,-1830383032,1),(1268,-2147483648,0),(1268,-1577926364,2),(1268,-574902000,1),(1268,-568087200,2),(1268,-512175600,1),(1268,-504928800,2),(1268,-449888400,1),(1268,-441856800,2),(1268,-347158800,3),(1268,378684010,2),(1268,386463610,1),(1268,402271211,2),(1268,417999611,1),(1268,433807212,2),(1268,449622012,1),(1268,465429612,2),(1268,481590012,1),(1268,496965613,2),(1268,512953213,1),(1268,528674413,2),(1268,544230013,1),(1268,560037613,2),(1268,575852414,1),(1268,591660014,2),(1268,607388414,1),(1268,623196014,2),(1268,641775615,3),(1268,844034420,2),(1268,860108420,1),(1268,875916021,3),(1268,1352505625,2),(1268,1364515225,1),(1268,1382659225,3),(1269,-2147483648,1),(1269,-1855958961,4),(1269,-969242400,2),(1269,-950493600,3),(1269,-941940000,2),(1269,-891136800,4),(1269,-877827600,5),(1269,-857257200,4),(1269,-844556400,5),(1269,-842918400,4),(1269,-842223600,5),(1269,-828230400,4),(1269,-812502000,5),(1269,-796269600,4),(1269,-781052400,5),(1269,-766634400,4),(1269,231202806,2),(1269,243903606,3),(1269,262825207,2),(1269,276044407,3),(1269,581122814,2),(1269,591145214,3),(1269,606870014,2),(1269,622594814,3),(1269,641516415,2),(1269,654649215,3),(1269,1114902022,2),(1269,1128038422,3),(1269,1143334823,2),(1269,1162083623,3),(1269,1174784423,2),(1269,1193533223,3),(1269,1206838823,2),(1269,1224982823,3),(1270,-2147483648,1),(1270,-2109288600,2),(1270,-860976000,3),(1270,-845254800,2),(1270,637970415,5),(1270,764200818,4),(1270,778640419,5),(1270,796780819,4),(1270,810090019,5),(1270,828835220,4),(1270,841539620,5),(1270,860284820,4),(1270,873594021,5),(1270,891734421,4),(1270,905043621,5),(1270,923184022,4),(1270,936493222,5),(1270,954633622,4),(1270,967942822,5),(1270,986083222,4),(1270,999392422,5),(1270,1018137622,4),(1270,1030842022,5),(1270,1049587222,4),(1270,1062896422,5),(1270,1081036822,4),(1270,1094346022,5),(1270,1112486422,4),(1270,1125795622,5),(1270,1143936023,4),(1270,1157245223,5),(1270,1175385623,4),(1270,1188694823,5),(1270,1207440023,4),(1270,1220749223,5),(1270,1238889624,4),(1270,1252198824,5),(1270,1270339224,4),(1270,1283648424,5),(1270,1301788824,4),(1270,1315098024,5),(1270,1333238424,4),(1270,1346547625,5),(1270,1365292825,4),(1270,1377997225,5),(1270,1396742425,4),(1270,1410051625,5),(1270,1428192025,4),(1270,1441501226,5),(1270,1459641626,4),(1270,1472950826,5),(1270,1491091227,4),(1270,1504400427,5),(1271,-2147483648,1),(1271,-880196400,2),(1271,-769395600,3),(1271,-765374400,1),(1271,-86878800,4),(1271,-21466800,5),(1271,-5745600,4),(1271,9982800,5),(1271,25704000,4),(1271,41432400,5),(1271,57758400,4),(1271,73486800,5),(1271,89208001,4),(1271,104936402,5),(1271,120657602,4),(1271,126709203,5),(1271,152107203,4),(1271,162392404,5),(1271,183556804,4),(1271,199285205,5),(1271,215611205,4),(1271,230734806,5),(1271,247060806,4),(1271,262789207,5),(1271,278510407,4),(1271,294238808,5),(1271,309960008,4),(1271,325688409,5),(1271,341409609,4),(1271,357138009,5),(1271,372859210,4),(1271,388587610,5),(1271,404913611,4),(1271,420037211,5),(1271,436363212,6),(1271,439034412,8),(1271,452088012,7),(1271,467809212,8),(1271,483537612,7),(1271,499258813,8),(1271,514987213,7),(1271,530708413,8),(1271,544622413,7),(1271,562158013,8),(1271,576072014,7),(1271,594212414,8),(1271,607521614,7),(1271,625662014,8),(1271,638971215,7),(1271,657111615,8),(1271,671025616,7),(1271,688561216,8),(1271,702475216,7),(1271,720010817,8),(1271,733924817,7),(1271,752065218,8),(1271,765374418,7),(1271,783514819,8),(1271,796824019,7),(1271,814964419,8),(1271,828878420,7),(1271,846414020,8),(1271,860328020,7),(1271,877863621,8),(1271,891777621,7),(1271,909313221,8),(1271,923227222,7),(1271,941367622,8),(1271,954676822,7),(1271,972817222,8),(1271,986126422,7),(1271,1004266822,8),(1271,1018180822,7),(1271,1035716422,8),(1271,1049630422,7),(1271,1067166022,8),(1271,1081080022,7),(1271,1099220422,8),(1271,1112529622,7),(1271,1130670022,8),(1271,1143979223,7),(1271,1162119623,8),(1271,1173614423,7),(1271,1194174023,8),(1271,1205064023,7),(1271,1225623623,8),(1271,1236513624,7),(1271,1257073224,8),(1271,1268568024,7),(1271,1289127624,8),(1271,1300017624,7),(1271,1320577224,8),(1271,1331467224,7),(1271,1352026825,8),(1271,1362916825,7),(1271,1383476425,8),(1271,1394366425,7),(1271,1414926025,8),(1271,1425816025,7),(1271,1446375626,8),(1271,1457870426,7),(1271,1478430026,8),(1271,1489320027,7),(1271,1509879627,8),(1271,1520769627,7),(1271,1541329227,8),(1271,1552219227,7),(1271,1572778827,8),(1271,1583668827,7),(1271,1604228427,8),(1271,1615723227,7),(1271,1636282827,8),(1271,1647172827,7),(1271,1667732427,8),(1271,1678622427,7),(1271,1699182027,8),(1271,1710072027,7),(1271,1730631627,8),(1271,1741521627,7),(1271,1762081227,8),(1271,1772971227,7),(1271,1793530827,8),(1271,1805025627,7),(1271,1825585227,8),(1271,1836475227,7),(1271,1857034827,8),(1271,1867924827,7),(1271,1888484427,8),(1271,1899374427,7),(1271,1919934027,8),(1271,1930824027,7),(1271,1951383627,8),(1271,1962878427,7),(1271,1983438027,8),(1271,1994328027,7),(1271,2014887627,8),(1271,2025777627,7),(1271,2046337227,8),(1271,2057227227,7),(1271,2077786827,8),(1271,2088676827,7),(1271,2109236427,8),(1271,2120126427,7),(1271,2140686027,8),(1272,-2147483648,1),(1272,-880200000,2),(1272,-769395600,3),(1272,-765378000,1),(1272,-86882400,4),(1272,-21470400,5),(1272,-5749200,4),(1272,9979200,5),(1272,25700400,4),(1272,41428800,5),(1272,57754800,4),(1272,73483200,5),(1272,89204401,4),(1272,104932802,5),(1272,120654002,4),(1272,126705603,5),(1272,152103603,4),(1272,162388804,5),(1272,183553204,4),(1272,199281605,5),(1272,215607605,4),(1272,230731206,5),(1272,247057206,4),(1272,262785607,5),(1272,278506807,4),(1272,294235208,5),(1272,309956408,4),(1272,325684809,5),(1272,341406009,4),(1272,357134409,5),(1272,372855610,4),(1272,388584010,5),(1272,404910011,4),(1272,420033611,5),(1272,436359612,6),(1272,439030812,8),(1272,452084412,7),(1272,467805612,8),(1272,483534012,7),(1272,499255213,8),(1272,514983613,7),(1272,530704813,8),(1272,544618813,7),(1272,562154413,8),(1272,576068414,7),(1272,594208814,8),(1272,607518014,7),(1272,625658414,8),(1272,638967615,7),(1272,657108015,8),(1272,671022016,7),(1272,688557616,8),(1272,702471616,7),(1272,720007217,8),(1272,733921217,7),(1272,752061618,8),(1272,765370818,7),(1272,783511219,8),(1272,796820419,7),(1272,814960819,8),(1272,828874820,7),(1272,846410420,8),(1272,860324420,7),(1272,877860021,8),(1272,891774021,7),(1272,909309621,8),(1272,923223622,7),(1272,941364022,8),(1272,954673222,7),(1272,972813622,8),(1272,986122822,7),(1272,1004263222,8),(1272,1018177222,7),(1272,1035712822,8),(1272,1049626822,7),(1272,1067162422,8),(1272,1081076422,7),(1272,1099216822,8),(1272,1112526022,7),(1272,1130666422,8),(1272,1143975623,7),(1272,1162116023,8),(1272,1173610823,7),(1272,1194170423,8),(1272,1205060423,7),(1272,1225620023,8),(1272,1236510024,7),(1272,1257069624,8),(1272,1268564424,7),(1272,1289124024,8),(1272,1300014024,7),(1272,1320573624,8),(1272,1331463624,7),(1272,1352023225,8),(1272,1362913225,7),(1272,1383472825,8),(1272,1394362825,7),(1272,1414922425,8),(1272,1425812425,7),(1272,1446372026,8),(1272,1457866826,7),(1272,1478426426,8),(1272,1489316427,7),(1272,1509876027,8),(1272,1520766027,7),(1272,1541325627,8),(1272,1552215627,7),(1272,1572775227,8),(1272,1583665227,7),(1272,1604224827,8),(1272,1615719627,7),(1272,1636279227,8),(1272,1647169227,7),(1272,1667728827,8),(1272,1678618827,7),(1272,1699178427,8),(1272,1710068427,7),(1272,1730628027,8),(1272,1741518027,7),(1272,1762077627,8),(1272,1772967627,7),(1272,1793527227,8),(1272,1805022027,7),(1272,1825581627,8),(1272,1836471627,7),(1272,1857031227,8),(1272,1867921227,7),(1272,1888480827,8),(1272,1899370827,7),(1272,1919930427,8),(1272,1930820427,7),(1272,1951380027,8),(1272,1962874827,7),(1272,1983434427,8),(1272,1994324427,7),(1272,2014884027,8),(1272,2025774027,7),(1272,2046333627,8),(1272,2057223627,7),(1272,2077783227,8),(1272,2088673227,7),(1272,2109232827,8),(1272,2120122827,7),(1272,2140682427,8),(1273,-2147483648,0),(1273,-1825098836,1),(1274,-2147483648,0),(1274,-1825098836,1),(1275,-2147483648,0),(1275,-1767214032,2),(1275,-1206957600,1),(1275,-1191362400,2),(1275,-1175374800,1),(1275,-1159826400,2),(1275,-633819600,1),(1275,-622069200,2),(1275,-602283600,1),(1275,-591832800,2),(1275,-570747600,1),(1275,-560210400,2),(1275,-539125200,1),(1275,-531352800,2),(1275,-191365200,1),(1275,-184197600,2),(1275,-155163600,1),(1275,-150069600,2),(1275,-128898000,1),(1275,-121125600,2),(1275,-99954000,1),(1275,-89589600,2),(1275,-68418000,1),(1275,-57967200,2),(1275,499748413,1),(1275,511236013,2),(1275,530593213,1),(1275,540266413,2),(1275,562129213,1),(1275,571197614,2),(1275,592974014,1),(1275,602042414,2),(1275,624423614,1),(1275,634701615,2),(1275,813726019,1),(1275,824004020,2),(1275,844570820,1),(1275,856058420,2),(1275,876106821,1),(1275,888717621,2),(1275,908074821,1),(1275,919562422,2),(1275,938919622,1),(1275,951616822,2),(1275,970974022,1),(1275,982461622,2),(1275,1003028422,1),(1275,1013911222,2),(1275,1036292422,1),(1275,1045360822,2),(1275,1350788425,1),(1275,1361066425,2),(1276,-2147483648,1),(1276,-1567453392,2),(1276,-1233432000,3),(1276,-1222981200,2),(1276,-1205956800,3),(1276,-1194037200,2),(1276,-1172865600,3),(1276,-1162501200,2),(1276,-1141329600,3),(1276,-1130965200,2),(1276,-1109793600,3),(1276,-1099429200,2),(1276,-1078257600,3),(1276,-1067806800,2),(1276,-1046635200,3),(1276,-1036270800,2),(1276,-1015099200,3),(1276,-1004734800,2),(1276,-983563200,3),(1276,-973198800,2),(1276,-952027200,3),(1276,-941576400,2),(1276,-931032000,3),(1276,-900882000,2),(1276,-890337600,3),(1276,-833749200,2),(1276,-827265600,3),(1276,-752274000,2),(1276,-733780800,3),(1276,-197326800,2),(1276,-190843200,3),(1276,-184194000,2),(1276,-164491200,3),(1276,-152658000,2),(1276,-132955200,3),(1276,-121122000,2),(1276,-101419200,3),(1276,-86821200,2),(1276,-71092800,3),(1276,-54766800,2),(1276,-39038400,3),(1276,-23317200,2),(1276,-7588800,5),(1276,128142003,4),(1276,136605603,5),(1276,596948414,4),(1276,605066414,5),(1276,624423614,4),(1276,636516015,5),(1276,656478015,4),(1276,667965616,5),(1276,687927616,4),(1276,699415216,5),(1276,719377217,4),(1276,731469617,5),(1276,938919622,3),(1276,952052422,5),(1276,1198983623,4),(1276,1205632823,5),(1276,1224385223,4),(1276,1237082424,5),(1277,-2147483648,1),(1277,-1567453392,2),(1277,-1233432000,3),(1277,-1222981200,2),(1277,-1205956800,3),(1277,-1194037200,2),(1277,-1172865600,3),(1277,-1162501200,2),(1277,-1141329600,3),(1277,-1130965200,2),(1277,-1109793600,3),(1277,-1099429200,2),(1277,-1078257600,3),(1277,-1067806800,2),(1277,-1046635200,3),(1277,-1036270800,2),(1277,-1015099200,3),(1277,-1004734800,2),(1277,-983563200,3),(1277,-973198800,2),(1277,-952027200,3),(1277,-941576400,2),(1277,-931032000,3),(1277,-900882000,2),(1277,-890337600,3),(1277,-833749200,2),(1277,-827265600,3),(1277,-752274000,2),(1277,-733780800,3),(1277,-197326800,2),(1277,-190843200,3),(1277,-184194000,2),(1277,-164491200,3),(1277,-152658000,2),(1277,-132955200,3),(1277,-121122000,2),(1277,-101419200,3),(1277,-86821200,2),(1277,-71092800,3),(1277,-54766800,2),(1277,-39038400,3),(1277,-23317200,2),(1277,-7588800,5),(1277,128142003,4),(1277,136605603,5),(1277,596948414,4),(1277,605066414,5),(1277,624423614,4),(1277,636516015,5),(1277,656478015,4),(1277,667965616,2),(1277,687931216,4),(1277,699415216,5),(1277,719377217,4),(1277,731469617,5),(1277,938919622,3),(1277,952052422,5),(1277,1086058822,2),(1277,1087704022,5),(1277,1198983623,4),(1277,1205632823,5),(1278,-2147483648,1),(1278,-1567453392,2),(1278,-1233432000,3),(1278,-1222981200,2),(1278,-1205956800,3),(1278,-1194037200,2),(1278,-1172865600,3),(1278,-1162501200,2),(1278,-1141329600,3),(1278,-1130965200,2),(1278,-1109793600,3),(1278,-1099429200,2),(1278,-1078257600,3),(1278,-1067806800,2),(1278,-1046635200,3),(1278,-1036270800,2),(1278,-1015099200,3),(1278,-1004734800,2),(1278,-983563200,3),(1278,-973198800,2),(1278,-952027200,3),(1278,-941576400,2),(1278,-931032000,3),(1278,-900882000,2),(1278,-890337600,3),(1278,-833749200,2),(1278,-827265600,3),(1278,-752274000,2),(1278,-733780800,3),(1278,-197326800,2),(1278,-190843200,3),(1278,-184194000,2),(1278,-164491200,3),(1278,-152658000,2),(1278,-132955200,3),(1278,-121122000,2),(1278,-101419200,3),(1278,-86821200,2),(1278,-71092800,3),(1278,-54766800,2),(1278,-39038400,3),(1278,-23317200,2),(1278,-7588800,5),(1278,128142003,4),(1278,136605603,5),(1278,596948414,4),(1278,605066414,5),(1278,624423614,4),(1278,636516015,5),(1278,656478015,4),(1278,667965616,2),(1278,687931216,4),(1278,699415216,5),(1278,719377217,4),(1278,731469617,5),(1278,938919622,3),(1278,952052422,5),(1278,1086058822,2),(1278,1087704022,5),(1278,1198983623,4),(1278,1205632823,5),(1279,-2147483648,1),(1279,-1567453392,2),(1279,-1233432000,3),(1279,-1222981200,2),(1279,-1205956800,3),(1279,-1194037200,2),(1279,-1172865600,3),(1279,-1162501200,2),(1279,-1141329600,3),(1279,-1130965200,2),(1279,-1109793600,3),(1279,-1099429200,2),(1279,-1078257600,3),(1279,-1067806800,2),(1279,-1046635200,3),(1279,-1036270800,2),(1279,-1015099200,3),(1279,-1004734800,2),(1279,-983563200,3),(1279,-973198800,2),(1279,-952027200,3),(1279,-941576400,2),(1279,-931032000,3),(1279,-900882000,2),(1279,-890337600,3),(1279,-833749200,2),(1279,-827265600,3),(1279,-752274000,2),(1279,-733780800,3),(1279,-197326800,2),(1279,-190843200,3),(1279,-184194000,2),(1279,-164491200,3),(1279,-152658000,2),(1279,-132955200,3),(1279,-121122000,2),(1279,-101419200,3),(1279,-86821200,2),(1279,-71092800,3),(1279,-54766800,2),(1279,-39038400,3),(1279,-23317200,2),(1279,-7588800,5),(1279,128142003,4),(1279,136605603,5),(1279,596948414,4),(1279,605066414,5),(1279,624423614,4),(1279,636516015,5),(1279,656478015,4),(1279,667965616,2),(1279,687931216,4),(1279,699415216,5),(1279,719377217,4),(1279,731469617,5),(1279,938919622,3),(1279,952052422,5),(1279,1198983623,4),(1279,1205632823,5),(1279,1224385223,4),(1279,1237082424,5),(1280,-2147483648,1),(1280,-1567453392,2),(1280,-1233432000,3),(1280,-1222981200,2),(1280,-1205956800,3),(1280,-1194037200,2),(1280,-1172865600,3),(1280,-1162501200,2),(1280,-1141329600,3),(1280,-1130965200,2),(1280,-1109793600,3),(1280,-1099429200,2),(1280,-1078257600,3),(1280,-1067806800,2),(1280,-1046635200,3),(1280,-1036270800,2),(1280,-1015099200,3),(1280,-1004734800,2),(1280,-983563200,3),(1280,-973198800,2),(1280,-952027200,3),(1280,-941576400,2),(1280,-931032000,3),(1280,-900882000,2),(1280,-890337600,3),(1280,-833749200,2),(1280,-827265600,3),(1280,-752274000,2),(1280,-733780800,3),(1280,-197326800,2),(1280,-190843200,3),(1280,-184194000,2),(1280,-164491200,3),(1280,-152658000,2),(1280,-132955200,3),(1280,-121122000,2),(1280,-101419200,3),(1280,-86821200,2),(1280,-71092800,3),(1280,-54766800,2),(1280,-39038400,3),(1280,-23317200,2),(1280,-7588800,5),(1280,128142003,4),(1280,136605603,5),(1280,596948414,4),(1280,605066414,5),(1280,624423614,4),(1280,636516015,2),(1280,657086415,3),(1280,669178816,2),(1280,686721616,4),(1280,699415216,5),(1280,719377217,4),(1280,731469617,5),(1280,938919622,3),(1280,952052422,5),(1280,1198983623,4),(1280,1205632823,5),(1281,-2147483648,1),(1281,-1567453392,2),(1281,-1233432000,3),(1281,-1222981200,2),(1281,-1205956800,3),(1281,-1194037200,2),(1281,-1172865600,3),(1281,-1162501200,2),(1281,-1141329600,3),(1281,-1130965200,2),(1281,-1109793600,3),(1281,-1099429200,2),(1281,-1078257600,3),(1281,-1067806800,2),(1281,-1046635200,3),(1281,-1036270800,2),(1281,-1015099200,3),(1281,-1004734800,2),(1281,-983563200,3),(1281,-973198800,2),(1281,-952027200,3),(1281,-941576400,2),(1281,-931032000,3),(1281,-900882000,2),(1281,-890337600,3),(1281,-833749200,2),(1281,-827265600,3),(1281,-752274000,2),(1281,-733780800,3),(1281,-197326800,2),(1281,-190843200,3),(1281,-184194000,2),(1281,-164491200,3),(1281,-152658000,2),(1281,-132955200,3),(1281,-121122000,2),(1281,-101419200,3),(1281,-86821200,2),(1281,-71092800,3),(1281,-54766800,2),(1281,-39038400,3),(1281,-23317200,2),(1281,-7588800,5),(1281,128142003,4),(1281,136605603,5),(1281,596948414,4),(1281,605066414,5),(1281,624423614,4),(1281,636516015,5),(1281,656478015,4),(1281,667792816,2),(1281,673588816,5),(1281,687927616,4),(1281,699415216,5),(1281,719377217,4),(1281,731469617,5),(1281,938919622,3),(1281,952052422,5),(1281,1086058822,2),(1281,1087704022,5),(1281,1198983623,4),(1281,1205632823,5),(1282,-2147483648,1),(1282,-1567453392,2),(1282,-1233432000,3),(1282,-1222981200,2),(1282,-1205956800,3),(1282,-1194037200,2),(1282,-1172865600,3),(1282,-1162501200,2),(1282,-1141329600,3),(1282,-1130965200,2),(1282,-1109793600,3),(1282,-1099429200,2),(1282,-1078257600,3),(1282,-1067806800,2),(1282,-1046635200,3),(1282,-1036270800,2),(1282,-1015099200,3),(1282,-1004734800,2),(1282,-983563200,3),(1282,-973198800,2),(1282,-952027200,3),(1282,-941576400,2),(1282,-931032000,3),(1282,-900882000,2),(1282,-890337600,3),(1282,-833749200,2),(1282,-827265600,3),(1282,-752274000,2),(1282,-733780800,3),(1282,-197326800,2),(1282,-190843200,3),(1282,-184194000,2),(1282,-164491200,3),(1282,-152658000,2),(1282,-132955200,3),(1282,-121122000,2),(1282,-101419200,3),(1282,-86821200,2),(1282,-71092800,3),(1282,-54766800,2),(1282,-39038400,3),(1282,-23317200,2),(1282,-7588800,5),(1282,128142003,4),(1282,136605603,5),(1282,596948414,4),(1282,605066414,5),(1282,624423614,4),(1282,636516015,2),(1282,655963215,3),(1282,667796416,2),(1282,687499216,3),(1282,699418816,2),(1282,719380817,4),(1282,731469617,5),(1282,938919622,3),(1282,952052422,5),(1282,1085281222,2),(1282,1096171222,5),(1282,1198983623,4),(1282,1205632823,5),(1283,-2147483648,1),(1283,-1567453392,2),(1283,-1233432000,3),(1283,-1222981200,2),(1283,-1205956800,3),(1283,-1194037200,2),(1283,-1172865600,3),(1283,-1162501200,2),(1283,-1141329600,3),(1283,-1130965200,2),(1283,-1109793600,3),(1283,-1099429200,2),(1283,-1078257600,3),(1283,-1067806800,2),(1283,-1046635200,3),(1283,-1036270800,2),(1283,-1015099200,3),(1283,-1004734800,2),(1283,-983563200,3),(1283,-973198800,2),(1283,-952027200,3),(1283,-941576400,2),(1283,-931032000,3),(1283,-900882000,2),(1283,-890337600,3),(1283,-833749200,2),(1283,-827265600,3),(1283,-752274000,2),(1283,-733780800,3),(1283,-197326800,2),(1283,-190843200,3),(1283,-184194000,2),(1283,-164491200,3),(1283,-152658000,2),(1283,-132955200,3),(1283,-121122000,2),(1283,-101419200,3),(1283,-86821200,2),(1283,-71092800,3),(1283,-54766800,2),(1283,-39038400,3),(1283,-23317200,2),(1283,-7588800,5),(1283,128142003,4),(1283,136605603,5),(1283,596948414,4),(1283,605066414,5),(1283,624423614,4),(1283,636516015,5),(1283,656478015,4),(1283,667965616,5),(1283,687927616,4),(1283,699415216,5),(1283,719377217,4),(1283,731469617,5),(1283,938919622,3),(1283,952052422,5),(1283,1086058822,2),(1283,1087704022,5),(1283,1198983623,4),(1283,1205632823,5),(1284,-2147483648,1),(1284,-1567453392,2),(1284,-1233432000,3),(1284,-1222981200,2),(1284,-1205956800,3),(1284,-1194037200,2),(1284,-1172865600,3),(1284,-1162501200,2),(1284,-1141329600,3),(1284,-1130965200,2),(1284,-1109793600,3),(1284,-1099429200,2),(1284,-1078257600,3),(1284,-1067806800,2),(1284,-1046635200,3),(1284,-1036270800,2),(1284,-1015099200,3),(1284,-1004734800,2),(1284,-983563200,3),(1284,-973198800,2),(1284,-952027200,3),(1284,-941576400,2),(1284,-931032000,3),(1284,-900882000,2),(1284,-890337600,3),(1284,-833749200,2),(1284,-827265600,3),(1284,-752274000,2),(1284,-733780800,3),(1284,-197326800,2),(1284,-190843200,3),(1284,-184194000,2),(1284,-164491200,3),(1284,-152658000,2),(1284,-132955200,3),(1284,-121122000,2),(1284,-101419200,3),(1284,-86821200,2),(1284,-71092800,3),(1284,-54766800,2),(1284,-39038400,3),(1284,-23317200,2),(1284,-7588800,5),(1284,128142003,4),(1284,136605603,5),(1284,596948414,4),(1284,605066414,5),(1284,624423614,4),(1284,636516015,5),(1284,656478015,4),(1284,667965616,2),(1284,687931216,4),(1284,699415216,5),(1284,719377217,4),(1284,731469617,5),(1284,938919622,3),(1284,952052422,5),(1284,1198983623,4),(1284,1205632823,5),(1285,-2147483648,1),(1285,-1567453392,2),(1285,-1233432000,3),(1285,-1222981200,2),(1285,-1205956800,3),(1285,-1194037200,2),(1285,-1172865600,3),(1285,-1162501200,2),(1285,-1141329600,3),(1285,-1130965200,2),(1285,-1109793600,3),(1285,-1099429200,2),(1285,-1078257600,3),(1285,-1067806800,2),(1285,-1046635200,3),(1285,-1036270800,2),(1285,-1015099200,3),(1285,-1004734800,2),(1285,-983563200,3),(1285,-973198800,2),(1285,-952027200,3),(1285,-941576400,2),(1285,-931032000,3),(1285,-900882000,2),(1285,-890337600,3),(1285,-833749200,2),(1285,-827265600,3),(1285,-752274000,2),(1285,-733780800,3),(1285,-197326800,2),(1285,-190843200,3),(1285,-184194000,2),(1285,-164491200,3),(1285,-152658000,2),(1285,-132955200,3),(1285,-121122000,2),(1285,-101419200,3),(1285,-86821200,2),(1285,-71092800,3),(1285,-54766800,2),(1285,-39038400,3),(1285,-23317200,2),(1285,-7588800,5),(1285,128142003,4),(1285,136605603,5),(1285,596948414,4),(1285,605066414,5),(1285,624423614,4),(1285,636516015,5),(1285,656478015,4),(1285,667792816,2),(1285,673588816,5),(1285,687927616,4),(1285,699415216,5),(1285,719377217,4),(1285,731469617,5),(1285,938919622,3),(1285,952052422,5),(1285,1085972422,2),(1285,1090728022,5),(1285,1198983623,4),(1285,1205632823,5),(1286,-2147483648,1),(1286,-1567453392,2),(1286,-1233432000,3),(1286,-1222981200,2),(1286,-1205956800,3),(1286,-1194037200,2),(1286,-1172865600,3),(1286,-1162501200,2),(1286,-1141329600,3),(1286,-1130965200,2),(1286,-1109793600,3),(1286,-1099429200,2),(1286,-1078257600,3),(1286,-1067806800,2),(1286,-1046635200,3),(1286,-1036270800,2),(1286,-1015099200,3),(1286,-1004734800,2),(1286,-983563200,3),(1286,-973198800,2),(1286,-952027200,3),(1286,-941576400,2),(1286,-931032000,3),(1286,-900882000,2),(1286,-890337600,3),(1286,-833749200,2),(1286,-827265600,3),(1286,-752274000,2),(1286,-733780800,3),(1286,-197326800,2),(1286,-190843200,3),(1286,-184194000,2),(1286,-164491200,3),(1286,-152658000,2),(1286,-132955200,3),(1286,-121122000,2),(1286,-101419200,3),(1286,-86821200,2),(1286,-71092800,3),(1286,-54766800,2),(1286,-39038400,3),(1286,-23317200,2),(1286,-7588800,5),(1286,128142003,4),(1286,136605603,5),(1286,596948414,4),(1286,605066414,5),(1286,624423614,4),(1286,637380015,2),(1286,655963215,3),(1286,667796416,2),(1286,675748816,5),(1286,938919622,3),(1286,952052422,5),(1286,1085972422,2),(1286,1090728022,5),(1286,1198983623,4),(1286,1200880823,3),(1286,1205031623,2),(1286,1223784023,3),(1286,1236481224,2),(1286,1255233624,5),(1287,-2147483648,1),(1287,-1567453392,2),(1287,-1233432000,3),(1287,-1222981200,2),(1287,-1205956800,3),(1287,-1194037200,2),(1287,-1172865600,3),(1287,-1162501200,2),(1287,-1141329600,3),(1287,-1130965200,2),(1287,-1109793600,3),(1287,-1099429200,2),(1287,-1078257600,3),(1287,-1067806800,2),(1287,-1046635200,3),(1287,-1036270800,2),(1287,-1015099200,3),(1287,-1004734800,2),(1287,-983563200,3),(1287,-973198800,2),(1287,-952027200,3),(1287,-941576400,2),(1287,-931032000,3),(1287,-900882000,2),(1287,-890337600,3),(1287,-833749200,2),(1287,-827265600,3),(1287,-752274000,2),(1287,-733780800,3),(1287,-197326800,2),(1287,-190843200,3),(1287,-184194000,2),(1287,-164491200,3),(1287,-152658000,2),(1287,-132955200,3),(1287,-121122000,2),(1287,-101419200,3),(1287,-86821200,2),(1287,-71092800,3),(1287,-54766800,2),(1287,-39038400,3),(1287,-23317200,2),(1287,-7588800,5),(1287,128142003,4),(1287,136605603,5),(1287,596948414,4),(1287,605066414,5),(1287,624423614,4),(1287,636516015,5),(1287,656478015,4),(1287,667965616,2),(1287,687931216,4),(1287,699415216,5),(1287,719377217,4),(1287,731469617,5),(1287,938919622,3),(1287,952052422,5),(1287,1086058822,2),(1287,1087099222,5),(1287,1198983623,4),(1287,1205632823,5),(1287,1224385223,4),(1287,1237082424,5),(1288,-2147483648,1),(1288,-1567453392,2),(1288,-1233432000,3),(1288,-1222981200,2),(1288,-1205956800,3),(1288,-1194037200,2),(1288,-1172865600,3),(1288,-1162501200,2),(1288,-1141329600,3),(1288,-1130965200,2),(1288,-1109793600,3),(1288,-1099429200,2),(1288,-1078257600,3),(1288,-1067806800,2),(1288,-1046635200,3),(1288,-1036270800,2),(1288,-1015099200,3),(1288,-1004734800,2),(1288,-983563200,3),(1288,-973198800,2),(1288,-952027200,3),(1288,-941576400,2),(1288,-931032000,3),(1288,-900882000,2),(1288,-890337600,3),(1288,-833749200,2),(1288,-827265600,3),(1288,-752274000,2),(1288,-733780800,3),(1288,-197326800,2),(1288,-190843200,3),(1288,-184194000,2),(1288,-164491200,3),(1288,-152658000,2),(1288,-132955200,3),(1288,-121122000,2),(1288,-101419200,3),(1288,-86821200,2),(1288,-71092800,3),(1288,-54766800,2),(1288,-39038400,3),(1288,-23317200,2),(1288,-7588800,5),(1288,128142003,4),(1288,136605603,5),(1288,596948414,4),(1288,605066414,5),(1288,624423614,4),(1288,636516015,5),(1288,656478015,4),(1288,667965616,5),(1288,687927616,4),(1288,699415216,5),(1288,719377217,4),(1288,731469617,5),(1288,938919622,3),(1288,952052422,5),(1288,1085886022,2),(1288,1087704022,5),(1288,1198983623,4),(1288,1205632823,5),(1289,-2147483648,0),(1289,-1826738653,1),(1289,-157750200,2),(1290,-2147483648,1),(1290,-1206389360,2),(1290,86760001,3),(1290,134017203,2),(1290,181368004,4),(1290,194497205,2),(1290,212990405,4),(1290,226033206,2),(1290,244526406,4),(1290,257569207,2),(1290,276062407,4),(1290,291783608,2),(1290,307598408,4),(1290,323406009,2),(1290,339220809,4),(1290,354942009,2),(1290,370756810,4),(1290,386478010,2),(1290,402292811,4),(1290,418014011,2),(1290,433828812,4),(1290,449636412,2),(1290,465451212,4),(1290,481172412,2),(1290,496987213,4),(1290,512708413,2),(1290,528523213,4),(1290,544244413,2),(1290,560059213,4),(1290,575866814,2),(1290,591681614,4),(1290,607402814,2),(1290,625032014,4),(1290,638938815,2),(1290,654753615,4),(1290,670474816,2),(1290,686721616,4),(1290,699418816,2),(1290,718257617,4),(1290,733546817,2),(1290,749448018,4),(1290,762318018,2),(1290,780984019,4),(1290,793767619,2),(1290,812520019,4),(1290,825649220,2),(1290,844574420,4),(1290,856666820,2),(1290,876024021,4),(1290,888721221,2),(1290,907473621,4),(1290,920775622,2),(1290,938923222,4),(1290,952225222,2),(1290,970372822,4),(1290,983674822,2),(1290,1002427222,4),(1290,1018148422,2),(1290,1030852822,4),(1290,1049598022,2),(1290,1062907222,4),(1290,1081047622,2),(1290,1097985622,4),(1290,1110682822,2),(1290,1129435222,4),(1290,1142132423,2),(1290,1160884823,4),(1290,1173582023,2),(1290,1192939223,4),(1290,1205031623,2),(1290,1224388823,4),(1290,1236481224,2),(1290,1255838424,4),(1290,1270954824,2),(1290,1286078424,4),(1290,1302404424,2),(1290,1317528024,4),(1290,1333854024,2),(1290,1349582425,4),(1290,1364094025,2),(1290,1381032025,4),(1290,1395543625,2),(1290,1412481625,4),(1290,1426993225,2),(1290,1443931226,4),(1290,1459047626,2),(1290,1475380826,4),(1290,1490497227,2),(1290,1506830427,4),(1290,1521946827,2),(1290,1538884827,4),(1290,1553396427,2),(1290,1570334427,4),(1290,1584846027,2),(1290,1601784027,4),(1290,1616900427,2),(1290,1633233627,4),(1290,1648350027,2),(1290,1664683227,4),(1290,1679799627,2),(1290,1696132827,4),(1290,1711249227,2),(1290,1728187227,4),(1290,1742698827,2),(1290,1759636827,4),(1290,1774148427,2),(1290,1791086427,4),(1290,1806202827,2),(1290,1822536027,4),(1290,1837652427,2),(1290,1853985627,4),(1290,1869102027,2),(1290,1886040027,4),(1290,1900551627,2),(1290,1917489627,4),(1290,1932001227,2),(1290,1948939227,4),(1290,1964055627,2),(1290,1980388827,4),(1290,1995505227,2),(1290,2011838427,4),(1290,2026954827,2),(1290,2043288027,4),(1290,2058404427,2),(1290,2075342427,4),(1290,2089854027,2),(1290,2106792027,4),(1290,2121303627,2),(1290,2138241627,4),(1291,-2147483648,2),(1291,-1632067200,1),(1291,-1615136400,2),(1291,-923248800,1),(1291,-880214400,3),(1291,-769395600,4),(1291,-765392400,5),(1292,-2147483648,1),(1292,-880196400,2),(1292,-769395600,3),(1292,-765374400,1),(1292,-86878800,4),(1292,-21466800,5),(1292,-5745600,4),(1292,9982800,5),(1292,25704000,4),(1292,41432400,5),(1292,57758400,4),(1292,73486800,5),(1292,89208001,4),(1292,104936402,5),(1292,120657602,4),(1292,126709203,5),(1292,152107203,4),(1292,162392404,5),(1292,183556804,4),(1292,199285205,5),(1292,215611205,4),(1292,230734806,5),(1292,247060806,4),(1292,262789207,5),(1292,278510407,4),(1292,294238808,5),(1292,309960008,4),(1292,325688409,5),(1292,341409609,4),(1292,357138009,5),(1292,372859210,4),(1292,388587610,5),(1292,404913611,4),(1292,420037211,5),(1292,436363212,6),(1292,439034412,8),(1292,452088012,7),(1292,467809212,8),(1292,483537612,7),(1292,499258813,8),(1292,514987213,7),(1292,530708413,8),(1292,544622413,7),(1292,562158013,8),(1292,576072014,7),(1292,594212414,8),(1292,607521614,7),(1292,625662014,8),(1292,638971215,7),(1292,657111615,8),(1292,671025616,7),(1292,688561216,8),(1292,702475216,7),(1292,720010817,8),(1292,733924817,7),(1292,752065218,8),(1292,765374418,7),(1292,783514819,8),(1292,796824019,7),(1292,814964419,8),(1292,828878420,7),(1292,846414020,8),(1292,860328020,7),(1292,877863621,8),(1292,891777621,7),(1292,909313221,8),(1292,923227222,7),(1292,941367622,8),(1292,954676822,7),(1292,972817222,8),(1292,986126422,7),(1292,1004266822,8),(1292,1018180822,7),(1292,1035716422,8),(1292,1049630422,7),(1292,1067166022,8),(1292,1081080022,7),(1292,1099220422,8),(1292,1112529622,7),(1292,1130670022,8),(1292,1143979223,7),(1292,1162119623,8),(1292,1173614423,7),(1292,1194174023,8),(1292,1205064023,7),(1292,1225623623,8),(1292,1236513624,7),(1292,1257073224,8),(1292,1268568024,7),(1292,1289127624,8),(1292,1300017624,7),(1292,1320577224,8),(1292,1331467224,7),(1292,1352026825,8),(1292,1362916825,7),(1292,1383476425,8),(1292,1394366425,7),(1292,1414926025,8),(1292,1425816025,7),(1292,1446375626,8),(1292,1457870426,7),(1292,1478430026,8),(1292,1489320027,7),(1292,1509879627,8),(1292,1520769627,7),(1292,1541329227,8),(1292,1552219227,7),(1292,1572778827,8),(1292,1583668827,7),(1292,1604228427,8),(1292,1615723227,7),(1292,1636282827,8),(1292,1647172827,7),(1292,1667732427,8),(1292,1678622427,7),(1292,1699182027,8),(1292,1710072027,7),(1292,1730631627,8),(1292,1741521627,7),(1292,1762081227,8),(1292,1772971227,7),(1292,1793530827,8),(1292,1805025627,7),(1292,1825585227,8),(1292,1836475227,7),(1292,1857034827,8),(1292,1867924827,7),(1292,1888484427,8),(1292,1899374427,7),(1292,1919934027,8),(1292,1930824027,7),(1292,1951383627,8),(1292,1962878427,7),(1292,1983438027,8),(1292,1994328027,7),(1292,2014887627,8),(1292,2025777627,7),(1292,2046337227,8),(1292,2057227227,7),(1292,2077786827,8),(1292,2088676827,7),(1292,2109236427,8),(1292,2120126427,7),(1292,2140686027,8),(1293,-2147483648,0),(1293,-1767216356,2),(1293,-1206957600,1),(1293,-1191362400,2),(1293,-1175374800,1),(1293,-1159826400,2),(1293,-633819600,1),(1293,-622069200,2),(1293,-602283600,1),(1293,-591832800,2),(1293,-570747600,1),(1293,-560210400,2),(1293,-539125200,1),(1293,-531352800,2),(1293,-191365200,1),(1293,-184197600,2),(1293,-155163600,1),(1293,-150069600,2),(1293,-128898000,1),(1293,-121125600,2),(1293,-99954000,1),(1293,-89589600,2),(1293,-68418000,1),(1293,-57967200,2),(1293,499748413,1),(1293,511236013,2),(1293,530593213,1),(1293,540266413,2),(1293,562129213,1),(1293,571197614,2),(1293,592974014,1),(1293,602042414,2),(1293,624423614,1),(1293,634701615,2),(1293,656478015,1),(1293,666756016,2),(1293,687927616,1),(1293,697600816,2),(1293,719982017,1),(1293,728445617,2),(1293,750826818,1),(1293,761709618,2),(1293,782276419,1),(1293,793159219,2),(1293,813726019,1),(1293,824004020,2),(1293,844570820,1),(1293,856058420,2),(1293,876106821,1),(1293,888717621,2),(1293,908074821,1),(1293,919562422,2),(1293,938919622,1),(1293,951616822,2),(1293,970974022,1),(1293,982461622,2),(1293,1003028422,1),(1293,1013911222,2),(1293,1036292422,1),(1293,1045360822,2),(1293,1318734024,1),(1293,1330221624,2),(1294,-2147483648,0),(1294,-1514739600,1),(1294,-1343066400,2),(1294,-1234807200,1),(1294,-1220292000,2),(1294,-1207159200,1),(1294,-1191344400,2),(1294,-873828000,1),(1294,-661539600,3),(1294,28800,1),(1294,828867620,4),(1294,846403220,1),(1294,860317220,4),(1294,877852821,1),(1294,891766821,4),(1294,909302421,1),(1294,923216422,4),(1294,941356822,1),(1294,954666022,4),(1294,972806422,1),(1294,989139622,4),(1294,1001836822,1),(1294,1018170022,4),(1294,1035705622,1),(1294,1049619622,4),(1294,1067155222,1),(1294,1081069222,4),(1294,1099209622,1),(1294,1112518822,4),(1294,1130659222,1),(1294,1143968423,4),(1294,1162108823,1),(1294,1175418023,4),(1294,1193558423,1),(1294,1207472423,4),(1294,1225008023,1),(1294,1238922024,4),(1294,1256457624,1),(1294,1270371624,5),(1294,1288508424,2),(1294,1301817624,5),(1294,1319958024,2),(1294,1333267224,5),(1294,1351407625,2),(1294,1365321625,5),(1294,1382857225,2),(1294,1396771225,5),(1294,1414306825,2),(1294,1428220825,5),(1294,1445756426,2),(1294,1459670426,5),(1294,1477810826,2),(1294,1491120027,5),(1294,1509260427,2),(1294,1522569627,5),(1294,1540710027,2),(1294,1554624027,5),(1294,1572159627,2),(1294,1586073627,5),(1294,1603609227,2),(1294,1617523227,5),(1294,1635663627,2),(1294,1648972827,5),(1294,1667113227,2),(1294,1680422427,5),(1294,1698562827,2),(1294,1712476827,5),(1294,1730012427,2),(1294,1743926427,5),(1294,1761462027,2),(1294,1775376027,5),(1294,1792911627,2),(1294,1806825627,5),(1294,1824966027,2),(1294,1838275227,5),(1294,1856415627,2),(1294,1869724827,5),(1294,1887865227,2),(1294,1901779227,5),(1294,1919314827,2),(1294,1933228827,5),(1294,1950764427,2),(1294,1964678427,5),(1294,1982818827,2),(1294,1996128027,5),(1294,2014268427,2),(1294,2027577627,5),(1294,2045718027,2),(1294,2059027227,5),(1294,2077167627,2),(1294,2091081627,5),(1294,2108617227,2),(1294,2122531227,5),(1294,2140066827,2),(1295,-2147483648,0),(1295,-1451678491,1),(1295,-1199217691,3),(1295,234943206,2),(1295,244616406,3),(1295,261554407,2),(1295,276066007,3),(1295,293004008,2),(1295,307515608,3),(1295,325058409,2),(1295,338706009,3),(1296,-2147483648,0),(1296,-1767213964,2),(1296,-1206957600,1),(1296,-1191362400,2),(1296,-1175374800,1),(1296,-1159826400,2),(1296,-633819600,1),(1296,-622069200,2),(1296,-602283600,1),(1296,-591832800,2),(1296,-570747600,1),(1296,-560210400,2),(1296,-539125200,1),(1296,-531352800,2),(1296,-191365200,1),(1296,-184197600,2),(1296,-155163600,1),(1296,-150069600,2),(1296,-128898000,1),(1296,-121125600,2),(1296,-99954000,1),(1296,-89589600,2),(1296,-68418000,1),(1296,-57967200,2),(1296,499748413,1),(1296,511236013,2),(1296,530593213,1),(1296,540266413,2),(1296,562129213,1),(1296,571197614,2),(1297,-2147483648,0),(1297,-1822500432,2),(1297,-1616954400,1),(1297,-1606069800,2),(1297,-1585504800,1),(1297,-1574015400,2),(1297,-1554055200,1),(1297,-1542565800,2),(1297,-1522605600,1),(1297,-1511116200,2),(1297,-1490551200,1),(1297,-1479666600,2),(1297,-1459101600,1),(1297,-1448217000,2),(1297,-1427652000,1),(1297,-1416162600,2),(1297,-1396202400,1),(1297,-1384713000,2),(1297,-1364752800,1),(1297,-1353263400,2),(1297,-1333303200,1),(1297,-1321813800,2),(1297,-1301248800,1),(1297,-1290364200,2),(1297,-1269799200,1),(1297,-1258914600,2),(1297,-1238349600,1),(1297,-1226860200,2),(1297,-1206900000,1),(1297,-1195410600,2),(1297,-1175450400,1),(1297,-1163961000,2),(1297,-1143396000,1),(1297,-1132511400,2),(1297,-1111946400,1),(1297,-1101061800,2),(1297,-1080496800,1),(1297,-1069612200,2),(1297,-1049047200,1),(1297,-1037557800,2),(1297,-1017597600,1),(1297,-1006108200,2),(1297,-986148000,1),(1297,-974658600,2),(1297,-954093600,1),(1297,-943209000,2),(1297,-922644000,1),(1297,-911759400,2),(1297,-891194400,1),(1297,-879705000,2),(1297,-859744800,1),(1297,-848255400,2),(1297,123919202,3),(1297,129618003,2),(1297,409039211,3),(1297,413874011,2),(1298,-2147483648,2),(1298,-1632074400,1),(1298,-1615143600,2),(1298,-880221600,3),(1298,-769395600,4),(1298,-765399600,2),(1299,-2147483648,0),(1299,-1767211040,2),(1299,-1206954000,1),(1299,-1191358800,2),(1299,-1175371200,1),(1299,-1159822800,2),(1299,-633816000,1),(1299,-622065600,2),(1299,-602280000,1),(1299,-591829200,2),(1299,-570744000,1),(1299,-560206800,2),(1299,-539121600,1),(1299,-531349200,2),(1299,-191361600,1),(1299,-184194000,2),(1299,-155160000,1),(1299,-150066000,2),(1299,-128894400,1),(1299,-121122000,2),(1299,-99950400,1),(1299,-89586000,2),(1299,-68414400,1),(1299,-57963600,2),(1299,499752013,1),(1299,511239613,2),(1299,530596813,1),(1299,540270013,2),(1299,562132813,1),(1299,571201214,2),(1299,938923222,1),(1299,951620422,2),(1299,970977622,1),(1299,971578822,2),(1300,-2147483648,1),(1300,-1739041424,3),(1300,704869216,2),(1300,733896017,3),(1301,-2147483648,2),(1301,-1633269600,1),(1301,-1615129200,2),(1301,-1601820000,1),(1301,-1583679600,2),(1301,-1471788000,5),(1301,-880210800,3),(1301,-769395600,4),(1301,-765388800,5),(1301,-84380400,6),(1301,-68659200,5),(1301,-52930800,6),(1301,-37209600,5),(1301,-21481200,6),(1301,-5760000,5),(1301,9968400,6),(1301,25689600,5),(1301,41418000,6),(1301,57744000,5),(1301,73472400,6),(1301,89193601,5),(1301,104922002,6),(1301,120643202,5),(1301,129114003,6),(1301,152092803,5),(1301,162378004,6),(1301,183542404,5),(1301,199270805,6),(1301,215596805,5),(1301,230720406,6),(1301,247046406,5),(1301,262774807,6),(1301,278496007,5),(1301,294224408,6),(1301,309945608,5),(1301,325674009,6),(1301,341395209,5),(1301,357123609,6),(1301,372844810,5),(1301,388573210,6),(1301,404899211,5),(1301,420022811,6),(1301,436348812,5),(1301,452077212,6),(1301,467798412,5),(1301,483526812,6),(1301,499248013,5),(1301,514976413,6),(1301,530697613,5),(1301,544611613,6),(1301,562147213,5),(1301,576061214,6),(1301,594201614,5),(1301,607510814,6),(1301,625651214,5),(1301,638960415,6),(1301,657100815,5),(1301,671014816,6),(1301,688550416,5),(1301,702464416,6),(1301,720000017,5),(1301,733914017,6),(1301,752054418,5),(1301,765363618,6),(1301,783504019,5),(1301,796813219,6),(1301,814953619,5),(1301,828867620,6),(1301,846403220,5),(1301,860317220,6),(1301,877852821,5),(1301,891766821,6),(1301,909302421,5),(1301,923216422,6),(1301,941356822,5),(1301,954666022,6),(1301,972806422,5),(1301,986115622,6),(1301,1004256022,5),(1301,1018170022,6),(1301,1035705622,5),(1301,1049619622,6),(1301,1067155222,5),(1301,1081069222,6),(1301,1099209622,5),(1301,1112518822,6),(1301,1130659222,5),(1301,1143968423,6),(1301,1162108823,5),(1301,1173603623,6),(1301,1194163223,5),(1301,1205053223,6),(1301,1225612823,5),(1301,1236502824,6),(1301,1257062424,5),(1301,1268557224,6),(1301,1289116824,5),(1301,1300006824,6),(1301,1320566424,5),(1301,1331456424,6),(1301,1352016025,5),(1301,1362906025,6),(1301,1383465625,5),(1301,1394355625,6),(1301,1414915225,5),(1301,1425805225,6),(1301,1446364826,5),(1301,1457859626,6),(1301,1478419226,5),(1301,1489309227,6),(1301,1509868827,5),(1301,1520758827,6),(1301,1541318427,5),(1301,1552208427,6),(1301,1572768027,5),(1301,1583658027,6),(1301,1604217627,5),(1301,1615712427,6),(1301,1636272027,5),(1301,1647162027,6),(1301,1667721627,5),(1301,1678611627,6),(1301,1699171227,5),(1301,1710061227,6),(1301,1730620827,5),(1301,1741510827,6),(1301,1762070427,5),(1301,1772960427,6),(1301,1793520027,5),(1301,1805014827,6),(1301,1825574427,5),(1301,1836464427,6),(1301,1857024027,5),(1301,1867914027,6),(1301,1888473627,5),(1301,1899363627,6),(1301,1919923227,5),(1301,1930813227,6),(1301,1951372827,5),(1301,1962867627,6),(1301,1983427227,5),(1301,1994317227,6),(1301,2014876827,5),(1301,2025766827,6),(1301,2046326427,5),(1301,2057216427,6),(1301,2077776027,5),(1301,2088666027,6),(1301,2109225627,5),(1301,2120115627,6),(1301,2140675227,5),(1302,-2147483648,1),(1302,-1567453392,2),(1302,-1233432000,3),(1302,-1222981200,2),(1302,-1205956800,3),(1302,-1194037200,2),(1302,-1172865600,3),(1302,-1162501200,2),(1302,-1141329600,3),(1302,-1130965200,2),(1302,-1109793600,3),(1302,-1099429200,2),(1302,-1078257600,3),(1302,-1067806800,2),(1302,-1046635200,3),(1302,-1036270800,2),(1302,-1015099200,3),(1302,-1004734800,2),(1302,-983563200,3),(1302,-973198800,2),(1302,-952027200,3),(1302,-941576400,2),(1302,-931032000,3),(1302,-900882000,2),(1302,-890337600,3),(1302,-833749200,2),(1302,-827265600,3),(1302,-752274000,2),(1302,-733780800,3),(1302,-197326800,2),(1302,-190843200,3),(1302,-184194000,2),(1302,-164491200,3),(1302,-152658000,2),(1302,-132955200,3),(1302,-121122000,2),(1302,-101419200,3),(1302,-86821200,2),(1302,-71092800,3),(1302,-54766800,2),(1302,-39038400,3),(1302,-23317200,2),(1302,-7588800,5),(1302,128142003,4),(1302,136605603,5),(1302,596948414,4),(1302,605066414,5),(1302,624423614,4),(1302,636516015,5),(1302,656478015,4),(1302,667965616,5),(1302,687927616,4),(1302,699415216,5),(1302,719377217,4),(1302,731469617,5),(1302,938919622,3),(1302,952052422,5),(1302,1198983623,4),(1302,1205632823,5),(1302,1224385223,4),(1302,1237082424,5),(1303,-2147483648,0),(1303,-1577923200,3),(1303,-880210800,1),(1303,-769395600,2),(1303,-765388800,3),(1303,-147891600,4),(1303,-131562000,3),(1303,325674009,5),(1303,341395209,3),(1303,357123609,5),(1303,372844810,3),(1303,388573210,5),(1303,404899211,3),(1303,420022811,5),(1303,436348812,3),(1303,452077212,5),(1303,467798412,3),(1303,483526812,5),(1303,499248013,3),(1303,514976413,5),(1303,530697613,3),(1303,544611613,5),(1303,562147213,3),(1303,576061214,5),(1303,594201614,3),(1303,607510814,5),(1303,625651214,3),(1303,638960415,5),(1303,657100815,3),(1303,671014816,5),(1303,688550416,3),(1303,702464416,5),(1303,720000017,3),(1303,733914017,5),(1303,752054418,3),(1303,765363618,5),(1303,783504019,3),(1303,796813219,5),(1303,814953619,3),(1303,828867620,5),(1303,846403220,3),(1303,860317220,5),(1303,877852821,3),(1303,891766821,5),(1303,909302421,3),(1303,923216422,5),(1303,941356822,7),(1303,954662422,6),(1303,972802822,8),(1303,973400422,7),(1303,986115622,5),(1303,1004256022,3),(1303,1018170022,5),(1303,1035705622,3),(1303,1049619622,5),(1303,1067155222,3),(1303,1081069222,5),(1303,1099209622,3),(1303,1112518822,5),(1303,1130659222,3),(1303,1143968423,5),(1303,1162108823,3),(1303,1173603623,5),(1303,1194163223,3),(1303,1205053223,5),(1303,1225612823,3),(1303,1236502824,5),(1303,1257062424,3),(1303,1268557224,5),(1303,1289116824,3),(1303,1300006824,5),(1303,1320566424,3),(1303,1331456424,5),(1303,1352016025,3),(1303,1362906025,5),(1303,1383465625,3),(1303,1394355625,5),(1303,1414915225,3),(1303,1425805225,5),(1303,1446364826,3),(1303,1457859626,5),(1303,1478419226,3),(1303,1489309227,5),(1303,1509868827,3),(1303,1520758827,5),(1303,1541318427,3),(1303,1552208427,5),(1303,1572768027,3),(1303,1583658027,5),(1303,1604217627,3),(1303,1615712427,5),(1303,1636272027,3),(1303,1647162027,5),(1303,1667721627,3),(1303,1678611627,5),(1303,1699171227,3),(1303,1710061227,5),(1303,1730620827,3),(1303,1741510827,5),(1303,1762070427,3),(1303,1772960427,5),(1303,1793520027,3),(1303,1805014827,5),(1303,1825574427,3),(1303,1836464427,5),(1303,1857024027,3),(1303,1867914027,5),(1303,1888473627,3),(1303,1899363627,5),(1303,1919923227,3),(1303,1930813227,5),(1303,1951372827,3),(1303,1962867627,5),(1303,1983427227,3),(1303,1994317227,5),(1303,2014876827,3),(1303,2025766827,5),(1303,2046326427,3),(1303,2057216427,5),(1303,2077776027,3),(1303,2088666027,5),(1303,2109225627,3),(1303,2120115627,5),(1303,2140675227,3),(1304,-2147483648,0),(1304,-1767212492,2),(1304,-1206954000,1),(1304,-1191358800,2),(1304,-1175371200,1),(1304,-1159822800,2),(1304,-633816000,1),(1304,-622065600,2),(1304,-602280000,1),(1304,-591829200,2),(1304,-570744000,1),(1304,-560206800,2),(1304,-539121600,1),(1304,-531349200,2),(1304,-191361600,1),(1304,-184194000,2),(1304,-155160000,1),(1304,-150066000,2),(1304,-128894400,1),(1304,-121122000,2),(1304,-99950400,1),(1304,-89586000,2),(1304,-68414400,1),(1304,-57963600,2),(1304,499752013,1),(1304,511239613,2),(1304,530596813,1),(1304,540270013,2),(1304,562132813,1),(1304,571201214,2),(1304,592977614,1),(1304,602046014,2),(1304,624427214,1),(1304,634705215,2),(1304,656481615,1),(1304,666759616,2),(1304,687931216,1),(1304,697604416,2),(1304,719985617,1),(1304,728449217,2),(1304,750830418,1),(1304,761713218,2),(1304,782280019,1),(1304,793162819,2),(1304,813729619,1),(1304,824007620,2),(1304,844574420,1),(1304,856062020,2),(1304,876110421,1),(1304,888721221,2),(1304,908078421,1),(1304,919566022,2),(1304,938923222,1),(1304,951620422,2),(1304,970977622,1),(1304,982465222,2),(1304,1003032022,1),(1304,1013914822,2),(1304,1036296022,1),(1304,1045364422,2),(1304,1066536022,1),(1304,1076814022,2),(1304,1099368022,1),(1304,1108868422,2),(1304,1129435222,1),(1304,1140318023,2),(1304,1162699223,1),(1304,1172372423,2),(1304,1192334423,1),(1304,1203217223,2),(1304,1224388823,1),(1304,1234666824,2),(1304,1255838424,1),(1304,1266721224,2),(1304,1287288024,1),(1304,1298170824,2),(1304,1318737624,1),(1304,1330225224,2),(1304,1350792025,1),(1304,1361070025,2),(1304,1382241625,1),(1304,1392519625,2),(1304,1413691225,1),(1304,1424574025,2),(1304,1445140826,1),(1304,1456023626,2),(1304,1476590426,1),(1304,1487473227,2),(1304,1508040027,1),(1304,1518922827,2),(1304,1541304027,1),(1304,1550372427,2),(1305,-2147483648,0),(1305,-1514743200,1),(1305,377935210,3),(1305,828860420,2),(1305,846396020,3),(1305,860310020,2),(1305,877845621,3),(1305,891759621,2),(1305,902037621,4),(1305,909298821,1),(1305,923212822,4),(1305,941353222,1),(1305,954662422,4),(1305,972802822,1),(1305,989136022,4),(1305,1001833222,1),(1305,1018166422,4),(1305,1035702022,1),(1305,1049616022,4),(1305,1067151622,1),(1305,1081065622,4),(1305,1099206022,1),(1305,1112515222,4),(1305,1130655622,1),(1305,1143964823,4),(1305,1162105223,1),(1305,1175414423,4),(1305,1193554823,1),(1305,1207468823,4),(1305,1225004423,1),(1305,1238918424,4),(1305,1256454024,1),(1305,1270368024,4),(1305,1288508424,1),(1305,1301817624,4),(1305,1319958024,1),(1305,1333267224,4),(1305,1351407625,1),(1305,1365321625,4),(1305,1382857225,1),(1305,1396771225,4),(1305,1414306825,1),(1305,1422777625,3),(1306,-2147483648,1),(1306,-1826739140,2),(1306,-157750200,3),(1306,1197183623,2),(1306,1462086026,3),(1307,-2147483648,1),(1307,-1567453392,2),(1307,-1233432000,3),(1307,-1222981200,2),(1307,-1205956800,3),(1307,-1194037200,2),(1307,-1172865600,3),(1307,-1162501200,2),(1307,-1141329600,3),(1307,-1130965200,2),(1307,-1109793600,3),(1307,-1099429200,2),(1307,-1078257600,3),(1307,-1067806800,2),(1307,-1046635200,3),(1307,-1036270800,2),(1307,-1015099200,3),(1307,-1004734800,2),(1307,-983563200,3),(1307,-973198800,2),(1307,-952027200,3),(1307,-941576400,2),(1307,-931032000,3),(1307,-900882000,2),(1307,-890337600,3),(1307,-833749200,2),(1307,-827265600,3),(1307,-752274000,2),(1307,-733780800,3),(1307,-197326800,2),(1307,-190843200,3),(1307,-184194000,2),(1307,-164491200,3),(1307,-152658000,2),(1307,-132955200,3),(1307,-121122000,2),(1307,-101419200,3),(1307,-86821200,2),(1307,-71092800,3),(1307,-54766800,2),(1307,-39038400,3),(1307,-23317200,2),(1307,-7588800,5),(1307,128142003,4),(1307,136605603,5),(1307,596948414,4),(1307,605066414,5),(1307,624423614,4),(1307,636516015,5),(1307,656478015,4),(1307,667965616,2),(1307,687931216,4),(1307,699415216,5),(1307,719377217,4),(1307,731469617,5),(1307,938919622,3),(1307,952052422,5),(1307,1086058822,2),(1307,1087704022,5),(1307,1198983623,4),(1307,1205632823,5),(1308,-2147483648,0),(1308,-1846269040,1),(1308,-71092800,2),(1309,-2147483648,1),(1309,-1946918424,2),(1310,-2147483648,2),(1310,-1633276800,1),(1310,-1615136400,2),(1310,-1601827200,1),(1310,-1583686800,2),(1310,-1563724800,1),(1310,-1551632400,2),(1310,-1538928000,1),(1310,-1520182800,2),(1310,-1504454400,1),(1310,-1491757200,2),(1310,-1473004800,1),(1310,-1459702800,2),(1310,-1441555200,1),(1310,-1428253200,2),(1310,-1410105600,1),(1310,-1396803600,2),(1310,-1378656000,1),(1310,-1365354000,2),(1310,-1347206400,1),(1310,-1333904400,2),(1310,-1315152000,1),(1310,-1301850000,2),(1310,-1283702400,1),(1310,-1270400400,2),(1310,-1252252800,1),(1310,-1238950800,2),(1310,-1220803200,1),(1310,-1207501200,2),(1310,-1189353600,1),(1310,-1176051600,2),(1310,-1157299200,1),(1310,-1144602000,2),(1310,-1125849600,1),(1310,-1112547600,2),(1310,-1094400000,1),(1310,-1081098000,2),(1310,-1067788800,3),(1310,-1045414800,2),(1310,-1031500800,1),(1310,-1018198800,2),(1310,-1000051200,1),(1310,-986749200,2),(1310,-967996800,1),(1310,-955299600,2),(1310,-936547200,1),(1310,-923245200,2),(1310,-905097600,1),(1310,-891795600,2),(1310,-880214400,4),(1310,-769395600,5),(1310,-765392400,2),(1310,-747244800,1),(1310,-733942800,2),(1310,-715795200,1),(1310,-702493200,2),(1310,-684345600,1),(1310,-671043600,2),(1310,-652896000,1),(1310,-639594000,2),(1310,-620841600,1),(1310,-608144400,2),(1310,-589392000,1),(1310,-576090000,2),(1310,-557942400,1),(1310,-544640400,2),(1310,-526492800,1),(1310,-513190800,2),(1310,-495043200,1),(1310,-481741200,2),(1310,-463593600,1),(1310,-447267600,2),(1310,-431539200,1),(1310,-415818000,2),(1310,-400089600,1),(1310,-384368400,2),(1310,-368640000,1),(1310,-352918800,2),(1310,-337190400,1),(1310,-321469200,2),(1310,-305740800,1),(1310,-289414800,2),(1310,-273686400,1),(1310,-257965200,2),(1310,-242236800,1),(1310,-226515600,2),(1310,-210787200,1),(1310,-195066000,2),(1310,-179337600,1),(1310,-163616400,2),(1310,-147888000,1),(1310,-131562000,2),(1310,-116438400,1),(1310,-100112400,2),(1310,-84384000,1),(1310,-68662800,2),(1310,-52934400,1),(1310,-37213200,2),(1310,-21484800,1),(1310,-5763600,2),(1310,9964800,1),(1310,25686000,2),(1310,41414400,1),(1310,57740400,2),(1310,73468800,1),(1310,89190001,2),(1310,104918402,1),(1310,120639602,2),(1310,126691203,1),(1310,152089203,2),(1310,162374404,1),(1310,183538804,2),(1310,199267205,1),(1310,215593205,2),(1310,230716806,1),(1310,247042806,2),(1310,262771207,1),(1310,278492407,2),(1310,294220808,1),(1310,309942008,2),(1310,325670409,1),(1310,341391609,2),(1310,357120009,1),(1310,372841210,2),(1310,388569610,1),(1310,404895611,2),(1310,420019211,1),(1310,436345212,2),(1310,452073612,1),(1310,467794812,2),(1310,483523212,1),(1310,499244413,2),(1310,514972813,1),(1310,530694013,2),(1310,544608013,1),(1310,562143613,2),(1310,576057614,1),(1310,594198014,2),(1310,607507214,1),(1310,625647614,2),(1310,638956815,1),(1310,657097215,2),(1310,671011216,1),(1310,688546816,2),(1310,702460816,1),(1310,719996417,2),(1310,733910417,1),(1310,752050818,2),(1310,765360018,1),(1310,783500419,2),(1310,796809619,1),(1310,814950019,2),(1310,828864020,1),(1310,846399620,2),(1310,860313620,1),(1310,877849221,2),(1310,891763221,1),(1310,909298821,2),(1310,923212822,1),(1310,941353222,2),(1310,954662422,1),(1310,972802822,2),(1310,986112022,1),(1310,1004252422,2),(1310,1018166422,1),(1310,1035702022,2),(1310,1049616022,1),(1310,1067151622,2),(1310,1081065622,1),(1310,1099206022,2),(1310,1112515222,1),(1310,1130655622,2),(1310,1143964823,1),(1310,1162105223,2),(1310,1173600023,1),(1310,1194159623,2),(1310,1205049623,1),(1310,1225609223,2),(1310,1236499224,1),(1310,1257058824,2),(1310,1268553624,1),(1310,1289113224,2),(1310,1300003224,1),(1310,1320562824,2),(1310,1331452824,1),(1310,1352012425,2),(1310,1362902425,1),(1310,1383462025,2),(1310,1394352025,1),(1310,1414911625,2),(1310,1425801625,1),(1310,1446361226,2),(1310,1457856026,1),(1310,1478415626,2),(1310,1489305627,1),(1310,1509865227,2),(1310,1520755227,1),(1310,1541314827,2),(1310,1552204827,1),(1310,1572764427,2),(1310,1583654427,1),(1310,1604214027,2),(1310,1615708827,1),(1310,1636268427,2),(1310,1647158427,1),(1310,1667718027,2),(1310,1678608027,1),(1310,1699167627,2),(1310,1710057627,1),(1310,1730617227,2),(1310,1741507227,1),(1310,1762066827,2),(1310,1772956827,1),(1310,1793516427,2),(1310,1805011227,1),(1310,1825570827,2),(1310,1836460827,1),(1310,1857020427,2),(1310,1867910427,1),(1310,1888470027,2),(1310,1899360027,1),(1310,1919919627,2),(1310,1930809627,1),(1310,1951369227,2),(1310,1962864027,1),(1310,1983423627,2),(1310,1994313627,1),(1310,2014873227,2),(1310,2025763227,1),(1310,2046322827,2),(1310,2057212827,1),(1310,2077772427,2),(1310,2088662427,1),(1310,2109222027,2),(1310,2120112027,1),(1310,2140671627,2),(1311,-2147483648,0),(1311,-1514739600,1),(1311,-1343066400,2),(1311,-1234807200,1),(1311,-1220292000,2),(1311,-1207159200,1),(1311,-1191344400,2),(1311,828864020,3),(1311,846399620,2),(1311,860313620,3),(1311,877849221,2),(1311,891766821,4),(1311,909302421,1),(1311,923216422,4),(1311,941356822,1),(1311,954666022,4),(1311,972806422,1),(1311,989139622,4),(1311,1001836822,1),(1311,1018170022,4),(1311,1035705622,1),(1311,1049619622,4),(1311,1067155222,1),(1311,1081069222,4),(1311,1099209622,1),(1311,1112518822,4),(1311,1130659222,1),(1311,1143968423,4),(1311,1162108823,1),(1311,1175418023,4),(1311,1193558423,1),(1311,1207472423,4),(1311,1225008023,1),(1311,1238922024,4),(1311,1256457624,1),(1311,1270371624,4),(1311,1288512024,1),(1311,1301821224,4),(1311,1319961624,1),(1311,1333270824,4),(1311,1351411225,1),(1311,1365325225,4),(1311,1382860825,1),(1311,1396774825,4),(1311,1414310425,1),(1311,1428224425,4),(1311,1445760026,1),(1311,1459674026,4),(1311,1477814426,1),(1311,1491123627,4),(1311,1509264027,1),(1311,1522573227,4),(1311,1540713627,1),(1311,1554627627,4),(1311,1572163227,1),(1311,1586077227,4),(1311,1603612827,1),(1311,1617526827,4),(1311,1635667227,1),(1311,1648976427,4),(1311,1667116827,1),(1311,1680426027,4),(1311,1698566427,1),(1311,1712480427,4),(1311,1730016027,1),(1311,1743930027,4),(1311,1761465627,1),(1311,1775379627,4),(1311,1792915227,1),(1311,1806829227,4),(1311,1824969627,1),(1311,1838278827,4),(1311,1856419227,1),(1311,1869728427,4),(1311,1887868827,1),(1311,1901782827,4),(1311,1919318427,1),(1311,1933232427,4),(1311,1950768027,1),(1311,1964682027,4),(1311,1982822427,1),(1311,1996131627,4),(1311,2014272027,1),(1311,2027581227,4),(1311,2045721627,1),(1311,2059030827,4),(1311,2077171227,1),(1311,2091085227,4),(1311,2108620827,1),(1311,2122534827,4),(1311,2140070427,1),(1312,-2147483648,2),(1312,-1632067200,1),(1312,-1615136400,2),(1312,-923248800,1),(1312,-880214400,3),(1312,-769395600,4),(1312,-765392400,5),(1313,-2147483648,1),(1313,-1567453392,2),(1313,-1233432000,3),(1313,-1222981200,2),(1313,-1205956800,3),(1313,-1194037200,2),(1313,-1172865600,3),(1313,-1162501200,2),(1313,-1141329600,3),(1313,-1130965200,2),(1313,-1109793600,3),(1313,-1099429200,2),(1313,-1078257600,3),(1313,-1067806800,2),(1313,-1046635200,3),(1313,-1036270800,2),(1313,-1015099200,3),(1313,-1004734800,2),(1313,-983563200,3),(1313,-973198800,2),(1313,-952027200,3),(1313,-941576400,2),(1313,-931032000,3),(1313,-900882000,2),(1313,-890337600,3),(1313,-833749200,2),(1313,-827265600,3),(1313,-752274000,2),(1313,-733780800,3),(1313,-197326800,2),(1313,-190843200,3),(1313,-184194000,2),(1313,-164491200,3),(1313,-152658000,2),(1313,-132955200,3),(1313,-121122000,2),(1313,-101419200,3),(1313,-86821200,2),(1313,-71092800,3),(1313,-54766800,2),(1313,-39038400,3),(1313,-23317200,2),(1313,-7588800,5),(1313,128142003,4),(1313,136605603,5),(1313,596948414,4),(1313,605066414,5),(1313,624423614,4),(1313,636516015,5),(1313,656478015,4),(1313,667965616,2),(1313,687931216,4),(1313,699415216,5),(1313,719377217,4),(1313,731469617,5),(1313,938919622,3),(1313,952052422,5),(1313,1198983623,4),(1313,1205632823,5),(1313,1224385223,4),(1313,1237082424,5),(1314,-2147483648,1),(1314,-1545071027,3),(1314,288770408,2),(1314,297234008,3),(1314,320220009,2),(1314,328683609,3),(1314,664264816,2),(1314,678344416,3),(1314,695714416,2),(1314,700635616,3),(1315,-2147483648,1),(1315,-1680454800,2),(1315,-1627833600,1),(1316,-2147483648,0),(1316,-1767212140,2),(1316,-1206954000,1),(1316,-1191358800,2),(1316,-1175371200,1),(1316,-1159822800,2),(1316,-633816000,1),(1316,-622065600,2),(1316,-602280000,1),(1316,-591829200,2),(1316,-570744000,1),(1316,-560206800,2),(1316,-539121600,1),(1316,-531349200,2),(1316,-191361600,1),(1316,-184194000,2),(1316,-155160000,1),(1316,-150066000,2),(1316,-128894400,1),(1316,-121122000,2),(1316,-99950400,1),(1316,-89586000,2),(1316,-68414400,1),(1316,-57963600,2),(1316,499752013,1),(1316,511239613,2),(1316,530596813,1),(1316,540270013,2),(1316,562132813,1),(1316,571201214,2),(1316,592977614,1),(1316,602046014,2),(1316,624427214,1),(1316,634705215,2),(1316,656481615,1),(1316,666759616,2),(1316,687931216,1),(1316,697604416,2),(1316,719985617,1),(1316,728449217,2),(1316,750830418,1),(1316,761713218,2),(1316,782280019,1),(1316,793162819,2),(1316,813729619,1),(1316,824007620,2),(1316,844574420,1),(1316,856062020,2),(1316,876110421,1),(1316,888721221,2),(1316,908078421,1),(1316,919566022,2),(1316,938923222,1),(1316,951620422,2),(1316,970977622,1),(1316,982465222,2),(1316,1003032022,1),(1316,1013914822,2),(1316,1036296022,1),(1316,1045364422,2),(1316,1099368022,1),(1316,1108868422,2),(1316,1129435222,1),(1316,1140318023,2),(1316,1162699223,1),(1316,1172372423,2),(1316,1192334423,1),(1316,1203217223,2),(1316,1224388823,1),(1316,1234666824,2),(1316,1255838424,1),(1316,1266721224,2),(1316,1287288024,1),(1316,1298170824,2),(1316,1318737624,1),(1316,1330225224,2),(1316,1350792025,1),(1316,1361070025,2),(1316,1382241625,1),(1316,1392519625,2),(1316,1413691225,1),(1316,1424574025,2),(1316,1445140826,1),(1316,1456023626,2),(1316,1476590426,1),(1316,1487473227,2),(1316,1508040027,1),(1316,1518922827,2),(1316,1541304027,1),(1316,1550372427,2),(1317,-2147483648,0),(1317,-1826738653,1),(1317,-157750200,2),(1318,-2147483648,0),(1318,-1686091520,1),(1318,323845209,4),(1318,338950809,2),(1318,354675609,3),(1318,370400410,2),(1318,386125210,3),(1318,401850011,2),(1318,417574811,3),(1318,433299612,2),(1318,449024412,3),(1318,465354012,2),(1318,481078812,3),(1318,496803613,2),(1318,512528413,3),(1318,528253213,2),(1318,543978013,3),(1318,559702813,2),(1318,575427614,3),(1318,591152414,2),(1318,606877214,3),(1318,622602014,2),(1318,638326815,3),(1318,654656415,2),(1318,670381216,3),(1318,686106016,2),(1318,701830816,3),(1318,717555617,2),(1318,733280417,3),(1318,749005218,2),(1318,764730018,3),(1318,780454819,2),(1318,796179619,3),(1318,811904419,2),(1318,820465220,5),(1319,-2147483648,2),(1319,-1632056400,1),(1319,-1615125600,2),(1319,-1596978000,1),(1319,-1583164800,2),(1319,-880203600,3),(1319,-769395600,4),(1319,-765381600,2),(1319,-147884400,5),(1319,-131554800,2),(1319,120646802,6),(1319,325677609,7),(1319,341398809,6),(1319,357127209,7),(1319,372848410,6),(1319,388576810,7),(1319,404902811,6),(1319,420026411,7),(1319,436352412,6),(1319,452080812,7),(1319,467802012,6),(1319,483530412,7),(1319,499251613,6),(1319,514980013,7),(1319,530701213,6),(1319,544615213,7),(1319,562150813,6),(1319,576064814,7),(1319,594205214,6),(1319,607514414,7),(1319,625654814,6),(1319,638964015,7),(1319,657104415,6),(1319,671018416,7),(1319,688554016,6),(1319,702468016,7),(1319,720003617,6),(1319,733917617,7),(1319,752058018,6),(1319,765367218,7),(1319,783507619,6),(1319,796816819,7),(1319,814957219,6),(1319,828871220,7),(1319,846406820,6),(1319,860320820,7),(1319,877856421,6),(1319,891770421,7),(1319,909306021,6),(1319,923220022,7),(1319,941360422,6),(1319,954669622,7),(1319,972810022,6),(1319,986119222,7),(1319,1004259622,6),(1319,1018173622,7),(1319,1035709222,6),(1319,1049623222,7),(1319,1067158822,6),(1319,1081072822,7),(1319,1099213222,6),(1319,1112522422,7),(1319,1130662822,6),(1319,1143972023,7),(1319,1162112423,6),(1319,1173607223,7),(1319,1194166823,6),(1319,1205056823,7),(1319,1225616423,6),(1319,1236506424,7),(1319,1257066024,6),(1319,1268560824,7),(1319,1289120424,6),(1319,1300010424,7),(1319,1320570024,6),(1319,1331460024,7),(1319,1352019625,6),(1319,1362909625,7),(1319,1383469225,6),(1319,1394359225,7),(1319,1414918825,6),(1319,1425808825,7),(1319,1446368426,6),(1319,1457863226,7),(1319,1478422826,6),(1319,1489312827,7),(1319,1509872427,6),(1319,1520762427,7),(1319,1541322027,6),(1319,1552212027,7),(1319,1572771627,6),(1319,1583661627,7),(1319,1604221227,6),(1319,1615716027,7),(1319,1636275627,6),(1319,1647165627,7),(1319,1667725227,6),(1319,1678615227,7),(1319,1699174827,6),(1319,1710064827,7),(1319,1730624427,6),(1319,1741514427,7),(1319,1762074027,6),(1319,1772964027,7),(1319,1793523627,6),(1319,1805018427,7),(1319,1825578027,6),(1319,1836468027,7),(1319,1857027627,6),(1319,1867917627,7),(1319,1888477227,6),(1319,1899367227,7),(1319,1919926827,6),(1319,1930816827,7),(1319,1951376427,6),(1319,1962871227,7),(1319,1983430827,6),(1319,1994320827,7),(1319,2014880427,6),(1319,2025770427,7),(1319,2046330027,6),(1319,2057220027,7),(1319,2077779627,6),(1319,2088669627,7),(1319,2109229227,6),(1319,2120119227,7),(1319,2140678827,6),(1320,-2147483648,2),(1320,-1632060000,1),(1320,-1615129200,2),(1320,-880207200,3),(1320,-769395600,4),(1320,-765385200,2),(1320,-715788000,1),(1320,-702486000,2),(1320,-684338400,1),(1320,-671036400,2),(1320,-652888800,1),(1320,-639586800,2),(1320,-620834400,1),(1320,-608137200,2),(1320,-589384800,1),(1320,-576082800,2),(1320,-557935200,1),(1320,-544633200,2),(1320,-526485600,1),(1320,-513183600,2),(1320,-495036000,1),(1320,-481734000,2),(1320,-463586400,1),(1320,-450284400,2),(1320,-431532000,1),(1320,-418230000,2),(1320,-400082400,1),(1320,-386780400,2),(1320,-368632800,1),(1320,-355330800,2),(1320,-337183200,1),(1320,-323881200,2),(1320,-305733600,1),(1320,-292431600,2),(1320,-273679200,1),(1320,-260982000,2),(1320,-242229600,1),(1320,-226508400,2),(1320,-210780000,1),(1320,-195058800,2),(1320,-179330400,1),(1320,-163609200,2),(1320,-147880800,1),(1320,-131554800,2),(1320,-116431200,1),(1320,-100105200,2),(1320,-84376800,1),(1320,-68655600,2),(1320,-52927200,1),(1320,-37206000,2),(1320,-21477600,1),(1320,-5756400,2),(1320,9972000,1),(1320,25693200,2),(1320,41421600,1),(1320,57747600,2),(1320,73476000,1),(1320,84013201,5),(1321,-2147483648,2),(1321,-1633273200,1),(1321,-1615132800,2),(1321,-1601823600,1),(1321,-1583683200,2),(1321,-1570374000,1),(1321,-1551628800,2),(1321,-1538924400,1),(1321,-1534089600,2),(1321,-880210800,3),(1321,-769395600,4),(1321,-765388800,2),(1321,-147884400,1),(1321,-131558400,2),(1321,-116434800,1),(1321,-100108800,2),(1321,-84380400,1),(1321,-68659200,2),(1321,-52930800,1),(1321,-37209600,2),(1321,-21481200,1),(1321,-5760000,2),(1321,9968400,1),(1321,25689600,2),(1321,41418000,1),(1321,57744000,2),(1321,73472400,1),(1321,89193601,2),(1321,104922002,1),(1321,120643202,2),(1321,126694803,1),(1321,152092803,2),(1321,162378004,1),(1321,183542404,2),(1321,199270805,1),(1321,215596805,2),(1321,230720406,1),(1321,247046406,2),(1321,262774807,1),(1321,278496007,2),(1321,294224408,1),(1321,309945608,2),(1321,325674009,1),(1321,341395209,2),(1321,357123609,1),(1321,372844810,2),(1321,388573210,1),(1321,404899211,2),(1321,420022811,1),(1321,436348812,2),(1321,452077212,1),(1321,467798412,2),(1321,483526812,1),(1321,499248013,2),(1321,514976413,1),(1321,530697613,2),(1321,544611613,1),(1321,562147213,2),(1321,576061214,1),(1321,594201614,2),(1321,607510814,1),(1321,625651214,2),(1321,638960415,1),(1321,657100815,2),(1321,671014816,1),(1321,688550416,2),(1321,702464416,1),(1321,720000017,2),(1321,733914017,1),(1321,752054418,2),(1321,765363618,1),(1321,783504019,2),(1321,796813219,1),(1321,814953619,2),(1321,828867620,1),(1321,846403220,2),(1321,860317220,1),(1321,877852821,2),(1321,891766821,1),(1321,909302421,2),(1321,923216422,1),(1321,941356822,2),(1321,954666022,1),(1321,972806422,2),(1321,986115622,1),(1321,1004256022,2),(1321,1018170022,1),(1321,1035705622,2),(1321,1049619622,1),(1321,1067155222,2),(1321,1081069222,1),(1321,1099209622,2),(1321,1112518822,1),(1321,1130659222,2),(1321,1143968423,1),(1321,1162108823,2),(1321,1173603623,1),(1321,1194163223,2),(1321,1205053223,1),(1321,1225612823,2),(1321,1236502824,1),(1321,1257062424,2),(1321,1268557224,1),(1321,1289116824,2),(1321,1300006824,1),(1321,1320566424,2),(1321,1331456424,1),(1321,1352016025,2),(1321,1362906025,1),(1321,1383465625,2),(1321,1394355625,1),(1321,1414915225,2),(1321,1425805225,1),(1321,1446364826,2),(1321,1457859626,1),(1321,1478419226,2),(1321,1489309227,1),(1321,1509868827,2),(1321,1520758827,1),(1321,1541318427,2),(1321,1552208427,1),(1321,1572768027,2),(1321,1583658027,1),(1321,1604217627,2),(1321,1615712427,1),(1321,1636272027,2),(1321,1647162027,1),(1321,1667721627,2),(1321,1678611627,1),(1321,1699171227,2),(1321,1710061227,1),(1321,1730620827,2),(1321,1741510827,1),(1321,1762070427,2),(1321,1772960427,1),(1321,1793520027,2),(1321,1805014827,1),(1321,1825574427,2),(1321,1836464427,1),(1321,1857024027,2),(1321,1867914027,1),(1321,1888473627,2),(1321,1899363627,1),(1321,1919923227,2),(1321,1930813227,1),(1321,1951372827,2),(1321,1962867627,1),(1321,1983427227,2),(1321,1994317227,1),(1321,2014876827,2),(1321,2025766827,1),(1321,2046326427,2),(1321,2057216427,1),(1321,2077776027,2),(1321,2088666027,1),(1321,2109225627,2),(1321,2120115627,1),(1321,2140675227,2),(1322,-2147483648,0),(1322,-2051202469,1),(1322,-1724083200,2),(1322,-880218000,3),(1322,-769395600,4),(1322,-765396000,2),(1322,-684349200,5),(1322,-671047200,2),(1322,-80506740,5),(1322,-68666400,2),(1322,-52938000,5),(1322,-37216800,2),(1322,104914802,5),(1322,120636002,2),(1322,126687603,5),(1322,152085603,2),(1322,167814004,5),(1322,183535204,2),(1322,199263605,5),(1322,215589605,2),(1322,230713206,5),(1322,247039206,2),(1322,262767607,5),(1322,278488807,2),(1322,294217208,5),(1322,309938408,2),(1322,325666809,5),(1322,341388009,2),(1322,357116409,5),(1322,372837610,2),(1322,388566010,5),(1322,404892011,2),(1322,420015611,5),(1322,436341612,2),(1322,452070012,5),(1322,467791212,2),(1322,483519612,5),(1322,499240813,2),(1322,514969213,5),(1322,530690413,2),(1322,544604413,5),(1322,562140013,2),(1322,576054014,5),(1322,594194414,2),(1322,607503614,5),(1322,625644014,2),(1322,638953215,5),(1322,657093615,2),(1322,671007616,5),(1322,688543216,2),(1322,702457216,5),(1322,719992817,2),(1322,733906817,5),(1322,752047218,2),(1322,765356418,5),(1322,783496819,2),(1322,796806019,5),(1322,814946419,2),(1322,828860420,5),(1322,846396020,2),(1322,860310020,5),(1322,877845621,2),(1322,891759621,5),(1322,909295221,2),(1322,923209222,5),(1322,941349622,2),(1322,954658822,5),(1322,972799222,2),(1322,986108422,5),(1322,1004248822,2),(1322,1018162822,5),(1322,1035698422,2),(1322,1049612422,5),(1322,1067148022,2),(1322,1081062022,5),(1322,1099202422,2),(1322,1112511622,5),(1322,1130652022,2),(1322,1143961223,5),(1322,1162101623,2),(1322,1173596423,5),(1322,1194156023,2),(1322,1205046023,5),(1322,1225605623,2),(1322,1236495624,5),(1322,1257055224,2),(1322,1268550024,5),(1322,1289109624,2),(1322,1299999624,5),(1322,1320559224,2),(1322,1331449224,5),(1322,1352008825,2),(1322,1362898825,5),(1322,1383458425,2),(1322,1394348425,5),(1322,1414908025,2),(1322,1425798025,5),(1322,1446357626,2),(1322,1457852426,5),(1322,1478412026,2),(1322,1489302027,5),(1322,1509861627,2),(1322,1520751627,5),(1322,1541311227,2),(1322,1552201227,5),(1322,1572760827,2),(1322,1583650827,5),(1322,1604210427,2),(1322,1615705227,5),(1322,1636264827,2),(1322,1647154827,5),(1322,1667714427,2),(1322,1678604427,5),(1322,1699164027,2),(1322,1710054027,5),(1322,1730613627,2),(1322,1741503627,5),(1322,1762063227,2),(1322,1772953227,5),(1322,1793512827,2),(1322,1805007627,5),(1322,1825567227,2),(1322,1836457227,5),(1322,1857016827,2),(1322,1867906827,5),(1322,1888466427,2),(1322,1899356427,5),(1322,1919916027,2),(1322,1930806027,5),(1322,1951365627,2),(1322,1962860427,5),(1322,1983420027,2),(1322,1994310027,5),(1322,2014869627,2),(1322,2025759627,5),(1322,2046319227,2),(1322,2057209227,5),(1322,2077768827,2),(1322,2088658827,5),(1322,2109218427,2),(1322,2120108427,5),(1322,2140668027,2),(1323,-2147483648,0),(1323,-1825098836,1),(1324,-2147483648,0),(1324,-1998663968,2),(1324,-1632063600,1),(1324,-1615132800,2),(1324,-1600614000,1),(1324,-1596816000,2),(1324,-1567954800,1),(1324,-1551628800,2),(1324,-1536505200,1),(1324,-1523203200,2),(1324,-1504450800,1),(1324,-1491753600,2),(1324,-1473001200,1),(1324,-1459699200,2),(1324,-880210800,3),(1324,-769395600,4),(1324,-765388800,2),(1324,-715791600,1),(1324,-702489600,2),(1324,73472400,1),(1324,89193601,2),(1324,104922002,1),(1324,120643202,2),(1324,136371603,1),(1324,152092803,2),(1324,167821204,1),(1324,183542404,2),(1324,199270805,1),(1324,215596805,2),(1324,230720406,1),(1324,247046406,2),(1324,262774807,1),(1324,278496007,2),(1324,294224408,1),(1324,309945608,2),(1324,325674009,1),(1324,341395209,2),(1324,357123609,1),(1324,372844810,2),(1324,388573210,1),(1324,404899211,2),(1324,420022811,1),(1324,436348812,2),(1324,452077212,1),(1324,467798412,2),(1324,483526812,1),(1324,499248013,2),(1324,514976413,1),(1324,530697613,2),(1324,544611613,1),(1324,562147213,2),(1324,576061214,1),(1324,594201614,2),(1324,607510814,1),(1324,625651214,2),(1324,638960415,1),(1324,657100815,2),(1324,671014816,1),(1324,688550416,2),(1324,702464416,1),(1324,720000017,2),(1324,733914017,1),(1324,752054418,2),(1324,765363618,1),(1324,783504019,2),(1324,796813219,1),(1324,814953619,2),(1324,828867620,1),(1324,846403220,2),(1324,860317220,1),(1324,877852821,2),(1324,891766821,1),(1324,909302421,2),(1324,923216422,1),(1324,941356822,2),(1324,954666022,1),(1324,972806422,2),(1324,986115622,1),(1324,1004256022,2),(1324,1018170022,1),(1324,1035705622,2),(1324,1049619622,1),(1324,1067155222,2),(1324,1081069222,1),(1324,1099209622,2),(1324,1112518822,1),(1324,1130659222,2),(1324,1143968423,1),(1324,1162108823,2),(1324,1173603623,1),(1324,1194163223,2),(1324,1205053223,1),(1324,1225612823,2),(1324,1236502824,1),(1324,1257062424,2),(1324,1268557224,1),(1324,1289116824,2),(1324,1300006824,1),(1324,1320566424,2),(1324,1331456424,1),(1324,1352016025,2),(1324,1362906025,1),(1324,1383465625,2),(1324,1394355625,1),(1324,1414915225,2),(1324,1425805225,1),(1324,1446364826,2),(1324,1457859626,1),(1324,1478419226,2),(1324,1489309227,1),(1324,1509868827,2),(1324,1520758827,1),(1324,1541318427,2),(1324,1552208427,1),(1324,1572768027,2),(1324,1583658027,1),(1324,1604217627,2),(1324,1615712427,1),(1324,1636272027,2),(1324,1647162027,1),(1324,1667721627,2),(1324,1678611627,1),(1324,1699171227,2),(1324,1710061227,1),(1324,1730620827,2),(1324,1741510827,1),(1324,1762070427,2),(1324,1772960427,1),(1324,1793520027,2),(1324,1805014827,1),(1324,1825574427,2),(1324,1836464427,1),(1324,1857024027,2),(1324,1867914027,1),(1324,1888473627,2),(1324,1899363627,1),(1324,1919923227,2),(1324,1930813227,1),(1324,1951372827,2),(1324,1962867627,1),(1324,1983427227,2),(1324,1994317227,1),(1324,2014876827,2),(1324,2025766827,1),(1324,2046326427,2),(1324,2057216427,1),(1324,2077776027,2),(1324,2088666027,1),(1324,2109225627,2),(1324,2120115627,1),(1324,2140675227,2),(1325,-2147483648,0),(1325,-1767208832,2),(1325,-1206950400,1),(1325,-1191355200,2),(1325,-1175367600,1),(1325,-1159819200,2),(1325,-633812400,1),(1325,-622062000,2),(1325,-602276400,1),(1325,-591825600,2),(1325,-570740400,1),(1325,-560203200,2),(1325,-539118000,1),(1325,-531345600,2),(1325,-191358000,1),(1325,-184190400,2),(1325,-155156400,1),(1325,-150062400,2),(1325,-128890800,1),(1325,-121118400,2),(1325,-99946800,1),(1325,-89582400,2),(1325,-68410800,1),(1325,-57960000,2),(1325,499755613,1),(1325,511243213,2),(1325,530600413,1),(1325,540273613,2),(1325,562136413,1),(1325,571204814,2),(1325,750834018,1),(1325,761716818,2),(1325,1214283623,3),(1325,1384056025,2),(1326,-2147483648,0),(1326,-1546279392,2),(1326,547020013,1),(1326,559717213,2),(1326,578469614,1),(1326,591166814,2),(1327,-2147483648,0),(1327,-1514736000,1),(1327,-1451667600,2),(1327,-1343062800,1),(1327,-1234803600,2),(1327,-1222963200,3),(1327,-1207242000,2),(1327,-873820800,4),(1327,-769395600,5),(1327,-761677200,2),(1327,-686073600,3),(1327,-661539600,2),(1327,-495039600,3),(1327,-481734000,2),(1327,-463590000,3),(1327,-450284400,2),(1327,-431535600,3),(1327,-418230000,2),(1327,-400086000,3),(1327,-386780400,2),(1327,-368636400,3),(1327,-355330800,2),(1327,-337186800,3),(1327,-323881200,2),(1327,-305737200,3),(1327,-292431600,2),(1327,199274405,3),(1327,215600405,2),(1327,230724006,3),(1327,247050006,2),(1327,262778407,3),(1327,278499607,2),(1327,294228008,3),(1327,309949208,2),(1327,325677609,3),(1327,341398809,2),(1327,357127209,3),(1327,372848410,2),(1327,388576810,3),(1327,404902811,2),(1327,420026411,3),(1327,436352412,2),(1327,452080812,3),(1327,467802012,2),(1327,483530412,3),(1327,499251613,2),(1327,514980013,3),(1327,530701213,2),(1327,544615213,3),(1327,562150813,2),(1327,576064814,3),(1327,594205214,2),(1327,607514414,3),(1327,625654814,2),(1327,638964015,3),(1327,657104415,2),(1327,671018416,3),(1327,688554016,2),(1327,702468016,3),(1327,720003617,2),(1327,733917617,3),(1327,752058018,2),(1327,765367218,3),(1327,783507619,2),(1327,796816819,3),(1327,814957219,2),(1327,828871220,3),(1327,846406820,2),(1327,860320820,3),(1327,877856421,2),(1327,891770421,3),(1327,909306021,2),(1327,923220022,3),(1327,941360422,2),(1327,954669622,3),(1327,972810022,2),(1327,986119222,3),(1327,1004259622,2),(1327,1018173622,3),(1327,1035709222,2),(1327,1049623222,3),(1327,1067158822,2),(1327,1081072822,3),(1327,1099213222,2),(1327,1112522422,3),(1327,1130662822,2),(1327,1143972023,3),(1327,1162112423,2),(1327,1175421623,3),(1327,1193562023,2),(1327,1207476023,3),(1327,1225011623,2),(1327,1238925624,3),(1327,1256461224,2),(1327,1268560824,3),(1327,1289120424,2),(1327,1300010424,3),(1327,1320570024,2),(1327,1331460024,3),(1327,1352019625,2),(1327,1362909625,3),(1327,1383469225,2),(1327,1394359225,3),(1327,1414918825,2),(1327,1425808825,3),(1327,1446368426,2),(1327,1457863226,3),(1327,1478422826,2),(1327,1489312827,3),(1327,1509872427,2),(1327,1520762427,3),(1327,1541322027,2),(1327,1552212027,3),(1327,1572771627,2),(1327,1583661627,3),(1327,1604221227,2),(1327,1615716027,3),(1327,1636275627,2),(1327,1647165627,3),(1327,1667725227,2),(1327,1678615227,3),(1327,1699174827,2),(1327,1710064827,3),(1327,1730624427,2),(1327,1741514427,3),(1327,1762074027,2),(1327,1772964027,3),(1327,1793523627,2),(1327,1805018427,3),(1327,1825578027,2),(1327,1836468027,3),(1327,1857027627,2),(1327,1867917627,3),(1327,1888477227,2),(1327,1899367227,3),(1327,1919926827,2),(1327,1930816827,3),(1327,1951376427,2),(1327,1962871227,3),(1327,1983430827,2),(1327,1994320827,3),(1327,2014880427,2),(1327,2025770427,3),(1327,2046330027,2),(1327,2057220027,3),(1327,2077779627,2),(1327,2088669627,3),(1327,2109229227,2),(1327,2120119227,3),(1327,2140678827,2),(1328,-2147483648,2),(1328,-1632060000,1),(1328,-1615129200,2),(1328,-880207200,3),(1328,-769395600,4),(1328,-765385200,2),(1328,-715788000,1),(1328,-702486000,2),(1328,-684338400,1),(1328,-671036400,2),(1328,-652888800,1),(1328,-639586800,2),(1328,-620834400,1),(1328,-608137200,2),(1328,-589384800,1),(1328,-576082800,2),(1328,-557935200,1),(1328,-544633200,2),(1328,-526485600,1),(1328,-513183600,2),(1328,-495036000,1),(1328,-481734000,2),(1328,-463586400,1),(1328,-450284400,2),(1328,-431532000,1),(1328,-418230000,2),(1328,-400082400,1),(1328,-386780400,2),(1328,-368632800,1),(1328,-355330800,2),(1328,-337183200,1),(1328,-323881200,2),(1328,-305733600,1),(1328,-292431600,2),(1328,-273679200,1),(1328,-260982000,2),(1328,-242229600,1),(1328,-226508400,2),(1328,-210780000,1),(1328,-195058800,2),(1328,-179330400,1),(1328,-163609200,2),(1328,-147880800,1),(1328,-131554800,2),(1328,-116431200,1),(1328,-100105200,2),(1328,-84376800,1),(1328,-68655600,2),(1328,-52927200,1),(1328,-37206000,2),(1328,-21477600,1),(1328,-5756400,2),(1328,9972000,1),(1328,25693200,2),(1328,41421600,1),(1328,57747600,2),(1328,73476000,1),(1328,89197201,2),(1328,104925602,1),(1328,120646802,2),(1328,136375203,1),(1328,152096403,2),(1328,167824804,1),(1328,183546004,2),(1328,199274405,1),(1328,215600405,2),(1328,230724006,1),(1328,247050006,2),(1328,262778407,1),(1328,278499607,2),(1328,294228008,1),(1328,309949208,2),(1328,325677609,1),(1328,341398809,2),(1328,357127209,1),(1328,372848410,2),(1328,388576810,1),(1328,404902811,2),(1328,420026411,1),(1328,436352412,2),(1328,452080812,1),(1328,467802012,2),(1328,483530412,1),(1328,499251613,2),(1328,514980013,1),(1328,530701213,2),(1328,544615213,1),(1328,562150813,2),(1328,576064814,1),(1328,594205214,2),(1328,607514414,1),(1328,625654814,2),(1328,638964015,1),(1328,657104415,2),(1328,671018416,1),(1328,688554016,2),(1328,702468016,1),(1328,720003617,2),(1328,733917617,1),(1328,752058018,2),(1328,765367218,1),(1328,783507619,2),(1328,796816819,1),(1328,814957219,2),(1328,828871220,1),(1328,846406820,2),(1328,860320820,1),(1328,877856421,2),(1328,891770421,1),(1328,909306021,2),(1328,923220022,1),(1328,941360422,2),(1328,954669622,1),(1328,972810022,2),(1328,986119222,1),(1328,1004259622,2),(1328,1018173622,1),(1328,1035709222,2),(1328,1049623222,1),(1328,1067158822,2),(1328,1081072822,1),(1328,1099213222,2),(1328,1112522422,1),(1328,1130662822,2),(1328,1143972023,1),(1328,1162112423,2),(1328,1173607223,1),(1328,1194166823,2),(1328,1205056823,1),(1328,1225616423,2),(1328,1236506424,1),(1328,1257066024,2),(1328,1268560824,1),(1328,1289120424,2),(1328,1300010424,1),(1328,1320570024,2),(1328,1331460024,1),(1328,1352019625,2),(1328,1362909625,1),(1328,1383469225,2),(1328,1394359225,1),(1328,1414918825,2),(1328,1425808825,5),(1329,-2147483648,2),(1329,-1633276800,1),(1329,-1615136400,2),(1329,-1601827200,1),(1329,-1583686800,2),(1329,-900259200,1),(1329,-891795600,2),(1329,-880214400,3),(1329,-769395600,4),(1329,-765392400,2),(1329,-747244800,1),(1329,-733942800,2),(1329,-715795200,1),(1329,-702493200,2),(1329,-684345600,1),(1329,-671043600,2),(1329,-652896000,1),(1329,-639594000,2),(1329,-620841600,1),(1329,-608144400,2),(1329,-589392000,1),(1329,-576090000,2),(1329,-557942400,1),(1329,-544640400,2),(1329,-526492800,1),(1329,-513190800,2),(1329,-495043200,1),(1329,-481741200,2),(1329,-463593600,5),(1329,-386787600,2),(1329,-368640000,5),(1329,-21488400,6),(1329,-5767200,5),(1329,9961200,6),(1329,25682400,5),(1329,1143961223,6),(1329,1162101623,5),(1329,1173596423,6),(1329,1194156023,5),(1329,1205046023,6),(1329,1225605623,5),(1329,1236495624,6),(1329,1257055224,5),(1329,1268550024,6),(1329,1289109624,5),(1329,1299999624,6),(1329,1320559224,5),(1329,1331449224,6),(1329,1352008825,5),(1329,1362898825,6),(1329,1383458425,5),(1329,1394348425,6),(1329,1414908025,5),(1329,1425798025,6),(1329,1446357626,5),(1329,1457852426,6),(1329,1478412026,5),(1329,1489302027,6),(1329,1509861627,5),(1329,1520751627,6),(1329,1541311227,5),(1329,1552201227,6),(1329,1572760827,5),(1329,1583650827,6),(1329,1604210427,5),(1329,1615705227,6),(1329,1636264827,5),(1329,1647154827,6),(1329,1667714427,5),(1329,1678604427,6),(1329,1699164027,5),(1329,1710054027,6),(1329,1730613627,5),(1329,1741503627,6),(1329,1762063227,5),(1329,1772953227,6),(1329,1793512827,5),(1329,1805007627,6),(1329,1825567227,5),(1329,1836457227,6),(1329,1857016827,5),(1329,1867906827,6),(1329,1888466427,5),(1329,1899356427,6),(1329,1919916027,5),(1329,1930806027,6),(1329,1951365627,5),(1329,1962860427,6),(1329,1983420027,5),(1329,1994310027,6),(1329,2014869627,5),(1329,2025759627,6),(1329,2046319227,5),(1329,2057209227,6),(1329,2077768827,5),(1329,2088658827,6),(1329,2109218427,5),(1329,2120108427,6),(1329,2140668027,5),(1330,-2147483648,0),(1330,-1767216360,2),(1330,-1206957600,1),(1330,-1191362400,2),(1330,-1175374800,1),(1330,-1159826400,2),(1330,-633819600,1),(1330,-622069200,2),(1330,-602283600,1),(1330,-591832800,2),(1330,-570747600,1),(1330,-560210400,2),(1330,-539125200,1),(1330,-531352800,2),(1330,-191365200,1),(1330,-184197600,2),(1330,-155163600,1),(1330,-150069600,2),(1330,-128898000,1),(1330,-121125600,2),(1330,-99954000,1),(1330,-89589600,2),(1330,-68418000,1),(1330,-57967200,2),(1330,499748413,1),(1330,511236013,2),(1330,530593213,1),(1330,540266413,2),(1330,562129213,1),(1330,571197614,2),(1330,592974014,1),(1330,602042414,2),(1330,624423614,1),(1330,634701615,2),(1330,938919622,1),(1330,951616822,2),(1330,970974022,1),(1330,972180022,2),(1330,1003028422,1),(1330,1013911222,2),(1331,-2147483648,0),(1331,-2131646412,2),(1331,-1632074400,1),(1331,-1615143600,2),(1331,-880221600,3),(1331,-769395600,4),(1331,-765399600,2),(1331,-526500000,1),(1331,-513198000,2),(1331,73461600,1),(1331,89182801,2),(1331,104911202,1),(1331,120632402,2),(1331,136360803,1),(1331,152082003,2),(1331,167810404,1),(1331,183531604,2),(1331,199260005,1),(1331,215586005,2),(1331,230709606,1),(1331,247035606,2),(1331,262764007,1),(1331,278485207,2),(1331,294213608,1),(1331,309934808,2),(1331,325663209,1),(1331,341384409,2),(1331,357112809,1),(1331,372834010,2),(1331,388562410,1),(1331,404888411,2),(1331,420012011,1),(1331,436338012,2),(1331,452066412,1),(1331,467787612,2),(1331,483516012,1),(1331,499237213,2),(1331,514965613,1),(1331,530686813,2),(1331,544600813,1),(1331,562136413,2),(1331,576050414,1),(1331,594190814,2),(1331,607500014,1),(1331,625640414,2),(1331,638949615,1),(1331,657090015,2),(1331,671004016,1),(1331,688539616,2),(1331,702453616,1),(1331,719989217,2),(1331,733903217,1),(1331,752043618,2),(1331,765352818,1),(1331,783493219,2),(1331,796802419,1),(1331,814942819,2),(1331,828856820,1),(1331,846392420,2),(1331,860306420,1),(1331,877842021,2),(1331,891756021,1),(1331,909291621,2),(1331,923205622,1),(1331,941346022,2),(1331,954655222,1),(1331,972795622,2),(1331,986104822,1),(1331,1004245222,2),(1331,1018159222,1),(1331,1035694822,2),(1331,1049608822,1),(1331,1067144422,2),(1331,1081058422,1),(1331,1099198822,2),(1331,1112508022,1),(1331,1130648422,2),(1331,1143957623,1),(1331,1162098023,2),(1331,1173592823,1),(1331,1194152423,2),(1331,1205042423,1),(1331,1225602023,2),(1331,1236492024,1),(1331,1257051624,2),(1331,1268546424,1),(1331,1289106024,2),(1331,1299996024,1),(1331,1320555624,2),(1331,1331445624,1),(1331,1352005225,2),(1331,1362895225,1),(1331,1383454825,2),(1331,1394344825,1),(1331,1414904425,2),(1331,1425794425,1),(1331,1446354026,2),(1331,1457848826,1),(1331,1478408426,2),(1331,1489298427,1),(1331,1509858027,2),(1331,1520748027,1),(1331,1541307627,2),(1331,1552197627,1),(1331,1572757227,2),(1331,1583647227,1),(1331,1604206827,2),(1331,1615701627,1),(1331,1636261227,2),(1331,1647151227,1),(1331,1667710827,2),(1331,1678600827,1),(1331,1699160427,2),(1331,1710050427,1),(1331,1730610027,2),(1331,1741500027,1),(1331,1762059627,2),(1331,1772949627,1),(1331,1793509227,2),(1331,1805004027,1),(1331,1825563627,2),(1331,1836453627,1),(1331,1857013227,2),(1331,1867903227,1),(1331,1888462827,2),(1331,1899352827,1),(1331,1919912427,2),(1331,1930802427,1),(1331,1951362027,2),(1331,1962856827,1),(1331,1983416427,2),(1331,1994306427,1),(1331,2014866027,2),(1331,2025756027,1),(1331,2046315627,2),(1331,2057205627,1),(1331,2077765227,2),(1331,2088655227,1),(1331,2109214827,2),(1331,2120104827,1),(1331,2140664427,2),(1332,-2147483648,0),(1332,-1686083584,1),(1332,323845209,4),(1332,338950809,2),(1332,354675609,3),(1332,370400410,2),(1332,386125210,3),(1332,401850011,2),(1332,417574811,3),(1332,433299612,2),(1332,449024412,3),(1332,465354012,2),(1332,481078812,3),(1332,496803613,2),(1332,512528413,3),(1332,528253213,2),(1332,543978013,3),(1332,559702813,2),(1332,575427614,3),(1332,591152414,2),(1332,606877214,3),(1332,622602014,2),(1332,638326815,3),(1332,654656415,2),(1332,670381216,3),(1332,686106016,2),(1332,701830816,3),(1332,717555617,2),(1332,733280417,3),(1332,749005218,2),(1332,764730018,3),(1332,780454819,2),(1332,796179619,3),(1332,811904419,2),(1332,828234020,3),(1332,846378020,2),(1332,859683620,3),(1332,877827621,2),(1332,891133221,3),(1332,909277221,2),(1332,922582822,3),(1332,941331622,2),(1332,954032422,3),(1332,972781222,2),(1332,985482022,3),(1332,1004230822,2),(1332,1017536422,3),(1332,1035680422,2),(1332,1048986022,3),(1332,1067130022,2),(1332,1080435622,3),(1332,1099184422,2),(1332,1111885222,3),(1332,1130634022,2),(1332,1143334823,3),(1332,1162083623,2),(1332,1174784423,3),(1332,1193533223,2),(1332,1206838823,3),(1332,1224982823,2),(1332,1238288424,3),(1332,1256432424,2),(1332,1269738024,3),(1332,1288486824,2),(1332,1301187624,3),(1332,1319936424,2),(1332,1332637224,3),(1332,1351386025,2),(1332,1364691625,3),(1332,1382835625,2),(1332,1396141225,3),(1332,1414285225,2),(1332,1427590825,3),(1332,1445734826,2),(1332,1459040426,3),(1332,1477789226,2),(1332,1490490027,3),(1332,1509238827,2),(1332,1521939627,3),(1332,1540688427,2),(1332,1553994027,3),(1332,1572138027,2),(1332,1585443627,3),(1332,1603587627,2),(1332,1616893227,3),(1332,1635642027,2),(1332,1648342827,3),(1332,1667091627,2),(1332,1679792427,3),(1332,1698541227,2),(1332,1711846827,3),(1332,1729990827,2),(1332,1743296427,3),(1332,1761440427,2),(1332,1774746027,3),(1332,1792890027,2),(1332,1806195627,3),(1332,1824944427,2),(1332,1837645227,3),(1332,1856394027,2),(1332,1869094827,3),(1332,1887843627,2),(1332,1901149227,3),(1332,1919293227,2),(1332,1932598827,3),(1332,1950742827,2),(1332,1964048427,3),(1332,1982797227,2),(1332,1995498027,3),(1332,2014246827,2),(1332,2026947627,3),(1332,2045696427,2),(1332,2058397227,3),(1332,2077146027,2),(1332,2090451627,3),(1332,2108595627,2),(1332,2121901227,3),(1332,2140045227,2),(1333,-2147483648,1),(1333,-1632076148,2),(1333,-1615145348,1),(1333,-1096921748,3),(1333,-1061670600,4),(1333,-1048973400,3),(1333,-1030221000,4),(1333,-1017523800,3),(1333,-998771400,4),(1333,-986074200,3),(1333,-966717000,4),(1333,-954624600,3),(1333,-935267400,4),(1333,-922570200,3),(1333,-903817800,4),(1333,-891120600,3),(1333,-872368200,6),(1333,-769395600,5),(1333,-765401400,3),(1333,-746044200,4),(1333,-733347000,3),(1333,-714594600,4),(1333,-701897400,3),(1333,-683145000,4),(1333,-670447800,3),(1333,-651695400,4),(1333,-638998200,3),(1333,-619641000,4),(1333,-606943800,3),(1333,-589401000,4),(1333,-576099000,3),(1333,-557951400,4),(1333,-544649400,3),(1333,-526501800,4),(1333,-513199800,3),(1333,-495052200,4),(1333,-481750200,3),(1333,-463602600,4),(1333,-450300600,3),(1333,-431548200,4),(1333,-418246200,3),(1333,-400098600,4),(1333,-386796600,3),(1333,-368649000,4),(1333,-355347000,3),(1333,-337199400,4),(1333,-323897400,3),(1333,-305749800,4),(1333,-289423800,3),(1333,-273695400,4),(1333,-257974200,3),(1333,-242245800,4),(1333,-226524600,3),(1333,-210796200,4),(1333,-195075000,3),(1333,-179346600,4),(1333,-163625400,3),(1333,-147897000,4),(1333,-131571000,3),(1333,-119903400,8),(1333,-116445600,7),(1333,-100119600,8),(1333,-84391200,7),(1333,-68670000,8),(1333,-52941600,7),(1333,-37220400,8),(1333,-21492000,7),(1333,-5770800,8),(1333,9957600,7),(1333,25678800,8),(1333,41407200,7),(1333,57733200,8),(1333,73461600,7),(1333,89182801,8),(1333,104911202,7),(1333,120632402,8),(1333,136360803,7),(1333,152082003,8),(1333,167810404,7),(1333,183531604,8),(1333,199260005,7),(1333,215586005,8),(1333,230709606,7),(1333,247035606,8),(1333,262764007,7),(1333,278485207,8),(1333,294213608,7),(1333,309934808,8),(1333,325663209,7),(1333,341384409,8),(1333,357112809,7),(1333,372834010,8),(1333,388562410,7),(1333,404888411,8),(1333,420012011,7),(1333,436338012,8),(1333,452066412,7),(1333,467787612,8),(1333,483516012,7),(1333,499237213,8),(1333,514965613,7),(1333,530686813,8),(1333,544593673,7),(1333,562129273,8),(1333,576043274,9),(1333,594180074,8),(1333,607492874,7),(1333,625633274,8),(1333,638942475,7),(1333,657082875,8),(1333,670996876,7),(1333,688532476,8),(1333,702446476,7),(1333,719982077,8),(1333,733896077,7),(1333,752036478,8),(1333,765345678,7),(1333,783486079,8),(1333,796795279,7),(1333,814935679,8),(1333,828849680,7),(1333,846385280,8),(1333,860299280,7),(1333,877834881,8),(1333,891748881,7),(1333,909284481,8),(1333,923198482,7),(1333,941338882,8),(1333,954648082,7),(1333,972788482,8),(1333,986097682,7),(1333,1004238082,8),(1333,1018152082,7),(1333,1035687682,8),(1333,1049601682,7),(1333,1067137282,8),(1333,1081051282,7),(1333,1099191682,8),(1333,1112500882,7),(1333,1130641282,8),(1333,1143950483,7),(1333,1162090883,8),(1333,1173585683,7),(1333,1194145283,8),(1333,1205035283,7),(1333,1225594883,8),(1333,1236484884,7),(1333,1257044484,8),(1333,1268539284,7),(1333,1289098884,8),(1333,1299988884,7),(1333,1320555624,8),(1333,1331445624,7),(1333,1352005225,8),(1333,1362895225,7),(1333,1383454825,8),(1333,1394344825,7),(1333,1414904425,8),(1333,1425794425,7),(1333,1446354026,8),(1333,1457848826,7),(1333,1478408426,8),(1333,1489298427,7),(1333,1509858027,8),(1333,1520748027,7),(1333,1541307627,8),(1333,1552197627,7),(1333,1572757227,8),(1333,1583647227,7),(1333,1604206827,8),(1333,1615701627,7),(1333,1636261227,8),(1333,1647151227,7),(1333,1667710827,8),(1333,1678600827,7),(1333,1699160427,8),(1333,1710050427,7),(1333,1730610027,8),(1333,1741500027,7),(1333,1762059627,8),(1333,1772949627,7),(1333,1793509227,8),(1333,1805004027,7),(1333,1825563627,8),(1333,1836453627,7),(1333,1857013227,8),(1333,1867903227,7),(1333,1888462827,8),(1333,1899352827,7),(1333,1919912427,8),(1333,1930802427,7),(1333,1951362027,8),(1333,1962856827,7),(1333,1983416427,8),(1333,1994306427,7),(1333,2014866027,8),(1333,2025756027,7),(1333,2046315627,8),(1333,2057205627,7),(1333,2077765227,8),(1333,2088655227,7),(1333,2109214827,8),(1333,2120104827,7),(1333,2140664427,8),(1334,-2147483648,1),(1334,-1827687170,2),(1334,294217208,3),(1334,309938408,2),(1334,325666809,3),(1334,341388009,2),(1334,357116409,3),(1334,372837610,2),(1334,388566010,3),(1334,404892011,2),(1334,420015611,3),(1334,436341612,2),(1334,452070012,3),(1334,467791212,2),(1334,483519612,3),(1334,499240813,2),(1334,514969213,3),(1334,530690413,2),(1334,544604413,3),(1334,562140013,2),(1334,576054014,3),(1334,594194414,2),(1334,607503614,3),(1334,625644014,2),(1334,638953215,3),(1334,657093615,2),(1334,671007616,3),(1334,688543216,2),(1334,702457216,3),(1334,719992817,2),(1334,733906817,3),(1334,752047218,2),(1334,765356418,3),(1334,783496819,2),(1334,796806019,3),(1334,814946419,2),(1334,828860420,3),(1334,846396020,2),(1334,860310020,3),(1334,877845621,2),(1334,891759621,3),(1334,909295221,2),(1334,923209222,3),(1334,941349622,2),(1334,954658822,3),(1334,972799222,2),(1334,986108422,3),(1334,1004248822,2),(1334,1018162822,3),(1334,1035698422,2),(1334,1049612422,3),(1334,1067148022,2),(1334,1081062022,3),(1334,1099202422,2),(1334,1112511622,3),(1334,1130652022,2),(1334,1143961223,3),(1334,1162101623,2),(1334,1173596423,3),(1334,1194156023,2),(1334,1205046023,3),(1334,1225605623,2),(1334,1236495624,3),(1334,1257055224,2),(1334,1268550024,3),(1334,1289109624,2),(1334,1299999624,3),(1334,1320559224,2),(1334,1331449224,3),(1334,1352008825,2),(1334,1362898825,3),(1334,1383458425,2),(1334,1394348425,3),(1334,1414908025,2),(1334,1425798025,3),(1334,1446357626,4),(1334,1520751627,3),(1334,1541311227,2),(1334,1552201227,3),(1334,1572760827,2),(1334,1583650827,3),(1334,1604210427,2),(1334,1615705227,3),(1334,1636264827,2),(1334,1647154827,3),(1334,1667714427,2),(1334,1678604427,3),(1334,1699164027,2),(1334,1710054027,3),(1334,1730613627,2),(1334,1741503627,3),(1334,1762063227,2),(1334,1772953227,3),(1334,1793512827,2),(1334,1805007627,3),(1334,1825567227,2),(1334,1836457227,3),(1334,1857016827,2),(1334,1867906827,3),(1334,1888466427,2),(1334,1899356427,3),(1334,1919916027,2),(1334,1930806027,3),(1334,1951365627,2),(1334,1962860427,3),(1334,1983420027,2),(1334,1994310027,3),(1334,2014869627,2),(1334,2025759627,3),(1334,2046319227,2),(1334,2057209227,3),(1334,2077768827,2),(1334,2088658827,3),(1334,2109218427,2),(1334,2120108427,3),(1334,2140668027,2),(1335,-2147483648,0),(1335,-1825098836,1),(1336,-2147483648,0),(1336,-1825098836,1),(1337,-2147483648,0),(1337,-1617040676,2),(1337,123055202,1),(1337,130914003,2),(1337,422344811,1),(1337,433054812,2),(1337,669708016,1),(1337,684219616,2),(1337,1146376823,1),(1337,1159678823,2),(1338,-2147483648,1),(1338,-1230749160,3),(1338,722926817,2),(1338,728884817,3),(1339,-2147483648,0),(1339,-1730578040,1),(1339,176010304,2),(1339,662698816,3),(1340,-2147483648,0),(1340,-2131645536,2),(1340,-1696276800,1),(1340,-1680469200,2),(1340,-1632074400,1),(1340,-1615143600,2),(1340,-1566763200,1),(1340,-1557090000,2),(1340,-1535486400,1),(1340,-1524949200,2),(1340,-1504468800,1),(1340,-1493413200,2),(1340,-1472414400,1),(1340,-1461963600,2),(1340,-1440964800,1),(1340,-1429390800,2),(1340,-1409515200,1),(1340,-1396731600,2),(1340,-1376856000,1),(1340,-1366491600,2),(1340,-1346616000,1),(1340,-1333832400,2),(1340,-1313956800,1),(1340,-1303678800,2),(1340,-1282507200,1),(1340,-1272661200,2),(1340,-1251057600,1),(1340,-1240088400,2),(1340,-1219608000,1),(1340,-1207429200,2),(1340,-1188763200,1),(1340,-1175979600,2),(1340,-1157313600,1),(1340,-1143925200,2),(1340,-1124049600,1),(1340,-1113771600,2),(1340,-1091390400,1),(1340,-1081026000,2),(1340,-1059854400,1),(1340,-1050786000,2),(1340,-1030910400,1),(1340,-1018126800,2),(1340,-999460800,1),(1340,-986677200,2),(1340,-965592000,1),(1340,-955227600,2),(1340,-935956800,1),(1340,-923173200,2),(1340,-904507200,1),(1340,-891723600,2),(1340,-880221600,3),(1340,-769395600,4),(1340,-765399600,2),(1340,-747252000,1),(1340,-733950000,2),(1340,-715802400,1),(1340,-702500400,2),(1340,-684352800,1),(1340,-671050800,2),(1340,-652903200,1),(1340,-639601200,2),(1340,-589399200,1),(1340,-576097200,2),(1340,-557949600,1),(1340,-544647600,2),(1340,-526500000,1),(1340,-513198000,2),(1340,-495050400,1),(1340,-481748400,2),(1340,-431546400,1),(1340,-418244400,2),(1340,-400096800,1),(1340,-386794800,2),(1340,-368647200,1),(1340,-355345200,2),(1340,-337197600,1),(1340,-323895600,2),(1340,-242244000,1),(1340,-226522800,2),(1340,-210794400,1),(1340,-195073200,2),(1340,-179344800,1),(1340,-163623600,2),(1340,-147895200,1),(1340,-131569200,2),(1340,-116445600,1),(1340,-100119600,2),(1340,-84391200,1),(1340,-68670000,2),(1340,-52941600,1),(1340,-37220400,2),(1340,-21492000,1),(1340,-5770800,2),(1340,9957600,1),(1340,25678800,2),(1340,41407200,1),(1340,57733200,2),(1340,73461600,1),(1340,89182801,2),(1340,104911202,1),(1340,120632402,2),(1340,136360803,1),(1340,152082003,2),(1340,167810404,1),(1340,183531604,2),(1340,199260005,1),(1340,215586005,2),(1340,230709606,1),(1340,247035606,2),(1340,262764007,1),(1340,278485207,2),(1340,294213608,1),(1340,309934808,2),(1340,325663209,1),(1340,341384409,2),(1340,357112809,1),(1340,372834010,2),(1340,388562410,1),(1340,404888411,2),(1340,420012011,1),(1340,436338012,2),(1340,452066412,1),(1340,467787612,2),(1340,483516012,1),(1340,499237213,2),(1340,514965613,1),(1340,530686813,2),(1340,544600813,1),(1340,562136413,2),(1340,576050414,1),(1340,594190814,2),(1340,607500014,1),(1340,625640414,2),(1340,638949615,1),(1340,657090015,2),(1340,671004016,1),(1340,688539616,2),(1340,702453616,1),(1340,719989217,2),(1340,733903217,1),(1340,752043618,2),(1340,765352818,1),(1340,783493219,2),(1340,796802419,1),(1340,814942819,2),(1340,828856820,1),(1340,846392420,2),(1340,860306420,1),(1340,877842021,2),(1340,891756021,1),(1340,909291621,2),(1340,923205622,1),(1340,941346022,2),(1340,954655222,1),(1340,972795622,2),(1340,986104822,1),(1340,1004245222,2),(1340,1018159222,1),(1340,1035694822,2),(1340,1049608822,1),(1340,1067144422,2),(1340,1081058422,1),(1340,1099198822,2),(1340,1112508022,1),(1340,1130648422,2),(1340,1143957623,1),(1340,1162098023,2),(1340,1173592823,1),(1340,1194152423,2),(1340,1205042423,1),(1340,1225602023,2),(1340,1236492024,1),(1340,1257051624,2),(1340,1268546424,1),(1340,1289106024,2),(1340,1299996024,1),(1340,1320555624,2),(1340,1331445624,1),(1340,1352005225,2),(1340,1362895225,1),(1340,1383454825,2),(1340,1394344825,1),(1340,1414904425,2),(1340,1425794425,1),(1340,1446354026,2),(1340,1457848826,1),(1340,1478408426,2),(1340,1489298427,1),(1340,1509858027,2),(1340,1520748027,1),(1340,1541307627,2),(1340,1552197627,1),(1340,1572757227,2),(1340,1583647227,1),(1340,1604206827,2),(1340,1615701627,1),(1340,1636261227,2),(1340,1647151227,1),(1340,1667710827,2),(1340,1678600827,1),(1340,1699160427,2),(1340,1710050427,1),(1340,1730610027,2),(1340,1741500027,1),(1340,1762059627,2),(1340,1772949627,1),(1340,1793509227,2),(1340,1805004027,1),(1340,1825563627,2),(1340,1836453627,1),(1340,1857013227,2),(1340,1867903227,1),(1340,1888462827,2),(1340,1899352827,1),(1340,1919912427,2),(1340,1930802427,1),(1340,1951362027,2),(1340,1962856827,1),(1340,1983416427,2),(1340,1994306427,1),(1340,2014866027,2),(1340,2025756027,1),(1340,2046315627,2),(1340,2057205627,1),(1340,2077765227,2),(1340,2088655227,1),(1340,2109214827,2),(1340,2120104827,1),(1340,2140664427,2),(1341,-2147483648,1),(1341,-1402813824,3),(1341,-1311534000,2),(1341,-1300996800,3),(1341,-933534000,2),(1341,-925675200,3),(1341,-902084400,2),(1341,-893620800,3),(1341,-870030000,2),(1341,-862171200,3),(1341,-775681200,2),(1341,-767822400,3),(1341,-744231600,2),(1341,-736372800,3),(1341,-144702000,2),(1341,-134251200,3),(1341,-113425200,2),(1341,-102542400,3),(1341,-86295600,2),(1341,-72907200,3),(1341,-54154800,2),(1341,-41457600,3),(1341,-21495600,2),(1341,-5774400,3),(1341,9954000,2),(1341,25675200,3),(1341,41403600,2),(1341,57729600,3),(1341,73458000,2),(1341,87364801,3),(1341,104907602,2),(1341,118900802,3),(1341,136357203,2),(1341,150436803,3),(1341,167806804,2),(1341,183528004,3),(1341,199256405,2),(1341,215582405,3),(1341,230706006,2),(1341,247032006,3),(1341,263365207,2),(1341,276667207,3),(1341,290581208,2),(1341,308721608,3),(1341,322030809,2),(1341,340171209,3),(1341,358318809,2),(1341,371620810,3),(1341,389768410,2),(1341,403070411,3),(1341,421218011,2),(1341,434520012,3),(1341,452667612,2),(1341,466574412,3),(1341,484117212,2),(1341,498024013,3),(1341,511333213,2),(1341,529473613,3),(1341,542782813,2),(1341,560923213,3),(1341,574837214,2),(1341,592372814,3),(1341,606286814,2),(1341,623822414,3),(1341,638946015,2),(1341,655876815,3),(1341,671000416,2),(1341,687330016,4),(1341,702450016,2),(1341,718779617,4),(1341,733899617,2),(1341,750229218,4),(1341,765349218,2),(1341,781678819,4),(1341,796798819,2),(1341,813128419,4),(1341,828853220,2),(1341,844578020,4),(1341,860302820,2),(1341,876632421,4),(1341,891147621,5),(1341,909291621,4),(1341,922597222,5),(1341,941346022,4),(1341,954651622,5),(1341,972795622,4),(1341,986101222,5),(1341,1004245222,4),(1341,1018155622,5),(1341,1035694822,4),(1341,1049605222,5),(1341,1067144422,4),(1341,1080450022,5),(1341,1162098023,4),(1341,1173589223,5),(1341,1193547623,4),(1341,1205643623,5),(1341,1224997223,4),(1341,1236488424,5),(1341,1256446824,4),(1341,1268542824,5),(1341,1288501224,4),(1341,1300597224,5),(1341,1321160424,4),(1341,1333256424,5),(1341,1352005225,4),(1341,1362891625,5),(1341,1383454825,4),(1341,1394341225,5),(1341,1414904425,4),(1341,1425790825,5),(1341,1446354026,4),(1341,1457845226,5),(1341,1478408426,4),(1341,1489294827,5),(1341,1509858027,4),(1341,1520744427,5),(1341,1541307627,4),(1341,1552194027,5),(1341,1572757227,4),(1341,1583643627,5),(1341,1604206827,4),(1341,1615698027,5),(1341,1636261227,4),(1341,1647147627,5),(1341,1667710827,4),(1341,1678597227,5),(1341,1699160427,4),(1341,1710046827,5),(1341,1730610027,4),(1341,1741496427,5),(1341,1762059627,4),(1341,1772946027,5),(1341,1793509227,4),(1341,1805000427,5),(1341,1825563627,4),(1341,1836450027,5),(1341,1857013227,4),(1341,1867899627,5),(1341,1888462827,4),(1341,1899349227,5),(1341,1919912427,4),(1341,1930798827,5),(1341,1951362027,4),(1341,1962853227,5),(1341,1983416427,4),(1341,1994302827,5),(1341,2014866027,4),(1341,2025752427,5),(1341,2046315627,4),(1341,2057202027,5),(1341,2077765227,4),(1341,2088651627,5),(1341,2109214827,4),(1341,2120101227,5),(1341,2140664427,4),(1342,-2147483648,0),(1342,-1514739600,1),(1342,-1343066400,2),(1342,-1234807200,1),(1342,-1220292000,2),(1342,-1207159200,1),(1342,-1191344400,2),(1342,-873828000,1),(1342,-661539600,3),(1342,28800,1),(1342,828867620,4),(1342,846403220,1),(1342,860317220,4),(1342,877852821,1),(1342,891766821,4),(1342,909302421,1),(1343,-2147483648,2),(1343,-1633276800,1),(1343,-1615136400,2),(1343,-1601827200,1),(1343,-1583686800,2),(1343,-900259200,1),(1343,-891795600,2),(1343,-880214400,3),(1343,-769395600,4),(1343,-765392400,2),(1343,-747244800,1),(1343,-733942800,2),(1343,-715795200,1),(1343,-702493200,2),(1343,-684345600,1),(1343,-671043600,2),(1343,-652896000,1),(1343,-639594000,2),(1343,-620841600,1),(1343,-608144400,2),(1343,-589392000,1),(1343,-576090000,2),(1343,-557942400,1),(1343,-544640400,2),(1343,-526492800,1),(1343,-513190800,2),(1343,-495043200,1),(1343,-481741200,2),(1343,-463593600,5),(1343,-386787600,2),(1343,-368640000,5),(1343,-21488400,6),(1343,-5767200,5),(1343,9961200,6),(1343,25682400,5),(1343,1143961223,6),(1343,1162101623,5),(1343,1173596423,6),(1343,1194156023,5),(1343,1205046023,6),(1343,1225605623,5),(1343,1236495624,6),(1343,1257055224,5),(1343,1268550024,6),(1343,1289109624,5),(1343,1299999624,6),(1343,1320559224,5),(1343,1331449224,6),(1343,1352008825,5),(1343,1362898825,6),(1343,1383458425,5),(1343,1394348425,6),(1343,1414908025,5),(1343,1425798025,6),(1343,1446357626,5),(1343,1457852426,6),(1343,1478412026,5),(1343,1489302027,6),(1343,1509861627,5),(1343,1520751627,6),(1343,1541311227,5),(1343,1552201227,6),(1343,1572760827,5),(1343,1583650827,6),(1343,1604210427,5),(1343,1615705227,6),(1343,1636264827,5),(1343,1647154827,6),(1343,1667714427,5),(1343,1678604427,6),(1343,1699164027,5),(1343,1710054027,6),(1343,1730613627,5),(1343,1741503627,6),(1343,1762063227,5),(1343,1772953227,6),(1343,1793512827,5),(1343,1805007627,6),(1343,1825567227,5),(1343,1836457227,6),(1343,1857016827,5),(1343,1867906827,6),(1343,1888466427,5),(1343,1899356427,6),(1343,1919916027,5),(1343,1930806027,6),(1343,1951365627,5),(1343,1962860427,6),(1343,1983420027,5),(1343,1994310027,6),(1343,2014869627,5),(1343,2025759627,6),(1343,2046319227,5),(1343,2057209227,6),(1343,2077768827,5),(1343,2088658827,6),(1343,2109218427,5),(1343,2120108427,6),(1343,2140668027,5),(1344,-2147483648,2),(1344,-1633276800,1),(1344,-1615136400,2),(1344,-1601827200,1),(1344,-1583686800,2),(1344,-880214400,3),(1344,-769395600,4),(1344,-765392400,2),(1344,-715795200,1),(1344,-702493200,2),(1344,-684345600,1),(1344,-671043600,2),(1344,-652896000,1),(1344,-639594000,2),(1344,-620841600,1),(1344,-608144400,2),(1344,-589392000,1),(1344,-576090000,2),(1344,-557942400,1),(1344,-544640400,2),(1344,-526492800,1),(1344,-513190800,2),(1344,-495043200,1),(1344,-481741200,2),(1344,-463593600,1),(1344,-447267600,2),(1344,-431539200,1),(1344,-415818000,2),(1344,-400089600,1),(1344,-386787600,2),(1344,-368640000,1),(1344,-355338000,2),(1344,-337190400,1),(1344,-321469200,2),(1344,-305740800,1),(1344,-289414800,2),(1344,-273686400,1),(1344,-257965200,2),(1344,-242236800,5),(1344,-195066000,2),(1344,-84384000,1),(1344,-68662800,2),(1344,-52934400,1),(1344,-37213200,2),(1344,-21484800,1),(1344,-5763600,2),(1344,9964800,1),(1344,25686000,2),(1344,41414400,1),(1344,57740400,2),(1344,73468800,1),(1344,89190001,2),(1344,104918402,1),(1344,120639602,2),(1344,126691203,1),(1344,152089203,2),(1344,162374404,1),(1344,183538804,2),(1344,199267205,1),(1344,215593205,2),(1344,230716806,1),(1344,247042806,2),(1344,262771207,1),(1344,278492407,2),(1344,294220808,1),(1344,309942008,2),(1344,325670409,1),(1344,341391609,2),(1344,357120009,1),(1344,372841210,2),(1344,388569610,1),(1344,404895611,2),(1344,420019211,1),(1344,436345212,2),(1344,452073612,1),(1344,467794812,2),(1344,483523212,1),(1344,499244413,2),(1344,514972813,1),(1344,530694013,2),(1344,544608013,1),(1344,562143613,2),(1344,576057614,1),(1344,594198014,2),(1344,607507214,1),(1344,625647614,2),(1344,638956815,1),(1344,657097215,2),(1344,671011216,1),(1344,688546816,5),(1344,1143961223,1),(1344,1162105223,2),(1344,1173600023,1),(1344,1194159623,2),(1344,1205049623,1),(1344,1225609223,2),(1344,1236499224,1),(1344,1257058824,2),(1344,1268553624,1),(1344,1289113224,2),(1344,1300003224,1),(1344,1320562824,2),(1344,1331452824,1),(1344,1352012425,2),(1344,1362902425,1),(1344,1383462025,2),(1344,1394352025,1),(1344,1414911625,2),(1344,1425801625,1),(1344,1446361226,2),(1344,1457856026,1),(1344,1478415626,2),(1344,1489305627,1),(1344,1509865227,2),(1344,1520755227,1),(1344,1541314827,2),(1344,1552204827,1),(1344,1572764427,2),(1344,1583654427,1),(1344,1604214027,2),(1344,1615708827,1),(1344,1636268427,2),(1344,1647158427,1),(1344,1667718027,2),(1344,1678608027,1),(1344,1699167627,2),(1344,1710057627,1),(1344,1730617227,2),(1344,1741507227,1),(1344,1762066827,2),(1344,1772956827,1),(1344,1793516427,2),(1344,1805011227,1),(1344,1825570827,2),(1344,1836460827,1),(1344,1857020427,2),(1344,1867910427,1),(1344,1888470027,2),(1344,1899360027,1),(1344,1919919627,2),(1344,1930809627,1),(1344,1951369227,2),(1344,1962864027,1),(1344,1983423627,2),(1344,1994313627,1),(1344,2014873227,2),(1344,2025763227,1),(1344,2046322827,2),(1344,2057212827,1),(1344,2077772427,2),(1344,2088662427,1),(1344,2109222027,2),(1344,2120112027,1),(1344,2140671627,2),(1345,-2147483648,2),(1345,-1633276800,1),(1345,-1615136400,2),(1345,-1601827200,1),(1345,-1583686800,2),(1345,-880214400,3),(1345,-769395600,4),(1345,-765392400,2),(1345,-589392000,1),(1345,-576090000,2),(1345,-495043200,1),(1345,-481741200,2),(1345,-463593600,1),(1345,-450291600,2),(1345,-431539200,1),(1345,-418237200,2),(1345,-400089600,1),(1345,-386787600,2),(1345,-368640000,1),(1345,-355338000,2),(1345,-337190400,1),(1345,-323888400,2),(1345,-305740800,1),(1345,-292438800,2),(1345,-273686400,5),(1345,-21488400,6),(1345,-5767200,5),(1345,9961200,6),(1345,25682400,5),(1345,41410800,6),(1345,57736800,5),(1345,73465200,6),(1345,89186401,5),(1345,104914802,6),(1345,120636002,5),(1345,126687603,1),(1345,152089203,5),(1345,162370804,6),(1345,183535204,5),(1345,1143961223,6),(1345,1162101623,5),(1345,1173596423,6),(1345,1194156023,5),(1345,1205046023,6),(1345,1225605623,5),(1345,1236495624,6),(1345,1257055224,5),(1345,1268550024,6),(1345,1289109624,5),(1345,1299999624,6),(1345,1320559224,5),(1345,1331449224,6),(1345,1352008825,5),(1345,1362898825,6),(1345,1383458425,5),(1345,1394348425,6),(1345,1414908025,5),(1345,1425798025,6),(1345,1446357626,5),(1345,1457852426,6),(1345,1478412026,5),(1345,1489302027,6),(1345,1509861627,5),(1345,1520751627,6),(1345,1541311227,5),(1345,1552201227,6),(1345,1572760827,5),(1345,1583650827,6),(1345,1604210427,5),(1345,1615705227,6),(1345,1636264827,5),(1345,1647154827,6),(1345,1667714427,5),(1345,1678604427,6),(1345,1699164027,5),(1345,1710054027,6),(1345,1730613627,5),(1345,1741503627,6),(1345,1762063227,5),(1345,1772953227,6),(1345,1793512827,5),(1345,1805007627,6),(1345,1825567227,5),(1345,1836457227,6),(1345,1857016827,5),(1345,1867906827,6),(1345,1888466427,5),(1345,1899356427,6),(1345,1919916027,5),(1345,1930806027,6),(1345,1951365627,5),(1345,1962860427,6),(1345,1983420027,5),(1345,1994310027,6),(1345,2014869627,5),(1345,2025759627,6),(1345,2046319227,5),(1345,2057209227,6),(1345,2077768827,5),(1345,2088658827,6),(1345,2109218427,5),(1345,2120108427,6),(1345,2140668027,5),(1346,-2147483648,2),(1346,-1633276800,1),(1346,-1615136400,2),(1346,-1601827200,1),(1346,-1583686800,2),(1346,-880214400,3),(1346,-769395600,4),(1346,-765392400,2),(1346,-462996000,1),(1346,-450291600,2),(1346,-431539200,1),(1346,-418237200,2),(1346,-400089600,1),(1346,-386787600,2),(1346,-368640000,1),(1346,-355338000,2),(1346,-337190400,1),(1346,-323888400,2),(1346,-305740800,1),(1346,-292438800,2),(1346,-273686400,1),(1346,-257965200,2),(1346,-242236800,1),(1346,-226515600,2),(1346,-210787200,1),(1346,-195066000,2),(1346,-179337600,1),(1346,-163616400,2),(1346,-147888000,5),(1346,-100112400,2),(1346,-84384000,1),(1346,-68662800,2),(1346,-52934400,1),(1346,-37213200,2),(1346,-21484800,1),(1346,-5763600,2),(1346,9964800,1),(1346,25686000,2),(1346,41414400,1),(1346,57740400,2),(1346,73468800,1),(1346,89190001,2),(1346,104918402,1),(1346,120639602,2),(1346,126691203,1),(1346,152089203,2),(1346,162374404,1),(1346,183538804,2),(1346,199267205,1),(1346,215593205,2),(1346,230716806,1),(1346,247042806,5),(1346,1143961223,1),(1346,1162105223,2),(1346,1173600023,1),(1346,1194159623,5),(1346,1205046023,6),(1346,1225605623,5),(1346,1236495624,6),(1346,1257055224,5),(1346,1268550024,6),(1346,1289109624,5),(1346,1299999624,6),(1346,1320559224,5),(1346,1331449224,6),(1346,1352008825,5),(1346,1362898825,6),(1346,1383458425,5),(1346,1394348425,6),(1346,1414908025,5),(1346,1425798025,6),(1346,1446357626,5),(1346,1457852426,6),(1346,1478412026,5),(1346,1489302027,6),(1346,1509861627,5),(1346,1520751627,6),(1346,1541311227,5),(1346,1552201227,6),(1346,1572760827,5),(1346,1583650827,6),(1346,1604210427,5),(1346,1615705227,6),(1346,1636264827,5),(1346,1647154827,6),(1346,1667714427,5),(1346,1678604427,6),(1346,1699164027,5),(1346,1710054027,6),(1346,1730613627,5),(1346,1741503627,6),(1346,1762063227,5),(1346,1772953227,6),(1346,1793512827,5),(1346,1805007627,6),(1346,1825567227,5),(1346,1836457227,6),(1346,1857016827,5),(1346,1867906827,6),(1346,1888466427,5),(1346,1899356427,6),(1346,1919916027,5),(1346,1930806027,6),(1346,1951365627,5),(1346,1962860427,6),(1346,1983420027,5),(1346,1994310027,6),(1346,2014869627,5),(1346,2025759627,6),(1346,2046319227,5),(1346,2057209227,6),(1346,2077768827,5),(1346,2088658827,6),(1346,2109218427,5),(1346,2120108427,6),(1346,2140668027,5),(1347,-2147483648,2),(1347,-1633276800,1),(1347,-1615136400,2),(1347,-1601827200,1),(1347,-1583686800,2),(1347,-880214400,3),(1347,-769395600,4),(1347,-765392400,2),(1347,-462996000,1),(1347,-450291600,2),(1347,-431539200,1),(1347,-418237200,2),(1347,-400089600,1),(1347,-386787600,2),(1347,-368640000,1),(1347,-355338000,2),(1347,-337190400,1),(1347,-323888400,2),(1347,-305740800,1),(1347,-292438800,2),(1347,-273686400,1),(1347,-257965200,2),(1347,-242236800,1),(1347,-226515600,2),(1347,-210787200,1),(1347,-195066000,2),(1347,-179337600,5),(1347,-68662800,2),(1347,-52934400,1),(1347,-37213200,2),(1347,-21484800,6),(1347,-5767200,5),(1347,9961200,6),(1347,25682400,5),(1347,1143961223,1),(1347,1162105223,2),(1347,1173600023,1),(1347,1194159623,2),(1347,1205049623,1),(1347,1225609223,2),(1347,1236499224,1),(1347,1257058824,2),(1347,1268553624,1),(1347,1289113224,2),(1347,1300003224,1),(1347,1320562824,2),(1347,1331452824,1),(1347,1352012425,2),(1347,1362902425,1),(1347,1383462025,2),(1347,1394352025,1),(1347,1414911625,2),(1347,1425801625,1),(1347,1446361226,2),(1347,1457856026,1),(1347,1478415626,2),(1347,1489305627,1),(1347,1509865227,2),(1347,1520755227,1),(1347,1541314827,2),(1347,1552204827,1),(1347,1572764427,2),(1347,1583654427,1),(1347,1604214027,2),(1347,1615708827,1),(1347,1636268427,2),(1347,1647158427,1),(1347,1667718027,2),(1347,1678608027,1),(1347,1699167627,2),(1347,1710057627,1),(1347,1730617227,2),(1347,1741507227,1),(1347,1762066827,2),(1347,1772956827,1),(1347,1793516427,2),(1347,1805011227,1),(1347,1825570827,2),(1347,1836460827,1),(1347,1857020427,2),(1347,1867910427,1),(1347,1888470027,2),(1347,1899360027,1),(1347,1919919627,2),(1347,1930809627,1),(1347,1951369227,2),(1347,1962864027,1),(1347,1983423627,2),(1347,1994313627,1),(1347,2014873227,2),(1347,2025763227,1),(1347,2046322827,2),(1347,2057212827,1),(1347,2077772427,2),(1347,2088662427,1),(1347,2109222027,2),(1347,2120112027,1),(1347,2140671627,2),(1348,-2147483648,2),(1348,-1633276800,1),(1348,-1615136400,2),(1348,-1601827200,1),(1348,-1583686800,2),(1348,-880214400,3),(1348,-769395600,4),(1348,-765392400,2),(1348,-495043200,5),(1348,-21488400,6),(1348,-5767200,5),(1348,9961200,6),(1348,25682400,5),(1348,41410800,6),(1348,57736800,5),(1348,73465200,6),(1348,89186401,5),(1348,1143961223,6),(1348,1162101623,5),(1348,1173596423,6),(1348,1194156023,5),(1348,1205046023,6),(1348,1225605623,5),(1348,1236495624,6),(1348,1257055224,5),(1348,1268550024,6),(1348,1289109624,5),(1348,1299999624,6),(1348,1320559224,5),(1348,1331449224,6),(1348,1352008825,5),(1348,1362898825,6),(1348,1383458425,5),(1348,1394348425,6),(1348,1414908025,5),(1348,1425798025,6),(1348,1446357626,5),(1348,1457852426,6),(1348,1478412026,5),(1348,1489302027,6),(1348,1509861627,5),(1348,1520751627,6),(1348,1541311227,5),(1348,1552201227,6),(1348,1572760827,5),(1348,1583650827,6),(1348,1604210427,5),(1348,1615705227,6),(1348,1636264827,5),(1348,1647154827,6),(1348,1667714427,5),(1348,1678604427,6),(1348,1699164027,5),(1348,1710054027,6),(1348,1730613627,5),(1348,1741503627,6),(1348,1762063227,5),(1348,1772953227,6),(1348,1793512827,5),(1348,1805007627,6),(1348,1825567227,5),(1348,1836457227,6),(1348,1857016827,5),(1348,1867906827,6),(1348,1888466427,5),(1348,1899356427,6),(1348,1919916027,5),(1348,1930806027,6),(1348,1951365627,5),(1348,1962860427,6),(1348,1983420027,5),(1348,1994310027,6),(1348,2014869627,5),(1348,2025759627,6),(1348,2046319227,5),(1348,2057209227,6),(1348,2077768827,5),(1348,2088658827,6),(1348,2109218427,5),(1348,2120108427,6),(1348,2140668027,5),(1349,-2147483648,2),(1349,-1633276800,1),(1349,-1615136400,2),(1349,-1601827200,1),(1349,-1583686800,2),(1349,-880214400,3),(1349,-769395600,4),(1349,-765392400,2),(1349,-747244800,1),(1349,-733942800,2),(1349,-526492800,1),(1349,-513190800,2),(1349,-495043200,1),(1349,-481741200,2),(1349,-462996000,1),(1349,-450291600,2),(1349,-431539200,1),(1349,-418237200,2),(1349,-400089600,1),(1349,-386787600,2),(1349,-368640000,1),(1349,-355338000,2),(1349,-337190400,1),(1349,-323888400,2),(1349,-305740800,1),(1349,-289414800,2),(1349,-273686400,1),(1349,-260989200,2),(1349,-242236800,1),(1349,-226515600,2),(1349,-210787200,1),(1349,-195066000,2),(1349,-179337600,5),(1349,-21488400,6),(1349,-5767200,5),(1349,9961200,6),(1349,25682400,5),(1349,1143961223,1),(1349,1162105223,2),(1349,1173600023,1),(1349,1194159623,5),(1349,1205046023,6),(1349,1225605623,5),(1349,1236495624,6),(1349,1257055224,5),(1349,1268550024,6),(1349,1289109624,5),(1349,1299999624,6),(1349,1320559224,5),(1349,1331449224,6),(1349,1352008825,5),(1349,1362898825,6),(1349,1383458425,5),(1349,1394348425,6),(1349,1414908025,5),(1349,1425798025,6),(1349,1446357626,5),(1349,1457852426,6),(1349,1478412026,5),(1349,1489302027,6),(1349,1509861627,5),(1349,1520751627,6),(1349,1541311227,5),(1349,1552201227,6),(1349,1572760827,5),(1349,1583650827,6),(1349,1604210427,5),(1349,1615705227,6),(1349,1636264827,5),(1349,1647154827,6),(1349,1667714427,5),(1349,1678604427,6),(1349,1699164027,5),(1349,1710054027,6),(1349,1730613627,5),(1349,1741503627,6),(1349,1762063227,5),(1349,1772953227,6),(1349,1793512827,5),(1349,1805007627,6),(1349,1825567227,5),(1349,1836457227,6),(1349,1857016827,5),(1349,1867906827,6),(1349,1888466427,5),(1349,1899356427,6),(1349,1919916027,5),(1349,1930806027,6),(1349,1951365627,5),(1349,1962860427,6),(1349,1983420027,5),(1349,1994310027,6),(1349,2014869627,5),(1349,2025759627,6),(1349,2046319227,5),(1349,2057209227,6),(1349,2077768827,5),(1349,2088658827,6),(1349,2109218427,5),(1349,2120108427,6),(1349,2140668027,5),(1350,-2147483648,2),(1350,-1633276800,1),(1350,-1615136400,2),(1350,-1601827200,1),(1350,-1583686800,2),(1350,-880214400,3),(1350,-769395600,4),(1350,-765392400,2),(1350,-747244800,1),(1350,-733942800,2),(1350,-715795200,1),(1350,-702493200,2),(1350,-684345600,1),(1350,-671043600,2),(1350,-652896000,1),(1350,-639594000,2),(1350,-620841600,1),(1350,-608144400,2),(1350,-589392000,1),(1350,-576090000,2),(1350,-557942400,1),(1350,-544640400,2),(1350,-526492800,1),(1350,-513190800,2),(1350,-495043200,1),(1350,-481741200,2),(1350,-463593600,1),(1350,-447267600,2),(1350,-431539200,1),(1350,-415818000,2),(1350,-400089600,1),(1350,-386787600,2),(1350,-368640000,1),(1350,-355338000,2),(1350,-337190400,1),(1350,-323888400,2),(1350,-305740800,1),(1350,-292438800,2),(1350,-273686400,5),(1350,-21488400,6),(1350,-5767200,5),(1350,9961200,6),(1350,25682400,5),(1350,1143961223,1),(1350,1162105223,2),(1350,1173600023,6),(1350,1194156023,5),(1350,1205046023,6),(1350,1225605623,5),(1350,1236495624,6),(1350,1257055224,5),(1350,1268550024,6),(1350,1289109624,5),(1350,1299999624,6),(1350,1320559224,5),(1350,1331449224,6),(1350,1352008825,5),(1350,1362898825,6),(1350,1383458425,5),(1350,1394348425,6),(1350,1414908025,5),(1350,1425798025,6),(1350,1446357626,5),(1350,1457852426,6),(1350,1478412026,5),(1350,1489302027,6),(1350,1509861627,5),(1350,1520751627,6),(1350,1541311227,5),(1350,1552201227,6),(1350,1572760827,5),(1350,1583650827,6),(1350,1604210427,5),(1350,1615705227,6),(1350,1636264827,5),(1350,1647154827,6),(1350,1667714427,5),(1350,1678604427,6),(1350,1699164027,5),(1350,1710054027,6),(1350,1730613627,5),(1350,1741503627,6),(1350,1762063227,5),(1350,1772953227,6),(1350,1793512827,5),(1350,1805007627,6),(1350,1825567227,5),(1350,1836457227,6),(1350,1857016827,5),(1350,1867906827,6),(1350,1888466427,5),(1350,1899356427,6),(1350,1919916027,5),(1350,1930806027,6),(1350,1951365627,5),(1350,1962860427,6),(1350,1983420027,5),(1350,1994310027,6),(1350,2014869627,5),(1350,2025759627,6),(1350,2046319227,5),(1350,2057209227,6),(1350,2077768827,5),(1350,2088658827,6),(1350,2109218427,5),(1350,2120108427,6),(1350,2140668027,5),(1351,-2147483648,2),(1351,-1633276800,1),(1351,-1615136400,2),(1351,-1601827200,1),(1351,-1583686800,2),(1351,-900259200,1),(1351,-891795600,2),(1351,-880214400,3),(1351,-769395600,4),(1351,-765392400,2),(1351,-747244800,1),(1351,-733942800,2),(1351,-715795200,1),(1351,-702493200,2),(1351,-684345600,1),(1351,-671043600,2),(1351,-652896000,1),(1351,-639594000,2),(1351,-620841600,1),(1351,-608144400,2),(1351,-589392000,1),(1351,-576090000,2),(1351,-557942400,1),(1351,-544640400,2),(1351,-526492800,1),(1351,-513190800,2),(1351,-495043200,1),(1351,-481741200,2),(1351,-463593600,5),(1351,-386787600,2),(1351,-368640000,5),(1351,-21488400,6),(1351,-5767200,5),(1351,9961200,6),(1351,25682400,5),(1351,1143961223,6),(1351,1162101623,5),(1351,1173596423,6),(1351,1194156023,5),(1351,1205046023,6),(1351,1225605623,5),(1351,1236495624,6),(1351,1257055224,5),(1351,1268550024,6),(1351,1289109624,5),(1351,1299999624,6),(1351,1320559224,5),(1351,1331449224,6),(1351,1352008825,5),(1351,1362898825,6),(1351,1383458425,5),(1351,1394348425,6),(1351,1414908025,5),(1351,1425798025,6),(1351,1446357626,5),(1351,1457852426,6),(1351,1478412026,5),(1351,1489302027,6),(1351,1509861627,5),(1351,1520751627,6),(1351,1541311227,5),(1351,1552201227,6),(1351,1572760827,5),(1351,1583650827,6),(1351,1604210427,5),(1351,1615705227,6),(1351,1636264827,5),(1351,1647154827,6),(1351,1667714427,5),(1351,1678604427,6),(1351,1699164027,5),(1351,1710054027,6),(1351,1730613627,5),(1351,1741503627,6),(1351,1762063227,5),(1351,1772953227,6),(1351,1793512827,5),(1351,1805007627,6),(1351,1825567227,5),(1351,1836457227,6),(1351,1857016827,5),(1351,1867906827,6),(1351,1888466427,5),(1351,1899356427,6),(1351,1919916027,5),(1351,1930806027,6),(1351,1951365627,5),(1351,1962860427,6),(1351,1983420027,5),(1351,1994310027,6),(1351,2014869627,5),(1351,2025759627,6),(1351,2046319227,5),(1351,2057209227,6),(1351,2077768827,5),(1351,2088658827,6),(1351,2109218427,5),(1351,2120108427,6),(1351,2140668027,5),(1352,-2147483648,0),(1352,-536457600,2),(1352,-147888000,1),(1352,-131558400,2),(1352,294228008,3),(1352,325674009,4),(1352,341395209,3),(1352,357123609,4),(1352,372844810,3),(1352,388573210,4),(1352,404899211,3),(1352,420022811,4),(1352,436348812,3),(1352,452077212,4),(1352,467798412,3),(1352,483526812,4),(1352,499248013,3),(1352,514976413,4),(1352,530697613,3),(1352,544611613,4),(1352,562147213,3),(1352,576061214,4),(1352,594201614,3),(1352,607510814,4),(1352,625651214,3),(1352,638960415,4),(1352,657100815,3),(1352,671014816,4),(1352,688550416,3),(1352,702464416,4),(1352,720000017,3),(1352,733914017,4),(1352,752054418,3),(1352,765363618,4),(1352,783504019,3),(1352,796813219,4),(1352,814953619,3),(1352,828867620,4),(1352,846403220,3),(1352,860317220,4),(1352,877852821,3),(1352,891766821,4),(1352,909302421,3),(1352,923216422,4),(1352,941356822,3),(1352,954666022,4),(1352,972806422,3),(1352,986115622,4),(1352,1004256022,3),(1352,1018170022,4),(1352,1035705622,3),(1352,1049619622,4),(1352,1067155222,3),(1352,1081069222,4),(1352,1099209622,3),(1352,1112518822,4),(1352,1130659222,3),(1352,1143968423,4),(1352,1162108823,3),(1352,1173603623,4),(1352,1194163223,3),(1352,1205053223,4),(1352,1225612823,3),(1352,1236502824,4),(1352,1257062424,3),(1352,1268557224,4),(1352,1289116824,3),(1352,1300006824,4),(1352,1320566424,3),(1352,1331456424,4),(1352,1352016025,3),(1352,1362906025,4),(1352,1383465625,3),(1352,1394355625,4),(1352,1414915225,3),(1352,1425805225,4),(1352,1446364826,3),(1352,1457859626,4),(1352,1478419226,3),(1352,1489309227,4),(1352,1509868827,3),(1352,1520758827,4),(1352,1541318427,3),(1352,1552208427,4),(1352,1572768027,3),(1352,1583658027,4),(1352,1604217627,3),(1352,1615712427,4),(1352,1636272027,3),(1352,1647162027,4),(1352,1667721627,3),(1352,1678611627,4),(1352,1699171227,3),(1352,1710061227,4),(1352,1730620827,3),(1352,1741510827,4),(1352,1762070427,3),(1352,1772960427,4),(1352,1793520027,3),(1352,1805014827,4),(1352,1825574427,3),(1352,1836464427,4),(1352,1857024027,3),(1352,1867914027,4),(1352,1888473627,3),(1352,1899363627,4),(1352,1919923227,3),(1352,1930813227,4),(1352,1951372827,3),(1352,1962867627,4),(1352,1983427227,3),(1352,1994317227,4),(1352,2014876827,3),(1352,2025766827,4),(1352,2046326427,3),(1352,2057216427,4),(1352,2077776027,3),(1352,2088666027,4),(1352,2109225627,3),(1352,2120115627,4),(1352,2140675227,3),(1353,-2147483648,0),(1353,-865296000,5),(1353,-769395600,1),(1353,-765396000,2),(1353,-147898800,3),(1353,-131569200,2),(1353,325666809,4),(1353,341388009,2),(1353,357116409,4),(1353,372837610,2),(1353,388566010,4),(1353,404892011,2),(1353,420015611,4),(1353,436341612,2),(1353,452070012,4),(1353,467791212,2),(1353,483519612,4),(1353,499240813,2),(1353,514969213,4),(1353,530690413,2),(1353,544604413,4),(1353,562140013,2),(1353,576054014,4),(1353,594194414,2),(1353,607503614,4),(1353,625644014,2),(1353,638953215,4),(1353,657093615,2),(1353,671007616,4),(1353,688543216,2),(1353,702457216,4),(1353,719992817,2),(1353,733906817,4),(1353,752047218,2),(1353,765356418,4),(1353,783496819,2),(1353,796806019,4),(1353,814946419,2),(1353,828860420,4),(1353,846396020,2),(1353,860310020,4),(1353,877845621,2),(1353,891759621,4),(1353,909295221,2),(1353,923209222,4),(1353,941349622,6),(1353,954662422,7),(1353,972802822,2),(1353,986108422,4),(1353,1004248822,2),(1353,1018162822,4),(1353,1035698422,2),(1353,1049612422,4),(1353,1067148022,2),(1353,1081062022,4),(1353,1099202422,2),(1353,1112511622,4),(1353,1130652022,2),(1353,1143961223,4),(1353,1162101623,2),(1353,1173596423,4),(1353,1194156023,2),(1353,1205046023,4),(1353,1225605623,2),(1353,1236495624,4),(1353,1257055224,2),(1353,1268550024,4),(1353,1289109624,2),(1353,1299999624,4),(1353,1320559224,2),(1353,1331449224,4),(1353,1352008825,2),(1353,1362898825,4),(1353,1383458425,2),(1353,1394348425,4),(1353,1414908025,2),(1353,1425798025,4),(1353,1446357626,2),(1353,1457852426,4),(1353,1478412026,2),(1353,1489302027,4),(1353,1509861627,2),(1353,1520751627,4),(1353,1541311227,2),(1353,1552201227,4),(1353,1572760827,2),(1353,1583650827,4),(1353,1604210427,2),(1353,1615705227,4),(1353,1636264827,2),(1353,1647154827,4),(1353,1667714427,2),(1353,1678604427,4),(1353,1699164027,2),(1353,1710054027,4),(1353,1730613627,2),(1353,1741503627,4),(1353,1762063227,2),(1353,1772953227,4),(1353,1793512827,2),(1353,1805007627,4),(1353,1825567227,2),(1353,1836457227,4),(1353,1857016827,2),(1353,1867906827,4),(1353,1888466427,2),(1353,1899356427,4),(1353,1919916027,2),(1353,1930806027,4),(1353,1951365627,2),(1353,1962860427,4),(1353,1983420027,2),(1353,1994310027,4),(1353,2014869627,2),(1353,2025759627,4),(1353,2046319227,2),(1353,2057209227,4),(1353,2077768827,2),(1353,2088658827,4),(1353,2109218427,2),(1353,2120108427,4),(1353,2140668027,2),(1354,-2147483648,1),(1354,-1827687170,2),(1354,126687603,3),(1354,152085603,2),(1354,162370804,3),(1354,183535204,2),(1354,199263605,3),(1354,215589605,2),(1354,230713206,3),(1354,247039206,2),(1354,262767607,3),(1354,278488807,2),(1354,294217208,3),(1354,309938408,2),(1354,325666809,3),(1354,341388009,2),(1354,357116409,3),(1354,372837610,2),(1354,388566010,3),(1354,404892011,2),(1354,420015611,3),(1354,436341612,2),(1355,-2147483648,1),(1355,-1567453392,2),(1355,-1233432000,3),(1355,-1222981200,2),(1355,-1205956800,3),(1355,-1194037200,2),(1355,-1172865600,3),(1355,-1162501200,2),(1355,-1141329600,3),(1355,-1130965200,2),(1355,-1109793600,3),(1355,-1099429200,2),(1355,-1078257600,3),(1355,-1067806800,2),(1355,-1046635200,3),(1355,-1036270800,2),(1355,-1015099200,3),(1355,-1004734800,2),(1355,-983563200,3),(1355,-973198800,2),(1355,-952027200,3),(1355,-941576400,2),(1355,-931032000,3),(1355,-900882000,2),(1355,-890337600,3),(1355,-833749200,2),(1355,-827265600,3),(1355,-752274000,2),(1355,-733780800,3),(1355,-197326800,2),(1355,-190843200,3),(1355,-184194000,2),(1355,-164491200,3),(1355,-152658000,2),(1355,-132955200,3),(1355,-121122000,2),(1355,-101419200,3),(1355,-86821200,2),(1355,-71092800,3),(1355,-54766800,2),(1355,-39038400,3),(1355,-23317200,2),(1355,-7588800,5),(1355,128142003,4),(1355,136605603,5),(1355,596948414,4),(1355,605066414,5),(1355,624423614,4),(1355,636516015,2),(1355,657086415,3),(1355,669178816,2),(1355,686721616,4),(1355,699415216,5),(1355,719377217,4),(1355,731469617,5),(1355,938919622,3),(1355,952052422,5),(1355,1198983623,4),(1355,1205632823,5),(1356,-2147483648,1),(1356,-880207200,2),(1356,-769395600,3),(1356,-765385200,1),(1356,-21477600,4),(1356,-5756400,1),(1356,9972000,4),(1356,25693200,1),(1356,41421600,4),(1356,57747600,1),(1356,73476000,4),(1356,89197201,1),(1356,104925602,4),(1356,120646802,1),(1356,126698403,4),(1356,152096403,1),(1356,162381604,4),(1356,183546004,1),(1356,199274405,4),(1356,215600405,1),(1356,230724006,4),(1356,247050006,1),(1356,262778407,4),(1356,278499607,1),(1356,294228008,4),(1356,309949208,1),(1356,325677609,5),(1356,341402409,1),(1356,357127209,4),(1356,372848410,1),(1356,388576810,4),(1356,404902811,1),(1356,420026411,4),(1356,436352412,6),(1356,439030812,8),(1356,452084412,7),(1356,467805612,8),(1356,483534012,7),(1356,499255213,8),(1356,514983613,7),(1356,530704813,8),(1356,544618813,7),(1356,562154413,8),(1356,576068414,7),(1356,594208814,8),(1356,607518014,7),(1356,625658414,8),(1356,638967615,7),(1356,657108015,8),(1356,671022016,7),(1356,688557616,8),(1356,702471616,7),(1356,720007217,8),(1356,733921217,7),(1356,752061618,8),(1356,765370818,7),(1356,783511219,8),(1356,796820419,7),(1356,814960819,8),(1356,828874820,7),(1356,846410420,8),(1356,860324420,7),(1356,877860021,8),(1356,891774021,7),(1356,909309621,8),(1356,923223622,7),(1356,941364022,8),(1356,954673222,7),(1356,972813622,8),(1356,986122822,7),(1356,1004263222,8),(1356,1018177222,7),(1356,1035712822,8),(1356,1049626822,7),(1356,1067162422,8),(1356,1081076422,7),(1356,1099216822,8),(1356,1112526022,7),(1356,1130666422,8),(1356,1143975623,7),(1356,1162116023,8),(1356,1173610823,7),(1356,1194170423,8),(1356,1205060423,7),(1356,1225620023,8),(1356,1236510024,7),(1356,1257069624,8),(1356,1268564424,7),(1356,1289124024,8),(1356,1300014024,7),(1356,1320573624,8),(1356,1331463624,7),(1356,1352023225,8),(1356,1362913225,7),(1356,1383472825,8),(1356,1394362825,7),(1356,1414922425,8),(1356,1425812425,7),(1356,1446372026,8),(1356,1457866826,7),(1356,1478426426,8),(1356,1489316427,7),(1356,1509876027,8),(1356,1520766027,7),(1356,1541325627,8),(1356,1552215627,7),(1356,1572775227,8),(1356,1583665227,7),(1356,1604224827,8),(1356,1615719627,7),(1356,1636279227,8),(1356,1647169227,7),(1356,1667728827,8),(1356,1678618827,7),(1356,1699178427,8),(1356,1710068427,7),(1356,1730628027,8),(1356,1741518027,7),(1356,1762077627,8),(1356,1772967627,7),(1356,1793527227,8),(1356,1805022027,7),(1356,1825581627,8),(1356,1836471627,7),(1356,1857031227,8),(1356,1867921227,7),(1356,1888480827,8),(1356,1899370827,7),(1356,1919930427,8),(1356,1930820427,7),(1356,1951380027,8),(1356,1962874827,7),(1356,1983434427,8),(1356,1994324427,7),(1356,2014884027,8),(1356,2025774027,7),(1356,2046333627,8),(1356,2057223627,7),(1356,2077783227,8),(1356,2088673227,7),(1356,2109232827,8),(1356,2120122827,7),(1356,2140682427,8),(1357,-2147483648,2),(1357,-1633276800,1),(1357,-1615136400,2),(1357,-1601827200,1),(1357,-1583686800,2),(1357,-1535904000,1),(1357,-1525280400,2),(1357,-905097600,1),(1357,-891795600,2),(1357,-880214400,3),(1357,-769395600,4),(1357,-765392400,2),(1357,-747251940,1),(1357,-744224400,2),(1357,-620841600,1),(1357,-608144400,2),(1357,-589392000,1),(1357,-576090000,2),(1357,-557942400,1),(1357,-544640400,2),(1357,-526492800,1),(1357,-513190800,2),(1357,-495043200,1),(1357,-481741200,2),(1357,-463593600,1),(1357,-450291600,2),(1357,-431539200,1),(1357,-415818000,2),(1357,-400089600,1),(1357,-384368400,2),(1357,-368640000,1),(1357,-352918800,2),(1357,-337190400,1),(1357,-321469200,2),(1357,-305740800,1),(1357,-289414800,2),(1357,-273686400,1),(1357,-266432400,5),(1357,-52938000,6),(1357,-37216800,5),(1357,-21488400,6),(1357,-5767200,5),(1357,9961200,6),(1357,25682400,5),(1357,41410800,6),(1357,57736800,5),(1357,73465200,6),(1357,89186401,5),(1357,104914802,6),(1357,120636002,5),(1357,126687603,1),(1357,152089203,5),(1357,162370804,6),(1357,183535204,5),(1357,199263605,6),(1357,215589605,5),(1357,230713206,6),(1357,247039206,5),(1357,262767607,6),(1357,278488807,5),(1357,294217208,6),(1357,309938408,5),(1357,325666809,6),(1357,341388009,5),(1357,357116409,6),(1357,372837610,5),(1357,388566010,6),(1357,404892011,5),(1357,420015611,6),(1357,436341612,5),(1357,452070012,6),(1357,467791212,5),(1357,483519612,6),(1357,499240813,5),(1357,514969213,6),(1357,530690413,5),(1357,544604413,6),(1357,562140013,5),(1357,576054014,6),(1357,594194414,5),(1357,607503614,6),(1357,625644014,5),(1357,638953215,6),(1357,657093615,5),(1357,671007616,6),(1357,688543216,5),(1357,702457216,6),(1357,719992817,5),(1357,733906817,6),(1357,752047218,5),(1357,765356418,6),(1357,783496819,5),(1357,796806019,6),(1357,814946419,5),(1357,828860420,6),(1357,846396020,5),(1357,860310020,6),(1357,877845621,5),(1357,891759621,6),(1357,909295221,5),(1357,923209222,6),(1357,941349622,5),(1357,954658822,6),(1357,972799222,5),(1357,986108422,6),(1357,1004248822,5),(1357,1018162822,6),(1357,1035698422,5),(1357,1049612422,6),(1357,1067148022,5),(1357,1081062022,6),(1357,1099202422,5),(1357,1112511622,6),(1357,1130652022,5),(1357,1143961223,6),(1357,1162101623,5),(1357,1173596423,6),(1357,1194156023,5),(1357,1205046023,6),(1357,1225605623,5),(1357,1236495624,6),(1357,1257055224,5),(1357,1268550024,6),(1357,1289109624,5),(1357,1299999624,6),(1357,1320559224,5),(1357,1331449224,6),(1357,1352008825,5),(1357,1362898825,6),(1357,1383458425,5),(1357,1394348425,6),(1357,1414908025,5),(1357,1425798025,6),(1357,1446357626,5),(1357,1457852426,6),(1357,1478412026,5),(1357,1489302027,6),(1357,1509861627,5),(1357,1520751627,6),(1357,1541311227,5),(1357,1552201227,6),(1357,1572760827,5),(1357,1583650827,6),(1357,1604210427,5),(1357,1615705227,6),(1357,1636264827,5),(1357,1647154827,6),(1357,1667714427,5),(1357,1678604427,6),(1357,1699164027,5),(1357,1710054027,6),(1357,1730613627,5),(1357,1741503627,6),(1357,1762063227,5),(1357,1772953227,6),(1357,1793512827,5),(1357,1805007627,6),(1357,1825567227,5),(1357,1836457227,6),(1357,1857016827,5),(1357,1867906827,6),(1357,1888466427,5),(1357,1899356427,6),(1357,1919916027,5),(1357,1930806027,6),(1357,1951365627,5),(1357,1962860427,6),(1357,1983420027,5),(1357,1994310027,6),(1357,2014869627,5),(1357,2025759627,6),(1357,2046319227,5),(1357,2057209227,6),(1357,2077768827,5),(1357,2088658827,6),(1357,2109218427,5),(1357,2120108427,6),(1357,2140668027,5),(1358,-2147483648,2),(1358,-1633276800,1),(1358,-1615136400,2),(1358,-1601827200,1),(1358,-1583686800,2),(1358,-880214400,3),(1358,-769395600,4),(1358,-765392400,2),(1358,-52934400,1),(1358,-37213200,2),(1358,-21484800,1),(1358,-5763600,2),(1358,9964800,1),(1358,25686000,2),(1358,41414400,1),(1358,57740400,2),(1358,73468800,1),(1358,89190001,2),(1358,104918402,1),(1358,120639602,2),(1358,126691203,1),(1358,152089203,2),(1358,162374404,1),(1358,183538804,2),(1358,199267205,1),(1358,215593205,2),(1358,230716806,1),(1358,247042806,2),(1358,262771207,1),(1358,278492407,2),(1358,294220808,1),(1358,309942008,2),(1358,325670409,1),(1358,341391609,2),(1358,357120009,1),(1358,372841210,2),(1358,388569610,1),(1358,404895611,2),(1358,420019211,1),(1358,436345212,2),(1358,452073612,1),(1358,467794812,2),(1358,483523212,1),(1358,499244413,2),(1358,514972813,1),(1358,530694013,2),(1358,544608013,1),(1358,562143613,2),(1358,576057614,1),(1358,594198014,2),(1358,607507214,1),(1358,625647614,2),(1358,638956815,1),(1358,657097215,2),(1358,671011216,1),(1358,688546816,2),(1358,702460816,1),(1358,719996417,2),(1358,733910417,1),(1358,752050818,2),(1358,765360018,1),(1358,783500419,2),(1358,796809619,1),(1358,814950019,2),(1358,828864020,1),(1358,846399620,2),(1358,860313620,1),(1358,877849221,2),(1358,891763221,1),(1358,909298821,2),(1358,923212822,1),(1358,941353222,2),(1358,954662422,1),(1358,972802822,6),(1358,986108422,5),(1358,1004248822,6),(1358,1018162822,5),(1358,1035698422,6),(1358,1049612422,5),(1358,1067148022,6),(1358,1081062022,5),(1358,1099202422,6),(1358,1112511622,5),(1358,1130652022,6),(1358,1143961223,5),(1358,1162101623,6),(1358,1173596423,5),(1358,1194156023,6),(1358,1205046023,5),(1358,1225605623,6),(1358,1236495624,5),(1358,1257055224,6),(1358,1268550024,5),(1358,1289109624,6),(1358,1299999624,5),(1358,1320559224,6),(1358,1331449224,5),(1358,1352008825,6),(1358,1362898825,5),(1358,1383458425,6),(1358,1394348425,5),(1358,1414908025,6),(1358,1425798025,5),(1358,1446357626,6),(1358,1457852426,5),(1358,1478412026,6),(1358,1489302027,5),(1358,1509861627,6),(1358,1520751627,5),(1358,1541311227,6),(1358,1552201227,5),(1358,1572760827,6),(1358,1583650827,5),(1358,1604210427,6),(1358,1615705227,5),(1358,1636264827,6),(1358,1647154827,5),(1358,1667714427,6),(1358,1678604427,5),(1358,1699164027,6),(1358,1710054027,5),(1358,1730613627,6),(1358,1741503627,5),(1358,1762063227,6),(1358,1772953227,5),(1358,1793512827,6),(1358,1805007627,5),(1358,1825567227,6),(1358,1836457227,5),(1358,1857016827,6),(1358,1867906827,5),(1358,1888466427,6),(1358,1899356427,5),(1358,1919916027,6),(1358,1930806027,5),(1358,1951365627,6),(1358,1962860427,5),(1358,1983420027,6),(1358,1994310027,5),(1358,2014869627,6),(1358,2025759627,5),(1358,2046319227,6),(1358,2057209227,5),(1358,2077768827,6),(1358,2088658827,5),(1358,2109218427,6),(1358,2120108427,5),(1358,2140668027,6),(1359,-2147483648,2),(1359,-1633276800,1),(1359,-1615136400,2),(1359,-1601827200,1),(1359,-1583686800,2),(1359,-880214400,3),(1359,-769395600,4),(1359,-765392400,2),(1359,-715795200,1),(1359,-702493200,2),(1359,-684345600,1),(1359,-671043600,2),(1359,-652896000,1),(1359,-639594000,2),(1359,-620841600,1),(1359,-608144400,2),(1359,-589392000,1),(1359,-576090000,2),(1359,-557942400,1),(1359,-544640400,2),(1359,-526492800,1),(1359,-513190800,2),(1359,-495043200,1),(1359,-481741200,2),(1359,-463593600,1),(1359,-447267600,2),(1359,-431539200,1),(1359,-415818000,2),(1359,-400089600,1),(1359,-386787600,2),(1359,-368640000,1),(1359,-355338000,2),(1359,-337190400,1),(1359,-321469200,2),(1359,-305740800,1),(1359,-289414800,2),(1359,-273686400,1),(1359,-257965200,2),(1359,-242236800,5),(1359,-195066000,2),(1359,-84384000,1),(1359,-68662800,2),(1359,-52934400,1),(1359,-37213200,2),(1359,-21484800,1),(1359,-5763600,2),(1359,9964800,1),(1359,25686000,2),(1359,41414400,1),(1359,57740400,2),(1359,73468800,1),(1359,89190001,2),(1359,104918402,1),(1359,120639602,2),(1359,126691203,1),(1359,152089203,2),(1359,162374404,1),(1359,183538804,2),(1359,199267205,1),(1359,215593205,2),(1359,230716806,1),(1359,247042806,2),(1359,262771207,1),(1359,278492407,2),(1359,294220808,1),(1359,309942008,2),(1359,325670409,1),(1359,341391609,2),(1359,357120009,1),(1359,372841210,2),(1359,388569610,1),(1359,404895611,2),(1359,420019211,1),(1359,436345212,2),(1359,452073612,1),(1359,467794812,2),(1359,483523212,1),(1359,499244413,2),(1359,514972813,1),(1359,530694013,2),(1359,544608013,1),(1359,562143613,2),(1359,576057614,1),(1359,594198014,2),(1359,607507214,1),(1359,625647614,2),(1359,638956815,1),(1359,657097215,2),(1359,671011216,1),(1359,688546816,5),(1359,1143961223,1),(1359,1162105223,2),(1359,1173600023,1),(1359,1194159623,2),(1359,1205049623,1),(1359,1225609223,2),(1359,1236499224,1),(1359,1257058824,2),(1359,1268553624,1),(1359,1289113224,2),(1359,1300003224,1),(1359,1320562824,2),(1359,1331452824,1),(1359,1352012425,2),(1359,1362902425,1),(1359,1383462025,2),(1359,1394352025,1),(1359,1414911625,2),(1359,1425801625,1),(1359,1446361226,2),(1359,1457856026,1),(1359,1478415626,2),(1359,1489305627,1),(1359,1509865227,2),(1359,1520755227,1),(1359,1541314827,2),(1359,1552204827,1),(1359,1572764427,2),(1359,1583654427,1),(1359,1604214027,2),(1359,1615708827,1),(1359,1636268427,2),(1359,1647158427,1),(1359,1667718027,2),(1359,1678608027,1),(1359,1699167627,2),(1359,1710057627,1),(1359,1730617227,2),(1359,1741507227,1),(1359,1762066827,2),(1359,1772956827,1),(1359,1793516427,2),(1359,1805011227,1),(1359,1825570827,2),(1359,1836460827,1),(1359,1857020427,2),(1359,1867910427,1),(1359,1888470027,2),(1359,1899360027,1),(1359,1919919627,2),(1359,1930809627,1),(1359,1951369227,2),(1359,1962864027,1),(1359,1983423627,2),(1359,1994313627,1),(1359,2014873227,2),(1359,2025763227,1),(1359,2046322827,2),(1359,2057212827,1),(1359,2077772427,2),(1359,2088662427,1),(1359,2109222027,2),(1359,2120112027,1),(1359,2140671627,2),(1360,-2147483648,0),(1360,-1826738653,1),(1360,-157750200,2),(1361,-2147483648,1),(1361,-1205954844,2),(1361,-1192307244,3),(1362,-2147483648,1),(1362,-1938538284,3),(1362,-1009825200,2),(1362,-1002052800,3),(1362,-986756400,2),(1362,-971035200,3),(1362,-955306800,2),(1362,-939585600,3),(1362,504939613,2),(1362,512712013,3),(1362,536475613,2),(1362,544248013,3),(1362,631170015,2),(1362,638942415,3),(1362,757400418,2),(1362,765172818,3),(1363,-2147483648,2),(1363,-1633269600,1),(1363,-1615129200,2),(1363,-1601820000,1),(1363,-1583679600,2),(1363,-880207200,3),(1363,-769395600,4),(1363,-765385200,2),(1363,-687967140,1),(1363,-662655600,2),(1363,-620838000,1),(1363,-608137200,2),(1363,-589388400,1),(1363,-576082800,2),(1363,-557938800,1),(1363,-544633200,2),(1363,-526489200,1),(1363,-513183600,2),(1363,-495039600,1),(1363,-481734000,2),(1363,-463590000,1),(1363,-450284400,2),(1363,-431535600,1),(1363,-418230000,2),(1363,-400086000,1),(1363,-386780400,2),(1363,-368636400,1),(1363,-355330800,2),(1363,-337186800,1),(1363,-323881200,2),(1363,-305737200,1),(1363,-292431600,2),(1363,-273682800,1),(1363,-260982000,2),(1363,-242233200,1),(1363,-226508400,2),(1363,-210783600,1),(1363,-195058800,2),(1363,-179334000,1),(1363,-163609200,2),(1363,-147884400,1),(1363,-131554800,2),(1363,-116434800,1),(1363,-100105200,2),(1363,-84376800,1),(1363,-68655600,2),(1363,-52927200,1),(1363,-37206000,2),(1363,-21477600,1),(1363,-5756400,2),(1363,9972000,1),(1363,25693200,2),(1363,41421600,1),(1363,57747600,2),(1363,73476000,1),(1363,89197201,2),(1363,104925602,1),(1363,120646802,2),(1363,126698403,1),(1363,152096403,2),(1363,162381604,1),(1363,183546004,2),(1363,199274405,1),(1363,215600405,2),(1363,230724006,1),(1363,247050006,2),(1363,262778407,1),(1363,278499607,2),(1363,294228008,1),(1363,309949208,2),(1363,325677609,1),(1363,341398809,2),(1363,357127209,1),(1363,372848410,2),(1363,388576810,1),(1363,404902811,2),(1363,420026411,1),(1363,436352412,2),(1363,452080812,1),(1363,467802012,2),(1363,483530412,1),(1363,499251613,2),(1363,514980013,1),(1363,530701213,2),(1363,544615213,1),(1363,562150813,2),(1363,576064814,1),(1363,594205214,2),(1363,607514414,1),(1363,625654814,2),(1363,638964015,1),(1363,657104415,2),(1363,671018416,1),(1363,688554016,2),(1363,702468016,1),(1363,720003617,2),(1363,733917617,1),(1363,752058018,2),(1363,765367218,1),(1363,783507619,2),(1363,796816819,1),(1363,814957219,2),(1363,828871220,1),(1363,846406820,2),(1363,860320820,1),(1363,877856421,2),(1363,891770421,1),(1363,909306021,2),(1363,923220022,1),(1363,941360422,2),(1363,954669622,1),(1363,972810022,2),(1363,986119222,1),(1363,1004259622,2),(1363,1018173622,1),(1363,1035709222,2),(1363,1049623222,1),(1363,1067158822,2),(1363,1081072822,1),(1363,1099213222,2),(1363,1112522422,1),(1363,1130662822,2),(1363,1143972023,1),(1363,1162112423,2),(1363,1173607223,1),(1363,1194166823,2),(1363,1205056823,1),(1363,1225616423,2),(1363,1236506424,1),(1363,1257066024,2),(1363,1268560824,1),(1363,1289120424,2),(1363,1300010424,1),(1363,1320570024,2),(1363,1331460024,1),(1363,1352019625,2),(1363,1362909625,1),(1363,1383469225,2),(1363,1394359225,1),(1363,1414918825,2),(1363,1425808825,1),(1363,1446368426,2),(1363,1457863226,1),(1363,1478422826,2),(1363,1489312827,1),(1363,1509872427,2),(1363,1520762427,1),(1363,1541322027,2),(1363,1552212027,1),(1363,1572771627,2),(1363,1583661627,1),(1363,1604221227,2),(1363,1615716027,1),(1363,1636275627,2),(1363,1647165627,1),(1363,1667725227,2),(1363,1678615227,1),(1363,1699174827,2),(1363,1710064827,1),(1363,1730624427,2),(1363,1741514427,1),(1363,1762074027,2),(1363,1772964027,1),(1363,1793523627,2),(1363,1805018427,1),(1363,1825578027,2),(1363,1836468027,1),(1363,1857027627,2),(1363,1867917627,1),(1363,1888477227,2),(1363,1899367227,1),(1363,1919926827,2),(1363,1930816827,1),(1363,1951376427,2),(1363,1962871227,1),(1363,1983430827,2),(1363,1994320827,1),(1363,2014880427,2),(1363,2025770427,1),(1363,2046330027,2),(1363,2057220027,1),(1363,2077779627,2),(1363,2088669627,1),(1363,2109229227,2),(1363,2120119227,1),(1363,2140678827,2),(1364,-2147483648,2),(1364,-1633276800,1),(1364,-1615136400,2),(1364,-1601827200,1),(1364,-1583686800,2),(1364,-1535904000,1),(1364,-1525280400,2),(1364,-905097600,1),(1364,-891795600,2),(1364,-880214400,3),(1364,-769395600,4),(1364,-765392400,2),(1364,-747251940,1),(1364,-744224400,2),(1364,-620841600,1),(1364,-608144400,2),(1364,-589392000,1),(1364,-576090000,2),(1364,-557942400,1),(1364,-544640400,2),(1364,-526492800,1),(1364,-513190800,2),(1364,-495043200,1),(1364,-481741200,2),(1364,-463593600,1),(1364,-450291600,2),(1364,-431539200,1),(1364,-415818000,2),(1364,-400089600,1),(1364,-384368400,2),(1364,-368640000,1),(1364,-352918800,2),(1364,-337190400,1),(1364,-321469200,2),(1364,-305740800,1),(1364,-289414800,2),(1364,-273686400,1),(1364,-266432400,5),(1364,-52938000,6),(1364,-37216800,5),(1364,-21488400,6),(1364,-5767200,5),(1364,9961200,6),(1364,25682400,5),(1364,41410800,6),(1364,57736800,5),(1364,73465200,6),(1364,89186401,5),(1364,104914802,6),(1364,120636002,5),(1364,126687603,1),(1364,152089203,5),(1364,162370804,6),(1364,183535204,5),(1364,199263605,6),(1364,215589605,5),(1364,230713206,6),(1364,247039206,5),(1364,262767607,6),(1364,278488807,5),(1364,294217208,6),(1364,309938408,5),(1364,325666809,6),(1364,341388009,5),(1364,357116409,6),(1364,372837610,5),(1364,388566010,6),(1364,404892011,5),(1364,420015611,6),(1364,436341612,5),(1364,452070012,6),(1364,467791212,5),(1364,483519612,6),(1364,499240813,5),(1364,514969213,6),(1364,530690413,5),(1364,544604413,6),(1364,562140013,5),(1364,576054014,6),(1364,594194414,5),(1364,607503614,6),(1364,625644014,5),(1364,638953215,6),(1364,657093615,5),(1364,671007616,6),(1364,688543216,5),(1364,702457216,6),(1364,719992817,5),(1364,733906817,6),(1364,752047218,5),(1364,765356418,6),(1364,783496819,5),(1364,796806019,6),(1364,814946419,5),(1364,828860420,6),(1364,846396020,5),(1364,860310020,6),(1364,877845621,5),(1364,891759621,6),(1364,909295221,5),(1364,923209222,6),(1364,941349622,5),(1364,954658822,6),(1364,972799222,5),(1364,986108422,6),(1364,1004248822,5),(1364,1018162822,6),(1364,1035698422,5),(1364,1049612422,6),(1364,1067148022,5),(1364,1081062022,6),(1364,1099202422,5),(1364,1112511622,6),(1364,1130652022,5),(1364,1143961223,6),(1364,1162101623,5),(1364,1173596423,6),(1364,1194156023,5),(1364,1205046023,6),(1364,1225605623,5),(1364,1236495624,6),(1364,1257055224,5),(1364,1268550024,6),(1364,1289109624,5),(1364,1299999624,6),(1364,1320559224,5),(1364,1331449224,6),(1364,1352008825,5),(1364,1362898825,6),(1364,1383458425,5),(1364,1394348425,6),(1364,1414908025,5),(1364,1425798025,6),(1364,1446357626,5),(1364,1457852426,6),(1364,1478412026,5),(1364,1489302027,6),(1364,1509861627,5),(1364,1520751627,6),(1364,1541311227,5),(1364,1552201227,6),(1364,1572760827,5),(1364,1583650827,6),(1364,1604210427,5),(1364,1615705227,6),(1364,1636264827,5),(1364,1647154827,6),(1364,1667714427,5),(1364,1678604427,6),(1364,1699164027,5),(1364,1710054027,6),(1364,1730613627,5),(1364,1741503627,6),(1364,1762063227,5),(1364,1772953227,6),(1364,1793512827,5),(1364,1805007627,6),(1364,1825567227,5),(1364,1836457227,6),(1364,1857016827,5),(1364,1867906827,6),(1364,1888466427,5),(1364,1899356427,6),(1364,1919916027,5),(1364,1930806027,6),(1364,1951365627,5),(1364,1962860427,6),(1364,1983420027,5),(1364,1994310027,6),(1364,2014869627,5),(1364,2025759627,6),(1364,2046319227,5),(1364,2057209227,6),(1364,2077768827,5),(1364,2088658827,6),(1364,2109218427,5),(1364,2120108427,6),(1364,2140668027,5),(1365,-2147483648,0),(1365,-1826738653,1),(1365,-157750200,2),(1366,-2147483648,0),(1366,-1767217028,2),(1366,-1206957600,1),(1366,-1191362400,2),(1366,-1175374800,1),(1366,-1159826400,2),(1366,-633819600,1),(1366,-622069200,2),(1366,-602283600,1),(1366,-591832800,2),(1366,-570747600,1),(1366,-560210400,2),(1366,-539125200,1),(1366,-531352800,2),(1366,-191365200,1),(1366,-184197600,2),(1366,-155163600,1),(1366,-150069600,2),(1366,-128898000,1),(1366,-121125600,2),(1366,-99954000,1),(1366,-89589600,2),(1366,-68418000,1),(1366,-57967200,2),(1366,499748413,1),(1366,511236013,2),(1366,530593213,1),(1366,540266413,2),(1366,562129213,1),(1366,571197614,2),(1366,592974014,1),(1366,602042414,2),(1366,624423614,1),(1366,634701615,2),(1366,813726019,1),(1366,824004020,2),(1366,938919622,1),(1366,951616822,2),(1366,970974022,1),(1366,972180022,2),(1366,1003028422,1),(1366,1013911222,2),(1367,-2147483648,1),(1367,-1121105688,2),(1367,105084002,3),(1367,161758804,2),(1367,290584808,4),(1367,299134808,2),(1367,322034409,4),(1367,330584409,2),(1367,694260016,3),(1367,717310817,2),(1367,725868017,3),(1367,852094820,2),(1367,1113112822,4),(1367,1128229222,2),(1367,1146384023,4),(1367,1159682423,2),(1368,-2147483648,0),(1368,-1767211196,2),(1368,-1206954000,1),(1368,-1191358800,2),(1368,-1175371200,1),(1368,-1159822800,2),(1368,-633816000,1),(1368,-622065600,2),(1368,-602280000,1),(1368,-591829200,2),(1368,-570744000,1),(1368,-560206800,2),(1368,-539121600,1),(1368,-531349200,2),(1368,-191361600,1),(1368,-184194000,2),(1368,-155160000,1),(1368,-150066000,2),(1368,-128894400,1),(1368,-121122000,2),(1368,-99950400,1),(1368,-89586000,2),(1368,-68414400,1),(1368,-57963600,2),(1368,499752013,1),(1368,511239613,2),(1368,530596813,1),(1368,540270013,2),(1368,562132813,1),(1368,571201214,2),(1368,750830418,1),(1368,761713218,2),(1369,-2147483648,0),(1369,-1825098836,1),(1370,-2147483648,1),(1370,-1851537340,2),(1370,323841609,3),(1370,338958009,2),(1371,-2147483648,0),(1371,-1514743200,1),(1371,576057614,2),(1371,594198014,1),(1371,828864020,2),(1371,846399620,1),(1371,860313620,2),(1371,877849221,1),(1371,891763221,2),(1371,909298821,1),(1371,923212822,2),(1371,941353222,1),(1371,954662422,2),(1371,972802822,1),(1371,989136022,2),(1371,1001833222,1),(1371,1018166422,2),(1371,1035702022,1),(1371,1049616022,2),(1371,1067151622,1),(1371,1081065622,2),(1371,1099206022,1),(1371,1112515222,2),(1371,1130655622,1),(1371,1143964823,2),(1371,1162105223,1),(1371,1175414423,2),(1371,1193554823,1),(1371,1207468823,2),(1371,1225004423,1),(1371,1238918424,2),(1371,1256454024,1),(1371,1268553624,2),(1371,1289113224,1),(1371,1300003224,2),(1371,1320562824,1),(1371,1331452824,2),(1371,1352012425,1),(1371,1362902425,2),(1371,1383462025,1),(1371,1394352025,2),(1371,1414911625,1),(1371,1425801625,2),(1371,1446361226,1),(1371,1457856026,2),(1371,1478415626,1),(1371,1489305627,2),(1371,1509865227,1),(1371,1520755227,2),(1371,1541314827,1),(1371,1552204827,2),(1371,1572764427,1),(1371,1583654427,2),(1371,1604214027,1),(1371,1615708827,2),(1371,1636268427,1),(1371,1647158427,2),(1371,1667718027,1),(1371,1678608027,2),(1371,1699167627,1),(1371,1710057627,2),(1371,1730617227,1),(1371,1741507227,2),(1371,1762066827,1),(1371,1772956827,2),(1371,1793516427,1),(1371,1805011227,2),(1371,1825570827,1),(1371,1836460827,2),(1371,1857020427,1),(1371,1867910427,2),(1371,1888470027,1),(1371,1899360027,2),(1371,1919919627,1),(1371,1930809627,2),(1371,1951369227,1),(1371,1962864027,2),(1371,1983423627,1),(1371,1994313627,2),(1371,2014873227,1),(1371,2025763227,2),(1371,2046322827,1),(1371,2057212827,2),(1371,2077772427,1),(1371,2088662427,2),(1371,2109222027,1),(1371,2120112027,2),(1371,2140671627,1),(1372,-2147483648,0),(1372,-1514739600,1),(1372,-1343066400,2),(1372,-1234807200,1),(1372,-1220292000,2),(1372,-1207159200,1),(1372,-1191344400,2),(1372,-873828000,1),(1372,-661539600,3),(1372,28800,1),(1372,828867620,4),(1372,846403220,1),(1372,860317220,4),(1372,877852821,1),(1372,891766821,4),(1372,909302421,1),(1372,923216422,4),(1372,941356822,1),(1372,954666022,4),(1372,972806422,1),(1372,989139622,4),(1372,1001836822,1),(1372,1018170022,4),(1372,1035705622,1),(1372,1049619622,4),(1372,1067155222,1),(1372,1081069222,4),(1372,1099209622,1),(1372,1112518822,4),(1372,1130659222,1),(1372,1143968423,4),(1372,1162108823,1),(1372,1175418023,4),(1372,1193558423,1),(1372,1207472423,4),(1372,1225008023,1),(1372,1238922024,4),(1372,1256457624,1),(1372,1270371624,4),(1372,1288512024,1),(1372,1301821224,4),(1372,1319961624,1),(1372,1333270824,4),(1372,1351411225,1),(1372,1365325225,4),(1372,1382860825,1),(1372,1396774825,4),(1372,1414310425,1),(1372,1428224425,4),(1372,1445760026,1),(1372,1459674026,4),(1372,1477814426,1),(1372,1491123627,4),(1372,1509264027,1),(1372,1522573227,4),(1372,1540713627,1),(1372,1554627627,4),(1372,1572163227,1),(1372,1586077227,4),(1372,1603612827,1),(1372,1617526827,4),(1372,1635667227,1),(1372,1648976427,4),(1372,1667116827,1),(1372,1680426027,4),(1372,1698566427,1),(1372,1712480427,4),(1372,1730016027,1),(1372,1743930027,4),(1372,1761465627,1),(1372,1775379627,4),(1372,1792915227,1),(1372,1806829227,4),(1372,1824969627,1),(1372,1838278827,4),(1372,1856419227,1),(1372,1869728427,4),(1372,1887868827,1),(1372,1901782827,4),(1372,1919318427,1),(1372,1933232427,4),(1372,1950768027,1),(1372,1964682027,4),(1372,1982822427,1),(1372,1996131627,4),(1372,2014272027,1),(1372,2027581227,4),(1372,2045721627,1),(1372,2059030827,4),(1372,2077171227,1),(1372,2091085227,4),(1372,2108620827,1),(1372,2122534827,4),(1372,2140070427,1),(1373,-2147483648,1),(1373,-1567453392,2),(1373,-1233432000,3),(1373,-1222981200,2),(1373,-1205956800,3),(1373,-1194037200,2),(1373,-1172865600,3),(1373,-1162501200,2),(1373,-1141329600,3),(1373,-1130965200,2),(1373,-1109793600,3),(1373,-1099429200,2),(1373,-1078257600,3),(1373,-1067806800,2),(1373,-1046635200,3),(1373,-1036270800,2),(1373,-1015099200,3),(1373,-1004734800,2),(1373,-983563200,3),(1373,-973198800,2),(1373,-952027200,3),(1373,-941576400,2),(1373,-931032000,3),(1373,-900882000,2),(1373,-890337600,3),(1373,-833749200,2),(1373,-827265600,3),(1373,-752274000,2),(1373,-733780800,3),(1373,-197326800,2),(1373,-190843200,3),(1373,-184194000,2),(1373,-164491200,3),(1373,-152658000,2),(1373,-132955200,3),(1373,-121122000,2),(1373,-101419200,3),(1373,-86821200,2),(1373,-71092800,3),(1373,-54766800,2),(1373,-39038400,3),(1373,-23317200,2),(1373,-7588800,5),(1373,128142003,4),(1373,136605603,5),(1373,596948414,4),(1373,605066414,5),(1373,624423614,4),(1373,636516015,2),(1373,655963215,3),(1373,667796416,2),(1373,687499216,3),(1373,699418816,2),(1373,719380817,4),(1373,731469617,5),(1373,938919622,3),(1373,952052422,5),(1373,1085281222,2),(1373,1096171222,5),(1373,1198983623,4),(1373,1205632823,5),(1374,-2147483648,2),(1374,-1633276800,1),(1374,-1615136400,2),(1374,-1601827200,1),(1374,-1583686800,2),(1374,-880214400,3),(1374,-769395600,4),(1374,-765392400,2),(1374,-747244800,1),(1374,-733942800,2),(1374,-116438400,1),(1374,-100112400,2),(1374,-21484800,5),(1374,104914802,1),(1374,120639602,2),(1374,126691203,1),(1374,152089203,2),(1374,162374404,1),(1374,183538804,2),(1374,199267205,1),(1374,215593205,2),(1374,230716806,1),(1374,247042806,2),(1374,262771207,1),(1374,278492407,2),(1374,294220808,1),(1374,309942008,2),(1374,325670409,1),(1374,341391609,2),(1374,357120009,1),(1374,372841210,2),(1374,388569610,1),(1374,404895611,2),(1374,420019211,1),(1374,436345212,2),(1374,452073612,1),(1374,467794812,2),(1374,483523212,1),(1374,499244413,2),(1374,514972813,1),(1374,530694013,2),(1374,544608013,1),(1374,562143613,2),(1374,576057614,1),(1374,594198014,2),(1374,607507214,1),(1374,625647614,2),(1374,638956815,1),(1374,657097215,2),(1374,671011216,1),(1374,688546816,2),(1374,702460816,1),(1374,719996417,2),(1374,733910417,1),(1374,752050818,2),(1374,765360018,1),(1374,783500419,2),(1374,796809619,1),(1374,814950019,2),(1374,828864020,1),(1374,846399620,2),(1374,860313620,1),(1374,877849221,2),(1374,891763221,1),(1374,909298821,2),(1374,923212822,1),(1374,941353222,2),(1374,954662422,1),(1374,972802822,2),(1374,986112022,1),(1374,1004252422,2),(1374,1018166422,1),(1374,1035702022,2),(1374,1049616022,1),(1374,1067151622,2),(1374,1081065622,1),(1374,1099206022,2),(1374,1112515222,1),(1374,1130655622,2),(1374,1143964823,1),(1374,1162105223,2),(1374,1173600023,1),(1374,1194159623,2),(1374,1205049623,1),(1374,1225609223,2),(1374,1236499224,1),(1374,1257058824,2),(1374,1268553624,1),(1374,1289113224,2),(1374,1300003224,1),(1374,1320562824,2),(1374,1331452824,1),(1374,1352012425,2),(1374,1362902425,1),(1374,1383462025,2),(1374,1394352025,1),(1374,1414911625,2),(1374,1425801625,1),(1374,1446361226,2),(1374,1457856026,1),(1374,1478415626,2),(1374,1489305627,1),(1374,1509865227,2),(1374,1520755227,1),(1374,1541314827,2),(1374,1552204827,1),(1374,1572764427,2),(1374,1583654427,1),(1374,1604214027,2),(1374,1615708827,1),(1374,1636268427,2),(1374,1647158427,1),(1374,1667718027,2),(1374,1678608027,1),(1374,1699167627,2),(1374,1710057627,1),(1374,1730617227,2),(1374,1741507227,1),(1374,1762066827,2),(1374,1772956827,1),(1374,1793516427,2),(1374,1805011227,1),(1374,1825570827,2),(1374,1836460827,1),(1374,1857020427,2),(1374,1867910427,1),(1374,1888470027,2),(1374,1899360027,1),(1374,1919919627,2),(1374,1930809627,1),(1374,1951369227,2),(1374,1962864027,1),(1374,1983423627,2),(1374,1994313627,1),(1374,2014873227,2),(1374,2025763227,1),(1374,2046322827,2),(1374,2057212827,1),(1374,2077772427,2),(1374,2088662427,1),(1374,2109222027,2),(1374,2120112027,1),(1374,2140671627,2),(1375,-2147483648,0),(1375,-1514743200,1),(1375,377935210,2),(1375,407653211,1),(1375,828864020,3),(1375,846399620,1),(1375,860313620,3),(1375,877849221,1),(1375,891763221,3),(1375,909298821,1),(1375,923212822,3),(1375,941353222,1),(1375,954662422,3),(1375,972802822,1),(1375,989136022,3),(1375,1001833222,1),(1375,1018166422,3),(1375,1035702022,1),(1375,1049616022,3),(1375,1067151622,1),(1375,1081065622,3),(1375,1099206022,1),(1375,1112515222,3),(1375,1130655622,1),(1375,1143964823,3),(1375,1162105223,1),(1375,1175414423,3),(1375,1193554823,1),(1375,1207468823,3),(1375,1225004423,1),(1375,1238918424,3),(1375,1256454024,1),(1375,1270368024,3),(1375,1288508424,1),(1375,1301817624,3),(1375,1319958024,1),(1375,1333267224,3),(1375,1351407625,1),(1375,1365321625,3),(1375,1382857225,1),(1375,1396771225,3),(1375,1414306825,1),(1375,1428220825,3),(1375,1445756426,1),(1375,1459670426,3),(1375,1477810826,1),(1375,1491120027,3),(1375,1509260427,1),(1375,1522569627,3),(1375,1540710027,1),(1375,1554624027,3),(1375,1572159627,1),(1375,1586073627,3),(1375,1603609227,1),(1375,1617523227,3),(1375,1635663627,1),(1375,1648972827,3),(1375,1667113227,1),(1375,1680422427,3),(1375,1698562827,1),(1375,1712476827,3),(1375,1730012427,1),(1375,1743926427,3),(1375,1761462027,1),(1375,1775376027,3),(1375,1792911627,1),(1375,1806825627,3),(1375,1824966027,1),(1375,1838275227,3),(1375,1856415627,1),(1375,1869724827,3),(1375,1887865227,1),(1375,1901779227,3),(1375,1919314827,1),(1375,1933228827,3),(1375,1950764427,1),(1375,1964678427,3),(1375,1982818827,1),(1375,1996128027,3),(1375,2014268427,1),(1375,2027577627,3),(1375,2045718027,1),(1375,2059027227,3),(1375,2077167627,1),(1375,2091081627,3),(1375,2108617227,1),(1375,2122531227,3),(1375,2140066827,1),(1376,-2147483648,1),(1376,-880207200,2),(1376,-769395600,3),(1376,-765385200,1),(1376,-21477600,4),(1376,-5756400,1),(1376,9972000,4),(1376,25693200,1),(1376,41421600,4),(1376,57747600,1),(1376,73476000,4),(1376,89197201,1),(1376,104925602,4),(1376,120646802,1),(1376,126698403,4),(1376,152096403,1),(1376,162381604,4),(1376,183546004,1),(1376,199274405,4),(1376,215600405,1),(1376,230724006,4),(1376,247050006,1),(1376,262778407,4),(1376,278499607,1),(1376,294228008,4),(1376,309949208,1),(1376,325677609,4),(1376,341398809,1),(1376,357127209,4),(1376,372848410,1),(1376,388576810,4),(1376,404902811,1),(1376,420026411,4),(1376,436352412,1),(1376,1446372026,5),(1376,1457866826,6),(1376,1478426426,5),(1376,1489316427,6),(1376,1509876027,5),(1376,1520766027,6),(1376,1541325627,1),(1376,1547978427,5),(1376,1552215627,6),(1376,1572775227,5),(1376,1583665227,6),(1376,1604224827,5),(1376,1615719627,6),(1376,1636279227,5),(1376,1647169227,6),(1376,1667728827,5),(1376,1678618827,6),(1376,1699178427,5),(1376,1710068427,6),(1376,1730628027,5),(1376,1741518027,6),(1376,1762077627,5),(1376,1772967627,6),(1376,1793527227,5),(1376,1805022027,6),(1376,1825581627,5),(1376,1836471627,6),(1376,1857031227,5),(1376,1867921227,6),(1376,1888480827,5),(1376,1899370827,6),(1376,1919930427,5),(1376,1930820427,6),(1376,1951380027,5),(1376,1962874827,6),(1376,1983434427,5),(1376,1994324427,6),(1376,2014884027,5),(1376,2025774027,6),(1376,2046333627,5),(1376,2057223627,6),(1376,2077783227,5),(1376,2088673227,6),(1376,2109232827,5),(1376,2120122827,6),(1376,2140682427,5),(1377,-2147483648,0),(1377,-1514739600,1),(1377,-1343066400,2),(1377,-1234807200,1),(1377,-1220292000,2),(1377,-1207159200,1),(1377,-1191344400,2),(1377,-975261600,3),(1377,-963169200,2),(1377,-917114400,3),(1377,-907354800,2),(1377,-821901600,4),(1377,-810068400,2),(1377,-627501600,3),(1377,-612990000,2),(1377,828864020,3),(1377,846399620,2),(1377,860313620,3),(1377,877849221,2),(1377,891763221,3),(1377,909298821,2),(1377,923212822,3),(1377,941353222,2),(1377,954662422,3),(1377,972802822,2),(1377,989136022,3),(1377,1001833222,2),(1377,1018166422,3),(1377,1035702022,2),(1377,1049616022,3),(1377,1067151622,2),(1377,1081065622,3),(1377,1099206022,2),(1377,1112515222,3),(1377,1130655622,2),(1377,1143964823,3),(1377,1162105223,2),(1377,1175414423,3),(1377,1193554823,2),(1377,1207468823,3),(1377,1225004423,2),(1377,1238918424,3),(1377,1256454024,2),(1377,1270368024,3),(1377,1288508424,2),(1377,1301817624,3),(1377,1319958024,2),(1377,1333267224,3),(1377,1351407625,2),(1377,1365321625,3),(1377,1382857225,2),(1377,1396771225,3),(1377,1414306825,2),(1377,1428220825,3),(1377,1445756426,2),(1377,1459670426,3),(1377,1477810826,2),(1377,1491120027,3),(1377,1509260427,2),(1377,1522569627,3),(1377,1540710027,2),(1377,1554624027,3),(1377,1572159627,2),(1377,1586073627,3),(1377,1603609227,2),(1377,1617523227,3),(1377,1635663627,2),(1377,1648972827,3),(1377,1667113227,2),(1377,1680422427,3),(1377,1698562827,2),(1377,1712476827,3),(1377,1730012427,2),(1377,1743926427,3),(1377,1761462027,2),(1377,1775376027,3),(1377,1792911627,2),(1377,1806825627,3),(1377,1824966027,2),(1377,1838275227,3),(1377,1856415627,2),(1377,1869724827,3),(1377,1887865227,2),(1377,1901779227,3),(1377,1919314827,2),(1377,1933228827,3),(1377,1950764427,2),(1377,1964678427,3),(1377,1982818827,2),(1377,1996128027,3),(1377,2014268427,2),(1377,2027577627,3),(1377,2045718027,2),(1377,2059027227,3),(1377,2077167627,2),(1377,2091081627,3),(1377,2108617227,2),(1377,2122531227,3),(1377,2140066827,2),(1378,-2147483648,0),(1378,-1850328920,1),(1378,326001609,2),(1378,544597213,3),(1378,562132813,2),(1378,576046814,3),(1378,594187214,2),(1378,607496414,3),(1378,625636814,2),(1378,638946015,3),(1378,657086415,2),(1378,671000416,3),(1378,688536016,2),(1378,702450016,3),(1378,719985617,2),(1378,733899617,3),(1378,752040018,2),(1378,765349218,3),(1378,783489619,2),(1378,796798819,3),(1378,814939219,2),(1378,828853220,3),(1378,846388820,2),(1378,860302820,3),(1378,877838421,2),(1378,891752421,3),(1378,909288021,2),(1378,923202022,3),(1378,941342422,2),(1378,954651622,3),(1378,972792022,2),(1378,986101222,3),(1378,1004241622,2),(1378,1018155622,3),(1378,1035691222,2),(1378,1049605222,3),(1378,1067140822,2),(1378,1081054822,3),(1378,1099195222,2),(1378,1112504422,3),(1378,1130644822,2),(1378,1143954023,3),(1378,1162094423,2),(1378,1173589223,3),(1378,1194148823,2),(1378,1205038823,3),(1378,1225598423,2),(1378,1236488424,3),(1378,1257048024,2),(1378,1268542824,3),(1378,1289102424,2),(1378,1299992424,3),(1378,1320552024,2),(1378,1331442024,3),(1378,1352001625,2),(1378,1362891625,3),(1378,1383451225,2),(1378,1394341225,3),(1378,1414900825,2),(1378,1425790825,3),(1378,1446350426,2),(1378,1457845226,3),(1378,1478404826,2),(1378,1489294827,3),(1378,1509854427,2),(1378,1520744427,3),(1378,1541304027,2),(1378,1552194027,3),(1378,1572753627,2),(1378,1583643627,3),(1378,1604203227,2),(1378,1615698027,3),(1378,1636257627,2),(1378,1647147627,3),(1378,1667707227,2),(1378,1678597227,3),(1378,1699156827,2),(1378,1710046827,3),(1378,1730606427,2),(1378,1741496427,3),(1378,1762056027,2),(1378,1772946027,3),(1378,1793505627,2),(1378,1805000427,3),(1378,1825560027,2),(1378,1836450027,3),(1378,1857009627,2),(1378,1867899627,3),(1378,1888459227,2),(1378,1899349227,3),(1378,1919908827,2),(1378,1930798827,3),(1378,1951358427,2),(1378,1962853227,3),(1378,1983412827,2),(1378,1994302827,3),(1378,2014862427,2),(1378,2025752427,3),(1378,2046312027,2),(1378,2057202027,3),(1378,2077761627,2),(1378,2088651627,3),(1378,2109211227,2),(1378,2120101227,3),(1378,2140660827,2),(1379,-2147483648,1),(1379,-2131642800,3),(1379,-1632074400,2),(1379,-1615143600,3),(1379,-1153681200,2),(1379,-1145822400,3),(1379,-1122231600,2),(1379,-1114372800,3),(1379,-1090782000,2),(1379,-1082923200,3),(1379,-1059332400,2),(1379,-1051473600,3),(1379,-1027882800,2),(1379,-1020024000,3),(1379,-996433200,2),(1379,-988574400,3),(1379,-965674800,2),(1379,-955396800,3),(1379,-934743600,2),(1379,-923947200,3),(1379,-904503600,2),(1379,-891892800,3),(1379,-880221600,4),(1379,-769395600,5),(1379,-765399600,3),(1379,-747252000,2),(1379,-733950000,3),(1379,-715802400,2),(1379,-702500400,3),(1379,-684352800,2),(1379,-671050800,3),(1379,-652903200,2),(1379,-639601200,3),(1379,-620848800,2),(1379,-608151600,3),(1379,-589399200,2),(1379,-576097200,3),(1379,-557949600,2),(1379,-544647600,3),(1379,-526500000,2),(1379,-513198000,3),(1379,-495050400,2),(1379,-481748400,3),(1379,-463600800,2),(1379,-450298800,3),(1379,-431546400,2),(1379,-418244400,3),(1379,-400096800,2),(1379,-384375600,3),(1379,-368647200,2),(1379,-352926000,3),(1379,-337197600,2),(1379,-321476400,3),(1379,-305748000,2),(1379,-289422000,3),(1379,-273693600,2),(1379,-257972400,3),(1379,-242244000,2),(1379,-226522800,3),(1379,-210794400,2),(1379,-195073200,3),(1379,-179344800,2),(1379,-163623600,3),(1379,-147895200,2),(1379,-131569200,3),(1379,-116445600,2),(1379,-100119600,3),(1379,-84391200,2),(1379,-68670000,3),(1379,-52941600,2),(1379,-37220400,3),(1379,-21492000,2),(1379,-5770800,3),(1379,9957600,2),(1379,25678800,3),(1379,41407200,2),(1379,57733200,3),(1379,73461600,2),(1379,89182801,3),(1379,136360803,2),(1379,152082003,3),(1379,167810404,2),(1379,183531604,3),(1379,199260005,2),(1379,215586005,3),(1379,230709606,2),(1379,247035606,3),(1379,262764007,2),(1379,278485207,3),(1379,294213608,2),(1379,309934808,3),(1379,325663209,2),(1379,341384409,3),(1379,357112809,2),(1379,372834010,3),(1379,388562410,2),(1379,404888411,3),(1379,420012011,2),(1379,436338012,3),(1379,452066412,2),(1379,467787612,3),(1379,483516012,2),(1379,499237213,3),(1379,514965613,2),(1379,530686813,3),(1379,544600813,2),(1379,562136413,3),(1379,576050414,2),(1379,594190814,3),(1379,607500014,2),(1379,625640414,3),(1379,638949615,2),(1379,657090015,3),(1379,671004016,2),(1379,688539616,3),(1379,702453616,2),(1379,719989217,3),(1379,733896077,2),(1379,752036478,3),(1379,765345678,2),(1379,783486079,3),(1379,796795279,2),(1379,814935679,3),(1379,828849680,2),(1379,846385280,3),(1379,860299280,2),(1379,877834881,3),(1379,891748881,2),(1379,909284481,3),(1379,923198482,2),(1379,941338882,3),(1379,954648082,2),(1379,972788482,3),(1379,986097682,2),(1379,1004238082,3),(1379,1018152082,2),(1379,1035687682,3),(1379,1049601682,2),(1379,1067137282,3),(1379,1081051282,2),(1379,1099191682,3),(1379,1112500882,2),(1379,1130641282,3),(1379,1143950483,2),(1379,1162090883,3),(1379,1173592823,2),(1379,1194152423,3),(1379,1205042423,2),(1379,1225602023,3),(1379,1236492024,2),(1379,1257051624,3),(1379,1268546424,2),(1379,1289106024,3),(1379,1299996024,2),(1379,1320555624,3),(1379,1331445624,2),(1379,1352005225,3),(1379,1362895225,2),(1379,1383454825,3),(1379,1394344825,2),(1379,1414904425,3),(1379,1425794425,2),(1379,1446354026,3),(1379,1457848826,2),(1379,1478408426,3),(1379,1489298427,2),(1379,1509858027,3),(1379,1520748027,2),(1379,1541307627,3),(1379,1552197627,2),(1379,1572757227,3),(1379,1583647227,2),(1379,1604206827,3),(1379,1615701627,2),(1379,1636261227,3),(1379,1647151227,2),(1379,1667710827,3),(1379,1678600827,2),(1379,1699160427,3),(1379,1710050427,2),(1379,1730610027,3),(1379,1741500027,2),(1379,1762059627,3),(1379,1772949627,2),(1379,1793509227,3),(1379,1805004027,2),(1379,1825563627,3),(1379,1836453627,2),(1379,1857013227,3),(1379,1867903227,2),(1379,1888462827,3),(1379,1899352827,2),(1379,1919912427,3),(1379,1930802427,2),(1379,1951362027,3),(1379,1962856827,2),(1379,1983416427,3),(1379,1994306427,2),(1379,2014866027,3),(1379,2025756027,2),(1379,2046315627,3),(1379,2057205627,2),(1379,2077765227,3),(1379,2088655227,2),(1379,2109214827,3),(1379,2120104827,2),(1379,2140664427,3),(1380,-2147483648,0),(1380,-1514743200,1),(1380,576057614,2),(1380,594198014,1),(1380,828864020,2),(1380,846399620,1),(1380,860313620,2),(1380,877849221,1),(1380,891763221,2),(1380,909298821,1),(1380,923212822,2),(1380,941353222,1),(1380,954662422,2),(1380,972802822,1),(1380,989136022,2),(1380,1001833222,1),(1380,1018166422,2),(1380,1035702022,1),(1380,1049616022,2),(1380,1067151622,1),(1380,1081065622,2),(1380,1099206022,1),(1380,1112515222,2),(1380,1130655622,1),(1380,1143964823,2),(1380,1162105223,1),(1380,1175414423,2),(1380,1193554823,1),(1380,1207468823,2),(1380,1225004423,1),(1380,1238918424,2),(1380,1256454024,1),(1380,1270368024,2),(1380,1288508424,1),(1380,1301817624,2),(1380,1319958024,1),(1380,1333267224,2),(1380,1351407625,1),(1380,1365321625,2),(1380,1382857225,1),(1380,1396771225,2),(1380,1414306825,1),(1380,1428220825,2),(1380,1445756426,1),(1380,1459670426,2),(1380,1477810826,1),(1380,1491120027,2),(1380,1509260427,1),(1380,1522569627,2),(1380,1540710027,1),(1380,1554624027,2),(1380,1572159627,1),(1380,1586073627,2),(1380,1603609227,1),(1380,1617523227,2),(1380,1635663627,1),(1380,1648972827,2),(1380,1667113227,1),(1380,1680422427,2),(1380,1698562827,1),(1380,1712476827,2),(1380,1730012427,1),(1380,1743926427,2),(1380,1761462027,1),(1380,1775376027,2),(1380,1792911627,1),(1380,1806825627,2),(1380,1824966027,1),(1380,1838275227,2),(1380,1856415627,1),(1380,1869724827,2),(1380,1887865227,1),(1380,1901779227,2),(1380,1919314827,1),(1380,1933228827,2),(1380,1950764427,1),(1380,1964678427,2),(1380,1982818827,1),(1380,1996128027,2),(1380,2014268427,1),(1380,2027577627,2),(1380,2045718027,1),(1380,2059027227,2),(1380,2077167627,1),(1380,2091081627,2),(1380,2108617227,1),(1380,2122531227,2),(1380,2140066827,1),(1381,-2147483648,0),(1381,-1942690509,1),(1381,-1567455309,2),(1381,-1459627200,4),(1381,-1443819600,3),(1381,-1428006600,4),(1381,-1412283600,3),(1381,-1396470600,4),(1381,-1380747600,3),(1381,-1141590600,4),(1381,-1128286800,3),(1381,-1110141000,4),(1381,-1096837200,3),(1381,-1078691400,4),(1381,-1065387600,3),(1381,-1047241800,4),(1381,-1033938000,3),(1381,-1015187400,4),(1381,-1002488400,3),(1381,-983737800,4),(1381,-971038800,3),(1381,-954707400,4),(1381,-938984400,3),(1381,-920838600,4),(1381,-907534800,3),(1381,-896819400,4),(1381,-853621200,6),(1381,-845847000,5),(1381,-334789200,6),(1381,-319671000,5),(1381,-314226000,7),(1381,-309996000,5),(1381,-149720400,7),(1381,-134604000,5),(1381,-50446800,6),(1381,-34205400,5),(1381,9860400,7),(1381,14176800,5),(1381,72846000,7),(1381,80100001,5),(1381,127278003,8),(1381,132111003,6),(1381,147234603,5),(1381,156913203,7),(1381,165376804,5),(1381,219812405,7),(1381,226461606,5),(1381,250052406,7),(1381,257911207,5),(1381,282711607,7),(1381,289360808,5),(1381,294202808,7),(1381,322020009,5),(1381,566449213,7),(1381,573012014,5),(1381,597812414,7),(1381,605066414,5),(1381,625633214,7),(1381,635911215,5),(1381,656478015,7),(1381,667965616,5),(1381,688532416,7),(1381,699415216,5),(1381,719377217,7),(1381,730864817,5),(1381,1095562822,7),(1381,1111896022,5),(1381,1128834022,7),(1381,1142136023,5),(1381,1159678823,7),(1381,1173585623,5),(1381,1191733223,7),(1381,1205035223,5),(1381,1223182823,7),(1381,1236484824,5),(1381,1254632424,7),(1381,1268539224,5),(1381,1286082024,7),(1381,1299988824,5),(1381,1317531624,7),(1381,1331438424,5),(1381,1349586025,7),(1381,1362888025,5),(1381,1381035625,7),(1381,1394337625,5),(1381,1412485225,7),(1381,1425787225,5),(1382,-2147483648,2),(1382,-1632070800,1),(1382,-1615140000,2),(1382,-1601753400,1),(1382,-1583697600,2),(1382,-1567357200,1),(1382,-1554667200,2),(1382,-1534698000,1),(1382,-1524074400,2),(1382,-1503248400,1),(1382,-1492365600,2),(1382,-1471798800,1),(1382,-1460916000,2),(1382,-1440954000,1),(1382,-1428861600,2),(1382,-1409504400,1),(1382,-1397412000,2),(1382,-1378054800,1),(1382,-1365962400,2),(1382,-1346605200,1),(1382,-1333908000,2),(1382,-1315155600,1),(1382,-1301853600,2),(1382,-1283706000,1),(1382,-1270404000,2),(1382,-1252256400,1),(1382,-1238954400,2),(1382,-1220806800,1),(1382,-1207504800,2),(1382,-1188752400,1),(1382,-1176055200,2),(1382,-1157302800,1),(1382,-1144000800,2),(1382,-1125853200,1),(1382,-1112551200,2),(1382,-1094403600,1),(1382,-1081101600,2),(1382,-1062954000,1),(1382,-1049652000,2),(1382,-1031504400,1),(1382,-1018202400,2),(1382,-1000054800,1),(1382,-986752800,2),(1382,-968000400,1),(1382,-955303200,2),(1382,-936550800,1),(1382,-880218000,3),(1382,-769395600,4),(1382,-765396000,2),(1382,-747248400,1),(1382,-733946400,2),(1382,-715806000,1),(1382,-702504000,2),(1382,-684356400,1),(1382,-671054400,2),(1382,-652906800,1),(1382,-634161600,2),(1382,-620845200,1),(1382,-602704800,2),(1382,-589395600,1),(1382,-576093600,2),(1382,-557946000,1),(1382,-544644000,2),(1382,-526496400,1),(1382,-513194400,2),(1382,-495046800,1),(1382,-481744800,2),(1382,-463597200,1),(1382,-450295200,2),(1382,-431542800,1),(1382,-418240800,2),(1382,-400093200,1),(1382,-384372000,2),(1382,-368643600,1),(1382,-352922400,2),(1382,-337194000,1),(1382,-321472800,2),(1382,-305744400,1),(1382,-289418400,2),(1382,-273690000,1),(1382,-257968800,2),(1382,-242240400,1),(1382,-226519200,2),(1382,-210790800,1),(1382,-195069600,2),(1382,-179341200,1),(1382,-163620000,2),(1382,-147891600,1),(1382,-131565600,2),(1382,-116442000,1),(1382,-100116000,2),(1382,-84387600,1),(1382,-68666400,2),(1382,-52938000,1),(1382,-37216800,2),(1382,-21488400,1),(1382,-5767200,2),(1382,9961200,1),(1382,25682400,2),(1382,41410800,1),(1382,57736800,2),(1382,73465200,1),(1382,89186401,2),(1382,104914802,1),(1382,120636002,2),(1382,136364403,1),(1382,152085603,2),(1382,167814004,1),(1382,183535204,2),(1382,199263605,1),(1382,215589605,2),(1382,230713206,1),(1382,247039206,2),(1382,262767607,1),(1382,278488807,2),(1382,294217208,1),(1382,309938408,2),(1382,325666809,1),(1382,341388009,2),(1382,357116409,1),(1382,372837610,2),(1382,388566010,1),(1382,404892011,2),(1382,420015611,1),(1382,436341612,2),(1382,452070012,1),(1382,467791212,2),(1382,483519612,1),(1382,499240813,2),(1382,514969213,1),(1382,530690413,2),(1382,544604413,1),(1382,562140013,2),(1382,576054014,1),(1382,594194414,2),(1382,607503614,1),(1382,625644014,2),(1382,638953215,1),(1382,657093615,2),(1382,671007616,1),(1382,688543216,2),(1382,702457216,1),(1382,719992817,2),(1382,733906817,1),(1382,752047218,2),(1382,765356418,1),(1382,783496819,2),(1382,796806019,1),(1382,814946419,2),(1382,828860420,1),(1382,846396020,2),(1382,860310020,1),(1382,877845621,2),(1382,891759621,1),(1382,909295221,2),(1382,923209222,1),(1382,941349622,2),(1382,954658822,1),(1382,972799222,2),(1382,986108422,1),(1382,1004248822,2),(1382,1018162822,1),(1382,1035698422,2),(1382,1049612422,1),(1382,1067148022,2),(1382,1081062022,1),(1382,1099202422,2),(1382,1112511622,1),(1382,1130652022,2),(1382,1143961223,1),(1382,1162101623,2),(1382,1173596423,1),(1382,1194156023,2),(1382,1205046023,1),(1382,1225605623,2),(1382,1236495624,1),(1382,1257055224,2),(1382,1268550024,1),(1382,1289109624,2),(1382,1299999624,1),(1382,1320559224,2),(1382,1331449224,1),(1382,1352008825,2),(1382,1362898825,1),(1382,1383458425,2),(1382,1394348425,1),(1382,1414908025,2),(1382,1425798025,1),(1382,1446357626,2),(1382,1457852426,1),(1382,1478412026,2),(1382,1489302027,1),(1382,1509861627,2),(1382,1520751627,1),(1382,1541311227,2),(1382,1552201227,1),(1382,1572760827,2),(1382,1583650827,1),(1382,1604210427,2),(1382,1615705227,1),(1382,1636264827,2),(1382,1647154827,1),(1382,1667714427,2),(1382,1678604427,1),(1382,1699164027,2),(1382,1710054027,1),(1382,1730613627,2),(1382,1741503627,1),(1382,1762063227,2),(1382,1772953227,1),(1382,1793512827,2),(1382,1805007627,1),(1382,1825567227,2),(1382,1836457227,1),(1382,1857016827,2),(1382,1867906827,1),(1382,1888466427,2),(1382,1899356427,1),(1382,1919916027,2),(1382,1930806027,1),(1382,1951365627,2),(1382,1962860427,1),(1382,1983420027,2),(1382,1994310027,1),(1382,2014869627,2),(1382,2025759627,1),(1382,2046319227,2),(1382,2057209227,1),(1382,2077768827,2),(1382,2088658827,1),(1382,2109218427,2),(1382,2120108427,1),(1382,2140668027,2),(1383,-2147483648,0),(1383,-1825098836,1),(1384,-2147483648,0),(1384,-1825095030,2),(1384,-179341200,1),(1384,-163620000,2),(1384,-147891600,1),(1384,-131565600,2),(1384,-116442000,1),(1384,-100116000,2),(1384,-84387600,1),(1384,-68666400,2),(1384,-52938000,1),(1384,-37216800,2),(1384,-21488400,1),(1384,-5767200,2),(1384,9961200,1),(1384,25682400,2),(1384,41410800,1),(1384,57736800,2),(1384,73465200,1),(1384,89186401,2),(1384,104914802,1),(1384,120636002,2),(1384,136364403,1),(1384,152085603,2),(1384,167814004,1),(1384,183535204,2),(1384,199263605,1),(1384,215589605,2),(1384,230713206,1),(1384,247039206,2),(1384,262767607,1),(1384,278488807,2),(1384,294217208,1),(1384,309938408,2),(1384,325666809,1),(1384,341388009,2),(1384,357116409,1),(1384,372837610,2),(1384,388566010,1),(1384,404892011,2),(1384,420015611,1),(1384,436341612,2),(1384,452070012,1),(1384,467791212,2),(1384,483519612,1),(1384,499240813,2),(1384,514969213,1),(1384,530690413,2),(1384,544604413,1),(1384,562140013,2),(1384,576054014,1),(1384,594194414,2),(1384,607503614,1),(1384,625644014,2),(1384,638953215,1),(1384,657093615,2),(1384,671007616,1),(1384,688543216,2),(1384,702457216,1),(1384,719992817,2),(1384,733906817,1),(1384,752047218,2),(1384,765356418,1),(1384,783496819,2),(1384,796806019,1),(1384,814946419,2),(1384,828860420,1),(1384,846396020,2),(1384,860310020,1),(1384,877845621,2),(1384,891759621,1),(1384,909295221,2),(1384,923209222,1),(1384,941349622,2),(1384,954658822,1),(1384,972799222,2),(1384,986108422,1),(1384,1004248822,2),(1384,1018162822,1),(1384,1035698422,2),(1384,1049612422,1),(1384,1067148022,2),(1384,1081062022,1),(1384,1099202422,2),(1384,1112511622,1),(1384,1130652022,2),(1384,1143961223,1),(1384,1162101623,2),(1384,1173596423,1),(1384,1194156023,2),(1384,1205046023,1),(1384,1225605623,2),(1384,1236495624,1),(1384,1257055224,2),(1384,1268550024,1),(1384,1289109624,2),(1384,1299999624,1),(1384,1320559224,2),(1384,1331449224,1),(1384,1352008825,2),(1384,1362898825,1),(1384,1383458425,2),(1384,1394348425,1),(1384,1414908025,2),(1384,1425798025,1),(1384,1446357626,2),(1384,1457852426,1),(1384,1478412026,2),(1384,1489302027,1),(1384,1509861627,2),(1384,1520751627,1),(1384,1541311227,2),(1384,1552201227,1),(1384,1572760827,2),(1384,1583650827,1),(1384,1604210427,2),(1384,1615705227,1),(1384,1636264827,2),(1384,1647154827,1),(1384,1667714427,2),(1384,1678604427,1),(1384,1699164027,2),(1384,1710054027,1),(1384,1730613627,2),(1384,1741503627,1),(1384,1762063227,2),(1384,1772953227,1),(1384,1793512827,2),(1384,1805007627,1),(1384,1825567227,2),(1384,1836457227,1),(1384,1857016827,2),(1384,1867906827,1),(1384,1888466427,2),(1384,1899356427,1),(1384,1919916027,2),(1384,1930806027,1),(1384,1951365627,2),(1384,1962860427,1),(1384,1983420027,2),(1384,1994310027,1),(1384,2014869627,2),(1384,2025759627,1),(1384,2046319227,2),(1384,2057209227,1),(1384,2077768827,2),(1384,2088658827,1),(1384,2109218427,2),(1384,2120108427,1),(1384,2140668027,2),(1385,-2147483648,2),(1385,-1633280400,1),(1385,-1615140000,2),(1385,-1601830800,1),(1385,-1583690400,2),(1385,-1570381200,1),(1385,-1551636000,2),(1385,-1536512400,1),(1385,-1523210400,2),(1385,-1504458000,1),(1385,-1491760800,2),(1385,-1473008400,1),(1385,-1459706400,2),(1385,-1441558800,1),(1385,-1428256800,2),(1385,-1410109200,1),(1385,-1396807200,2),(1385,-1378659600,1),(1385,-1365357600,2),(1385,-1347210000,1),(1385,-1333908000,2),(1385,-1315155600,1),(1385,-1301853600,2),(1385,-1283706000,1),(1385,-1270404000,2),(1385,-1252256400,1),(1385,-1238954400,2),(1385,-1220806800,1),(1385,-1207504800,2),(1385,-1189357200,1),(1385,-1176055200,2),(1385,-1157302800,1),(1385,-1144605600,2),(1385,-1125853200,1),(1385,-1112551200,2),(1385,-1094403600,1),(1385,-1081101600,2),(1385,-1062954000,1),(1385,-1049652000,2),(1385,-1031504400,1),(1385,-1018202400,2),(1385,-1000054800,1),(1385,-986752800,2),(1385,-968000400,1),(1385,-955303200,2),(1385,-936550800,1),(1385,-923248800,2),(1385,-905101200,1),(1385,-891799200,2),(1385,-880218000,3),(1385,-769395600,4),(1385,-765396000,2),(1385,-747248400,1),(1385,-733946400,2),(1385,-715798800,1),(1385,-702496800,2),(1385,-684349200,1),(1385,-671047200,2),(1385,-652899600,1),(1385,-639597600,2),(1385,-620845200,1),(1385,-608148000,2),(1385,-589395600,1),(1385,-576093600,2),(1385,-557946000,1),(1385,-544644000,2),(1385,-526496400,1),(1385,-513194400,2),(1385,-495046800,1),(1385,-481744800,2),(1385,-463597200,1),(1385,-447271200,2),(1385,-431542800,1),(1385,-415821600,2),(1385,-400093200,1),(1385,-384372000,2),(1385,-368643600,1),(1385,-352922400,2),(1385,-337194000,1),(1385,-321472800,2),(1385,-305744400,1),(1385,-289418400,2),(1385,-273690000,1),(1385,-257968800,2),(1385,-242240400,1),(1385,-226519200,2),(1385,-210790800,1),(1385,-195069600,2),(1385,-179341200,1),(1385,-163620000,2),(1385,-147891600,1),(1385,-131565600,2),(1385,-116442000,1),(1385,-100116000,2),(1385,-84387600,1),(1385,-68666400,2),(1385,-52938000,1),(1385,-37216800,2),(1385,-21488400,1),(1385,-5767200,2),(1385,9961200,1),(1385,25682400,2),(1385,41410800,1),(1385,57736800,2),(1385,73465200,1),(1385,89186401,2),(1385,104914802,1),(1385,120636002,2),(1385,126687603,1),(1385,152085603,2),(1385,162370804,1),(1385,183535204,2),(1385,199263605,1),(1385,215589605,2),(1385,230713206,1),(1385,247039206,2),(1385,262767607,1),(1385,278488807,2),(1385,294217208,1),(1385,309938408,2),(1385,325666809,1),(1385,341388009,2),(1385,357116409,1),(1385,372837610,2),(1385,388566010,1),(1385,404892011,2),(1385,420015611,1),(1385,436341612,2),(1385,452070012,1),(1385,467791212,2),(1385,483519612,1),(1385,499240813,2),(1385,514969213,1),(1385,530690413,2),(1385,544604413,1),(1385,562140013,2),(1385,576054014,1),(1385,594194414,2),(1385,607503614,1),(1385,625644014,2),(1385,638953215,1),(1385,657093615,2),(1385,671007616,1),(1385,688543216,2),(1385,702457216,1),(1385,719992817,2),(1385,733906817,1),(1385,752047218,2),(1385,765356418,1),(1385,783496819,2),(1385,796806019,1),(1385,814946419,2),(1385,828860420,1),(1385,846396020,2),(1385,860310020,1),(1385,877845621,2),(1385,891759621,1),(1385,909295221,2),(1385,923209222,1),(1385,941349622,2),(1385,954658822,1),(1385,972799222,2),(1385,986108422,1),(1385,1004248822,2),(1385,1018162822,1),(1385,1035698422,2),(1385,1049612422,1),(1385,1067148022,2),(1385,1081062022,1),(1385,1099202422,2),(1385,1112511622,1),(1385,1130652022,2),(1385,1143961223,1),(1385,1162101623,2),(1385,1173596423,1),(1385,1194156023,2),(1385,1205046023,1),(1385,1225605623,2),(1385,1236495624,1),(1385,1257055224,2),(1385,1268550024,1),(1385,1289109624,2),(1385,1299999624,1),(1385,1320559224,2),(1385,1331449224,1),(1385,1352008825,2),(1385,1362898825,1),(1385,1383458425,2),(1385,1394348425,1),(1385,1414908025,2),(1385,1425798025,1),(1385,1446357626,2),(1385,1457852426,1),(1385,1478412026,2),(1385,1489302027,1),(1385,1509861627,2),(1385,1520751627,1),(1385,1541311227,2),(1385,1552201227,1),(1385,1572760827,2),(1385,1583650827,1),(1385,1604210427,2),(1385,1615705227,1),(1385,1636264827,2),(1385,1647154827,1),(1385,1667714427,2),(1385,1678604427,1),(1385,1699164027,2),(1385,1710054027,1),(1385,1730613627,2),(1385,1741503627,1),(1385,1762063227,2),(1385,1772953227,1),(1385,1793512827,2),(1385,1805007627,1),(1385,1825567227,2),(1385,1836457227,1),(1385,1857016827,2),(1385,1867906827,1),(1385,1888466427,2),(1385,1899356427,1),(1385,1919916027,2),(1385,1930806027,1),(1385,1951365627,2),(1385,1962860427,1),(1385,1983420027,2),(1385,1994310027,1),(1385,2014869627,2),(1385,2025759627,1),(1385,2046319227,2),(1385,2057209227,1),(1385,2077768827,2),(1385,2088658827,1),(1385,2109218427,2),(1385,2120108427,1),(1385,2140668027,2),(1386,-2147483648,2),(1386,-1632070800,1),(1386,-1615140000,2),(1386,-923252400,1),(1386,-880218000,3),(1386,-769395600,4),(1386,-765396000,2),(1386,136364403,1),(1386,152085603,2),(1386,167814004,1),(1386,183535204,2),(1386,199263605,1),(1386,215589605,2),(1386,230713206,1),(1386,247039206,2),(1386,262767607,1),(1386,278488807,2),(1386,294217208,1),(1386,309938408,2),(1386,325666809,1),(1386,341388009,2),(1386,357116409,1),(1386,372837610,2),(1386,388566010,1),(1386,404892011,2),(1386,420015611,1),(1386,436341612,2),(1386,452070012,1),(1386,467791212,2),(1386,483519612,1),(1386,499240813,2),(1386,514969213,1),(1386,530690413,2),(1386,544604413,1),(1386,562140013,2),(1386,576054014,1),(1386,594194414,2),(1386,607503614,1),(1386,625644014,2),(1386,638953215,1),(1386,657093615,2),(1386,671007616,1),(1386,688543216,2),(1386,702457216,1),(1386,719992817,2),(1386,733906817,1),(1386,752047218,2),(1386,765356418,1),(1386,783496819,2),(1386,796806019,1),(1386,814946419,2),(1386,828860420,1),(1386,846396020,2),(1386,860310020,1),(1386,877845621,2),(1386,891759621,1),(1386,909295221,2),(1386,923209222,1),(1386,941349622,2),(1386,954658822,1),(1386,972799222,2),(1386,986108422,1),(1386,1004248822,2),(1386,1018162822,1),(1386,1035698422,2),(1386,1049612422,1),(1386,1067148022,2),(1386,1081062022,1),(1386,1099202422,2),(1386,1112511622,1),(1386,1130652022,2),(1386,1143961223,1),(1386,1162101623,2),(1386,1173596423,1),(1386,1194156023,2),(1386,1205046023,1),(1386,1225605623,2),(1386,1236495624,1),(1386,1257055224,2),(1386,1268550024,1),(1386,1289109624,2),(1386,1299999624,1),(1386,1320559224,2),(1386,1331449224,1),(1386,1352008825,2),(1386,1362898825,1),(1386,1383458425,2),(1386,1394348425,1),(1386,1414908025,2),(1386,1425798025,1),(1386,1446357626,2),(1386,1457852426,1),(1386,1478412026,2),(1386,1489302027,1),(1386,1509861627,2),(1386,1520751627,1),(1386,1541311227,2),(1386,1552201227,1),(1386,1572760827,2),(1386,1583650827,1),(1386,1604210427,2),(1386,1615705227,1),(1386,1636264827,2),(1386,1647154827,1),(1386,1667714427,2),(1386,1678604427,1),(1386,1699164027,2),(1386,1710054027,1),(1386,1730613627,2),(1386,1741503627,1),(1386,1762063227,2),(1386,1772953227,1),(1386,1793512827,2),(1386,1805007627,1),(1386,1825567227,2),(1386,1836457227,1),(1386,1857016827,2),(1386,1867906827,1),(1386,1888466427,2),(1386,1899356427,1),(1386,1919916027,2),(1386,1930806027,1),(1386,1951365627,2),(1386,1962860427,1),(1386,1983420027,2),(1386,1994310027,1),(1386,2014869627,2),(1386,2025759627,1),(1386,2046319227,2),(1386,2057209227,1),(1386,2077768827,2),(1386,2088658827,1),(1386,2109218427,2),(1386,2120108427,1),(1386,2140668027,2),(1387,-2147483648,1),(1387,-880196400,2),(1387,-769395600,3),(1387,-765374400,1),(1387,-86878800,4),(1387,-21466800,5),(1387,-5745600,4),(1387,9982800,5),(1387,25704000,4),(1387,41432400,5),(1387,57758400,4),(1387,73486800,5),(1387,89208001,4),(1387,104936402,5),(1387,120657602,4),(1387,126709203,5),(1387,152107203,4),(1387,162392404,5),(1387,183556804,4),(1387,199285205,5),(1387,215611205,4),(1387,230734806,5),(1387,247060806,4),(1387,262789207,5),(1387,278510407,4),(1387,294238808,5),(1387,309960008,4),(1387,325688409,5),(1387,341409609,4),(1387,357138009,5),(1387,372859210,4),(1387,388587610,5),(1387,404913611,4),(1387,420037211,5),(1387,436363212,6),(1387,439030812,8),(1387,452084412,7),(1387,467805612,8),(1387,483534012,7),(1387,499255213,8),(1387,514983613,7),(1387,530704813,8),(1387,544618813,7),(1387,562154413,8),(1387,576068414,7),(1387,594208814,8),(1387,607518014,7),(1387,625658414,8),(1387,638967615,7),(1387,657108015,8),(1387,671022016,7),(1387,688557616,8),(1387,702471616,7),(1387,720007217,8),(1387,733921217,7),(1387,752061618,8),(1387,765370818,7),(1387,783511219,8),(1387,796820419,7),(1387,814960819,8),(1387,828874820,7),(1387,846410420,8),(1387,860324420,7),(1387,877860021,8),(1387,891774021,7),(1387,909309621,8),(1387,923223622,7),(1387,941364022,8),(1387,954673222,7),(1387,972813622,8),(1387,986122822,7),(1387,1004263222,8),(1387,1018177222,7),(1387,1035712822,8),(1387,1049626822,7),(1387,1067162422,8),(1387,1081076422,7),(1387,1099216822,8),(1387,1112526022,7),(1387,1130666422,8),(1387,1143975623,7),(1387,1162116023,8),(1387,1173610823,7),(1387,1194170423,8),(1387,1205060423,7),(1387,1225620023,8),(1387,1236510024,7),(1387,1257069624,8),(1387,1268564424,7),(1387,1289124024,8),(1387,1300014024,7),(1387,1320573624,8),(1387,1331463624,7),(1387,1352023225,8),(1387,1362913225,7),(1387,1383472825,8),(1387,1394362825,7),(1387,1414922425,8),(1387,1425812425,7),(1387,1446372026,8),(1387,1457866826,7),(1387,1478426426,8),(1387,1489316427,7),(1387,1509876027,8),(1387,1520766027,7),(1387,1541325627,8),(1387,1552215627,7),(1387,1572775227,8),(1387,1583665227,7),(1387,1604224827,8),(1387,1615719627,7),(1387,1636279227,8),(1387,1647169227,7),(1387,1667728827,8),(1387,1678618827,7),(1387,1699178427,8),(1387,1710068427,7),(1387,1730628027,8),(1387,1741518027,7),(1387,1762077627,8),(1387,1772967627,7),(1387,1793527227,8),(1387,1805022027,7),(1387,1825581627,8),(1387,1836471627,7),(1387,1857031227,8),(1387,1867921227,7),(1387,1888480827,8),(1387,1899370827,7),(1387,1919930427,8),(1387,1930820427,7),(1387,1951380027,8),(1387,1962874827,7),(1387,1983434427,8),(1387,1994324427,7),(1387,2014884027,8),(1387,2025774027,7),(1387,2046333627,8),(1387,2057223627,7),(1387,2077783227,8),(1387,2088673227,7),(1387,2109232827,8),(1387,2120122827,7),(1387,2140682427,8),(1388,-2147483648,0),(1388,-1767217820,2),(1388,-1206961200,1),(1388,-1191366000,2),(1388,-1175378400,1),(1388,-1159830000,2),(1388,-633823200,1),(1388,-622072800,2),(1388,-602287200,1),(1388,-591836400,2),(1388,-570751200,1),(1388,-560214000,2),(1388,-539128800,1),(1388,-531356400,2),(1388,-191368800,1),(1388,-184201200,2),(1388,-155167200,1),(1388,-150073200,2),(1388,-128901600,1),(1388,-121129200,2),(1388,-99957600,1),(1388,-89593200,2),(1388,-68421600,1),(1388,-57970800,2),(1388,499744813,1),(1388,511232413,2),(1388,530589613,1),(1388,540262813,2),(1388,562125613,1),(1388,571194014,2),(1388,592970414,1),(1388,602038814,2),(1388,624420014,1),(1388,634698015,2),(1388,938916022,1),(1388,951613222,2),(1388,970970422,1),(1388,971571622,2),(1388,1003024822,1),(1388,1013907622,2),(1389,-2147483648,2),(1389,-1633273200,1),(1389,-1615132800,2),(1389,-1601823600,1),(1389,-1583683200,2),(1389,-880210800,3),(1389,-769395600,4),(1389,-765388800,2),(1389,-84380400,1),(1389,-68659200,2),(1389,-52930800,1),(1389,-37209600,2),(1389,-21481200,1),(1389,-5760000,2),(1389,9968400,1),(1389,25689600,2),(1389,41418000,1),(1389,57744000,2),(1389,73472400,1),(1389,89193601,2),(1389,104922002,1),(1389,120643202,2),(1389,126694803,1),(1389,152092803,2),(1389,162378004,1),(1389,183542404,2),(1389,199270805,1),(1389,215596805,2),(1389,230720406,1),(1389,247046406,2),(1389,262774807,1),(1389,278496007,2),(1389,294224408,1),(1389,309945608,2),(1389,325674009,1),(1389,341395209,2),(1389,357123609,1),(1389,372844810,2),(1389,388573210,1),(1389,404899211,2),(1389,420022811,1),(1389,436348812,2),(1389,452077212,1),(1389,467798412,2),(1389,483526812,1),(1389,499248013,2),(1389,514976413,1),(1389,530697613,2),(1389,544611613,1),(1389,562147213,2),(1389,576061214,1),(1389,594201614,2),(1389,607510814,1),(1389,625651214,2),(1389,638960415,1),(1389,657100815,2),(1389,671014816,1),(1389,688550416,2),(1389,702464416,1),(1389,720000017,2),(1389,733914017,1),(1389,752054418,2),(1389,765363618,1),(1389,783504019,2),(1389,796813219,1),(1389,814953619,2),(1389,828867620,1),(1389,846403220,2),(1389,860317220,1),(1389,877852821,2),(1389,891766821,1),(1389,909302421,2),(1389,923216422,1),(1389,941356822,2),(1389,954666022,1),(1389,972806422,2),(1389,986115622,1),(1389,1004256022,2),(1389,1018170022,1),(1389,1035705622,2),(1389,1049619622,1),(1389,1067155222,2),(1389,1081069222,1),(1389,1099209622,2),(1389,1112518822,1),(1389,1130659222,2),(1389,1143968423,1),(1389,1162108823,2),(1389,1173603623,1),(1389,1194163223,2),(1389,1205053223,1),(1389,1225612823,2),(1389,1236502824,1),(1389,1257062424,2),(1389,1268557224,1),(1389,1289116824,6),(1389,1300003224,5),(1389,1320562824,6),(1389,1331452824,5),(1389,1352012425,6),(1389,1362902425,5),(1389,1383462025,6),(1389,1394352025,5),(1389,1414911625,6),(1389,1425801625,5),(1389,1446361226,6),(1389,1457856026,5),(1389,1478415626,6),(1389,1489305627,5),(1389,1509865227,6),(1389,1520755227,5),(1389,1541314827,6),(1389,1552204827,5),(1389,1572764427,6),(1389,1583654427,5),(1389,1604214027,6),(1389,1615708827,5),(1389,1636268427,6),(1389,1647158427,5),(1389,1667718027,6),(1389,1678608027,5),(1389,1699167627,6),(1389,1710057627,5),(1389,1730617227,6),(1389,1741507227,5),(1389,1762066827,6),(1389,1772956827,5),(1389,1793516427,6),(1389,1805011227,5),(1389,1825570827,6),(1389,1836460827,5),(1389,1857020427,6),(1389,1867910427,5),(1389,1888470027,6),(1389,1899360027,5),(1389,1919919627,6),(1389,1930809627,5),(1389,1951369227,6),(1389,1962864027,5),(1389,1983423627,6),(1389,1994313627,5),(1389,2014873227,6),(1389,2025763227,5),(1389,2046322827,6),(1389,2057212827,5),(1389,2077772427,6),(1389,2088662427,5),(1389,2109222027,6),(1389,2120112027,5),(1389,2140671627,6),(1390,-2147483648,2),(1390,-1633273200,1),(1390,-1615132800,2),(1390,-1601823600,1),(1390,-1583683200,2),(1390,-880210800,3),(1390,-769395600,4),(1390,-765388800,2),(1390,-84380400,1),(1390,-68659200,2),(1390,-52930800,1),(1390,-37209600,2),(1390,-21481200,1),(1390,-5760000,2),(1390,9968400,1),(1390,25689600,2),(1390,41418000,1),(1390,57744000,2),(1390,73472400,1),(1390,89193601,2),(1390,104922002,1),(1390,120643202,2),(1390,126694803,1),(1390,152092803,2),(1390,162378004,1),(1390,183542404,2),(1390,199270805,1),(1390,215596805,2),(1390,230720406,1),(1390,247046406,2),(1390,262774807,1),(1390,278496007,2),(1390,294224408,1),(1390,309945608,2),(1390,325674009,1),(1390,341395209,2),(1390,357123609,1),(1390,372844810,2),(1390,388573210,1),(1390,404899211,2),(1390,420022811,1),(1390,436348812,2),(1390,452077212,1),(1390,467798412,2),(1390,483526812,1),(1390,499248013,2),(1390,514976413,1),(1390,530697613,2),(1390,544611613,1),(1390,562147213,2),(1390,576061214,1),(1390,594201614,2),(1390,607510814,1),(1390,625651214,2),(1390,638960415,1),(1390,657100815,2),(1390,671014816,1),(1390,688550416,2),(1390,702464416,1),(1390,720000017,6),(1390,733910417,5),(1390,752050818,6),(1390,765360018,5),(1390,783500419,6),(1390,796809619,5),(1390,814950019,6),(1390,828864020,5),(1390,846399620,6),(1390,860313620,5),(1390,877849221,6),(1390,891763221,5),(1390,909298821,6),(1390,923212822,5),(1390,941353222,6),(1390,954662422,5),(1390,972802822,6),(1390,986112022,5),(1390,1004252422,6),(1390,1018166422,5),(1390,1035702022,6),(1390,1049616022,5),(1390,1067151622,6),(1390,1081065622,5),(1390,1099206022,6),(1390,1112515222,5),(1390,1130655622,6),(1390,1143964823,5),(1390,1162105223,6),(1390,1173600023,5),(1390,1194159623,6),(1390,1205049623,5),(1390,1225609223,6),(1390,1236499224,5),(1390,1257058824,6),(1390,1268553624,5),(1390,1289113224,6),(1390,1300003224,5),(1390,1320562824,6),(1390,1331452824,5),(1390,1352012425,6),(1390,1362902425,5),(1390,1383462025,6),(1390,1394352025,5),(1390,1414911625,6),(1390,1425801625,5),(1390,1446361226,6),(1390,1457856026,5),(1390,1478415626,6),(1390,1489305627,5),(1390,1509865227,6),(1390,1520755227,5),(1390,1541314827,6),(1390,1552204827,5),(1390,1572764427,6),(1390,1583654427,5),(1390,1604214027,6),(1390,1615708827,5),(1390,1636268427,6),(1390,1647158427,5),(1390,1667718027,6),(1390,1678608027,5),(1390,1699167627,6),(1390,1710057627,5),(1390,1730617227,6),(1390,1741507227,5),(1390,1762066827,6),(1390,1772956827,5),(1390,1793516427,6),(1390,1805011227,5),(1390,1825570827,6),(1390,1836460827,5),(1390,1857020427,6),(1390,1867910427,5),(1390,1888470027,6),(1390,1899360027,5),(1390,1919919627,6),(1390,1930809627,5),(1390,1951369227,6),(1390,1962864027,5),(1390,1983423627,6),(1390,1994313627,5),(1390,2014873227,6),(1390,2025763227,5),(1390,2046322827,6),(1390,2057212827,5),(1390,2077772427,6),(1390,2088662427,5),(1390,2109222027,6),(1390,2120112027,5),(1390,2140671627,6),(1391,-2147483648,2),(1391,-1633273200,1),(1391,-1615132800,2),(1391,-1601823600,1),(1391,-1583683200,2),(1391,-880210800,3),(1391,-769395600,4),(1391,-765388800,2),(1391,-84380400,1),(1391,-68659200,2),(1391,-52930800,1),(1391,-37209600,2),(1391,-21481200,1),(1391,-5760000,2),(1391,9968400,1),(1391,25689600,2),(1391,41418000,1),(1391,57744000,2),(1391,73472400,1),(1391,89193601,2),(1391,104922002,1),(1391,120643202,2),(1391,126694803,1),(1391,152092803,2),(1391,162378004,1),(1391,183542404,2),(1391,199270805,1),(1391,215596805,2),(1391,230720406,1),(1391,247046406,2),(1391,262774807,1),(1391,278496007,2),(1391,294224408,1),(1391,309945608,2),(1391,325674009,1),(1391,341395209,2),(1391,357123609,1),(1391,372844810,2),(1391,388573210,1),(1391,404899211,2),(1391,420022811,1),(1391,436348812,2),(1391,452077212,1),(1391,467798412,2),(1391,483526812,1),(1391,499248013,2),(1391,514976413,1),(1391,530697613,2),(1391,544611613,1),(1391,562147213,2),(1391,576061214,1),(1391,594201614,2),(1391,607510814,1),(1391,625651214,2),(1391,638960415,1),(1391,657100815,2),(1391,671014816,1),(1391,688550416,2),(1391,702464416,1),(1391,720000017,2),(1391,733914017,1),(1391,752054418,2),(1391,765363618,1),(1391,783504019,2),(1391,796813219,1),(1391,814953619,2),(1391,828867620,1),(1391,846403220,2),(1391,860317220,1),(1391,877852821,2),(1391,891766821,1),(1391,909302421,2),(1391,923216422,1),(1391,941356822,2),(1391,954666022,1),(1391,972806422,2),(1391,986115622,1),(1391,1004256022,2),(1391,1018170022,1),(1391,1035705622,2),(1391,1049619622,1),(1391,1067155222,6),(1391,1081065622,5),(1391,1099206022,6),(1391,1112515222,5),(1391,1130655622,6),(1391,1143964823,5),(1391,1162105223,6),(1391,1173600023,5),(1391,1194159623,6),(1391,1205049623,5),(1391,1225609223,6),(1391,1236499224,5),(1391,1257058824,6),(1391,1268553624,5),(1391,1289113224,6),(1391,1300003224,5),(1391,1320562824,6),(1391,1331452824,5),(1391,1352012425,6),(1391,1362902425,5),(1391,1383462025,6),(1391,1394352025,5),(1391,1414911625,6),(1391,1425801625,5),(1391,1446361226,6),(1391,1457856026,5),(1391,1478415626,6),(1391,1489305627,5),(1391,1509865227,6),(1391,1520755227,5),(1391,1541314827,6),(1391,1552204827,5),(1391,1572764427,6),(1391,1583654427,5),(1391,1604214027,6),(1391,1615708827,5),(1391,1636268427,6),(1391,1647158427,5),(1391,1667718027,6),(1391,1678608027,5),(1391,1699167627,6),(1391,1710057627,5),(1391,1730617227,6),(1391,1741507227,5),(1391,1762066827,6),(1391,1772956827,5),(1391,1793516427,6),(1391,1805011227,5),(1391,1825570827,6),(1391,1836460827,5),(1391,1857020427,6),(1391,1867910427,5),(1391,1888470027,6),(1391,1899360027,5),(1391,1919919627,6),(1391,1930809627,5),(1391,1951369227,6),(1391,1962864027,5),(1391,1983423627,6),(1391,1994313627,5),(1391,2014873227,6),(1391,2025763227,5),(1391,2046322827,6),(1391,2057212827,5),(1391,2077772427,6),(1391,2088662427,5),(1391,2109222027,6),(1391,2120112027,5),(1391,2140671627,6),(1392,-2147483648,0),(1392,-1514739600,1),(1392,-1343066400,2),(1392,-1234807200,1),(1392,-1220292000,2),(1392,-1207159200,1),(1392,-1191344400,2),(1392,828864020,3),(1392,846399620,2),(1392,860313620,3),(1392,877849221,2),(1392,891766821,4),(1392,909302421,1),(1392,923216422,4),(1392,941356822,1),(1392,954666022,4),(1392,972806422,1),(1392,989139622,4),(1392,1001836822,1),(1392,1018170022,4),(1392,1035705622,1),(1392,1049619622,4),(1392,1067155222,1),(1392,1081069222,4),(1392,1099209622,1),(1392,1112518822,4),(1392,1130659222,1),(1392,1143968423,4),(1392,1162108823,1),(1392,1175418023,4),(1392,1193558423,1),(1392,1207472423,4),(1392,1225008023,1),(1392,1238922024,4),(1392,1256457624,1),(1392,1268557224,4),(1392,1289116824,1),(1392,1300006824,4),(1392,1320566424,1),(1392,1331456424,4),(1392,1352016025,1),(1392,1362906025,4),(1392,1383465625,1),(1392,1394355625,4),(1392,1414915225,1),(1392,1425805225,4),(1392,1446364826,1),(1392,1457859626,4),(1392,1478419226,1),(1392,1489309227,4),(1392,1509868827,1),(1392,1520758827,4),(1392,1541318427,1),(1392,1552208427,4),(1392,1572768027,1),(1392,1583658027,4),(1392,1604217627,1),(1392,1615712427,4),(1392,1636272027,1),(1392,1647162027,4),(1392,1667721627,1),(1392,1678611627,4),(1392,1699171227,1),(1392,1710061227,4),(1392,1730620827,1),(1392,1741510827,4),(1392,1762070427,1),(1392,1772960427,4),(1392,1793520027,1),(1392,1805014827,4),(1392,1825574427,1),(1392,1836464427,4),(1392,1857024027,1),(1392,1867914027,4),(1392,1888473627,1),(1392,1899363627,4),(1392,1919923227,1),(1392,1930813227,4),(1392,1951372827,1),(1392,1962867627,4),(1392,1983427227,1),(1392,1994317227,4),(1392,2014876827,1),(1392,2025766827,4),(1392,2046326427,1),(1392,2057216427,4),(1392,2077776027,1),(1392,2088666027,4),(1392,2109225627,1),(1392,2120115627,4),(1392,2140675227,1),(1393,-2147483648,1),(1393,-1946918424,2),(1394,-2147483648,0),(1394,-1546300800,3),(1394,-880221600,1),(1394,-769395600,2),(1394,-765399600,3),(1394,-147902400,4),(1394,-131572800,3),(1394,325663209,5),(1394,341384409,3),(1394,357112809,5),(1394,372834010,3),(1394,388562410,5),(1394,404888411,3),(1394,420012011,5),(1394,436338012,3),(1394,452066412,5),(1394,467787612,3),(1394,483516012,5),(1394,499237213,3),(1394,514965613,5),(1394,530686813,3),(1394,544600813,5),(1394,562136413,3),(1394,576050414,5),(1394,594190814,3),(1394,607500014,5),(1394,625640414,3),(1394,638949615,5),(1394,657090015,3),(1394,671004016,5),(1394,688539616,3),(1394,702453616,5),(1394,719989217,3),(1394,733903217,5),(1394,752043618,3),(1394,765352818,5),(1394,783493219,3),(1394,796802419,6),(1394,814946419,7),(1394,828860420,6),(1394,846396020,7),(1394,860310020,6),(1394,877845621,7),(1394,891759621,6),(1394,909295221,7),(1394,923209222,6),(1394,941349622,8),(1394,954662422,9),(1394,972802822,7),(1394,986108422,6),(1394,1004248822,7),(1394,1018162822,6),(1394,1035698422,7),(1394,1049612422,6),(1394,1067148022,7),(1394,1081062022,6),(1394,1099202422,7),(1394,1112511622,6),(1394,1130652022,7),(1394,1143961223,6),(1394,1162101623,7),(1394,1173596423,6),(1394,1194156023,7),(1394,1205046023,6),(1394,1225605623,7),(1394,1236495624,6),(1394,1257055224,7),(1394,1268550024,6),(1394,1289109624,7),(1394,1299999624,6),(1394,1320559224,7),(1394,1331449224,6),(1394,1352008825,7),(1394,1362898825,6),(1394,1383458425,7),(1394,1394348425,6),(1394,1414908025,7),(1394,1425798025,6),(1394,1446357626,7),(1394,1457852426,6),(1394,1478412026,7),(1394,1489302027,6),(1394,1509861627,7),(1394,1520751627,6),(1394,1541311227,7),(1394,1552201227,6),(1394,1572760827,7),(1394,1583650827,6),(1394,1604210427,7),(1394,1615705227,6),(1394,1636264827,7),(1394,1647154827,6),(1394,1667714427,7),(1394,1678604427,6),(1394,1699164027,7),(1394,1710054027,6),(1394,1730613627,7),(1394,1741503627,6),(1394,1762063227,7),(1394,1772953227,6),(1394,1793512827,7),(1394,1805007627,6),(1394,1825567227,7),(1394,1836457227,6),(1394,1857016827,7),(1394,1867906827,6),(1394,1888466427,7),(1394,1899356427,6),(1394,1919916027,7),(1394,1930806027,6),(1394,1951365627,7),(1394,1962860427,6),(1394,1983420027,7),(1394,1994310027,6),(1394,2014869627,7),(1394,2025759627,6),(1394,2046319227,7),(1394,2057209227,6),(1394,2077768827,7),(1394,2088658827,6),(1394,2109218427,7),(1394,2120108427,6),(1394,2140668027,7),(1395,-2147483648,0),(1395,-1861906760,1),(1395,-1104524348,2),(1395,-765317964,3),(1395,465449412,4),(1396,-2147483648,2),(1396,-1633273200,1),(1396,-1615132800,2),(1396,-1601823600,1),(1396,-1583683200,2),(1396,-880210800,3),(1396,-820519140,2),(1396,-812653140,3),(1396,-796845540,2),(1396,-84380400,1),(1396,-68659200,2),(1397,-2147483648,1),(1397,-1670483460,3),(1397,421218011,2),(1397,436334412,3),(1397,452062812,2),(1397,467784012,3),(1397,483512412,2),(1397,499233613,3),(1397,514962013,2),(1397,530683213,3),(1397,546411613,2),(1397,562132813,3),(1397,576050414,4),(1397,594194414,5),(1397,607500014,4),(1397,625644014,5),(1397,638949615,4),(1397,657093615,5),(1397,671004016,4),(1397,688543216,5),(1397,702453616,4),(1397,719992817,5),(1397,733903217,4),(1397,752047218,5),(1397,765352818,4),(1397,783496819,5),(1397,796802419,4),(1397,814946419,5),(1397,828856820,4),(1397,846396020,5),(1397,860306420,4),(1397,877845621,5),(1397,1112504422,2),(1397,1130644822,3),(1397,1143954023,2),(1397,1162094423,3),(1397,1331449224,2),(1397,1352008825,3),(1397,1362898825,2),(1397,1383458425,3),(1397,1394348425,2),(1397,1414908025,3),(1397,1425798025,2),(1397,1446357626,3),(1397,1489302027,2),(1397,1509861627,3),(1397,1520751627,2),(1397,1541311227,3),(1397,1552201227,2),(1397,1572760827,3),(1397,1583650827,2),(1397,1604210427,3),(1397,1615705227,2),(1397,1636264827,3),(1397,1647154827,2),(1397,1667714427,3),(1397,1678604427,2),(1397,1699164027,3),(1397,1710054027,2),(1397,1730613627,3),(1397,1741503627,2),(1397,1762063227,3),(1397,1772953227,2),(1397,1793512827,3),(1397,1805007627,2),(1397,1825567227,3),(1397,1836457227,2),(1397,1857016827,3),(1397,1867906827,2),(1397,1888466427,3),(1397,1899356427,2),(1397,1919916027,3),(1397,1930806027,2),(1397,1951365627,3),(1397,1962860427,2),(1397,1983420027,3),(1397,1994310027,2),(1397,2014869627,3),(1397,2025759627,2),(1397,2046319227,3),(1397,2057209227,2),(1397,2077768827,3),(1397,2088658827,2),(1397,2109218427,3),(1397,2120108427,2),(1397,2140668027,3),(1398,-2147483648,0),(1398,-1825098836,1),(1399,-2147483648,0),(1399,-1767209328,2),(1399,-1206950400,1),(1399,-1191355200,2),(1399,-1175367600,1),(1399,-1159819200,2),(1399,-633812400,1),(1399,-622062000,2),(1399,-602276400,1),(1399,-591825600,2),(1399,-570740400,1),(1399,-560203200,2),(1399,-539118000,1),(1399,-531345600,2),(1399,-191358000,1),(1399,-184190400,2),(1399,-155156400,1),(1399,-150062400,2),(1399,-128890800,1),(1399,-121118400,2),(1399,-99946800,1),(1399,-89582400,2),(1399,-68410800,1),(1399,-57960000,2),(1399,499755613,1),(1399,511243213,2),(1399,530600413,1),(1399,540273613,2),(1399,562136413,1),(1399,571204814,2),(1399,1214283623,3),(1399,1384056025,2),(1400,-2147483648,0),(1400,-1767210264,2),(1400,-1206954000,1),(1400,-1191358800,2),(1400,-1175371200,1),(1400,-1159822800,2),(1400,-633816000,1),(1400,-622065600,2),(1400,-602280000,1),(1400,-591829200,2),(1400,-570744000,1),(1400,-560206800,2),(1400,-539121600,1),(1400,-531349200,2),(1400,-191361600,1),(1400,-184194000,2),(1400,-155160000,1),(1400,-150066000,2),(1400,-128894400,1),(1400,-121122000,2),(1400,-99950400,1),(1400,-89586000,2),(1400,-68414400,1),(1400,-57963600,2),(1400,499752013,1),(1400,511239613,2),(1400,530596813,1),(1400,540270013,2),(1400,562132813,1),(1400,571201214,2),(1401,-2147483648,1),(1401,-873057600,3),(1401,-769395600,2),(1401,-765399600,1),(1402,-2147483648,1),(1402,-1892661434,2),(1402,-1688410800,1),(1402,-1619205434,3),(1402,-1593806400,1),(1402,-1335986234,4),(1402,-1317585600,2),(1402,-1304362800,4),(1402,-1286049600,2),(1402,-1272826800,4),(1402,-1254513600,2),(1402,-1241290800,4),(1402,-1222977600,2),(1402,-1209754800,4),(1402,-1191355200,2),(1402,-1178132400,3),(1402,-870552000,2),(1402,-865278000,3),(1402,-718056000,2),(1402,-713649600,3),(1402,-36619200,5),(1402,-23922000,6),(1402,-3355200,5),(1402,7527600,6),(1402,24465600,5),(1402,37767600,6),(1402,55915200,5),(1402,69217200,6),(1402,87969601,5),(1402,100666802,6),(1402,118209602,5),(1402,132116403,6),(1402,150868803,5),(1402,163566004,6),(1402,182318404,5),(1402,195620405,6),(1402,213768005,5),(1402,227070006,6),(1402,245217606,5),(1402,258519607,6),(1402,277272007,5),(1402,289969208,6),(1402,308721608,5),(1402,321418809,6),(1402,340171209,5),(1402,353473209,6),(1402,371620810,5),(1402,384922810,6),(1402,403070411,5),(1402,416372411,6),(1402,434520012,5),(1402,447822012,6),(1402,466574412,5),(1402,479271612,6),(1402,498024013,5),(1402,510721213,6),(1402,529473613,5),(1402,545194813,6),(1402,560923213,5),(1402,574225214,6),(1402,592372814,5),(1402,605674814,6),(1402,624427214,5),(1402,637124415,6),(1402,653457615,5),(1402,668574016,6),(1402,687326416,5),(1402,700628416,6),(1402,718776017,5),(1402,732078017,6),(1402,750225618,5),(1402,763527618,6),(1402,781675219,5),(1402,794977219,6),(1402,813729619,5),(1402,826426820,6),(1402,845179220,5),(1402,859690820,6),(1402,876628821,5),(1402,889930821,6),(1402,906868821,5),(1402,923194822,6),(1402,939528022,5),(1402,952830022,6),(1402,971582422,5),(1402,984279622,6),(1402,1003032022,5),(1402,1015729222,6),(1402,1034481622,5),(1402,1047178822,6),(1402,1065931222,5),(1402,1079233222,6),(1402,1097380822,5),(1402,1110682822,6),(1402,1128830422,5),(1402,1142132423,6),(1402,1160884823,5),(1402,1173582023,6),(1402,1192334423,5),(1402,1206846023,6),(1402,1223784023,5),(1402,1237086024,6),(1402,1255233624,5),(1402,1270350024,6),(1402,1286683224,5),(1402,1304823624,6),(1402,1313899224,5),(1402,1335668424,6),(1402,1346558425,5),(1402,1367118025,6),(1402,1378612825,5),(1402,1398567625,6),(1402,1410062425,5),(1402,1463281226,6),(1402,1471147226,5),(1402,1480820426,7),(1403,-2147483648,2),(1403,-1632067200,1),(1403,-1615136400,2),(1403,-923248800,1),(1403,-880214400,3),(1403,-769395600,4),(1403,-765392400,2),(1403,136368003,1),(1403,152089203,2),(1403,167817604,1),(1403,183538804,2),(1403,199267205,1),(1403,215593205,2),(1403,230716806,1),(1403,247042806,2),(1403,262771207,1),(1403,278492407,2),(1403,294220808,1),(1403,309942008,2),(1403,325670409,1),(1403,341391609,2),(1403,357120009,1),(1403,372841210,2),(1403,388569610,1),(1403,404895611,2),(1403,420019211,1),(1403,436345212,2),(1403,452073612,1),(1403,467794812,2),(1403,483523212,1),(1403,499244413,2),(1403,514972813,1),(1403,530694013,2),(1403,544608013,1),(1403,562143613,2),(1403,576057614,1),(1403,594198014,2),(1403,607507214,1),(1403,625647614,2),(1403,638956815,1),(1403,657097215,2),(1403,671011216,1),(1403,688546816,2),(1403,702460816,1),(1403,719996417,2),(1403,733910417,1),(1403,752050818,2),(1403,765360018,1),(1403,783500419,2),(1403,796809619,1),(1403,814950019,2),(1403,828864020,1),(1403,846399620,2),(1403,860313620,1),(1403,877849221,2),(1403,891763221,1),(1403,909298821,2),(1403,923212822,1),(1403,941353222,2),(1403,954662422,1),(1403,972802822,2),(1403,986112022,1),(1403,1004252422,2),(1403,1018166422,1),(1403,1035702022,2),(1403,1049616022,1),(1403,1067151622,2),(1403,1081065622,1),(1403,1099206022,2),(1403,1112515222,1),(1403,1130655622,2),(1403,1143964823,1),(1403,1162105223,2),(1403,1173600023,1),(1403,1194159623,2),(1403,1205049623,1),(1403,1225609223,2),(1403,1236499224,1),(1403,1257058824,2),(1403,1268553624,1),(1403,1289113224,2),(1403,1300003224,1),(1403,1320562824,2),(1403,1331452824,1),(1403,1352012425,2),(1403,1362902425,1),(1403,1383462025,2),(1403,1394352025,1),(1403,1414911625,2),(1403,1425801625,1),(1403,1446361226,2),(1403,1457856026,1),(1403,1478415626,2),(1403,1489305627,1),(1403,1509865227,2),(1403,1520755227,1),(1403,1541314827,2),(1403,1552204827,1),(1403,1572764427,2),(1403,1583654427,1),(1403,1604214027,2),(1403,1615708827,1),(1403,1636268427,2),(1403,1647158427,1),(1403,1667718027,2),(1403,1678608027,1),(1403,1699167627,2),(1403,1710057627,1),(1403,1730617227,2),(1403,1741507227,1),(1403,1762066827,2),(1403,1772956827,1),(1403,1793516427,2),(1403,1805011227,1),(1403,1825570827,2),(1403,1836460827,1),(1403,1857020427,2),(1403,1867910427,1),(1403,1888470027,2),(1403,1899360027,1),(1403,1919919627,2),(1403,1930809627,1),(1403,1951369227,2),(1403,1962864027,1),(1403,1983423627,2),(1403,1994313627,1),(1403,2014873227,2),(1403,2025763227,1),(1403,2046322827,2),(1403,2057212827,1),(1403,2077772427,2),(1403,2088662427,1),(1403,2109222027,2),(1403,2120112027,1),(1403,2140671627,2),(1404,-2147483648,0),(1404,-410227200,2),(1404,-147895200,1),(1404,-131565600,2),(1404,325670409,3),(1404,341391609,2),(1404,357120009,3),(1404,372841210,2),(1404,388569610,3),(1404,404895611,2),(1404,420019211,3),(1404,436345212,2),(1404,452073612,3),(1404,467794812,2),(1404,483523212,3),(1404,499244413,2),(1404,514972813,3),(1404,530694013,2),(1404,544608013,3),(1404,562143613,2),(1404,576057614,3),(1404,594198014,2),(1404,607507214,3),(1404,625647614,2),(1404,638956815,3),(1404,657097215,2),(1404,671011216,3),(1404,688546816,2),(1404,702460816,3),(1404,719996417,2),(1404,733910417,3),(1404,752050818,2),(1404,765360018,3),(1404,783500419,2),(1404,796809619,3),(1404,814950019,2),(1404,828864020,3),(1404,846399620,2),(1404,860313620,3),(1404,877849221,2),(1404,891763221,3),(1404,909298821,2),(1404,923212822,3),(1404,941353222,2),(1404,954662422,3),(1404,972802822,4),(1404,986112022,3),(1404,1004252422,2),(1404,1018166422,3),(1404,1035702022,2),(1404,1049616022,3),(1404,1067151622,2),(1404,1081065622,3),(1404,1099206022,2),(1404,1112515222,3),(1404,1130655622,2),(1404,1143964823,3),(1404,1162105223,2),(1404,1173600023,3),(1404,1194159623,2),(1404,1205049623,3),(1404,1225609223,2),(1404,1236499224,3),(1404,1257058824,2),(1404,1268553624,3),(1404,1289113224,2),(1404,1300003224,3),(1404,1320562824,2),(1404,1331452824,3),(1404,1352012425,2),(1404,1362902425,3),(1404,1383462025,2),(1404,1394352025,3),(1404,1414911625,2),(1404,1425801625,3),(1404,1446361226,2),(1404,1457856026,3),(1404,1478415626,2),(1404,1489305627,3),(1404,1509865227,2),(1404,1520755227,3),(1404,1541314827,2),(1404,1552204827,3),(1404,1572764427,2),(1404,1583654427,3),(1404,1604214027,2),(1404,1615708827,3),(1404,1636268427,2),(1404,1647158427,3),(1404,1667718027,2),(1404,1678608027,3),(1404,1699167627,2),(1404,1710057627,3),(1404,1730617227,2),(1404,1741507227,3),(1404,1762066827,2),(1404,1772956827,3),(1404,1793516427,2),(1404,1805011227,3),(1404,1825570827,2),(1404,1836460827,3),(1404,1857020427,2),(1404,1867910427,3),(1404,1888470027,2),(1404,1899360027,3),(1404,1919919627,2),(1404,1930809627,3),(1404,1951369227,2),(1404,1962864027,3),(1404,1983423627,2),(1404,1994313627,3),(1404,2014873227,2),(1404,2025763227,3),(1404,2046322827,2),(1404,2057212827,3),(1404,2077772427,2),(1404,2088662427,3),(1404,2109222027,2),(1404,2120112027,3),(1404,2140671627,2),(1405,-2147483648,0),(1405,-1767217224,2),(1405,-1206957600,1),(1405,-1191362400,2),(1405,-1175374800,1),(1405,-1159826400,2),(1405,-633819600,1),(1405,-622069200,2),(1405,-602283600,1),(1405,-591832800,2),(1405,-570747600,1),(1405,-560210400,2),(1405,-539125200,1),(1405,-531352800,2),(1405,-191365200,1),(1405,-184197600,2),(1405,-155163600,1),(1405,-150069600,2),(1405,-128898000,1),(1405,-121125600,2),(1405,-99954000,1),(1405,-89589600,2),(1405,-68418000,1),(1405,-57967200,2),(1405,499748413,1),(1405,511236013,2),(1405,530593213,1),(1405,540266413,2),(1405,562129213,1),(1405,571197614,2),(1405,592974014,1),(1405,602042414,2),(1405,624423614,1),(1405,634701615,2),(1405,938919622,1),(1405,951616822,2),(1405,970974022,1),(1405,971575222,2),(1405,1003028422,1),(1405,1013911222,2),(1406,-2147483648,0),(1406,-2030202084,2),(1406,-1632063600,1),(1406,-1615132800,2),(1406,-1251651600,1),(1406,-1238349600,2),(1406,-1220202000,1),(1406,-1206900000,2),(1406,-1188752400,1),(1406,-1175450400,2),(1406,-1156698000,1),(1406,-1144000800,2),(1406,-1125248400,1),(1406,-1111946400,2),(1406,-1032714000,1),(1406,-1016992800,2),(1406,-1001264400,1),(1406,-986148000,2),(1406,-969814800,1),(1406,-954093600,2),(1406,-937760400,1),(1406,-922039200,2),(1406,-906310800,1),(1406,-890589600,2),(1406,-880210800,3),(1406,-769395600,4),(1406,-765388800,2),(1406,-748450800,1),(1406,-732729600,2),(1406,-715791600,1),(1406,-702489600,2),(1406,-684342000,1),(1406,-671040000,2),(1406,-652892400,1),(1406,-639590400,2),(1406,-620838000,1),(1406,-608140800,2),(1406,-589388400,1),(1406,-576086400,2),(1406,-557938800,1),(1406,-544636800,2),(1406,-526489200,1),(1406,-513187200,2),(1406,-495039600,1),(1406,-481737600,2),(1406,-463590000,1),(1406,-450288000,2),(1406,-431535600,1),(1406,-418233600,2),(1406,-400086000,1),(1406,-386784000,2),(1406,-337186800,1),(1406,-321465600,2),(1406,-305737200,5),(1407,-2147483648,0),(1407,-704937600,2),(1407,-147895200,1),(1407,-131565600,2),(1407,325670409,3),(1407,341391609,2),(1407,357120009,3),(1407,372841210,2),(1407,388569610,3),(1407,404895611,2),(1407,420019211,3),(1407,436345212,2),(1407,452073612,3),(1407,467794812,2),(1407,483523212,3),(1407,499244413,2),(1407,514972813,3),(1407,530694013,2),(1407,544608013,3),(1407,562143613,2),(1407,576057614,3),(1407,594198014,2),(1407,607507214,3),(1407,625647614,2),(1407,638956815,3),(1407,657097215,2),(1407,671011216,3),(1407,688546816,2),(1407,702460816,3),(1407,719996417,2),(1407,733910417,3),(1407,752050818,2),(1407,765360018,3),(1407,783500419,2),(1407,796809619,3),(1407,814950019,2),(1407,828864020,3),(1407,846399620,2),(1407,860313620,3),(1407,877849221,2),(1407,891763221,3),(1407,909298821,2),(1407,923212822,3),(1407,941353222,2),(1407,954662422,3),(1407,972802822,4),(1407,986112022,3),(1407,1004252422,2),(1407,1018166422,3),(1407,1035702022,2),(1407,1049616022,3),(1407,1067151622,2),(1407,1081065622,3),(1407,1099206022,2),(1407,1112515222,3),(1407,1130655622,2),(1407,1143964823,3),(1407,1162105223,4),(1407,1173600023,3),(1407,1194159623,2),(1407,1205049623,3),(1407,1225609223,2),(1407,1236499224,3),(1407,1257058824,2),(1407,1268553624,3),(1407,1289113224,2),(1407,1300003224,3),(1407,1320562824,2),(1407,1331452824,3),(1407,1352012425,2),(1407,1362902425,3),(1407,1383462025,2),(1407,1394352025,3),(1407,1414911625,2),(1407,1425801625,3),(1407,1446361226,2),(1407,1457856026,3),(1407,1478415626,2),(1407,1489305627,3),(1407,1509865227,2),(1407,1520755227,3),(1407,1541314827,2),(1407,1552204827,3),(1407,1572764427,2),(1407,1583654427,3),(1407,1604214027,2),(1407,1615708827,3),(1407,1636268427,2),(1407,1647158427,3),(1407,1667718027,2),(1407,1678608027,3),(1407,1699167627,2),(1407,1710057627,3),(1407,1730617227,2),(1407,1741507227,3),(1407,1762066827,2),(1407,1772956827,3),(1407,1793516427,2),(1407,1805011227,3),(1407,1825570827,2),(1407,1836460827,3),(1407,1857020427,2),(1407,1867910427,3),(1407,1888470027,2),(1407,1899360027,3),(1407,1919919627,2),(1407,1930809627,3),(1407,1951369227,2),(1407,1962864027,3),(1407,1983423627,2),(1407,1994313627,3),(1407,2014873227,2),(1407,2025763227,3),(1407,2046322827,2),(1407,2057212827,3),(1407,2077772427,2),(1407,2088662427,3),(1407,2109222027,2),(1407,2120112027,3),(1407,2140671627,2),(1408,-2147483648,0),(1408,-1767209328,2),(1408,-1206950400,1),(1408,-1191355200,2),(1408,-1175367600,1),(1408,-1159819200,2),(1408,-633812400,1),(1408,-622062000,2),(1408,-602276400,1),(1408,-591825600,2),(1408,-570740400,1),(1408,-560203200,2),(1408,-539118000,1),(1408,-531345600,2),(1408,-191358000,1),(1408,-184190400,2),(1408,-155156400,1),(1408,-150062400,2),(1408,-128890800,1),(1408,-121118400,2),(1408,-99946800,1),(1408,-89582400,2),(1408,-68410800,1),(1408,-57960000,2),(1408,499755613,1),(1408,511243213,2),(1408,530600413,1),(1408,540273613,2),(1408,562136413,1),(1408,571204814,2),(1408,1214283623,3),(1408,1384056025,2),(1409,-2147483648,1),(1409,-1567453392,2),(1409,-1233432000,3),(1409,-1222981200,2),(1409,-1205956800,3),(1409,-1194037200,2),(1409,-1172865600,3),(1409,-1162501200,2),(1409,-1141329600,3),(1409,-1130965200,2),(1409,-1109793600,3),(1409,-1099429200,2),(1409,-1078257600,3),(1409,-1067806800,2),(1409,-1046635200,3),(1409,-1036270800,2),(1409,-1015099200,3),(1409,-1004734800,2),(1409,-983563200,3),(1409,-973198800,2),(1409,-952027200,3),(1409,-941576400,2),(1409,-931032000,3),(1409,-900882000,2),(1409,-890337600,3),(1409,-833749200,2),(1409,-827265600,3),(1409,-752274000,2),(1409,-733780800,3),(1409,-197326800,2),(1409,-190843200,3),(1409,-184194000,2),(1409,-164491200,3),(1409,-152658000,2),(1409,-132955200,3),(1409,-121122000,2),(1409,-101419200,3),(1409,-86821200,2),(1409,-71092800,3),(1409,-54766800,2),(1409,-39038400,3),(1409,-23317200,2),(1409,-7588800,5),(1409,128142003,4),(1409,136605603,5),(1409,596948414,4),(1409,605066414,5),(1409,624423614,4),(1409,636516015,5),(1409,656478015,4),(1409,667965616,2),(1409,687931216,4),(1409,699415216,5),(1409,719377217,4),(1409,731469617,5),(1409,938919622,3),(1409,952052422,5),(1409,1198983623,4),(1409,1205632823,5),(1409,1224385223,4),(1409,1237082424,5),(1410,-2147483648,0),(1410,-1514736000,1),(1410,-1451667600,2),(1410,-1343062800,1),(1410,-1234803600,2),(1410,-1222963200,3),(1410,-1207242000,2),(1410,-873820800,4),(1410,-769395600,5),(1410,-761677200,2),(1410,-686073600,3),(1410,-661539600,2),(1410,-495039600,3),(1410,-481734000,2),(1410,-463590000,3),(1410,-450284400,2),(1410,-431535600,3),(1410,-418230000,2),(1410,-400086000,3),(1410,-386780400,2),(1410,-368636400,3),(1410,-355330800,2),(1410,-337186800,3),(1410,-323881200,2),(1410,-305737200,3),(1410,-292431600,2),(1410,199274405,3),(1410,215600405,2),(1410,230724006,3),(1410,247050006,2),(1410,262778407,3),(1410,278499607,2),(1410,294228008,3),(1410,309949208,2),(1410,325677609,3),(1410,341398809,2),(1410,357127209,3),(1410,372848410,2),(1410,388576810,3),(1410,404902811,2),(1410,420026411,3),(1410,436352412,2),(1410,452080812,3),(1410,467802012,2),(1410,483530412,3),(1410,499251613,2),(1410,514980013,3),(1410,530701213,2),(1410,544615213,3),(1410,562150813,2),(1410,576064814,3),(1410,594205214,2),(1410,607514414,3),(1410,625654814,2),(1410,638964015,3),(1410,657104415,2),(1410,671018416,3),(1410,688554016,2),(1410,702468016,3),(1410,720003617,2),(1410,733917617,3),(1410,752058018,2),(1410,765367218,3),(1410,783507619,2),(1410,796816819,3),(1410,814957219,2),(1410,828871220,3),(1410,846406820,2),(1410,860320820,3),(1410,877856421,2),(1410,891770421,3),(1410,909306021,2),(1410,923220022,3),(1410,941360422,2),(1410,954669622,3),(1410,972810022,2),(1410,986119222,3),(1410,1004259622,2),(1410,1018173622,3),(1410,1035709222,2),(1410,1049623222,3),(1410,1067158822,2),(1410,1081072822,3),(1410,1099213222,2),(1410,1112522422,3),(1410,1130662822,2),(1410,1143972023,3),(1410,1162112423,2),(1410,1175421623,3),(1410,1193562023,2),(1410,1207476023,3),(1410,1225011623,2),(1410,1238925624,3),(1410,1256461224,2),(1410,1268560824,3),(1410,1289120424,2),(1410,1300010424,3),(1410,1320570024,2),(1410,1331460024,3),(1410,1352019625,2),(1410,1362909625,3),(1410,1383469225,2),(1410,1394359225,3),(1410,1414918825,2),(1410,1425808825,3),(1410,1446368426,2),(1410,1457863226,3),(1410,1478422826,2),(1410,1489312827,3),(1410,1509872427,2),(1410,1520762427,3),(1410,1541322027,2),(1410,1552212027,3),(1410,1572771627,2),(1410,1583661627,3),(1410,1604221227,2),(1410,1615716027,3),(1410,1636275627,2),(1410,1647165627,3),(1410,1667725227,2),(1410,1678615227,3),(1410,1699174827,2),(1410,1710064827,3),(1410,1730624427,2),(1410,1741514427,3),(1410,1762074027,2),(1410,1772964027,3),(1410,1793523627,2),(1410,1805018427,3),(1410,1825578027,2),(1410,1836468027,3),(1410,1857027627,2),(1410,1867917627,3),(1410,1888477227,2),(1410,1899367227,3),(1410,1919926827,2),(1410,1930816827,3),(1410,1951376427,2),(1410,1962871227,3),(1410,1983430827,2),(1410,1994320827,3),(1410,2014880427,2),(1410,2025770427,3),(1410,2046330027,2),(1410,2057220027,3),(1410,2077779627,2),(1410,2088669627,3),(1410,2109229227,2),(1410,2120119227,3),(1410,2140678827,2),(1411,-2147483648,0),(1411,-1767212472,2),(1411,-1206954000,1),(1411,-1191358800,2),(1411,-1175371200,1),(1411,-1159822800,2),(1411,-633816000,1),(1411,-622065600,2),(1411,-602280000,1),(1411,-591829200,2),(1411,-570744000,1),(1411,-560206800,2),(1411,-539121600,1),(1411,-531349200,2),(1411,-191361600,1),(1411,-184194000,2),(1411,-155160000,1),(1411,-150066000,2),(1411,-128894400,1),(1411,-121122000,2),(1411,-99950400,1),(1411,-89586000,2),(1411,-68414400,1),(1411,-57963600,2),(1411,499752013,1),(1411,511239613,2),(1411,530596813,1),(1411,540270013,2),(1411,562132813,1),(1411,571201214,2),(1411,1214280023,3),(1412,-2147483648,1),(1412,-1892661434,2),(1412,-1688410800,1),(1412,-1619205434,3),(1412,-1593806400,1),(1412,-1335986234,4),(1412,-1317585600,2),(1412,-1304362800,4),(1412,-1286049600,2),(1412,-1272826800,4),(1412,-1254513600,2),(1412,-1241290800,4),(1412,-1222977600,2),(1412,-1209754800,4),(1412,-1191355200,2),(1412,-1178132400,3),(1412,-870552000,2),(1412,-865278000,3),(1412,-740520000,5),(1412,-736376400,3),(1412,-718056000,2),(1412,-713649600,3),(1412,-36619200,6),(1412,-23922000,7),(1412,-3355200,6),(1412,7527600,7),(1412,24465600,6),(1412,37767600,7),(1412,55915200,6),(1412,69217200,7),(1412,87969601,6),(1412,100666802,7),(1412,118209602,6),(1412,132116403,7),(1412,150868803,6),(1412,163566004,7),(1412,182318404,6),(1412,195620405,7),(1412,213768005,6),(1412,227070006,7),(1412,245217606,6),(1412,258519607,7),(1412,277272007,6),(1412,289969208,7),(1412,308721608,6),(1412,321418809,7),(1412,340171209,6),(1412,353473209,7),(1412,371620810,6),(1412,384922810,7),(1412,403070411,6),(1412,416372411,7),(1412,434520012,6),(1412,447822012,7),(1412,466574412,6),(1412,479271612,7),(1412,498024013,6),(1412,510721213,7),(1412,529473613,6),(1412,545194813,7),(1412,560923213,6),(1412,574225214,7),(1412,592372814,6),(1412,605674814,7),(1412,624427214,6),(1412,637124415,7),(1412,653457615,6),(1412,668574016,7),(1412,687326416,6),(1412,700628416,7),(1412,718776017,6),(1412,732078017,7),(1412,750225618,6),(1412,763527618,7),(1412,781675219,6),(1412,794977219,7),(1412,813729619,6),(1412,826426820,7),(1412,845179220,6),(1412,859690820,7),(1412,876628821,6),(1412,889930821,7),(1412,906868821,6),(1412,923194822,7),(1412,939528022,6),(1412,952830022,7),(1412,971582422,6),(1412,984279622,7),(1412,1003032022,6),(1412,1015729222,7),(1412,1034481622,6),(1412,1047178822,7),(1412,1065931222,6),(1412,1079233222,7),(1412,1097380822,6),(1412,1110682822,7),(1412,1128830422,6),(1412,1142132423,7),(1412,1160884823,6),(1412,1173582023,7),(1412,1192334423,6),(1412,1206846023,7),(1412,1223784023,6),(1412,1237086024,7),(1412,1255233624,6),(1412,1270350024,7),(1412,1286683224,6),(1412,1304823624,7),(1412,1313899224,6),(1412,1335668424,7),(1412,1346558425,6),(1412,1367118025,7),(1412,1378612825,6),(1412,1398567625,7),(1412,1410062425,6),(1412,1463281226,7),(1412,1471147226,6),(1412,1494730827,7),(1412,1502596827,6),(1412,1526180427,7),(1412,1534046427,6),(1412,1554606027,7),(1412,1567915227,6),(1412,1586055627,7),(1412,1599364827,6),(1412,1617505227,7),(1412,1630814427,6),(1412,1648954827,7),(1412,1662264027,6),(1412,1680404427,7),(1412,1693713627,6),(1412,1712458827,7),(1412,1725768027,6),(1412,1743908427,7),(1412,1757217627,6),(1412,1775358027,7),(1412,1788667227,6),(1412,1806807627,7),(1412,1820116827,6),(1412,1838257227,7),(1412,1851566427,6),(1412,1870311627,7),(1412,1883016027,6),(1412,1901761227,7),(1412,1915070427,6),(1412,1933210827,7),(1412,1946520027,6),(1412,1964660427,7),(1412,1977969627,6),(1412,1996110027,7),(1412,2009419227,6),(1412,2027559627,7),(1412,2040868827,6),(1412,2059614027,7),(1412,2072318427,6),(1412,2091063627,7),(1412,2104372827,6),(1412,2122513227,7),(1412,2135822427,6),(1413,-2147483648,1),(1413,-1159773600,3),(1413,-100119600,2),(1413,-89668800,3),(1413,-5770800,4),(1413,4422600,3),(1413,25678800,4),(1413,33193800,3),(1413,57733200,4),(1413,64816200,3),(1413,89182801,4),(1413,96438602,3),(1413,120632402,4),(1413,127974603,3),(1413,152082003,5),(1413,972799222,3),(1413,975823222,5),(1414,-2147483648,0),(1414,-1767214412,2),(1414,-1206957600,1),(1414,-1191362400,2),(1414,-1175374800,1),(1414,-1159826400,2),(1414,-633819600,1),(1414,-622069200,2),(1414,-602283600,1),(1414,-591832800,2),(1414,-570747600,1),(1414,-560210400,2),(1414,-539125200,1),(1414,-531352800,2),(1414,-195426000,1),(1414,-184197600,2),(1414,-155163600,1),(1414,-150069600,2),(1414,-128898000,1),(1414,-121125600,2),(1414,-99954000,1),(1414,-89589600,2),(1414,-68418000,1),(1414,-57967200,2),(1414,499748413,1),(1414,511236013,2),(1414,530593213,1),(1414,540266413,2),(1414,562129213,1),(1414,571197614,2),(1414,592974014,1),(1414,602042414,2),(1414,624423614,1),(1414,634701615,2),(1414,656478015,1),(1414,666756016,2),(1414,687927616,1),(1414,697600816,2),(1414,719982017,1),(1414,728445617,2),(1414,750826818,1),(1414,761709618,2),(1414,782276419,1),(1414,793159219,2),(1414,813726019,1),(1414,824004020,2),(1414,844570820,1),(1414,856058420,2),(1414,876106821,1),(1414,888717621,2),(1414,908074821,1),(1414,919562422,2),(1414,938919622,1),(1414,951616822,2),(1414,970974022,1),(1414,982461622,2),(1414,1003028422,1),(1414,1013911222,2),(1414,1036292422,1),(1414,1045360822,2),(1414,1066532422,1),(1414,1076810422,2),(1414,1099364422,1),(1414,1108864822,2),(1414,1129431622,1),(1414,1140314423,2),(1414,1162695623,1),(1414,1172368823,2),(1414,1192330823,1),(1414,1203213623,2),(1414,1224385223,1),(1414,1234663224,2),(1414,1255834824,1),(1414,1266717624,2),(1414,1287284424,1),(1414,1298167224,2),(1414,1318734024,1),(1414,1330221624,2),(1414,1350788425,1),(1414,1361066425,2),(1414,1382238025,1),(1414,1392516025,2),(1414,1413687625,1),(1414,1424570425,2),(1414,1445137226,1),(1414,1456020026,2),(1414,1476586826,1),(1414,1487469627,2),(1414,1508036427,1),(1414,1518919227,2),(1414,1541300427,1),(1414,1550368827,2),(1415,-2147483648,0),(1415,-1686090728,1),(1415,323841609,2),(1415,338961609,3),(1415,354679209,6),(1415,370400410,4),(1415,386125210,5),(1415,401850011,4),(1415,417574811,5),(1415,433299612,4),(1415,449024412,5),(1415,465354012,4),(1415,481078812,5),(1415,496803613,4),(1415,512528413,5),(1415,528253213,4),(1415,543978013,5),(1415,559702813,4),(1415,575427614,5),(1415,591152414,4),(1415,606877214,5),(1415,622602014,4),(1415,638326815,5),(1415,654656415,4),(1415,670381216,5),(1415,686106016,4),(1415,701830816,5),(1415,717555617,4),(1415,733280417,5),(1415,749005218,4),(1415,764730018,5),(1415,780454819,4),(1415,796179619,5),(1415,811904419,4),(1415,828234020,5),(1415,846378020,4),(1415,859683620,5),(1415,877827621,4),(1415,891133221,5),(1415,909277221,4),(1415,922582822,5),(1415,941331622,4),(1415,954032422,5),(1415,972781222,4),(1415,985482022,5),(1415,1004230822,4),(1415,1017536422,5),(1415,1035680422,4),(1415,1048986022,5),(1415,1067130022,4),(1415,1080435622,5),(1415,1099184422,4),(1415,1111885222,5),(1415,1130634022,4),(1415,1143334823,5),(1415,1162083623,4),(1415,1174784423,5),(1415,1193533223,4),(1415,1206838823,5),(1415,1224982823,4),(1415,1238288424,5),(1415,1256432424,4),(1415,1269738024,5),(1415,1288486824,4),(1415,1301187624,5),(1415,1319936424,4),(1415,1332637224,5),(1415,1351386025,4),(1415,1364691625,5),(1415,1382835625,4),(1415,1396141225,5),(1415,1414285225,4),(1415,1427590825,5),(1415,1445734826,4),(1415,1459040426,5),(1415,1477789226,4),(1415,1490490027,5),(1415,1509238827,4),(1415,1521939627,5),(1415,1540688427,4),(1415,1553994027,5),(1415,1572138027,4),(1415,1585443627,5),(1415,1603587627,4),(1415,1616893227,5),(1415,1635642027,4),(1415,1648342827,5),(1415,1667091627,4),(1415,1679792427,5),(1415,1698541227,4),(1415,1711846827,5),(1415,1729990827,4),(1415,1743296427,5),(1415,1761440427,4),(1415,1774746027,5),(1415,1792890027,4),(1415,1806195627,5),(1415,1824944427,4),(1415,1837645227,5),(1415,1856394027,4),(1415,1869094827,5),(1415,1887843627,4),(1415,1901149227,5),(1415,1919293227,4),(1415,1932598827,5),(1415,1950742827,4),(1415,1964048427,5),(1415,1982797227,4),(1415,1995498027,5),(1415,2014246827,4),(1415,2026947627,5),(1415,2045696427,4),(1415,2058397227,5),(1415,2077146027,4),(1415,2090451627,5),(1415,2108595627,4),(1415,2121901227,5),(1415,2140045227,4),(1416,-2147483648,2),(1416,-1633273200,1),(1416,-1615132800,2),(1416,-1601823600,1),(1416,-1583683200,2),(1416,-1570374000,1),(1416,-1551628800,2),(1416,-1538924400,1),(1416,-1534089600,2),(1416,-880210800,3),(1416,-769395600,4),(1416,-765388800,2),(1416,-147884400,1),(1416,-131558400,2),(1416,-116434800,1),(1416,-100108800,2),(1416,-84380400,1),(1416,-68659200,2),(1416,-52930800,1),(1416,-37209600,2),(1416,-21481200,1),(1416,-5760000,2),(1416,9968400,1),(1416,25689600,2),(1416,41418000,1),(1416,57744000,2),(1416,73472400,1),(1416,89193601,2),(1416,104922002,1),(1416,120643202,2),(1416,126694803,1),(1416,152092803,2),(1416,162378004,1),(1416,183542404,2),(1416,199270805,1),(1416,215596805,2),(1416,230720406,1),(1416,247046406,2),(1416,262774807,1),(1416,278496007,2),(1416,294224408,1),(1416,309945608,2),(1416,325674009,1),(1416,341395209,2),(1416,357123609,1),(1416,372844810,2),(1416,388573210,1),(1416,404899211,2),(1416,420022811,1),(1416,436348812,2),(1416,452077212,1),(1416,467798412,2),(1416,483526812,1),(1416,499248013,2),(1416,514976413,1),(1416,530697613,2),(1416,544611613,1),(1416,562147213,2),(1416,576061214,1),(1416,594201614,2),(1416,607510814,1),(1416,625651214,2),(1416,638960415,1),(1416,657100815,2),(1416,671014816,1),(1416,688550416,2),(1416,702464416,1),(1416,720000017,2),(1416,733914017,1),(1416,752054418,2),(1416,765363618,1),(1416,783504019,2),(1416,796813219,1),(1416,814953619,2),(1416,828867620,1),(1416,846403220,2),(1416,860317220,1),(1416,877852821,2),(1416,891766821,1),(1416,909302421,2),(1416,923216422,1),(1416,941356822,2),(1416,954666022,1),(1416,972806422,2),(1416,986115622,1),(1416,1004256022,2),(1416,1018170022,1),(1416,1035705622,2),(1416,1049619622,1),(1416,1067155222,2),(1416,1081069222,1),(1416,1099209622,2),(1416,1112518822,1),(1416,1130659222,2),(1416,1143968423,1),(1416,1162108823,2),(1416,1173603623,1),(1416,1194163223,2),(1416,1205053223,1),(1416,1225612823,2),(1416,1236502824,1),(1416,1257062424,2),(1416,1268557224,1),(1416,1289116824,2),(1416,1300006824,1),(1416,1320566424,2),(1416,1331456424,1),(1416,1352016025,2),(1416,1362906025,1),(1416,1383465625,2),(1416,1394355625,1),(1416,1414915225,2),(1416,1425805225,1),(1416,1446364826,2),(1416,1457859626,1),(1416,1478419226,2),(1416,1489309227,1),(1416,1509868827,2),(1416,1520758827,1),(1416,1541318427,2),(1416,1552208427,1),(1416,1572768027,2),(1416,1583658027,1),(1416,1604217627,2),(1416,1615712427,1),(1416,1636272027,2),(1416,1647162027,1),(1416,1667721627,2),(1416,1678611627,1),(1416,1699171227,2),(1416,1710061227,1),(1416,1730620827,2),(1416,1741510827,1),(1416,1762070427,2),(1416,1772960427,1),(1416,1793520027,2),(1416,1805014827,1),(1416,1825574427,2),(1416,1836464427,1),(1416,1857024027,2),(1416,1867914027,1),(1416,1888473627,2),(1416,1899363627,1),(1416,1919923227,2),(1416,1930813227,1),(1416,1951372827,2),(1416,1962867627,1),(1416,1983427227,2),(1416,1994317227,1),(1416,2014876827,2),(1416,2025766827,1),(1416,2046326427,2),(1416,2057216427,1),(1416,2077776027,2),(1416,2088666027,1),(1416,2109225627,2),(1416,2120115627,1),(1416,2140675227,2),(1417,-2147483648,1),(1417,-880207200,2),(1417,-769395600,3),(1417,-765385200,1),(1417,-21477600,4),(1417,-5756400,1),(1417,9972000,4),(1417,25693200,1),(1417,41421600,4),(1417,57747600,1),(1417,73476000,4),(1417,89197201,1),(1417,104925602,4),(1417,120646802,1),(1417,126698403,4),(1417,152096403,1),(1417,162381604,4),(1417,183546004,1),(1417,199274405,4),(1417,215600405,1),(1417,230724006,4),(1417,247050006,1),(1417,262778407,4),(1417,278499607,1),(1417,294228008,4),(1417,309949208,1),(1417,325677609,4),(1417,341398809,1),(1417,357127209,4),(1417,372848410,1),(1417,388576810,4),(1417,404902811,1),(1417,420026411,4),(1417,436352412,5),(1417,439030812,7),(1417,452084412,6),(1417,467805612,7),(1417,483534012,6),(1417,499255213,7),(1417,514983613,6),(1417,530704813,7),(1417,544618813,6),(1417,562154413,7),(1417,576068414,6),(1417,594208814,7),(1417,607518014,6),(1417,625658414,7),(1417,638967615,6),(1417,657108015,7),(1417,671022016,6),(1417,688557616,7),(1417,702471616,6),(1417,720007217,7),(1417,733921217,6),(1417,752061618,7),(1417,765370818,6),(1417,783511219,7),(1417,796820419,6),(1417,814960819,7),(1417,828874820,6),(1417,846410420,7),(1417,860324420,6),(1417,877860021,7),(1417,891774021,6),(1417,909309621,7),(1417,923223622,6),(1417,941364022,7),(1417,954673222,6),(1417,972813622,7),(1417,986122822,6),(1417,1004263222,7),(1417,1018177222,6),(1417,1035712822,7),(1417,1049626822,6),(1417,1067162422,7),(1417,1081076422,6),(1417,1099216822,7),(1417,1112526022,6),(1417,1130666422,7),(1417,1143975623,6),(1417,1162116023,7),(1417,1173610823,6),(1417,1194170423,7),(1417,1205060423,6),(1417,1225620023,7),(1417,1236510024,6),(1417,1257069624,7),(1417,1268564424,6),(1417,1289124024,7),(1417,1300014024,6),(1417,1320573624,7),(1417,1331463624,6),(1417,1352023225,7),(1417,1362913225,6),(1417,1383472825,7),(1417,1394362825,6),(1417,1414922425,7),(1417,1425812425,6),(1417,1446372026,7),(1417,1457866826,6),(1417,1478426426,7),(1417,1489316427,6),(1417,1509876027,7),(1417,1520766027,6),(1417,1541325627,7),(1417,1552215627,6),(1417,1572775227,7),(1417,1583665227,6),(1417,1604224827,7),(1417,1615719627,6),(1417,1636279227,7),(1417,1647169227,6),(1417,1667728827,7),(1417,1678618827,6),(1417,1699178427,7),(1417,1710068427,6),(1417,1730628027,7),(1417,1741518027,6),(1417,1762077627,7),(1417,1772967627,6),(1417,1793527227,7),(1417,1805022027,6),(1417,1825581627,7),(1417,1836471627,6),(1417,1857031227,7),(1417,1867921227,6),(1417,1888480827,7),(1417,1899370827,6),(1417,1919930427,7),(1417,1930820427,6),(1417,1951380027,7),(1417,1962874827,6),(1417,1983434427,7),(1417,1994324427,6),(1417,2014884027,7),(1417,2025774027,6),(1417,2046333627,7),(1417,2057223627,6),(1417,2077783227,7),(1417,2088673227,6),(1417,2109232827,7),(1417,2120122827,6),(1417,2140682427,7),(1418,-2147483648,0),(1418,-1825098836,1),(1419,-2147483648,2),(1419,-1664130548,1),(1419,-1650137348,2),(1419,-1632076148,1),(1419,-1615145348,2),(1419,-1598650148,1),(1419,-1590100148,2),(1419,-1567286948,1),(1419,-1551565748,2),(1419,-1535837348,1),(1419,-1520116148,2),(1419,-1503782948,1),(1419,-1488666548,2),(1419,-1472333348,1),(1419,-1457216948,2),(1419,-1440883748,1),(1419,-1425767348,2),(1419,-1409434148,1),(1419,-1394317748,2),(1419,-1377984548,1),(1419,-1362263348,2),(1419,-1346534948,1),(1419,-1330813748,2),(1419,-1314480548,1),(1419,-1299364148,2),(1419,-1283030948,1),(1419,-1267914548,2),(1419,-1251581348,1),(1419,-1236464948,2),(1419,-1220131748,1),(1419,-1205015348,2),(1419,-1188682148,1),(1419,-1172960948,2),(1419,-1156627748,1),(1419,-1141511348,2),(1419,-1125178148,1),(1419,-1110061748,2),(1419,-1096921748,4),(1419,-1093728600,3),(1419,-1078612200,4),(1419,-1061670600,3),(1419,-1048973400,4),(1419,-1030221000,3),(1419,-1017523800,4),(1419,-998771400,3),(1419,-986074200,4),(1419,-966717000,3),(1419,-954624600,4),(1419,-935267400,3),(1419,-922570200,4),(1419,-903817800,3),(1419,-891120600,4),(1419,-872368200,6),(1419,-769395600,5),(1419,-765401400,4),(1419,-746044200,3),(1419,-733347000,4),(1419,-714594600,3),(1419,-701897400,4),(1419,-683145000,3),(1419,-670447800,4),(1419,-651695400,3),(1419,-638998200,4),(1419,-619641000,3),(1419,-606943800,4),(1419,-589401000,3),(1419,-576099000,4),(1419,-557951400,3),(1419,-544649400,4),(1419,-526501800,3),(1419,-513199800,4),(1419,-495052200,3),(1419,-481750200,4),(1419,-463602600,3),(1419,-450300600,4),(1419,-431548200,3),(1419,-418246200,4),(1419,-400098600,3),(1419,-386796600,4),(1419,-368649000,3),(1419,-355347000,4),(1419,-337199400,3),(1419,-323897400,4),(1419,-305749800,3),(1419,-289423800,4),(1419,-273695400,3),(1419,-257974200,4),(1419,-242245800,3),(1419,-226524600,4),(1419,-210796200,3),(1419,-195075000,4),(1419,-179346600,3),(1419,-163625400,4),(1419,-147897000,3),(1419,-131571000,4),(1419,-116447400,3),(1419,-100121400,4),(1419,-84393000,3),(1419,-68671800,4),(1419,-52943400,3),(1419,-37222200,4),(1419,-21493800,3),(1419,-5772600,4),(1419,9955800,3),(1419,25677000,4),(1419,41405400,3),(1419,57731400,4),(1419,73459800,3),(1419,89181001,4),(1419,104909402,3),(1419,120630602,4),(1419,136359003,3),(1419,152080203,4),(1419,167808604,3),(1419,183529804,4),(1419,199258205,3),(1419,215584205,4),(1419,230707806,3),(1419,247033806,4),(1419,262762207,3),(1419,278483407,4),(1419,294211808,3),(1419,309933008,4),(1419,325661409,3),(1419,341382609,4),(1419,357111009,3),(1419,372832210,4),(1419,388560610,3),(1419,404886611,4),(1419,420010211,3),(1419,436336212,4),(1419,452064612,3),(1419,467785812,4),(1419,483514212,3),(1419,499235413,4),(1419,514963813,3),(1419,530685013,4),(1419,544591873,3),(1419,562127473,4),(1419,576041474,7),(1419,594178274,4),(1419,607491074,3),(1419,625631474,4),(1419,638940675,3),(1419,657081075,4),(1419,670995076,3),(1419,688530676,4),(1419,702444676,3),(1419,719980277,4),(1419,733894277,3),(1419,752034678,4),(1419,765343878,3),(1419,783484279,4),(1419,796793479,3),(1419,814933879,4),(1419,828847880,3),(1419,846383480,4),(1419,860297480,3),(1419,877833081,4),(1419,891747081,3),(1419,909282681,4),(1419,923196682,3),(1419,941337082,4),(1419,954646282,3),(1419,972786682,4),(1419,986095882,3),(1419,1004236282,4),(1419,1018150282,3),(1419,1035685882,4),(1419,1049599882,3),(1419,1067135482,4),(1419,1081049482,3),(1419,1099189882,4),(1419,1112499082,3),(1419,1130639482,4),(1419,1143948683,3),(1419,1162089083,4),(1419,1173583883,3),(1419,1194143483,4),(1419,1205033483,3),(1419,1225593083,4),(1419,1236483084,3),(1419,1257042684,4),(1419,1268537484,3),(1419,1289097084,4),(1419,1299987084,3),(1419,1320553824,4),(1419,1331443824,3),(1419,1352003425,4),(1419,1362893425,3),(1419,1383453025,4),(1419,1394343025,3),(1419,1414902625,4),(1419,1425792625,3),(1419,1446352226,4),(1419,1457847026,3),(1419,1478406626,4),(1419,1489296627,3),(1419,1509856227,4),(1419,1520746227,3),(1419,1541305827,4),(1419,1552195827,3),(1419,1572755427,4),(1419,1583645427,3),(1419,1604205027,4),(1419,1615699827,3),(1419,1636259427,4),(1419,1647149427,3),(1419,1667709027,4),(1419,1678599027,3),(1419,1699158627,4),(1419,1710048627,3),(1419,1730608227,4),(1419,1741498227,3),(1419,1762057827,4),(1419,1772947827,3),(1419,1793507427,4),(1419,1805002227,3),(1419,1825561827,4),(1419,1836451827,3),(1419,1857011427,4),(1419,1867901427,3),(1419,1888461027,4),(1419,1899351027,3),(1419,1919910627,4),(1419,1930800627,3),(1419,1951360227,4),(1419,1962855027,3),(1419,1983414627,4),(1419,1994304627,3),(1419,2014864227,4),(1419,2025754227,3),(1419,2046313827,4),(1419,2057203827,3),(1419,2077763427,4),(1419,2088653427,3),(1419,2109213027,4),(1419,2120103027,3),(1419,2140662627,4),(1420,-2147483648,0),(1420,-1825098836,1),(1421,-2147483648,0),(1421,-1825098836,1),(1422,-2147483648,0),(1422,-1825098836,1),(1423,-2147483648,0),(1423,-1825098836,1),(1424,-2147483648,0),(1424,-2030201320,2),(1424,-1632063600,1),(1424,-1615132800,2),(1424,-880210800,3),(1424,-769395600,4),(1424,-765388800,2),(1424,-747241200,1),(1424,-732729600,2),(1424,-715791600,1),(1424,-702489600,2),(1424,-684342000,1),(1424,-671040000,2),(1424,-652892400,1),(1424,-639590400,2),(1424,-400086000,1),(1424,-384364800,2),(1424,-337186800,1),(1424,-321465600,2),(1424,-305737200,1),(1424,-292435200,2),(1424,-273682800,1),(1424,-260985600,2),(1424,73472400,5),(1425,-2147483648,0),(1425,-1538503868,2),(1425,547020013,1),(1425,559717213,2),(1425,578469614,1),(1425,591166814,2),(1425,1146981623,1),(1425,1154926823,2),(1426,-2147483648,0),(1426,-1686079492,2),(1426,670399216,1),(1426,686120416,2),(1426,701848816,1),(1426,717570017,2),(1426,733903217,1),(1426,752043618,2),(1426,765352818,1),(1426,783493219,2),(1426,796802419,1),(1426,814942819,2),(1426,828856820,1),(1426,846392420,2),(1426,860306420,1),(1426,877842021,2),(1426,891756021,1),(1426,909291621,2),(1426,923205622,1),(1426,941346022,2),(1426,954655222,1),(1426,972795622,2),(1426,986104822,1),(1426,1004245222,2),(1426,1018159222,1),(1426,1035694822,2),(1426,1049608822,1),(1426,1067144422,2),(1426,1081058422,1),(1426,1099198822,2),(1426,1112508022,1),(1426,1130648422,2),(1426,1143957623,1),(1426,1162098023,2),(1426,1173592823,1),(1426,1194152423,2),(1426,1205042423,1),(1426,1225602023,2),(1426,1236492024,1),(1426,1257051624,2),(1426,1268546424,1),(1426,1289106024,2),(1426,1299996024,1),(1426,1320555624,2),(1426,1331445624,1),(1426,1352005225,2),(1426,1362895225,1),(1426,1383454825,2),(1426,1394344825,1),(1426,1414904425,2),(1426,1425794425,1),(1426,1446354026,2),(1426,1457848826,1),(1426,1478408426,2),(1426,1489298427,1),(1426,1509858027,2),(1426,1520748027,1),(1426,1541307627,2),(1426,1552197627,1),(1426,1572757227,2),(1426,1583647227,1),(1426,1604206827,2),(1426,1615701627,1),(1426,1636261227,2),(1426,1647151227,1),(1426,1667710827,2),(1426,1678600827,1),(1426,1699160427,2),(1426,1710050427,1),(1426,1730610027,2),(1426,1741500027,1),(1426,1762059627,2),(1426,1772949627,1),(1426,1793509227,2),(1426,1805004027,1),(1426,1825563627,2),(1426,1836453627,1),(1426,1857013227,2),(1426,1867903227,1),(1426,1888462827,2),(1426,1899352827,1),(1426,1919912427,2),(1426,1930802427,1),(1426,1951362027,2),(1426,1962856827,1),(1426,1983416427,2),(1426,1994306427,1),(1426,2014866027,2),(1426,2025756027,1),(1426,2046315627,2),(1426,2057205627,1),(1426,2077765227,2),(1426,2088655227,1),(1426,2109214827,2),(1426,2120104827,1),(1426,2140664427,2),(1427,-2147483648,1),(1427,-1893434400,2),(1427,-880218000,3),(1427,-769395600,4),(1427,-765396000,2),(1427,9961200,5),(1427,25682400,2),(1427,41410800,5),(1427,57736800,2),(1427,73465200,5),(1427,89186401,2),(1427,136364403,5),(1427,152085603,2),(1427,167814004,5),(1427,183535204,2),(1427,199263605,5),(1427,215589605,2),(1427,230713206,5),(1427,247039206,2),(1427,262767607,5),(1427,278488807,2),(1427,294217208,5),(1427,309938408,2),(1427,325666809,5),(1427,341388009,2),(1427,357116409,5),(1427,372837610,2),(1427,388566010,5),(1427,404892011,2),(1427,420015611,5),(1427,436341612,2),(1427,452070012,5),(1427,467791212,2),(1427,483519612,5),(1427,499240813,2),(1427,514969213,5),(1427,530690413,2),(1427,544604413,5),(1427,562140013,2),(1427,576054014,5),(1427,594194414,2),(1427,607503614,5),(1427,625644014,2),(1427,638953215,5),(1427,657093615,2),(1427,671007616,5),(1427,688543216,2),(1427,702457216,5),(1427,719992817,2),(1427,733906817,5),(1427,752047218,2),(1427,765356418,5),(1427,783496819,2),(1427,796806019,5),(1427,814946419,2),(1427,828860420,5),(1427,846396020,2),(1427,860310020,5),(1427,877845621,2),(1427,891759621,5),(1427,909295221,2),(1427,923209222,5),(1427,941349622,2),(1427,954658822,5),(1427,972799222,2),(1427,986108422,5),(1427,1004248822,2),(1427,1018162822,5),(1427,1035698422,2),(1427,1049612422,5),(1427,1067148022,2),(1427,1081062022,5),(1427,1099202422,2),(1427,1112511622,5),(1427,1130652022,2),(1427,1143961223,5),(1427,1162101623,2),(1427,1173596423,5),(1427,1194156023,2),(1427,1205046023,5),(1427,1225605623,2),(1427,1236495624,5),(1427,1257055224,2),(1427,1268550024,5),(1427,1289109624,2),(1427,1299999624,5),(1427,1320559224,2),(1427,1331449224,5),(1427,1352008825,2),(1427,1362898825,5),(1427,1383458425,2),(1427,1394348425,5),(1427,1414908025,2),(1427,1425798025,5),(1427,1446357626,2),(1427,1457852426,5),(1427,1478412026,2),(1427,1489302027,5),(1427,1509861627,2),(1427,1520751627,5),(1427,1541311227,2),(1427,1552201227,5),(1427,1572760827,2),(1427,1583650827,5),(1427,1604210427,2),(1427,1615705227,5),(1427,1636264827,2),(1427,1647154827,5),(1427,1667714427,2),(1427,1678604427,5),(1427,1699164027,2),(1427,1710054027,5),(1427,1730613627,2),(1427,1741503627,5),(1427,1762063227,2),(1427,1772953227,5),(1427,1793512827,2),(1427,1805007627,5),(1427,1825567227,2),(1427,1836457227,5),(1427,1857016827,2),(1427,1867906827,5),(1427,1888466427,2),(1427,1899356427,5),(1427,1919916027,2),(1427,1930806027,5),(1427,1951365627,2),(1427,1962860427,5),(1427,1983420027,2),(1427,1994310027,5),(1427,2014869627,2),(1427,2025759627,5),(1427,2046319227,2),(1427,2057209227,5),(1427,2077768827,2),(1427,2088658827,5),(1427,2109218427,2),(1427,2120108427,5),(1427,2140668027,2),(1428,-2147483648,0),(1428,-1514736000,1),(1428,-1451667600,2),(1428,-1343062800,1),(1428,-1234803600,2),(1428,-1222963200,3),(1428,-1207242000,2),(1428,-873820800,4),(1428,-769395600,5),(1428,-761677200,2),(1428,-686073600,3),(1428,-661539600,2),(1428,-495039600,3),(1428,-481734000,2),(1428,-463590000,3),(1428,-450284400,2),(1428,-431535600,3),(1428,-418230000,2),(1428,-400086000,3),(1428,-386780400,2),(1428,-368636400,3),(1428,-355330800,2),(1428,-337186800,3),(1428,-323881200,2),(1428,-305737200,3),(1428,-292431600,2),(1428,199274405,3),(1428,215600405,2),(1428,230724006,3),(1428,247050006,2),(1428,262778407,3),(1428,278499607,2),(1428,294228008,3),(1428,309949208,2),(1428,325677609,3),(1428,341398809,2),(1428,357127209,3),(1428,372848410,2),(1428,388576810,3),(1428,404902811,2),(1428,420026411,3),(1428,436352412,2),(1428,452080812,3),(1428,467802012,2),(1428,483530412,3),(1428,499251613,2),(1428,514980013,3),(1428,530701213,2),(1428,544615213,3),(1428,562150813,2),(1428,576064814,3),(1428,594205214,2),(1428,607514414,3),(1428,625654814,2),(1428,638964015,3),(1428,657104415,2),(1428,671018416,3),(1428,688554016,2),(1428,702468016,3),(1428,720003617,2),(1428,733917617,3),(1428,752058018,2),(1428,765367218,3),(1428,783507619,2),(1428,796816819,3),(1428,814957219,2),(1428,828871220,3),(1428,846406820,2),(1428,860320820,3),(1428,877856421,2),(1428,891770421,3),(1428,909306021,2),(1428,923220022,3),(1428,941360422,2),(1428,954669622,3),(1428,972810022,2),(1428,986119222,3),(1428,1004259622,2),(1428,1018173622,3),(1428,1035709222,2),(1428,1049623222,3),(1428,1067158822,2),(1428,1081072822,3),(1428,1099213222,2),(1428,1112522422,3),(1428,1130662822,2),(1428,1143972023,3),(1428,1162112423,2),(1428,1175421623,3),(1428,1193562023,2),(1428,1207476023,3),(1428,1225011623,2),(1428,1238925624,3),(1428,1256461224,2),(1428,1268560824,3),(1428,1289120424,2),(1428,1300010424,3),(1428,1320570024,2),(1428,1331460024,3),(1428,1352019625,2),(1428,1362909625,3),(1428,1383469225,2),(1428,1394359225,3),(1428,1414918825,2),(1428,1425808825,3),(1428,1446368426,2),(1428,1457863226,3),(1428,1478422826,2),(1428,1489312827,3),(1428,1509872427,2),(1428,1520762427,3),(1428,1541322027,2),(1428,1552212027,3),(1428,1572771627,2),(1428,1583661627,3),(1428,1604221227,2),(1428,1615716027,3),(1428,1636275627,2),(1428,1647165627,3),(1428,1667725227,2),(1428,1678615227,3),(1428,1699174827,2),(1428,1710064827,3),(1428,1730624427,2),(1428,1741514427,3),(1428,1762074027,2),(1428,1772964027,3),(1428,1793523627,2),(1428,1805018427,3),(1428,1825578027,2),(1428,1836468027,3),(1428,1857027627,2),(1428,1867917627,3),(1428,1888477227,2),(1428,1899367227,3),(1428,1919926827,2),(1428,1930816827,3),(1428,1951376427,2),(1428,1962871227,3),(1428,1983430827,2),(1428,1994320827,3),(1428,2014880427,2),(1428,2025770427,3),(1428,2046330027,2),(1428,2057220027,3),(1428,2077779627,2),(1428,2088669627,3),(1428,2109229227,2),(1428,2120119227,3),(1428,2140678827,2),(1429,-2147483648,2),(1429,-1632070800,1),(1429,-1615140000,2),(1429,-1601753400,1),(1429,-1583697600,2),(1429,-1567357200,1),(1429,-1554667200,2),(1429,-1534698000,1),(1429,-1524074400,2),(1429,-1503248400,1),(1429,-1492365600,2),(1429,-1471798800,1),(1429,-1460916000,2),(1429,-1440954000,1),(1429,-1428861600,2),(1429,-1409504400,1),(1429,-1397412000,2),(1429,-1378054800,1),(1429,-1365962400,2),(1429,-1346605200,1),(1429,-1333908000,2),(1429,-1315155600,1),(1429,-1301853600,2),(1429,-1283706000,1),(1429,-1270404000,2),(1429,-1252256400,1),(1429,-1238954400,2),(1429,-1220806800,1),(1429,-1207504800,2),(1429,-1188752400,1),(1429,-1176055200,2),(1429,-1157302800,1),(1429,-1144000800,2),(1429,-1125853200,1),(1429,-1112551200,2),(1429,-1094403600,1),(1429,-1081101600,2),(1429,-1062954000,1),(1429,-1049652000,2),(1429,-1031504400,1),(1429,-1018202400,2),(1429,-1000054800,1),(1429,-986752800,2),(1429,-968000400,1),(1429,-955303200,2),(1429,-936550800,1),(1429,-880218000,3),(1429,-769395600,4),(1429,-765396000,2),(1429,-747248400,1),(1429,-733946400,2),(1429,-715806000,1),(1429,-702504000,2),(1429,-684356400,1),(1429,-671054400,2),(1429,-652906800,1),(1429,-634161600,2),(1429,-620845200,1),(1429,-602704800,2),(1429,-589395600,1),(1429,-576093600,2),(1429,-557946000,1),(1429,-544644000,2),(1429,-526496400,1),(1429,-513194400,2),(1429,-495046800,1),(1429,-481744800,2),(1429,-463597200,1),(1429,-450295200,2),(1429,-431542800,1),(1429,-418240800,2),(1429,-400093200,1),(1429,-384372000,2),(1429,-368643600,1),(1429,-352922400,2),(1429,-337194000,1),(1429,-321472800,2),(1429,-305744400,1),(1429,-289418400,2),(1429,-273690000,1),(1429,-257968800,2),(1429,-242240400,1),(1429,-226519200,2),(1429,-210790800,1),(1429,-195069600,2),(1429,-179341200,1),(1429,-163620000,2),(1429,-147891600,1),(1429,-131565600,2),(1429,-116442000,1),(1429,-100116000,2),(1429,-84387600,1),(1429,-68666400,2),(1429,-52938000,1),(1429,-37216800,2),(1429,-21488400,1),(1429,-5767200,2),(1429,9961200,1),(1429,25682400,2),(1429,41410800,1),(1429,57736800,2),(1429,73465200,1),(1429,89186401,2),(1429,104914802,1),(1429,120636002,2),(1429,136364403,1),(1429,152085603,2),(1429,167814004,1),(1429,183535204,2),(1429,199263605,1),(1429,215589605,2),(1429,230713206,1),(1429,247039206,2),(1429,262767607,1),(1429,278488807,2),(1429,294217208,1),(1429,309938408,2),(1429,325666809,1),(1429,341388009,2),(1429,357116409,1),(1429,372837610,2),(1429,388566010,1),(1429,404892011,2),(1429,420015611,1),(1429,436341612,2),(1429,452070012,1),(1429,467791212,2),(1429,483519612,1),(1429,499240813,2),(1429,514969213,1),(1429,530690413,2),(1429,544604413,1),(1429,562140013,2),(1429,576054014,1),(1429,594194414,2),(1429,607503614,1),(1429,625644014,2),(1429,638953215,1),(1429,657093615,2),(1429,671007616,1),(1429,688543216,2),(1429,702457216,1),(1429,719992817,2),(1429,733906817,1),(1429,752047218,2),(1429,765356418,1),(1429,783496819,2),(1429,796806019,1),(1429,814946419,2),(1429,828860420,1),(1429,846396020,2),(1429,860310020,1),(1429,877845621,2),(1429,891759621,1),(1429,909295221,2),(1429,923209222,1),(1429,941349622,2),(1429,954658822,1),(1429,972799222,2),(1429,986108422,1),(1429,1004248822,2),(1429,1018162822,1),(1429,1035698422,2),(1429,1049612422,1),(1429,1067148022,2),(1429,1081062022,1),(1429,1099202422,2),(1429,1112511622,1),(1429,1130652022,2),(1429,1143961223,1),(1429,1162101623,2),(1429,1173596423,1),(1429,1194156023,2),(1429,1205046023,1),(1429,1225605623,2),(1429,1236495624,1),(1429,1257055224,2),(1429,1268550024,1),(1429,1289109624,2),(1429,1299999624,1),(1429,1320559224,2),(1429,1331449224,1),(1429,1352008825,2),(1429,1362898825,1),(1429,1383458425,2),(1429,1394348425,1),(1429,1414908025,2),(1429,1425798025,1),(1429,1446357626,2),(1429,1457852426,1),(1429,1478412026,2),(1429,1489302027,1),(1429,1509861627,2),(1429,1520751627,1),(1429,1541311227,2),(1429,1552201227,1),(1429,1572760827,2),(1429,1583650827,1),(1429,1604210427,2),(1429,1615705227,1),(1429,1636264827,2),(1429,1647154827,1),(1429,1667714427,2),(1429,1678604427,1),(1429,1699164027,2),(1429,1710054027,1),(1429,1730613627,2),(1429,1741503627,1),(1429,1762063227,2),(1429,1772953227,1),(1429,1793512827,2),(1429,1805007627,1),(1429,1825567227,2),(1429,1836457227,1),(1429,1857016827,2),(1429,1867906827,1),(1429,1888466427,2),(1429,1899356427,1),(1429,1919916027,2),(1429,1930806027,1),(1429,1951365627,2),(1429,1962860427,1),(1429,1983420027,2),(1429,1994310027,1),(1429,2014869627,2),(1429,2025759627,1),(1429,2046319227,2),(1429,2057209227,1),(1429,2077768827,2),(1429,2088658827,1),(1429,2109218427,2),(1429,2120108427,1),(1429,2140668027,2),(1430,-2147483648,0),(1430,-1825098836,1),(1431,-2147483648,2),(1431,-1632060000,1),(1431,-1615129200,2),(1431,-880207200,3),(1431,-769395600,4),(1431,-765385200,2),(1431,-747237600,1),(1431,-733935600,2),(1431,-715788000,1),(1431,-702486000,2),(1431,-684338400,1),(1431,-671036400,2),(1431,-652888800,1),(1431,-639586800,2),(1431,-620834400,1),(1431,-608137200,2),(1431,-589384800,1),(1431,-576082800,2),(1431,-557935200,1),(1431,-544633200,2),(1431,-526485600,1),(1431,-513183600,2),(1431,-495036000,1),(1431,-481734000,2),(1431,-463586400,1),(1431,-450284400,2),(1431,-431532000,1),(1431,-418230000,2),(1431,-400082400,1),(1431,-386780400,2),(1431,-368632800,1),(1431,-355330800,2),(1431,-337183200,1),(1431,-323881200,2),(1431,-305733600,1),(1431,-292431600,2),(1431,-273679200,1),(1431,-260982000,2),(1431,-242229600,1),(1431,-226508400,2),(1431,-210780000,1),(1431,-195058800,2),(1431,-179330400,1),(1431,-163609200,2),(1431,-147880800,1),(1431,-131554800,2),(1431,-116431200,1),(1431,-100105200,2),(1431,-84376800,1),(1431,-68655600,2),(1431,-52927200,1),(1431,-37206000,2),(1431,-21477600,1),(1431,-5756400,2),(1431,9972000,1),(1431,25693200,2),(1431,41421600,1),(1431,57747600,2),(1431,73476000,1),(1431,89197201,2),(1431,104925602,1),(1431,120646802,2),(1431,136375203,1),(1431,152096403,2),(1431,167824804,1),(1431,183546004,2),(1431,199274405,1),(1431,215600405,2),(1431,230724006,1),(1431,247050006,2),(1431,262778407,1),(1431,278499607,2),(1431,294228008,1),(1431,309949208,2),(1431,325677609,1),(1431,341398809,2),(1431,357127209,1),(1431,372848410,2),(1431,388576810,1),(1431,404902811,2),(1431,420026411,1),(1431,436352412,2),(1431,452080812,1),(1431,467802012,2),(1431,483530412,1),(1431,499251613,2),(1431,514980013,1),(1431,530701213,2),(1431,544615213,1),(1431,562150813,2),(1431,576064814,1),(1431,594205214,2),(1431,607514414,1),(1431,625654814,2),(1431,638964015,1),(1431,657104415,2),(1431,671018416,1),(1431,688554016,2),(1431,702468016,1),(1431,720003617,2),(1431,733917617,1),(1431,752058018,2),(1431,765367218,1),(1431,783507619,2),(1431,796816819,1),(1431,814957219,2),(1431,828871220,1),(1431,846406820,2),(1431,860320820,1),(1431,877856421,2),(1431,891770421,1),(1431,909306021,2),(1431,923220022,1),(1431,941360422,2),(1431,954669622,1),(1431,972810022,2),(1431,986119222,1),(1431,1004259622,2),(1431,1018173622,1),(1431,1035709222,2),(1431,1049623222,1),(1431,1067158822,2),(1431,1081072822,1),(1431,1099213222,2),(1431,1112522422,1),(1431,1130662822,2),(1431,1143972023,1),(1431,1162112423,2),(1431,1173607223,1),(1431,1194166823,2),(1431,1205056823,1),(1431,1225616423,2),(1431,1236506424,1),(1431,1257066024,2),(1431,1268560824,1),(1431,1289120424,2),(1431,1300010424,1),(1431,1320570024,2),(1431,1331460024,1),(1431,1352019625,2),(1431,1362909625,1),(1431,1383469225,2),(1431,1394359225,1),(1431,1414918825,2),(1431,1425808825,1),(1431,1446368426,2),(1431,1457863226,1),(1431,1478422826,2),(1431,1489312827,1),(1431,1509872427,2),(1431,1520762427,1),(1431,1541322027,2),(1431,1552212027,1),(1431,1572771627,2),(1431,1583661627,1),(1431,1604221227,2),(1431,1615716027,1),(1431,1636275627,2),(1431,1647165627,1),(1431,1667725227,2),(1431,1678615227,1),(1431,1699174827,2),(1431,1710064827,1),(1431,1730624427,2),(1431,1741514427,1),(1431,1762074027,2),(1431,1772964027,1),(1431,1793523627,2),(1431,1805018427,1),(1431,1825578027,2),(1431,1836468027,1),(1431,1857027627,2),(1431,1867917627,1),(1431,1888477227,2),(1431,1899367227,1),(1431,1919926827,2),(1431,1930816827,1),(1431,1951376427,2),(1431,1962871227,1),(1431,1983430827,2),(1431,1994320827,1),(1431,2014880427,2),(1431,2025770427,1),(1431,2046330027,2),(1431,2057220027,1),(1431,2077779627,2),(1431,2088669627,1),(1431,2109229227,2),(1431,2120119227,1),(1431,2140678827,2),(1432,-2147483648,0),(1432,-1825098836,1),(1433,-2147483648,2),(1433,-1632056400,1),(1433,-1615125600,2),(1433,-1596978000,1),(1433,-1583164800,2),(1433,-880203600,3),(1433,-769395600,4),(1433,-765381600,2),(1433,-147884400,5),(1433,-131554800,2),(1433,-81961200,6),(1433,325677609,7),(1433,341398809,6),(1433,357127209,7),(1433,372848410,6),(1433,388576810,7),(1433,404902811,6),(1433,420026411,7),(1433,436352412,6),(1433,452080812,7),(1433,467802012,6),(1433,483530412,7),(1433,499251613,6),(1433,514980013,7),(1433,530701213,6),(1433,544615213,7),(1433,562150813,6),(1433,576064814,7),(1433,594205214,6),(1433,607514414,7),(1433,625654814,6),(1433,638964015,7),(1433,657104415,6),(1433,671018416,7),(1433,688554016,6),(1433,702468016,7),(1433,720003617,6),(1433,733917617,7),(1433,752058018,6),(1433,765367218,7),(1433,783507619,6),(1433,796816819,7),(1433,814957219,6),(1433,828871220,7),(1433,846406820,6),(1433,860320820,7),(1433,877856421,6),(1433,891770421,7),(1433,909306021,6),(1433,923220022,7),(1433,941360422,6),(1433,954669622,7),(1433,972810022,6),(1433,986119222,7),(1433,1004259622,6),(1433,1018173622,7),(1433,1035709222,6),(1433,1049623222,7),(1433,1067158822,6),(1433,1081072822,7),(1433,1099213222,6),(1433,1112522422,7),(1433,1130662822,6),(1433,1143972023,7),(1433,1162112423,6),(1433,1173607223,7),(1433,1194166823,6),(1433,1205056823,7),(1433,1225616423,6),(1433,1236506424,7),(1433,1257066024,6),(1433,1268560824,7),(1433,1289120424,6),(1433,1300010424,7),(1433,1320570024,6),(1433,1331460024,7),(1433,1352019625,6),(1433,1362909625,7),(1433,1383469225,6),(1433,1394359225,7),(1433,1414918825,6),(1433,1425808825,7),(1433,1446368426,6),(1433,1457863226,7),(1433,1478422826,6),(1433,1489312827,7),(1433,1509872427,6),(1433,1520762427,7),(1433,1541322027,6),(1433,1552212027,7),(1433,1572771627,6),(1433,1583661627,7),(1433,1604221227,6),(1433,1615716027,7),(1433,1636275627,6),(1433,1647165627,7),(1433,1667725227,6),(1433,1678615227,7),(1433,1699174827,6),(1433,1710064827,7),(1433,1730624427,6),(1433,1741514427,7),(1433,1762074027,6),(1433,1772964027,7),(1433,1793523627,6),(1433,1805018427,7),(1433,1825578027,6),(1433,1836468027,7),(1433,1857027627,6),(1433,1867917627,7),(1433,1888477227,6),(1433,1899367227,7),(1433,1919926827,6),(1433,1930816827,7),(1433,1951376427,6),(1433,1962871227,7),(1433,1983430827,6),(1433,1994320827,7),(1433,2014880427,6),(1433,2025770427,7),(1433,2046330027,6),(1433,2057220027,7),(1433,2077779627,6),(1433,2088669627,7),(1433,2109229227,6),(1433,2120119227,7),(1433,2140678827,6),(1434,-2147483648,2),(1434,-1694368800,1),(1434,-1681671600,2),(1434,-1632067200,1),(1434,-1615136400,2),(1434,-1029686400,1),(1434,-1018198800,2),(1434,-880214400,3),(1434,-769395600,4),(1434,-765392400,2),(1434,-746035200,1),(1434,-732733200,2),(1434,-715795200,1),(1434,-702493200,2),(1434,-684345600,1),(1434,-671043600,2),(1434,-652896000,1),(1434,-639594000,2),(1434,-620755200,1),(1434,-607626000,2),(1434,-589392000,1),(1434,-576090000,2),(1434,-557942400,1),(1434,-544640400,2),(1434,-526492800,1),(1434,-513190800,2),(1434,-495043200,1),(1434,-481741200,2),(1434,-463593600,1),(1434,-450291600,2),(1434,-431539200,1),(1434,-418237200,2),(1434,-400089600,1),(1434,-386787600,2),(1434,-368640000,1),(1434,-355338000,2),(1434,-337190400,1),(1434,-321469200,2),(1434,-305740800,1),(1434,-292438800,2),(1434,-210787200,1),(1434,-198090000,2),(1434,-116438400,5),(1434,-100108800,6),(1434,-84384000,5),(1434,-68659200,6),(1434,-52934400,5),(1434,-37209600,6),(1434,-21484800,5),(1434,-5760000,6),(1434,9964800,5),(1434,25689600,6),(1434,41414400,5),(1434,57744000,6),(1434,73468800,5),(1434,89193601,6),(1434,104918402,5),(1434,120643202,6),(1434,136368003,5),(1434,152092803,6),(1434,167817604,5),(1434,183542404,6),(1434,199267205,5),(1434,215596805,6),(1434,230716806,5),(1434,247046406,6),(1434,262771207,5),(1434,278496007,6),(1434,294220808,5),(1434,309945608,6),(1434,325670409,5),(1434,341395209,6),(1434,357120009,5),(1434,372844810,6),(1434,388569610,5),(1434,404899211,6),(1434,420019211,5),(1434,436348812,6),(1434,452073612,5),(1434,467798412,6),(1434,483523212,5),(1434,499248013,6),(1434,514972813,5),(1434,530697613,6),(1434,544608013,5),(1434,562147213,6),(1434,576057614,5),(1434,594201614,6),(1434,607507214,5),(1434,625651214,6),(1434,638956815,5),(1434,657100815,6),(1434,671011216,5),(1434,688550416,6),(1434,702460816,5),(1434,720000017,6),(1434,733910417,5),(1434,752054418,6),(1434,765360018,5),(1434,783504019,6),(1434,796809619,5),(1434,814953619,6),(1434,828864020,5),(1434,846403220,6),(1434,860313620,5),(1434,877852821,6),(1434,891763221,5),(1434,909302421,6),(1434,923212822,5),(1434,941356822,6),(1434,954662422,5),(1434,972806422,6),(1434,986112022,5),(1434,1004256022,6),(1434,1018166422,5),(1434,1035705622,6),(1434,1049616022,5),(1434,1067155222,6),(1434,1081065622,5),(1434,1099209622,6),(1434,1112515222,5),(1434,1130659222,6),(1434,1136095223,2),(1434,1143964823,1),(1434,1162105223,2),(1434,1173600023,1),(1434,1194159623,2),(1434,1205049623,1),(1434,1225609223,2),(1434,1236499224,1),(1434,1257058824,2),(1434,1268553624,1),(1434,1289113224,2),(1434,1300003224,1),(1434,1320562824,2),(1434,1331452824,1),(1434,1352012425,2),(1434,1362902425,1),(1434,1383462025,2),(1434,1394352025,1),(1434,1414911625,2),(1434,1425801625,1),(1434,1446361226,2),(1434,1457856026,1),(1434,1478415626,2),(1434,1489305627,1),(1434,1509865227,2),(1434,1520755227,1),(1434,1541314827,2),(1434,1552204827,1),(1434,1572764427,2),(1434,1583654427,1),(1434,1604214027,2),(1434,1615708827,1),(1434,1636268427,2),(1434,1647158427,1),(1434,1667718027,2),(1434,1678608027,1),(1434,1699167627,2),(1434,1710057627,1),(1434,1730617227,2),(1434,1741507227,1),(1434,1762066827,2),(1434,1772956827,1),(1434,1793516427,2),(1434,1805011227,1),(1434,1825570827,2),(1434,1836460827,1),(1434,1857020427,2),(1434,1867910427,1),(1434,1888470027,2),(1434,1899360027,1),(1434,1919919627,2),(1434,1930809627,1),(1434,1951369227,2),(1434,1962864027,1),(1434,1983423627,2),(1434,1994313627,1),(1434,2014873227,2),(1434,2025763227,1),(1434,2046322827,2),(1434,2057212827,1),(1434,2077772427,2),(1434,2088662427,1),(1434,2109222027,2),(1434,2120112027,1),(1434,2140671627,2),(1435,-2147483648,1),(1435,-880203600,2),(1435,-769395600,3),(1435,-765381600,1),(1435,-21474000,4),(1435,-5752800,1),(1435,9975600,4),(1435,25696800,1),(1435,41425200,4),(1435,57751200,1),(1435,73479600,4),(1435,89200801,1),(1435,104929202,4),(1435,120650402,1),(1435,126702003,4),(1435,152100003,1),(1435,162385204,4),(1435,183549604,1),(1435,199278005,4),(1435,215604005,1),(1435,230727606,4),(1435,247053606,1),(1435,262782007,4),(1435,278503207,1),(1435,294231608,4),(1435,309952808,1),(1435,325681209,4),(1435,341402409,1),(1435,357130809,4),(1435,372852010,1),(1435,388580410,4),(1435,404906411,1),(1435,420030011,4),(1435,436356012,1),(1435,439030812,6),(1435,452084412,5),(1435,467805612,6),(1435,483534012,5),(1435,499255213,6),(1435,514983613,5),(1435,530704813,6),(1435,544618813,5),(1435,562154413,6),(1435,576068414,5),(1435,594208814,6),(1435,607518014,5),(1435,625658414,6),(1435,638967615,5),(1435,657108015,6),(1435,671022016,5),(1435,688557616,6),(1435,702471616,5),(1435,720007217,6),(1435,733921217,5),(1435,752061618,6),(1435,765370818,5),(1435,783511219,6),(1435,796820419,5),(1435,814960819,6),(1435,828874820,5),(1435,846410420,6),(1435,860324420,5),(1435,877860021,6),(1435,891774021,5),(1435,909309621,6),(1435,923223622,5),(1435,941364022,6),(1435,954673222,5),(1435,972813622,6),(1435,986122822,5),(1435,1004263222,6),(1435,1018177222,5),(1435,1035712822,6),(1435,1049626822,5),(1435,1067162422,6),(1435,1081076422,5),(1435,1099216822,6),(1435,1112526022,5),(1435,1130666422,6),(1435,1143975623,5),(1435,1162116023,6),(1435,1173610823,5),(1435,1194170423,6),(1435,1205060423,5),(1435,1225620023,6),(1435,1236510024,5),(1435,1257069624,6),(1435,1268564424,5),(1435,1289124024,6),(1435,1300014024,5),(1435,1320573624,6),(1435,1331463624,5),(1435,1352023225,6),(1435,1362913225,5),(1435,1383472825,6),(1435,1394362825,5),(1435,1414922425,6),(1435,1425812425,5),(1435,1446372026,6),(1435,1457866826,5),(1435,1478426426,6),(1435,1489316427,5),(1435,1509876027,6),(1435,1520766027,5),(1435,1541325627,6),(1435,1552215627,5),(1435,1572775227,6),(1435,1583665227,5),(1435,1604224827,6),(1435,1615719627,5),(1435,1636279227,6),(1435,1647169227,5),(1435,1667728827,6),(1435,1678618827,5),(1435,1699178427,6),(1435,1710068427,5),(1435,1730628027,6),(1435,1741518027,5),(1435,1762077627,6),(1435,1772967627,5),(1435,1793527227,6),(1435,1805022027,5),(1435,1825581627,6),(1435,1836471627,5),(1435,1857031227,6),(1435,1867921227,5),(1435,1888480827,6),(1435,1899370827,5),(1435,1919930427,6),(1435,1930820427,5),(1435,1951380027,6),(1435,1962874827,5),(1435,1983434427,6),(1435,1994324427,5),(1435,2014884027,6),(1435,2025774027,5),(1435,2046333627,6),(1435,2057223627,5),(1435,2077783227,6),(1435,2088673227,5),(1435,2109232827,6),(1435,2120122827,5),(1435,2140682427,6),(1436,-2147483648,0),(1436,-1104537600,3),(1436,-880210800,1),(1436,-769395600,2),(1436,-765388800,3),(1436,-147891600,4),(1436,-131562000,3),(1436,325674009,5),(1436,341395209,3),(1436,357123609,5),(1436,372844810,3),(1436,388573210,5),(1436,404899211,3),(1436,420022811,5),(1436,436348812,3),(1436,452077212,5),(1436,467798412,3),(1436,483526812,5),(1436,499248013,3),(1436,514976413,5),(1436,530697613,3),(1436,544611613,5),(1436,562147213,3),(1436,576061214,5),(1436,594201614,3),(1436,607510814,5),(1436,625651214,3),(1436,638960415,5),(1436,657100815,3),(1436,671014816,5),(1436,688550416,3),(1436,702464416,5),(1436,720000017,3),(1436,733914017,5),(1436,752054418,3),(1436,765363618,5),(1436,783504019,3),(1436,796813219,5),(1436,814953619,3),(1436,828867620,5),(1436,846403220,3),(1436,860317220,5),(1436,877852821,3),(1436,891766821,5),(1436,909302421,3),(1436,923216422,5),(1436,941356822,3),(1436,954666022,5),(1436,972806422,3),(1436,986115622,5),(1436,1004256022,3),(1436,1018170022,5),(1436,1035705622,3),(1436,1049619622,5),(1436,1067155222,3),(1436,1081069222,5),(1436,1099209622,3),(1436,1112518822,5),(1436,1130659222,3),(1436,1143968423,5),(1436,1162108823,3),(1436,1173603623,5),(1436,1194163223,3),(1436,1205053223,5),(1436,1225612823,3),(1436,1236502824,5),(1436,1257062424,3),(1436,1268557224,5),(1436,1289116824,3),(1436,1300006824,5),(1436,1320566424,3),(1436,1331456424,5),(1436,1352016025,3),(1436,1362906025,5),(1436,1383465625,3),(1436,1394355625,5),(1436,1414915225,3),(1436,1425805225,5),(1436,1446364826,3),(1436,1457859626,5),(1436,1478419226,3),(1436,1489309227,5),(1436,1509868827,3),(1436,1520758827,5),(1436,1541318427,3),(1436,1552208427,5),(1436,1572768027,3),(1436,1583658027,5),(1436,1604217627,3),(1436,1615712427,5),(1436,1636272027,3),(1436,1647162027,5),(1436,1667721627,3),(1436,1678611627,5),(1436,1699171227,3),(1436,1710061227,5),(1436,1730620827,3),(1436,1741510827,5),(1436,1762070427,3),(1436,1772960427,5),(1436,1793520027,3),(1436,1805014827,5),(1436,1825574427,3),(1436,1836464427,5),(1436,1857024027,3),(1436,1867914027,5),(1436,1888473627,3),(1436,1899363627,5),(1436,1919923227,3),(1436,1930813227,5),(1436,1951372827,3),(1436,1962867627,5),(1436,1983427227,3),(1436,1994317227,5),(1436,2014876827,3),(1436,2025766827,5),(1436,2046326427,3),(1436,2057216427,5),(1436,2077776027,3),(1436,2088666027,5),(1436,2109225627,3),(1436,2120115627,5),(1436,2140675227,3),(1437,-2147483648,0),(1437,-31536000,1),(1437,1255802424,2),(1437,1267714824,1),(1437,1319738424,2),(1437,1329843624,3),(1437,1477065626,2),(1437,1520701227,1),(1438,-2147483648,0),(1438,-409190400,1),(1438,-163062000,0),(1438,-28857600,1),(1438,1255806024,2),(1438,1268251224,3),(1438,1319742024,2),(1438,1329854424,3),(1439,-2147483648,0),(1439,-725846400,1),(1439,-566992800,0),(1439,-415497600,1),(1440,-2147483648,1),(1440,-1680508800,2),(1440,-1665392400,1),(1440,-1601719200,3),(1440,-687052800,1),(1440,-71136000,4),(1440,-55411200,5),(1440,-37267200,4),(1440,-25776000,5),(1440,-5817600,4),(1440,5673600,5),(1440,25632000,4),(1440,37728000,5),(1440,57686400,4),(1440,67968000,5),(1440,89136001,4),(1440,100022402,5),(1440,120585602,4),(1440,131472003,5),(1440,152035203,4),(1440,162921604,5),(1440,183484804,4),(1440,194976005,5),(1440,215539205,4),(1440,226425606,5),(1440,246988806,4),(1440,257875207,5),(1440,278438407,4),(1440,289324808,5),(1440,309888008,4),(1440,320774409,5),(1440,341337609,4),(1440,352224009,5),(1440,372787210,4),(1440,386092810,5),(1440,404841611,4),(1440,417542411,5),(1440,436291212,4),(1440,447177612,5),(1440,467740812,4),(1440,478627212,5),(1440,499190413,4),(1440,510076813,5),(1440,530035213,4),(1440,542736013,5),(1440,562089613,4),(1440,574790414,5),(1440,594144014,4),(1440,606240014,5),(1440,625593614,4),(1440,637689615,5),(1440,657043215,4),(1440,670348816,5),(1440,686678416,4),(1440,701798416,5),(1440,718128017,4),(1440,733248017,5),(1440,749577618,4),(1440,764697618,5),(1440,781027219,4),(1440,796147219,5),(1440,812476819,4),(1440,828201620,5),(1440,844531220,4),(1440,859651220,5),(1440,875980821,4),(1440,891100821,5),(1440,907430421,4),(1440,922550422,5),(1440,938880022,4),(1440,954000022,5),(1440,967305622,4),(1440,985449622,5),(1440,1002384022,4),(1440,1017504022,5),(1440,1033833622,4),(1440,1048953622,5),(1440,1065283222,4),(1440,1080403222,5),(1440,1096732822,4),(1440,1111852822,5),(1440,1128182422,4),(1440,1143907223,5),(1440,1159632023,4),(1440,1174752023,5),(1440,1191686423,4),(1440,1207411223,5),(1440,1223136023,4),(1440,1238860824,5),(1440,1254585624,4),(1440,1270310424,6),(1441,-2147483648,0),(1441,-501206400,1),(1441,1255809624,2),(1442,-2147483648,2),(1442,-1330335000,1),(1442,-1320057000,2),(1442,-1300699800,3),(1442,-1287396000,2),(1442,-1269250200,3),(1442,-1255946400,2),(1442,-1237800600,3),(1442,-1224496800,2),(1442,-1206351000,3),(1442,-1192442400,2),(1442,-1174901400,3),(1442,-1160992800,2),(1442,-1143451800,3),(1442,-1125914400,2),(1442,-1112607000,3),(1442,-1094464800,2),(1442,-1081157400,3),(1442,-1063015200,2),(1442,-1049707800,3),(1442,-1031565600,2),(1442,-1018258200,3),(1442,-1000116000,2),(1442,-986808600,3),(1442,-968061600,2),(1442,-955359000,3),(1442,-936612000,2),(1442,-923304600,3),(1442,-757425600,6),(1442,152632803,4),(1442,162309604,5),(1442,183477604,4),(1442,194968805,5),(1442,215532005,4),(1442,226418406,5),(1442,246981606,4),(1442,257868007,5),(1442,278431207,4),(1442,289317608,5),(1442,309880808,4),(1442,320767209,5),(1442,341330409,4),(1442,352216809,5),(1442,372780010,4),(1442,384271210,5),(1442,404834411,4),(1442,415720811,5),(1442,436284012,4),(1442,447170412,5),(1442,467733612,4),(1442,478620012,5),(1442,499183213,4),(1442,510069613,5),(1442,530632813,4),(1442,541519213,5),(1442,562082413,4),(1442,573573614,5),(1442,594136814,4),(1442,605023214,5),(1442,623772014,4),(1442,637682415,5),(1442,655221615,4),(1442,669132016,5),(1442,686671216,4),(1442,700581616,5),(1442,718120817,4),(1442,732636017,5),(1442,749570418,4),(1442,764085618,5),(1442,781020019,4),(1442,795535219,5),(1442,812469619,4),(1442,826984820,5),(1442,844524020,4),(1442,858434420,5),(1442,875973621,4),(1442,889884021,5),(1442,907423221,4),(1442,921938422,5),(1442,938872822,4),(1442,953388022,5),(1442,970322422,4),(1442,984837622,5),(1442,1002376822,4),(1442,1016287222,5),(1442,1033826422,4),(1442,1047736822,5),(1442,1065276022,4),(1442,1079791222,5),(1442,1096725622,4),(1442,1111240822,5),(1442,1128175222,4),(1442,1142690423,5),(1442,1159624823,4),(1442,1174140023,5),(1442,1191074423,4),(1442,1207404023,5),(1442,1222524023,4),(1442,1238853624,5),(1442,1253973624,4),(1442,1270303224,5),(1442,1285423224,4),(1442,1301752824,5),(1442,1316872824,4),(1442,1333202424,5),(1442,1348927225,4),(1442,1365256825,5),(1442,1380376825,4),(1442,1396706425,5),(1442,1411826425,4),(1442,1428156025,5),(1442,1443276026,4),(1442,1459605626,5),(1442,1474725626,4),(1442,1491055227,5),(1442,1506175227,4),(1442,1522504827,5),(1442,1538229627,4),(1442,1554559227,5),(1442,1569679227,4),(1442,1586008827,5),(1442,1601128827,4),(1442,1617458427,5),(1442,1632578427,4),(1442,1648908027,5),(1442,1664028027,4),(1442,1680357627,5),(1442,1695477627,4),(1442,1712412027,5),(1442,1727532027,4),(1442,1743861627,5),(1442,1758981627,4),(1442,1775311227,5),(1442,1790431227,4),(1442,1806760827,5),(1442,1821880827,4),(1442,1838210427,5),(1442,1853330427,4),(1442,1869660027,5),(1442,1885384827,4),(1442,1901714427,5),(1442,1916834427,4),(1442,1933164027,5),(1442,1948284027,4),(1442,1964613627,5),(1442,1979733627,4),(1442,1996063227,5),(1442,2011183227,4),(1442,2027512827,5),(1442,2042632827,4),(1442,2058962427,5),(1442,2074687227,4),(1442,2091016827,5),(1442,2106136827,4),(1442,2122466427,5),(1442,2137586427,4),(1443,-2147483648,0),(1443,-157766400,2),(1443,-152658000,1),(1443,-132955200,2),(1443,-121122000,1),(1443,-101419200,2),(1443,-86821200,1),(1443,-71092800,2),(1443,-54766800,1),(1443,-39038400,2),(1443,-23317200,1),(1443,-7588800,4),(1443,128142003,3),(1443,136605603,4),(1443,389070010,1),(1443,403070411,5),(1443,416372411,6),(1443,434520012,5),(1443,447822012,6),(1443,466574412,5),(1443,479271612,6),(1443,498024013,5),(1443,510721213,6),(1443,529473613,5),(1443,545194813,6),(1443,560923213,5),(1443,574225214,6),(1443,592372814,5),(1443,605674814,6),(1443,624427214,5),(1443,637124415,6),(1443,653457615,5),(1443,668574016,6),(1443,687326416,5),(1443,700628416,6),(1443,718776017,5),(1443,732078017,6),(1443,750225618,5),(1443,763527618,6),(1443,781675219,5),(1443,794977219,6),(1443,813729619,5),(1443,826426820,6),(1443,845179220,5),(1443,859690820,6),(1443,876628821,5),(1443,889930821,6),(1443,906868821,5),(1443,923194822,6),(1443,939528022,5),(1443,952830022,6),(1443,971582422,5),(1443,984279622,6),(1443,1003032022,5),(1443,1015729222,6),(1443,1034481622,5),(1443,1047178822,6),(1443,1065931222,5),(1443,1079233222,6),(1443,1097380822,5),(1443,1110682822,6),(1443,1128830422,5),(1443,1142132423,6),(1443,1160884823,5),(1443,1173582023,6),(1443,1192334423,5),(1443,1206846023,6),(1443,1223784023,5),(1443,1237086024,6),(1443,1255233624,5),(1443,1270350024,6),(1443,1286683224,5),(1443,1304823624,6),(1443,1313899224,5),(1443,1335668424,6),(1443,1346558425,5),(1443,1367118025,6),(1443,1378612825,5),(1443,1398567625,6),(1443,1410062425,5),(1443,1463281226,6),(1443,1471147226,5),(1443,1480820426,4),(1444,-2147483648,0),(1444,218246405,1),(1445,-2147483648,2),(1445,-1330335000,1),(1445,-1320057000,2),(1445,-1300699800,3),(1445,-1287396000,2),(1445,-1269250200,3),(1445,-1255946400,2),(1445,-1237800600,3),(1445,-1224496800,2),(1445,-1206351000,3),(1445,-1192442400,2),(1445,-1174901400,3),(1445,-1160992800,2),(1445,-1143451800,3),(1445,-1125914400,2),(1445,-1112607000,3),(1445,-1094464800,2),(1445,-1081157400,3),(1445,-1063015200,2),(1445,-1049707800,3),(1445,-1031565600,2),(1445,-1018258200,3),(1445,-1000116000,2),(1445,-986808600,3),(1445,-968061600,2),(1445,-955359000,3),(1445,-936612000,2),(1445,-923304600,3),(1445,-757425600,6),(1445,152632803,4),(1445,162309604,5),(1445,183477604,4),(1445,194968805,5),(1445,215532005,4),(1445,226418406,5),(1445,246981606,4),(1445,257868007,5),(1445,278431207,4),(1445,289317608,5),(1445,309880808,4),(1445,320767209,5),(1445,341330409,4),(1445,352216809,5),(1445,372780010,4),(1445,384271210,5),(1445,404834411,4),(1445,415720811,5),(1445,436284012,4),(1445,447170412,5),(1445,467733612,4),(1445,478620012,5),(1445,499183213,4),(1445,510069613,5),(1445,530632813,4),(1445,541519213,5),(1445,562082413,4),(1445,573573614,5),(1445,594136814,4),(1445,605023214,5),(1445,623772014,4),(1445,637682415,5),(1445,655221615,4),(1445,669132016,5),(1445,686671216,4),(1445,700581616,5),(1445,718120817,4),(1445,732636017,5),(1445,749570418,4),(1445,764085618,5),(1445,781020019,4),(1445,795535219,5),(1445,812469619,4),(1445,826984820,5),(1445,844524020,4),(1445,858434420,5),(1445,875973621,4),(1445,889884021,5),(1445,907423221,4),(1445,921938422,5),(1445,938872822,4),(1445,953388022,5),(1445,970322422,4),(1445,984837622,5),(1445,1002376822,4),(1445,1016287222,5),(1445,1033826422,4),(1445,1047736822,5),(1445,1065276022,4),(1445,1079791222,5),(1445,1096725622,4),(1445,1111240822,5),(1445,1128175222,4),(1445,1142690423,5),(1445,1159624823,4),(1445,1174140023,5),(1445,1191074423,4),(1445,1207404023,5),(1445,1222524023,4),(1445,1238853624,5),(1445,1253973624,4),(1445,1270303224,5),(1445,1285423224,4),(1445,1301752824,5),(1445,1316872824,4),(1445,1333202424,5),(1445,1348927225,4),(1445,1365256825,5),(1445,1380376825,4),(1445,1396706425,5),(1445,1411826425,4),(1445,1428156025,5),(1445,1443276026,4),(1445,1459605626,5),(1445,1474725626,4),(1445,1491055227,5),(1445,1506175227,4),(1445,1522504827,5),(1445,1538229627,4),(1445,1554559227,5),(1445,1569679227,4),(1445,1586008827,5),(1445,1601128827,4),(1445,1617458427,5),(1445,1632578427,4),(1445,1648908027,5),(1445,1664028027,4),(1445,1680357627,5),(1445,1695477627,4),(1445,1712412027,5),(1445,1727532027,4),(1445,1743861627,5),(1445,1758981627,4),(1445,1775311227,5),(1445,1790431227,4),(1445,1806760827,5),(1445,1821880827,4),(1445,1838210427,5),(1445,1853330427,4),(1445,1869660027,5),(1445,1885384827,4),(1445,1901714427,5),(1445,1916834427,4),(1445,1933164027,5),(1445,1948284027,4),(1445,1964613627,5),(1445,1979733627,4),(1445,1996063227,5),(1445,2011183227,4),(1445,2027512827,5),(1445,2042632827,4),(1445,2058962427,5),(1445,2074687227,4),(1445,2091016827,5),(1445,2106136827,4),(1445,2122466427,5),(1445,2137586427,4),(1446,-2147483648,0),(1446,-407808000,1),(1447,-2147483648,0),(1447,1108166422,3),(1447,1111885222,1),(1447,1130634022,2),(1447,1143334823,1),(1447,1162083623,2),(1447,1174784423,1),(1447,1193533223,2),(1447,1206838823,1),(1447,1224982823,2),(1447,1238288424,1),(1447,1256432424,2),(1447,1269738024,1),(1447,1288486824,2),(1447,1301187624,1),(1447,1319936424,2),(1447,1332637224,1),(1447,1351386025,2),(1447,1364691625,1),(1447,1382835625,2),(1447,1396141225,1),(1447,1414285225,2),(1447,1427590825,1),(1447,1445734826,2),(1447,1459040426,1),(1447,1477789226,2),(1447,1490490027,1),(1447,1509238827,2),(1447,1521939627,1),(1447,1540688427,2),(1447,1553994027,1),(1447,1572138027,2),(1447,1585443627,1),(1447,1603587627,2),(1447,1616893227,1),(1447,1635642027,2),(1447,1648342827,1),(1447,1667091627,2),(1447,1679792427,1),(1447,1698541227,2),(1447,1711846827,1),(1447,1729990827,2),(1447,1743296427,1),(1447,1761440427,2),(1447,1774746027,1),(1447,1792890027,2),(1447,1806195627,1),(1447,1824944427,2),(1447,1837645227,1),(1447,1856394027,2),(1447,1869094827,1),(1447,1887843627,2),(1447,1901149227,1),(1447,1919293227,2),(1447,1932598827,1),(1447,1950742827,2),(1447,1964048427,1),(1447,1982797227,2),(1447,1995498027,1),(1447,2014246827,2),(1447,2026947627,1),(1447,2045696427,2),(1447,2058397227,1),(1447,2077146027,2),(1447,2090451627,1),(1447,2108595627,2),(1447,2121901227,1),(1447,2140045227,2),(1448,-2147483648,0),(1448,-380073600,1),(1449,-2147483648,2),(1449,-1691884800,1),(1449,-1680573600,2),(1449,-927511200,1),(1449,-857257200,3),(1449,-844556400,4),(1449,-828226800,3),(1449,-812502000,4),(1449,-796777200,3),(1449,-781052400,4),(1449,-765327600,3),(1449,-340844400,4),(1449,-324514800,3),(1449,-308790000,4),(1449,-293065200,3),(1449,-277340400,4),(1449,-261615600,3),(1449,-245890800,4),(1449,-230166000,3),(1449,-214441200,4),(1449,-198716400,3),(1449,-182991600,4),(1449,-166662000,3),(1449,-147913200,4),(1449,-135212400,3),(1449,315529208,2),(1449,323830809,5),(1449,338950809,6),(1449,354675609,5),(1449,370400410,6),(1449,386125210,5),(1449,401850011,6),(1449,417574811,5),(1449,433299612,6),(1449,449024412,5),(1449,465354012,6),(1449,481078812,5),(1449,496803613,6),(1449,512528413,5),(1449,528253213,6),(1449,543978013,5),(1449,559702813,6),(1449,575427614,5),(1449,591152414,6),(1449,606877214,5),(1449,622602014,6),(1449,638326815,5),(1449,654656415,6),(1449,670381216,5),(1449,686106016,6),(1449,701830816,5),(1449,717555617,6),(1449,733280417,5),(1449,749005218,6),(1449,764730018,5),(1449,780454819,6),(1449,796179619,5),(1449,811904419,6),(1449,828234020,5),(1449,846378020,6),(1449,859683620,5),(1449,877827621,6),(1449,891133221,5),(1449,909277221,6),(1449,922582822,5),(1449,941331622,6),(1449,954032422,5),(1449,972781222,6),(1449,985482022,5),(1449,1004230822,6),(1449,1017536422,5),(1449,1035680422,6),(1449,1048986022,5),(1449,1067130022,6),(1449,1080435622,5),(1449,1099184422,6),(1449,1111885222,5),(1449,1130634022,6),(1449,1143334823,5),(1449,1162083623,6),(1449,1174784423,5),(1449,1193533223,6),(1449,1206838823,5),(1449,1224982823,6),(1449,1238288424,5),(1449,1256432424,6),(1449,1269738024,5),(1449,1288486824,6),(1449,1301187624,5),(1449,1319936424,6),(1449,1332637224,5),(1449,1351386025,6),(1449,1364691625,5),(1449,1382835625,6),(1449,1396141225,5),(1449,1414285225,6),(1449,1427590825,5),(1449,1445734826,6),(1449,1459040426,5),(1449,1477789226,6),(1449,1490490027,5),(1449,1509238827,6),(1449,1521939627,5),(1449,1540688427,6),(1449,1553994027,5),(1449,1572138027,6),(1449,1585443627,5),(1449,1603587627,6),(1449,1616893227,5),(1449,1635642027,6),(1449,1648342827,5),(1449,1667091627,6),(1449,1679792427,5),(1449,1698541227,6),(1449,1711846827,5),(1449,1729990827,6),(1449,1743296427,5),(1449,1761440427,6),(1449,1774746027,5),(1449,1792890027,6),(1449,1806195627,5),(1449,1824944427,6),(1449,1837645227,5),(1449,1856394027,6),(1449,1869094827,5),(1449,1887843627,6),(1449,1901149227,5),(1449,1919293227,6),(1449,1932598827,5),(1449,1950742827,6),(1449,1964048427,5),(1449,1982797227,6),(1449,1995498027,5),(1449,2014246827,6),(1449,2026947627,5),(1449,2045696427,6),(1449,2058397227,5),(1449,2077146027,6),(1449,2090451627,5),(1449,2108595627,6),(1449,2121901227,5),(1449,2140045227,6),(1450,-2147483648,0),(1450,-719636812,1),(1451,-2147483648,0),(1451,-1441170468,1),(1451,-1247547600,3),(1451,354909609,2),(1451,370717210,3),(1451,386445610,2),(1451,402253211,3),(1451,417981611,2),(1451,433789212,3),(1451,449604012,2),(1451,465336012,4),(1451,481060812,5),(1451,496785613,4),(1451,512510413,5),(1451,528235213,4),(1451,543960013,5),(1451,559684813,4),(1451,575409614,5),(1451,591134414,4),(1451,606859214,5),(1451,622584014,4),(1451,638308815,5),(1451,654638415,4),(1451,670363216,6),(1451,686091616,7),(1451,695768416,4),(1451,701812816,5),(1451,717537617,4),(1451,733262417,5),(1451,748987218,4),(1451,764712018,5),(1451,780436819,4),(1451,796161619,5),(1451,811886419,4),(1451,828216020,5),(1451,846360020,4),(1451,859665620,5),(1451,877809621,4),(1451,891115221,5),(1451,909259221,4),(1451,922564822,5),(1451,941313622,4),(1451,954014422,5),(1451,972763222,4),(1451,985464022,5),(1451,1004212822,4),(1451,1017518422,5),(1451,1035662422,4),(1451,1048968022,5),(1451,1067112022,4),(1451,1080417622,5),(1451,1099166422,4),(1452,-2147483648,0),(1452,-1230776624,2),(1452,108165602,1),(1452,118270802,2),(1452,136591203,1),(1452,149806803,2),(1452,168127204,1),(1452,181342804,2),(1452,199749605,1),(1452,215643605,2),(1452,231285606,1),(1452,244501206,2),(1452,262735207,1),(1452,275950807,2),(1452,481154412,1),(1452,496962013,2),(1452,512949613,1),(1452,528670813,2),(1452,544399213,1),(1452,560120413,2),(1452,575848814,1),(1452,592174814,2),(1452,610581614,1),(1452,623624414,2),(1452,641167215,1),(1452,655074015,2),(1452,671839216,1),(1452,685918816,2),(1452,702856816,1),(1452,717973217,2),(1452,733701617,1),(1452,749422818,2),(1452,765151218,1),(1452,779662819,2),(1452,797205619,1),(1452,811116019,3),(1452,828655220,1),(1452,843170420,3),(1452,860104820,1),(1452,874620021,3),(1452,891554421,1),(1452,906069621,3),(1452,930780022,4),(1452,938124022,3),(1452,954367222,4),(1452,970178422,3),(1452,985816822,4),(1452,1001628022,3),(1452,1017352822,1),(1452,1033077622,3),(1452,1048802422,1),(1452,1066946422,3),(1452,1080252022,1),(1452,1097791222,3),(1452,1112306422,1),(1452,1128031222,3),(1452,1143756023,1),(1452,1161900023,3),(1452,1175205623,1),(1452,1193349623,3),(1452,1206655223,1),(1452,1225404023,3),(1452,1238104824,1),(1452,1256853624,3),(1452,1269554424,1),(1452,1288303224,3),(1452,1301608824,1),(1452,1319752824,3),(1452,1333058424,1),(1452,1387486825,2),(1452,1395957625,1),(1452,1414706425,3),(1452,1427407225,1),(1452,1446156026,3),(1452,1459461626,1),(1452,1477605626,3),(1452,1490911227,1),(1452,1509055227,3),(1452,1522360827,1),(1452,1540504827,3),(1452,1553810427,1),(1452,1571954427,3),(1452,1585260027,1),(1452,1604008827,3),(1452,1616709627,1),(1452,1635458427,3),(1452,1648764027,1),(1452,1666908027,3),(1452,1680213627,1),(1452,1698357627,3),(1452,1711663227,1),(1452,1729807227,3),(1452,1743112827,1),(1452,1761861627,3),(1452,1774562427,1),(1452,1793311227,3),(1452,1806012027,1),(1452,1824760827,3),(1452,1838066427,1),(1452,1856210427,3),(1452,1869516027,1),(1452,1887660027,3),(1452,1900965627,1),(1452,1919109627,3),(1452,1932415227,1),(1452,1951164027,3),(1452,1963864827,1),(1452,1982613627,3),(1452,1995919227,1),(1452,2014063227,3),(1452,2027368827,1),(1452,2045512827,3),(1452,2058818427,1),(1452,2076962427,3),(1452,2090268027,1),(1452,2109016827,3),(1452,2121717627,1),(1452,2140466427,3),(1453,-2147483648,0),(1453,-1441194596,1),(1453,-1247572800,3),(1453,354884409,2),(1453,370692010,3),(1453,386420410,4),(1453,402231611,1),(1453,417960011,4),(1453,433767612,1),(1453,449582412,4),(1453,465314412,5),(1453,481039212,6),(1453,496764013,5),(1453,512488813,6),(1453,528213613,5),(1453,543938413,6),(1453,559663213,5),(1453,575388014,6),(1453,591112814,5),(1453,606837614,6),(1453,622562414,5),(1453,638287215,6),(1453,654616815,5),(1453,670341616,7),(1453,686070016,8),(1453,695746816,5),(1453,701791216,6),(1453,717516017,5),(1453,733240817,6),(1453,748965618,5),(1453,764690418,6),(1453,780415219,5),(1453,796140019,6),(1453,811864819,5),(1453,828194420,6),(1453,846338420,5),(1453,859644020,6),(1453,877788021,5),(1453,891093621,6),(1453,909237621,5),(1453,922543222,6),(1453,941292022,5),(1453,953992822,6),(1453,972741622,5),(1453,985442422,6),(1453,1004191222,5),(1453,1017496822,6),(1453,1035640822,5),(1453,1048946422,6),(1453,1067090422,5),(1453,1080396022,6),(1453,1099144822,5),(1453,1111845622,6),(1453,1130594422,5),(1453,1143295223,6),(1453,1162044023,5),(1453,1174744823,6),(1453,1193493623,5),(1453,1206799223,6),(1453,1224943223,5),(1453,1238248824,6),(1453,1256392824,5),(1453,1269698424,7),(1453,1288450824,8),(1453,1301151624,5),(1454,-2147483648,0),(1454,-1441164064,1),(1454,-1247544000,2),(1454,370724410,3),(1454,386445610,4),(1454,402256811,2),(1454,417985211,4),(1454,433792812,2),(1454,449607612,4),(1454,465339612,5),(1454,481064412,6),(1454,496789213,5),(1454,512514013,6),(1454,528238813,5),(1454,543963613,6),(1454,559688413,5),(1454,575413214,6),(1454,591138014,5),(1454,606862814,6),(1454,622587614,5),(1454,638312415,6),(1454,654642015,5),(1454,670366816,7),(1454,686095216,8),(1454,695772016,5),(1454,701816416,6),(1454,717541217,5),(1454,733266017,6),(1454,748990818,5),(1454,764715618,6),(1454,780440419,8),(1454,796168819,7),(1454,811893619,8),(1454,828223220,7),(1454,846367220,8),(1454,859672820,7),(1454,877816821,8),(1454,891122421,7),(1454,909266421,8),(1454,922572022,7),(1454,941320822,8),(1454,954021622,7),(1454,972770422,8),(1454,985471222,7),(1454,1004220022,8),(1454,1017525622,7),(1454,1035669622,8),(1454,1048975222,7),(1454,1067119222,8),(1454,1080424822,7),(1454,1099173622,5),(1455,-2147483648,0),(1455,-1441165720,1),(1455,-1247544000,2),(1455,354913209,3),(1455,370720810,4),(1455,386445610,3),(1455,402256811,2),(1455,417985211,3),(1455,433792812,2),(1455,449607612,3),(1455,465339612,5),(1455,481064412,6),(1455,496789213,5),(1455,512514013,6),(1455,528238813,5),(1455,543963613,6),(1455,559688413,5),(1455,575413214,6),(1455,591138014,5),(1455,606862814,6),(1455,622587614,5),(1455,638312415,6),(1455,654642015,5),(1455,670366816,7),(1455,686095216,8),(1455,695772016,5),(1455,701816416,6),(1455,717541217,5),(1455,733266017,6),(1455,748990818,5),(1455,764715618,6),(1455,780440419,5),(1455,796165219,6),(1455,811890019,5),(1455,828219620,6),(1455,846363620,5),(1455,859669220,6),(1455,877813221,5),(1455,891118821,6),(1455,909262821,5),(1455,922568422,6),(1455,941317222,5),(1455,954018022,6),(1455,972766822,5),(1455,985467622,6),(1455,1004216422,5),(1455,1017522022,6),(1455,1035666022,5),(1455,1048971622,6),(1455,1067115622,5),(1455,1080421222,6),(1455,1099170022,5),(1456,-2147483648,0),(1456,-1441166012,1),(1456,-1247544000,3),(1456,354913209,2),(1456,370720810,3),(1456,386449210,2),(1456,402256811,3),(1456,417985211,2),(1456,433792812,3),(1456,449607612,2),(1456,465339612,4),(1456,481064412,5),(1456,496789213,4),(1456,512514013,5),(1456,528238813,4),(1456,543963613,5),(1456,559688413,4),(1456,575413214,5),(1456,591138014,4),(1456,606862814,5),(1456,622587614,4),(1456,638312415,5),(1456,654642015,4),(1456,670366816,6),(1456,686095216,7),(1456,695772016,3),(1457,-2147483648,0),(1457,-1441166012,1),(1457,-1247544000,3),(1457,354913209,2),(1457,370720810,3),(1457,386449210,2),(1457,402256811,3),(1457,417985211,2),(1457,433792812,3),(1457,449607612,2),(1457,465339612,4),(1457,481064412,5),(1457,496789213,4),(1457,512514013,5),(1457,528238813,4),(1457,543963613,5),(1457,559688413,4),(1457,575413214,5),(1457,591138014,4),(1457,606862814,5),(1457,622587614,4),(1457,638312415,5),(1457,654642015,4),(1457,670366816,6),(1457,686095216,7),(1457,695772016,3),(1458,-2147483648,0),(1458,-1441164464,1),(1458,-1247540400,2),(1458,370724410,3),(1458,386445610,4),(1458,402256811,2),(1458,417985211,4),(1458,433792812,2),(1458,449607612,4),(1458,465339612,5),(1458,481064412,6),(1458,496789213,5),(1458,512514013,6),(1458,528238813,5),(1458,543963613,6),(1458,559688413,5),(1458,575413214,6),(1458,591138014,5),(1458,606862814,6),(1458,622587614,5),(1458,638312415,6),(1458,654642015,5),(1458,670366816,7),(1458,686095216,8),(1458,695772016,5),(1458,701816416,6),(1458,717541217,5),(1458,733266017,6),(1458,748990818,5),(1458,764715618,6),(1458,780440419,5),(1458,796165219,6),(1458,811890019,5),(1458,828219620,6),(1458,846363620,5),(1458,859669220,6),(1458,877813221,5),(1458,891118821,6),(1458,909262821,5),(1458,922568422,7),(1458,941320822,8),(1458,954021622,7),(1458,972770422,8),(1458,985471222,7),(1458,1004220022,8),(1458,1017525622,7),(1458,1035669622,8),(1458,1048975222,7),(1458,1067119222,8),(1458,1080424822,7),(1458,1099173622,5),(1459,-2147483648,1),(1459,-1641005856,2),(1459,389048410,3),(1459,402264011,2),(1459,417906011,3),(1459,433800012,2),(1459,449614812,3),(1459,465422412,2),(1459,481150812,3),(1459,496792813,4),(1459,512517613,5),(1459,528242413,4),(1459,543967213,5),(1459,559692013,4),(1459,575416814,5),(1459,591141614,4),(1459,606866414,5),(1459,622591214,4),(1459,638316015,5),(1459,654645615,4),(1459,670464016,5),(1459,686275216,4),(1459,702086416,5),(1459,717897617,4),(1459,733622417,5),(1459,749433618,4),(1459,765158418,5),(1459,780969619,4),(1459,796694419,5),(1459,812505619,4),(1459,828316820,5),(1459,844128020,4),(1459,859852820,5),(1459,875664021,4),(1459,891388821,5),(1459,907200021,4),(1459,922924822,5),(1459,938736022,4),(1459,954547222,5),(1459,970358422,4),(1459,986083222,5),(1459,1001894422,4),(1459,1017619222,5),(1459,1033430422,4),(1459,1049155222,5),(1459,1064966422,4),(1459,1080777622,5),(1459,1096588822,4),(1459,1112313622,5),(1459,1128124822,4),(1459,1143849623,5),(1459,1159660823,4),(1459,1175385623,5),(1459,1191196823,4),(1460,-2147483648,0),(1460,-1577935568,1),(1460,76190400,2),(1461,-2147483648,0),(1461,-1441163964,1),(1461,-405140400,3),(1461,354916809,2),(1461,370724410,3),(1461,386452810,2),(1461,402260411,3),(1461,417988811,2),(1461,433796412,3),(1461,449611212,2),(1461,465343212,4),(1461,481068012,5),(1461,496792813,4),(1461,512517613,5),(1461,528242413,4),(1461,543967213,5),(1461,559692013,4),(1461,575416814,5),(1461,591141614,4),(1461,606866414,5),(1461,622591214,4),(1461,638316015,5),(1461,654645615,4),(1461,670370416,6),(1461,686098816,7),(1461,701823616,6),(1461,717548417,4),(1461,820440019,3),(1461,828234020,8),(1461,846378020,9),(1461,852062420,3),(1461,859680020,2),(1461,877824021,3),(1461,891129621,2),(1461,909273621,3),(1461,922579222,2),(1461,941328022,3),(1461,954028822,2),(1461,972777622,3),(1461,985478422,2),(1461,1004227222,3),(1461,1017532822,2),(1461,1035676822,3),(1461,1048982422,2),(1461,1067126422,3),(1461,1080432022,2),(1461,1099180822,3),(1461,1111881622,2),(1461,1130630422,3),(1461,1143331223,2),(1461,1162080023,3),(1461,1174780823,2),(1461,1193529623,3),(1461,1206835223,2),(1461,1224979223,3),(1461,1238284824,2),(1461,1256428824,3),(1461,1269734424,2),(1461,1288483224,3),(1461,1301184024,2),(1461,1319932824,3),(1461,1332633624,2),(1461,1351382425,3),(1461,1364688025,2),(1461,1382832025,3),(1461,1396137625,2),(1461,1414281625,3),(1461,1427587225,2),(1461,1445731226,3),(1462,-2147483648,1),(1462,-1570084924,2),(1463,-2147483648,0),(1463,-1579844100,1),(1463,-1247551200,3),(1463,354906009,2),(1463,370713610,3),(1463,386442010,2),(1463,402249611,3),(1463,417978011,2),(1463,433785612,3),(1463,449600412,2),(1463,465332412,4),(1463,481057212,5),(1463,496782013,4),(1463,512506813,5),(1463,528231613,4),(1463,543956413,5),(1463,559681213,4),(1463,575406014,5),(1463,591130814,4),(1463,606855614,5),(1463,622580414,4),(1463,638305215,5),(1463,654634815,4),(1463,670359616,6),(1463,686088016,7),(1463,695764816,4),(1463,701809216,5),(1463,717534017,4),(1463,733258817,5),(1463,748983618,4),(1463,764708418,5),(1463,780433219,4),(1463,796158019,5),(1463,801590419,8),(1463,811886419,7),(1463,828216020,6),(1463,846360020,7),(1463,859665620,6),(1463,877809621,7),(1463,891115221,6),(1463,909259221,7),(1463,922564822,6),(1463,941313622,7),(1463,954014422,6),(1463,972763222,7),(1463,985464022,6),(1463,1004212822,7),(1463,1017518422,6),(1463,1035662422,7),(1463,1048968022,6),(1463,1067112022,7),(1463,1080417622,6),(1463,1099166422,7),(1463,1111867222,6),(1463,1130616022,7),(1463,1143316823,6),(1463,1162065623,7),(1463,1174766423,6),(1463,1193515223,7),(1463,1206820823,6),(1463,1224964823,7),(1463,1238270424,6),(1463,1256414424,7),(1463,1269720024,6),(1463,1288468824,7),(1463,1301169624,4),(1463,1414263625,7),(1463,1459022426,4),(1464,-2147483648,2),(1464,-1570413600,1),(1464,-1552186800,2),(1464,-1538359200,1),(1464,-1522551600,2),(1464,-1507514400,1),(1464,-1490583600,2),(1464,-1473645600,1),(1464,-1460948400,2),(1464,-399866400,1),(1464,-386650800,2),(1464,-368330400,1),(1464,-355114800,2),(1464,-336794400,1),(1464,-323578800,2),(1464,-305172000,1),(1464,-291956400,2),(1464,-273636000,1),(1464,-260420400,2),(1464,78012000,1),(1464,86734801,2),(1464,105055202,1),(1464,118270802,2),(1464,136591203,1),(1464,149806803,2),(1464,168127204,1),(1464,181342804,2),(1464,199749605,1),(1464,212965205,2),(1464,231285606,1),(1464,244501206,2),(1464,262735207,1),(1464,275950807,2),(1464,452210412,1),(1464,466722012,2),(1464,483746412,1),(1464,498258013,2),(1464,515282413,1),(1464,529794013,2),(1464,546818413,1),(1464,561330013,2),(1464,581119214,1),(1464,592952414,2),(1464,610754414,1),(1464,624488414,2),(1464,641512815,1),(1464,656024415,2),(1464,673048816,1),(1464,687560416,2),(1464,704671216,1),(1464,718146017,2),(1464,733269617,1),(1464,748990818,2),(1464,764719218,1),(1464,780440419,2),(1464,796168819,1),(1464,811890019,2),(1464,828223220,1),(1464,843944420,2),(1464,859672820,1),(1464,875394021,2),(1464,891122421,1),(1464,906843621,2),(1464,922572022,1),(1464,941317222,2),(1464,954021622,1),(1464,972766822,2),(1464,985471222,1),(1464,1004216422,2),(1464,1017525622,1),(1464,1035666022,2),(1464,1048975222,1),(1464,1067115622,2),(1464,1080424822,1),(1464,1099170022,2),(1464,1111874422,1),(1464,1130619622,2),(1464,1143324023,1),(1464,1162069223,2),(1464,1174773623,1),(1464,1193518823,2),(1464,1206828023,1),(1464,1224968423,2),(1464,1238277624,1),(1464,1256418024,2),(1464,1269727224,1),(1464,1288472424,2),(1464,1301176824,1),(1464,1319922024,2),(1464,1332626424,1),(1464,1351371625,2),(1464,1364680825,1),(1464,1382821225,2),(1464,1396130425,1),(1464,1414270825,2),(1464,1427580025,1),(1464,1445720426,2),(1464,1459029626,1),(1464,1477774826,2),(1464,1490479227,1),(1464,1509224427,2),(1464,1521928827,1),(1464,1540674027,2),(1464,1553983227,1),(1464,1572123627,2),(1464,1585432827,1),(1464,1603573227,2),(1464,1616882427,1),(1464,1635627627,2),(1464,1648332027,1),(1464,1667077227,2),(1464,1679781627,1),(1464,1698526827,2),(1464,1711836027,1),(1464,1729976427,2),(1464,1743285627,1),(1464,1761426027,2),(1464,1774735227,1),(1464,1792875627,2),(1464,1806184827,1),(1464,1824930027,2),(1464,1837634427,1),(1464,1856379627,2),(1464,1869084027,1),(1464,1887829227,2),(1464,1901138427,1),(1464,1919278827,2),(1464,1932588027,1),(1464,1950728427,2),(1464,1964037627,1),(1464,1982782827,2),(1464,1995487227,1),(1464,2014232427,2),(1464,2026936827,1),(1464,2045682027,2),(1464,2058386427,1),(1464,2077131627,2),(1464,2090440827,1),(1464,2108581227,2),(1464,2121890427,1),(1464,2140030827,2),(1465,-2147483648,0),(1465,-1441169904,1),(1465,-1247547600,3),(1465,354909609,2),(1465,370717210,3),(1465,386445610,2),(1465,402253211,3),(1465,417981611,2),(1465,433789212,3),(1465,449604012,2),(1465,465336012,4),(1465,481060812,5),(1465,496785613,4),(1465,512510413,5),(1465,528235213,4),(1465,543960013,5),(1465,559684813,4),(1465,575409614,5),(1465,591134414,4),(1465,606859214,5),(1465,622584014,4),(1465,638308815,5),(1465,654638415,4),(1465,670363216,6),(1465,683582416,1),(1465,703018816,6),(1465,717530417,1),(1465,734468417,6),(1465,748980018,1),(1465,765918018,6),(1465,780429619,1),(1465,797367619,6),(1465,811879219,1),(1465,828817220,6),(1465,843933620,1),(1465,859671020,8),(1465,877811421,1),(1465,891120621,8),(1465,909261021,1),(1465,922570222,8),(1465,941315422,1),(1465,954019822,8),(1465,972765022,1),(1465,985469422,8),(1465,1004214622,1),(1465,1017523822,8),(1465,1035664222,1),(1465,1048973422,8),(1465,1067113822,1),(1465,1080423022,8),(1465,1099168222,1),(1465,1111872622,8),(1465,1123783222,3),(1466,-2147483648,0),(1466,-1383464380,1),(1466,-1167636600,2),(1467,-2147483648,1),(1467,-2019705670,2),(1467,-891581400,3),(1467,-872058600,2),(1467,-862637400,3),(1467,-764145000,2),(1468,-2147483648,0),(1468,-1579419232,1),(1468,-1247558400,3),(1468,354898809,2),(1468,370706410,3),(1468,386434810,2),(1468,402242411,3),(1468,417970811,2),(1468,433778412,3),(1468,449593212,2),(1468,465325212,4),(1468,481050012,5),(1468,496774813,4),(1468,512499613,5),(1468,528224413,4),(1468,543949213,5),(1468,559674013,4),(1468,575398814,5),(1468,591123614,4),(1468,606848414,5),(1468,622573214,4),(1468,638298015,5),(1468,654627615,4),(1468,670352416,6),(1468,686080816,7),(1468,695757616,4),(1468,701802016,5),(1468,717526817,4),(1468,733251617,5),(1468,748976418,4),(1468,764701218,5),(1468,780426019,4),(1468,796150819,5),(1468,811875619,4),(1468,828205220,5),(1468,846349220,4),(1468,859654820,5),(1468,877798821,4),(1468,891104421,5),(1468,909248421,4),(1468,922554022,5),(1468,941302822,4),(1468,954003622,5),(1468,972752422,4),(1468,985453222,5),(1468,1004202022,4),(1468,1017507622,5),(1468,1035651622,4),(1468,1048957222,5),(1468,1067101222,4),(1468,1080406822,5),(1468,1099155622,4),(1468,1111856422,5),(1468,1130605222,4),(1468,1143306023,5),(1468,1162054823,4),(1468,1174755623,5),(1468,1193504423,4),(1468,1206810023,5),(1468,1224954023,4),(1468,1238259624,5),(1468,1256403624,4),(1468,1269709224,5),(1468,1288458024,4),(1468,1301158824,8),(1468,1414252825,7),(1468,1459015226,3),(1469,-2147483648,0),(1469,-2032933080,1),(1469,252435606,2),(1469,417974411,4),(1469,433778412,3),(1469,449593212,4),(1469,465314412,3),(1469,481042812,4),(1469,496764013,3),(1469,512492413,4),(1469,528213613,3),(1469,543942013,4),(1469,559663213,3),(1469,575391614,4),(1469,591112814,3),(1469,606841214,4),(1469,622562414,3),(1469,638290815,4),(1469,654616815,3),(1469,670345216,4),(1469,686066416,3),(1469,701794816,4),(1469,717516017,3),(1469,733244417,4),(1469,748965618,3),(1469,764694018,4),(1469,780415219,3),(1469,796143619,4),(1469,811864819,3),(1469,828198020,4),(1469,843919220,3),(1469,859647620,4),(1469,875368821,3),(1469,891097221,4),(1469,906818421,3),(1469,988390822,4),(1469,1001692822,3),(1469,1017421222,4),(1469,1033142422,3),(1469,1048870822,4),(1469,1064592022,3),(1469,1080320422,4),(1469,1096041622,3),(1469,1111770022,4),(1469,1127491222,3),(1469,1143219623,4),(1469,1159545623,3),(1469,1206889223,2),(1469,1427479225,5),(1469,1443193226,2),(1469,1458928826,5),(1469,1474642826,2),(1470,-2147483648,2),(1470,-933667200,1),(1470,-922093200,2),(1470,-908870400,1),(1470,-888829200,2),(1470,-881049600,1),(1470,-767869200,2),(1470,-745833600,1),(1470,-733827600,2),(1470,-716889600,1),(1470,-699613200,2),(1470,-683884800,1),(1470,-670669200,2),(1470,-652348800,1),(1470,-650019600,2),(1470,515527213,1),(1470,527014813,2),(1470,545162413,1),(1470,558464413,2),(1470,577216814,1),(1470,589914014,2),(1470,608666414,1),(1470,621968414,2),(1470,640116015,1),(1470,653418015,2),(1470,671565616,1),(1470,684867616,2),(1471,-2147483648,2),(1471,-933667200,1),(1471,-922093200,2),(1471,-908870400,1),(1471,-888829200,2),(1471,-881049600,1),(1471,-767869200,2),(1471,-745833600,1),(1471,-733827600,2),(1471,-716889600,1),(1471,-699613200,2),(1471,-683884800,1),(1471,-670669200,2),(1471,-652348800,1),(1471,-650019600,2),(1471,515527213,1),(1471,527014813,2),(1471,545162413,1),(1471,558464413,2),(1471,577216814,1),(1471,589914014,2),(1471,608666414,1),(1471,621968414,2),(1471,640116015,1),(1471,653418015,2),(1471,671565616,1),(1471,684867616,2),(1472,-2147483648,1),(1472,-2019705572,2),(1472,-883287000,3),(1472,-862639200,4),(1472,-764051400,2),(1472,832962620,5),(1472,846266420,6),(1472,1145039423,2),(1473,-2147483648,1),(1473,-891582800,2),(1473,-872058600,3),(1473,-862637400,2),(1473,-576138600,4),(1473,1245430824,5),(1473,1262278824,4),(1474,-2147483648,0),(1474,-1577931912,2),(1474,-1568592000,1),(1474,-1554080400,2),(1474,-1537142400,1),(1474,-1522630800,2),(1474,-1505692800,1),(1474,-1491181200,2),(1474,-1474243200,1),(1474,-1459126800,2),(1474,-242265600,1),(1474,-228877200,2),(1474,-210556800,1),(1474,-197427600,2),(1474,-178934400,1),(1474,-165718800,2),(1474,-147398400,1),(1474,-134269200,2),(1474,-116467200,1),(1474,-102646800,2),(1474,-84326400,1),(1474,-71110800,2),(1474,-52704000,1),(1474,-39488400,2),(1474,-21168000,1),(1474,-7952400,2),(1474,10368000,1),(1474,23583600,2),(1474,41904000,1),(1474,55119600,2),(1474,73526400,1),(1474,86742001,2),(1474,105062402,1),(1474,118278002,2),(1474,136598403,1),(1474,149814003,2),(1474,168134404,1),(1474,181350004,2),(1474,199756805,1),(1474,212972405,2),(1474,231292806,1),(1474,241916406,2),(1474,262828807,1),(1474,273452407,2),(1474,418694411,1),(1474,433810812,2),(1474,450316812,1),(1474,465433212,2),(1474,508896013,1),(1474,529196413,2),(1474,541555213,1),(1474,562633213,2),(1474,574387214,1),(1474,594255614,2),(1474,607305614,1),(1474,623199614,2),(1474,638928015,1),(1474,654649215,2),(1474,670456816,1),(1474,686264416,2),(1474,702684016,1),(1474,717886817,2),(1474,733096817,1),(1474,748904418,2),(1474,765151218,1),(1474,780958819,2),(1474,796687219,1),(1474,812494819,2),(1474,828309620,1),(1474,844117220,2),(1474,859759220,1),(1474,875653221,2),(1474,891208821,1),(1474,907189221,2),(1474,922917622,1),(1474,938725222,2),(1474,954540022,1),(1474,970347622,2),(1474,986076022,1),(1474,1001883622,2),(1474,1017612022,1),(1474,1033419622,2),(1474,1049148022,1),(1474,1064955622,2),(1474,1080770422,1),(1474,1096578022,2),(1474,1112306422,1),(1474,1128114022,2),(1474,1143842423,1),(1474,1158872423,2),(1474,1175205623,1),(1474,1193950823,2),(1474,1207260023,1),(1474,1225486823,2),(1474,1238104824,1),(1474,1256850024,2),(1474,1270159224,1),(1474,1288299624,2),(1474,1301608824,1),(1474,1319749224,2),(1474,1333058424,1),(1474,1351198825,2),(1474,1364508025,1),(1474,1382648425,2),(1474,1395957625,1),(1474,1414702825,2),(1474,1427407225,1),(1474,1446152426,2),(1474,1458856826,1),(1474,1477602026,2),(1474,1490911227,1),(1474,1509051627,2),(1474,1522360827,1),(1474,1540501227,2),(1474,1553810427,1),(1474,1571950827,2),(1474,1585260027,1),(1474,1604005227,2),(1474,1616709627,1),(1474,1635454827,2),(1474,1648159227,1),(1474,1666904427,2),(1474,1680213627,1),(1474,1698354027,2),(1474,1711663227,1),(1474,1729803627,2),(1474,1743112827,1),(1474,1761858027,2),(1474,1774562427,1),(1474,1793307627,2),(1474,1806012027,1),(1474,1824757227,2),(1474,1838066427,1),(1474,1856206827,2),(1474,1869516027,1),(1474,1887656427,2),(1474,1900965627,1),(1474,1919106027,2),(1474,1932415227,1),(1474,1951160427,2),(1474,1963864827,1),(1474,1982610027,2),(1474,1995314427,1),(1474,2014059627,2),(1474,2027368827,1),(1474,2045509227,2),(1474,2058818427,1),(1474,2076958827,2),(1474,2090268027,1),(1474,2109013227,2),(1474,2121717627,1),(1474,2140462827,2),(1475,-2147483648,1),(1475,-891582800,2),(1475,-872058600,3),(1475,-862637400,2),(1475,-576138600,4),(1475,1245430824,5),(1475,1262278824,4),(1476,-2147483648,0),(1476,-1830414140,1),(1476,-879152400,2),(1476,199897205,1),(1476,969120022,2),(1477,-2147483648,0),(1477,-1577936472,1),(1478,-2147483648,0),(1478,-1441168512,1),(1478,-1247547600,3),(1478,354909609,2),(1478,370717210,3),(1478,386445610,2),(1478,402253211,3),(1478,417981611,2),(1478,433789212,3),(1478,449604012,2),(1478,465336012,4),(1478,481060812,5),(1478,496785613,4),(1478,512510413,5),(1478,528235213,4),(1478,543960013,5),(1478,559684813,4),(1478,575409614,5),(1478,591134414,4),(1478,606859214,5),(1478,622584014,4),(1478,638308815,5),(1478,654638415,4),(1478,670363216,6),(1478,684363616,7),(1479,-2147483648,0),(1479,-1518920148,2),(1479,166572004,1),(1479,182293204,2),(1479,200959205,1),(1479,213829205,2),(1479,228866406,1),(1479,243982806,2),(1479,260316007,1),(1479,276123607,2),(1479,291765608,1),(1479,307486808,2),(1479,323820009,1),(1479,338936409,2),(1479,354664809,1),(1479,370386010,2),(1479,386114410,1),(1479,401835611,2),(1479,417564011,1),(1479,433285212,2),(1479,449013612,1),(1479,465339612,2),(1479,481068012,1),(1479,496789213,2),(1479,512517613,1),(1479,528238813,2),(1479,543967213,1),(1479,559688413,2),(1479,575416814,1),(1479,591138014,2),(1479,606866414,1),(1479,622587614,2),(1479,638316015,1),(1479,654642015,2),(1479,670370416,1),(1479,686091616,2),(1479,701820016,1),(1479,717541217,2),(1479,733269617,1),(1479,748990818,2),(1479,764719218,1),(1479,780440419,2),(1479,796168819,1),(1479,811890019,2),(1479,828223220,1),(1479,843944420,2),(1479,859672820,1),(1479,875394021,2),(1479,891122421,1),(1479,909277221,3),(1479,922582822,4),(1479,941331622,3),(1479,954032422,4),(1479,972781222,3),(1479,985482022,4),(1479,1004230822,3),(1479,1017536422,4),(1479,1035680422,3),(1479,1048986022,4),(1479,1067130022,3),(1479,1080435622,4),(1479,1099184422,3),(1479,1111885222,4),(1479,1130634022,3),(1479,1143334823,4),(1479,1162083623,3),(1479,1174784423,4),(1479,1193533223,3),(1479,1206838823,4),(1479,1224982823,3),(1479,1238288424,4),(1479,1256432424,3),(1479,1269738024,4),(1479,1288486824,3),(1479,1301187624,4),(1479,1319936424,3),(1479,1332637224,4),(1479,1351386025,3),(1479,1364691625,4),(1479,1382835625,3),(1479,1396141225,4),(1479,1414285225,3),(1479,1427590825,4),(1479,1445734826,3),(1479,1459040426,4),(1479,1473282026,5),(1479,1509238827,3),(1479,1521939627,4),(1479,1540688427,3),(1479,1553994027,4),(1479,1572138027,3),(1479,1585443627,4),(1479,1603587627,3),(1479,1616893227,4),(1479,1635642027,3),(1479,1648342827,4),(1479,1667091627,3),(1479,1679792427,4),(1479,1698541227,3),(1479,1711846827,4),(1479,1729990827,3),(1479,1743296427,4),(1479,1761440427,3),(1479,1774746027,4),(1479,1792890027,3),(1479,1806195627,4),(1479,1824944427,3),(1479,1837645227,4),(1479,1856394027,3),(1479,1869094827,4),(1479,1887843627,3),(1479,1901149227,4),(1479,1919293227,3),(1479,1932598827,4),(1479,1950742827,3),(1479,1964048427,4),(1479,1982797227,3),(1479,1995498027,4),(1479,2014246827,3),(1479,2026947627,4),(1479,2045696427,3),(1479,2058397227,4),(1479,2077146027,3),(1479,2090451627,4),(1479,2108595627,3),(1479,2121901227,4),(1479,2140045227,3),(1480,-2147483648,2),(1480,-933645600,1),(1480,-857358000,2),(1480,-844300800,1),(1480,-825822000,2),(1480,-812685600,1),(1480,-794199600,2),(1480,-779853600,1),(1480,-762656400,2),(1480,-748310400,1),(1480,-731127600,2),(1480,-399088800,1),(1480,-386650800,2),(1480,-368330400,1),(1480,-355114800,2),(1480,-336790800,1),(1480,-323654400,2),(1480,-305168400,1),(1480,-292032000,2),(1480,-273632400,1),(1480,-260496000,2),(1480,-242096400,1),(1480,-228960000,2),(1480,-210560400,1),(1480,-197424000,2),(1480,-178938000,1),(1480,-165801600,2),(1480,-147402000,1),(1480,-134265600,2),(1480,-115866000,1),(1480,-102643200,2),(1480,-84330000,1),(1480,-81313200,4),(1480,142380003,3),(1480,150843603,4),(1480,167176804,3),(1480,178664404,4),(1480,334015209,3),(1480,337644009,4),(1480,452556012,3),(1480,462232812,4),(1480,482277612,3),(1480,495579613,4),(1480,516751213,3),(1480,526424413,4),(1480,545436013,3),(1480,558478813,4),(1480,576626414,3),(1480,589323614,4),(1480,609890414,3),(1480,620773214,4),(1480,638316015,3),(1480,651618015,4),(1480,669765616,3),(1480,683672416,4),(1480,701820016,3),(1480,715726817,4),(1480,733701617,3),(1480,747176418,4),(1480,765151218,3),(1480,778021219,4),(1480,796600819,3),(1480,810075619,4),(1480,820447219,2),(1480,828655220,1),(1480,843170420,5),(1480,860104820,1),(1480,874620021,5),(1480,891554421,1),(1480,906069621,5),(1480,915141621,2),(1480,924213622,1),(1480,939934822,2),(1480,956268022,1),(1480,971989222,2),(1480,987717622,1),(1480,1003438822,2),(1480,1019167222,1),(1480,1034888422,2),(1480,1050616822,1),(1480,1066338022,2),(1480,1082066422,1),(1480,1096581622,2),(1480,1113516022,1),(1480,1128380422,2),(1480,1143842423,1),(1480,1158872423,2),(1480,1175378423,1),(1480,1189638023,2),(1480,1206655223,1),(1480,1219957223,2),(1480,1238104824,1),(1480,1252015224,2),(1480,1269640884,1),(1480,1281474024,2),(1480,1301608884,1),(1480,1312146024,2),(1480,1333058424,1),(1480,1348178425,2),(1480,1364508025,1),(1480,1380229225,2),(1480,1395957625,1),(1480,1414098025,2),(1480,1427493625,1),(1480,1445547626,2),(1480,1458946826,1),(1480,1477692026,2),(1480,1490396427,1),(1480,1509141627,2),(1480,1521846027,1),(1480,1540591227,2),(1480,1553810427,1),(1480,1572040827,2),(1480,1585260027,1),(1480,1604095227,2),(1480,1616709627,1),(1480,1635544827,2),(1480,1648159227,1),(1480,1666994427,2),(1480,1680213627,1),(1480,1698444027,2),(1480,1711663227,1),(1480,1729893627,2),(1480,1743112827,1),(1480,1761343227,2),(1480,1774562427,1),(1480,1793397627,2),(1480,1806012027,1),(1480,1824847227,2),(1480,1838066427,1),(1480,1856296827,2),(1480,1869516027,1),(1480,1887746427,2),(1480,1900965627,1),(1480,1919196027,2),(1480,1932415227,1),(1480,1950645627,2),(1480,1963864827,1),(1480,1982700027,2),(1480,1995314427,1),(1480,2014149627,2),(1480,2027368827,1),(1480,2045599227,2),(1480,2058818427,1),(1480,2077048827,2),(1480,2090268027,1),(1480,2108498427,2),(1480,2121717627,1),(1480,2140552827,2),(1481,-2147483648,2),(1481,-933667200,1),(1481,-922093200,2),(1481,-908870400,1),(1481,-888829200,2),(1481,-881049600,1),(1481,-767869200,2),(1481,-745833600,1),(1481,-733827600,2),(1481,-716889600,1),(1481,-699613200,2),(1481,-683884800,1),(1481,-670669200,2),(1481,-652348800,1),(1481,-650019600,2),(1481,515527213,1),(1481,527014813,2),(1481,545162413,1),(1481,558464413,2),(1481,577216814,1),(1481,589914014,2),(1481,608666414,1),(1481,621968414,2),(1481,640116015,1),(1481,653418015,2),(1481,671565616,1),(1481,684867616,2),(1482,-2147483648,2),(1482,-933645600,1),(1482,-857358000,2),(1482,-844300800,1),(1482,-825822000,2),(1482,-812685600,1),(1482,-794199600,2),(1482,-779853600,1),(1482,-762656400,2),(1482,-748310400,1),(1482,-731127600,2),(1482,-399088800,1),(1482,-386650800,2),(1482,-368330400,1),(1482,-355114800,2),(1482,-336790800,1),(1482,-323654400,2),(1482,-305168400,1),(1482,-292032000,2),(1482,-273632400,1),(1482,-260496000,2),(1482,-242096400,1),(1482,-228960000,2),(1482,-210560400,1),(1482,-197424000,2),(1482,-178938000,1),(1482,-165801600,2),(1482,-147402000,1),(1482,-134265600,2),(1482,-115866000,1),(1482,-102643200,2),(1482,-84330000,1),(1482,-81313200,4),(1482,142380003,3),(1482,150843603,4),(1482,167176804,3),(1482,178664404,4),(1482,334015209,3),(1482,337644009,4),(1482,452556012,3),(1482,462232812,4),(1482,482277612,3),(1482,495579613,4),(1482,516751213,3),(1482,526424413,4),(1482,545436013,3),(1482,558478813,4),(1482,576626414,3),(1482,589323614,4),(1482,609890414,3),(1482,620773214,4),(1482,638316015,3),(1482,651618015,4),(1482,669765616,3),(1482,683672416,4),(1482,701820016,3),(1482,715726817,4),(1482,733701617,3),(1482,747176418,4),(1482,765151218,3),(1482,778021219,4),(1482,796600819,3),(1482,810075619,4),(1482,820447219,2),(1482,828655220,1),(1482,843170420,5),(1482,860104820,1),(1482,874620021,5),(1482,891554421,1),(1482,906069621,5),(1482,915141621,2),(1482,924213622,1),(1482,939934822,2),(1482,956268022,1),(1482,971989222,2),(1482,987717622,1),(1482,1003438822,2),(1482,1019167222,1),(1482,1034888422,2),(1482,1050616822,1),(1482,1066338022,2),(1482,1082066422,1),(1482,1096581622,2),(1482,1113516022,1),(1482,1128380422,2),(1482,1143842423,1),(1482,1158872423,2),(1482,1175378423,1),(1482,1189638023,2),(1482,1206655223,1),(1482,1220216423,2),(1482,1238104824,1),(1482,1252015224,2),(1482,1269554424,1),(1482,1281474024,2),(1482,1301608884,1),(1482,1312146024,2),(1482,1314655224,1),(1482,1317330024,2),(1482,1333058424,1),(1482,1348178425,2),(1482,1364508025,1),(1482,1380229225,2),(1482,1395957625,1),(1482,1414098025,2),(1482,1427493625,1),(1482,1445547626,2),(1482,1458946826,1),(1482,1477692026,2),(1482,1490396427,1),(1482,1509141627,2),(1482,1521846027,1),(1482,1540591227,2),(1482,1553810427,1),(1482,1572040827,2),(1482,1585260027,1),(1482,1604095227,2),(1482,1616709627,1),(1482,1635544827,2),(1482,1648159227,1),(1482,1666994427,2),(1482,1680213627,1),(1482,1698444027,2),(1482,1711663227,1),(1482,1729893627,2),(1482,1743112827,1),(1482,1761343227,2),(1482,1774562427,1),(1482,1793397627,2),(1482,1806012027,1),(1482,1824847227,2),(1482,1838066427,1),(1482,1856296827,2),(1482,1869516027,1),(1482,1887746427,2),(1482,1900965627,1),(1482,1919196027,2),(1482,1932415227,1),(1482,1950645627,2),(1482,1963864827,1),(1482,1982700027,2),(1482,1995314427,1),(1482,2014149627,2),(1482,2027368827,1),(1482,2045599227,2),(1482,2058818427,1),(1482,2077048827,2),(1482,2090268027,1),(1482,2108498427,2),(1482,2121717627,1),(1482,2140552827,2),(1483,-2147483648,0),(1483,-2004073600,1),(1483,-1851577590,2),(1483,-852105600,3),(1483,-782643600,4),(1483,-767869200,2),(1483,-718095600,3),(1483,-457776000,2),(1483,-315648000,3),(1483,171820804,2),(1484,-2147483648,0),(1484,-2056690800,1),(1484,-900910800,2),(1484,-891579600,3),(1484,-884248200,4),(1484,-761209200,1),(1484,-747907200,2),(1484,-728541000,5),(1484,-717049800,6),(1484,-697091400,5),(1484,-683785800,6),(1484,-668061000,5),(1484,-654755400,2),(1484,-636611400,5),(1484,-623305800,2),(1484,-605161800,5),(1484,-591856200,2),(1484,-573712200,5),(1484,-559801800,2),(1484,-541657800,5),(1484,-528352200,2),(1484,-510211800,1),(1484,-498112200,2),(1484,-478762200,1),(1484,-466662600,2),(1484,-446707800,1),(1484,-435213000,2),(1484,-415258200,1),(1484,-403158600,2),(1484,-383808600,1),(1484,-371709000,2),(1484,-352359000,1),(1484,-340259400,2),(1484,-320909400,1),(1484,-308809800,2),(1484,-288855000,1),(1484,-277360200,2),(1484,-257405400,1),(1484,-245910600,2),(1484,-225955800,1),(1484,-213856200,2),(1484,-194506200,1),(1484,-182406600,2),(1484,-163056600,1),(1484,-148537800,2),(1484,-132816600,1),(1484,-117088200,2),(1484,-101367000,1),(1484,-85638600,2),(1484,-69312600,1),(1484,-53584200,2),(1484,-37863000,1),(1484,-22134600,2),(1484,-6413400,1),(1484,9315000,2),(1484,25036200,1),(1484,40764600,2),(1484,56485800,1),(1484,72214200,2),(1484,88540201,1),(1484,104268602,2),(1484,119989802,1),(1484,126041402,2),(1484,151439403,1),(1484,167167804,2),(1484,182889004,1),(1484,198617405,2),(1484,214338605,1),(1484,295385408,2),(1484,309292208,1),(1485,-2147483648,0),(1485,-2032927596,1),(1485,252439206,3),(1485,417978011,2),(1485,433785612,3),(1485,449600412,2),(1485,465321612,3),(1485,481050012,2),(1485,496771213,3),(1485,512499613,2),(1485,528220813,3),(1485,543949213,2),(1485,559670413,3),(1485,575398814,2),(1485,591120014,3),(1485,606848414,2),(1485,622569614,3),(1485,638298015,2),(1485,654624015,3),(1485,670352416,2),(1485,686073616,3),(1485,701802016,2),(1485,717523217,3),(1485,733251617,2),(1485,748972818,3),(1485,764701218,2),(1485,780422419,3),(1485,796150819,2),(1485,811872019,3),(1485,828205220,2),(1485,843926420,3),(1485,859654820,2),(1485,875376021,3),(1485,891104421,2),(1485,906825621,3),(1485,988398022,2),(1485,1001700022,3),(1485,1017428422,2),(1485,1033149622,3),(1485,1048878022,2),(1485,1064599222,3),(1485,1080327622,2),(1485,1096048822,3),(1485,1111777222,2),(1485,1127498422,3),(1485,1143226823,2),(1485,1159552823,3),(1485,1427482825,2),(1485,1443196826,3),(1485,1458932426,2),(1485,1474646426,3),(1486,-2147483648,1),(1486,-1575874625,2),(1486,-1247554800,4),(1486,354902409,3),(1486,370710010,4),(1486,386438410,3),(1486,402246011,4),(1486,417974411,3),(1486,433782012,4),(1486,449596812,3),(1486,465328812,5),(1486,481053612,6),(1486,496778413,5),(1486,512503213,6),(1486,528228013,5),(1486,543952813,6),(1486,559677613,5),(1486,575402414,6),(1486,591127214,5),(1486,606852014,6),(1486,622576814,5),(1486,638301615,6),(1486,654631215,5),(1486,670356016,7),(1486,686084416,8),(1486,695761216,5),(1486,701805616,6),(1486,717530417,5),(1486,733255217,6),(1486,748980018,5),(1486,764704818,6),(1486,780429619,5),(1486,796154419,6),(1486,811879219,5),(1486,828208820,6),(1486,846352820,5),(1486,859658420,6),(1486,877802421,5),(1486,891108021,6),(1486,909252021,5),(1486,922557622,6),(1486,941306422,5),(1486,954007222,6),(1486,972756022,5),(1486,985456822,6),(1486,1004205622,5),(1486,1017511222,6),(1486,1035655222,5),(1486,1048960822,6),(1486,1067104822,5),(1486,1080410422,6),(1486,1099159222,5),(1486,1111860022,6),(1486,1130608822,5),(1486,1143309623,6),(1486,1162058423,5),(1486,1174759223,6),(1486,1193508023,5),(1486,1206813623,6),(1486,1224957623,5),(1486,1238263224,6),(1486,1256407224,5),(1486,1269712824,6),(1486,1288461624,5),(1486,1301162424,9),(1486,1414256425,5),(1487,-2147483648,1),(1487,-1869875816,3),(1487,-1693706400,2),(1487,-1680490800,3),(1487,-1570413600,2),(1487,-1552186800,3),(1487,-1538359200,2),(1487,-1522551600,3),(1487,-1507514400,2),(1487,-1490583600,3),(1487,-1440208800,2),(1487,-1428030000,3),(1487,-1409709600,2),(1487,-1396494000,3),(1487,-931053600,2),(1487,-922676400,3),(1487,-917834400,2),(1487,-892436400,3),(1487,-875844000,2),(1487,-764737200,3),(1487,-744343200,2),(1487,-733806000,3),(1487,-716436000,2),(1487,-701924400,3),(1487,-684986400,2),(1487,-670474800,3),(1487,-654141600,2),(1487,-639025200,3),(1487,-622087200,2),(1487,-606970800,3),(1487,-590032800,2),(1487,-575521200,3),(1487,-235620000,2),(1487,-194842800,3),(1487,-177732000,2),(1487,-165726000,3),(1487,107910002,2),(1487,121215602,3),(1487,133920003,2),(1487,152665203,3),(1487,164678404,2),(1487,184114804,3),(1487,196214405,2),(1487,215564405,3),(1487,228873606,2),(1487,245804406,3),(1487,260323207,2),(1487,267915607,4),(1487,428454012,5),(1487,433893612,4),(1487,468111612,3),(1487,482799612,6),(1487,496710013,7),(1487,512521213,6),(1487,528246013,7),(1487,543970813,6),(1487,559695613,7),(1487,575420414,6),(1487,591145214,7),(1487,606870014,6),(1487,622594814,7),(1487,638319615,6),(1487,654649215,7),(1487,670374016,6),(1487,686098816,7),(1487,701823616,6),(1487,717548417,7),(1487,733273217,6),(1487,748998018,7),(1487,764118018,6),(1487,780447619,7),(1487,796172419,6),(1487,811897219,7),(1487,828226820,6),(1487,846370820,7),(1487,859676420,6),(1487,877820421,7),(1487,891126021,6),(1487,909270021,7),(1487,922575622,6),(1487,941324422,7),(1487,954025222,6),(1487,972774022,7),(1487,985474822,6),(1487,1004223622,7),(1487,1017529222,6),(1487,1035673222,7),(1487,1048978822,6),(1487,1067122822,7),(1487,1080428422,6),(1487,1099177222,7),(1487,1111878022,6),(1487,1130626822,7),(1487,1143327623,6),(1487,1162076423,7),(1487,1167602423,3),(1487,1174784423,8),(1487,1193533223,9),(1487,1206838823,8),(1487,1224982823,9),(1487,1238288424,8),(1487,1256432424,9),(1487,1269738024,8),(1487,1288486824,9),(1487,1301274024,8),(1487,1319936424,9),(1487,1332637224,8),(1487,1351386025,9),(1487,1364691625,8),(1487,1382835625,9),(1487,1396227625,8),(1487,1414285225,9),(1487,1427590825,8),(1487,1446944426,9),(1487,1459040426,8),(1487,1473195626,4),(1488,-2147483648,1),(1488,-1451719200,2),(1488,-1172906400,3),(1488,-876641400,4),(1488,-766054800,3),(1488,-683883000,5),(1488,-620812800,3),(1488,-189415800,6),(1489,-2147483648,0),(1489,-1172913768,1),(1489,-799491600,2),(1489,-189423000,3),(1490,-2147483648,1),(1490,-1641003640,3),(1490,-933645600,2),(1490,-857358000,3),(1490,-844300800,2),(1490,-825822000,3),(1490,-812685600,2),(1490,-794199600,3),(1490,-779853600,2),(1490,-762656400,3),(1490,-748310400,2),(1490,-731127600,3),(1490,-681962400,4),(1490,-673243200,2),(1490,-667962000,3),(1490,-652327200,2),(1490,-636426000,3),(1490,-622087200,2),(1490,-608947200,3),(1490,-591847200,2),(1490,-572486400,3),(1490,-558576000,2),(1490,-542851200,3),(1490,-527731200,2),(1490,-514425600,3),(1490,-490845600,2),(1490,-482986800,3),(1490,-459475200,2),(1490,-451537200,3),(1490,-428551200,2),(1490,-418262400,3),(1490,-400032000,2),(1490,-387428400,3),(1490,142380003,2),(1490,150843603,3),(1490,167176804,2),(1490,178664404,3),(1490,334015209,2),(1490,337644009,3),(1490,452556012,2),(1490,462232812,3),(1490,482277612,2),(1490,495579613,3),(1490,516751213,2),(1490,526424413,3),(1490,545436013,2),(1490,558478813,3),(1490,576626414,2),(1490,589323614,3),(1490,609890414,2),(1490,620773214,3),(1490,638316015,2),(1490,651618015,3),(1490,669765616,2),(1490,683672416,3),(1490,701820016,2),(1490,715726817,3),(1490,733701617,2),(1490,747176418,3),(1490,765151218,2),(1490,778021219,3),(1490,796600819,2),(1490,810075619,3),(1490,826840820,2),(1490,842821220,3),(1490,858895220,2),(1490,874184421,3),(1490,890344821,2),(1490,905029221,3),(1490,923011222,2),(1490,936313222,3),(1490,955670422,2),(1490,970783222,3),(1490,986770822,2),(1490,1001282422,3),(1490,1017356422,2),(1490,1033941622,3),(1490,1048806022,2),(1490,1065132022,3),(1490,1081292422,2),(1490,1095804022,3),(1490,1112313622,2),(1490,1128812422,3),(1490,1143763223,2),(1490,1159657223,3),(1490,1175212823,2),(1490,1189897223,3),(1490,1206662423,2),(1490,1223161223,3),(1490,1238112024,2),(1490,1254006024,3),(1490,1269561624,2),(1490,1284246024,3),(1490,1301616024,2),(1490,1317510024,3),(1490,1333065624,2),(1490,1348354825,3),(1490,1364515225,2),(1490,1382828425,3),(1490,1395964825,2),(1490,1414278025,3),(1490,1427414425,2),(1490,1445727626,3),(1490,1458864026,2),(1490,1477782026,3),(1490,1490313627,2),(1490,1509231627,3),(1490,1521763227,2),(1490,1540681227,3),(1490,1553817627,2),(1490,1572130827,3),(1490,1585267227,2),(1490,1603580427,3),(1490,1616716827,2),(1490,1635634827,3),(1490,1648166427,2),(1490,1667084427,3),(1490,1679616027,2),(1490,1698534027,3),(1490,1711670427,2),(1490,1729983627,3),(1490,1743120027,2),(1490,1761433227,3),(1490,1774569627,2),(1490,1792882827,3),(1490,1806019227,2),(1490,1824937227,3),(1490,1837468827,2),(1490,1856386827,3),(1490,1868918427,2),(1490,1887836427,3),(1490,1900972827,2),(1490,1919286027,3),(1490,1932422427,2),(1490,1950735627,3),(1490,1963872027,2),(1490,1982790027,3),(1490,1995321627,2),(1490,2014239627,3),(1490,2026771227,2),(1490,2045689227,3),(1490,2058220827,2),(1490,2077138827,3),(1490,2090275227,2),(1490,2108588427,3),(1490,2121724827,2),(1490,2140038027,3),(1491,-2147483648,1),(1491,-788932800,2),(1492,-2147483648,0),(1492,-1487759676,1),(1492,-1247569200,3),(1492,354888009,2),(1492,370695610,3),(1492,386424010,2),(1492,402231611,3),(1492,417960011,2),(1492,433767612,3),(1492,449582412,2),(1492,465314412,4),(1492,481039212,5),(1492,496764013,4),(1492,512488813,5),(1492,528213613,4),(1492,543938413,5),(1492,559663213,4),(1492,575388014,5),(1492,591112814,4),(1492,606837614,5),(1492,622562414,4),(1492,638287215,5),(1492,654616815,4),(1492,670341616,6),(1492,686070016,7),(1492,695746816,4),(1492,701791216,5),(1492,717516017,4),(1492,733240817,5),(1492,748965618,4),(1492,764690418,5),(1492,780415219,4),(1492,796140019,5),(1492,811864819,4),(1492,828194420,5),(1492,846338420,4),(1492,859644020,5),(1492,877788021,4),(1492,891093621,5),(1492,909237621,4),(1492,922543222,5),(1492,941292022,4),(1492,953992822,5),(1492,972741622,4),(1492,985442422,5),(1492,1004191222,4),(1492,1017496822,5),(1492,1035640822,4),(1492,1048946422,5),(1492,1067090422,4),(1492,1080396022,5),(1492,1099144822,4),(1492,1111845622,5),(1492,1130594422,4),(1492,1143295223,5),(1492,1162044023,4),(1492,1174744823,5),(1492,1193493623,4),(1492,1206799223,5),(1492,1224943223,4),(1492,1238248824,5),(1492,1256392824,4),(1492,1269698424,6),(1492,1288450824,7),(1492,1301151624,4),(1493,-2147483648,0),(1493,-1988166492,1),(1493,-862637400,2),(1493,-764145000,1),(1493,-576135000,3),(1493,38775600,5),(1493,1018119622,4),(1493,1033840822,5),(1493,1212260423,4),(1493,1225476023,5),(1493,1239735624,4),(1493,1257012024,5),(1494,-2147483648,0),(1494,-1325483420,1),(1495,-2147483648,0),(1495,-1577943676,1),(1495,504901813,2),(1496,-2147483648,0),(1496,-1577943676,1),(1496,504901813,2),(1497,-2147483648,0),(1497,-1579424533,1),(1497,-1247558400,3),(1497,354898809,2),(1497,370706410,3),(1497,386434810,2),(1497,402242411,3),(1497,417970811,2),(1497,433778412,3),(1497,449593212,2),(1497,465325212,4),(1497,481050012,5),(1497,496774813,4),(1497,512499613,5),(1497,528224413,4),(1497,543949213,5),(1497,559674013,4),(1497,575398814,5),(1497,591123614,4),(1497,606848414,5),(1497,622573214,4),(1497,638298015,5),(1497,654627615,4),(1497,670352416,6),(1497,686080816,7),(1497,695757616,4),(1497,701802016,5),(1497,717526817,4),(1497,733251617,5),(1497,748976418,4),(1497,764701218,5),(1497,780426019,4),(1497,796150819,5),(1497,811875619,4),(1497,828205220,5),(1497,846349220,4),(1497,859654820,5),(1497,877798821,4),(1497,891104421,5),(1497,909248421,4),(1497,922554022,5),(1497,941302822,4),(1497,954003622,5),(1497,972752422,4),(1497,985453222,5),(1497,1004202022,4),(1497,1017507622,5),(1497,1035651622,4),(1497,1048957222,5),(1497,1067101222,4),(1497,1072882822,10),(1497,1080403222,8),(1497,1099152022,9),(1497,1111852822,8),(1497,1130601622,9),(1497,1143302423,8),(1497,1162051223,9),(1497,1174752023,8),(1497,1193500823,9),(1497,1206806423,8),(1497,1224950423,9),(1497,1238256024,8),(1497,1256400024,9),(1497,1269705624,8),(1497,1288454424,9),(1497,1301155224,11),(1497,1315832424,9),(1497,1414252825,4),(1498,-2147483648,1),(1498,-2019705670,2),(1498,-891581400,3),(1498,-872058600,2),(1498,-862637400,3),(1498,-764145000,2),(1499,-2147483648,0),(1499,-1577513486,1),(1499,-1247551200,3),(1499,354906009,2),(1499,370713610,3),(1499,386442010,2),(1499,402249611,3),(1499,417978011,2),(1499,433785612,3),(1499,449600412,2),(1499,465332412,4),(1499,481057212,5),(1499,496782013,4),(1499,512506813,5),(1499,528231613,4),(1499,543956413,5),(1499,559681213,4),(1499,575406014,5),(1499,591130814,4),(1499,606855614,5),(1499,622580414,4),(1499,638305215,5),(1499,654634815,4),(1499,670359616,6),(1499,686088016,7),(1499,695764816,4),(1499,701809216,5),(1499,717534017,4),(1499,733258817,5),(1499,748983618,4),(1499,764708418,5),(1499,780433219,4),(1499,796158019,5),(1499,811882819,4),(1499,828212420,5),(1499,846356420,4),(1499,859662020,5),(1499,877806021,4),(1499,891111621,5),(1499,909255621,4),(1499,922561222,5),(1499,941310022,4),(1499,954010822,5),(1499,972759622,4),(1499,985460422,5),(1499,1004209222,4),(1499,1017514822,5),(1499,1035658822,4),(1499,1048964422,5),(1499,1067108422,4),(1499,1080414022,5),(1499,1099162822,4),(1499,1111863622,5),(1499,1130612422,4),(1499,1143313223,5),(1499,1162062023,4),(1499,1174762823,5),(1499,1193511623,4),(1499,1206817223,5),(1499,1224961223,4),(1499,1238266824,5),(1499,1256410824,4),(1499,1269716424,5),(1499,1288465224,4),(1499,1301166024,8),(1499,1414260025,4),(1500,-2147483648,1),(1500,-2038200925,2),(1500,-1167634800,3),(1500,-1073028000,4),(1500,-894180000,5),(1500,-879665400,6),(1500,-767005200,5),(1500,378664210,7),(1501,-2147483648,0),(1501,-1383463280,1),(1501,-1167636600,3),(1501,-1082448000,2),(1501,-1074586800,3),(1501,-1050825600,2),(1501,-1042964400,3),(1501,-1019289600,2),(1501,-1011428400,3),(1501,-987753600,2),(1501,-979892400,3),(1501,-956217600,2),(1501,-948356400,3),(1501,-924595200,2),(1501,-916734000,3),(1501,-893059200,2),(1501,-885198000,3),(1501,-879667200,4),(1501,-767005200,3),(1502,-2147483648,0),(1502,-719636812,1),(1503,-2147483648,0),(1503,-2056692850,1),(1503,-884509200,3),(1503,-873280800,2),(1503,-855918000,3),(1503,-841744800,2),(1503,-828529200,3),(1503,-765363600,1),(1503,-747046800,4),(1503,-733827600,5),(1503,-716461200,4),(1503,-697021200,5),(1503,-683715600,4),(1503,-667990800,5),(1503,-654771600,4),(1503,-636627600,5),(1503,-623322000,4),(1503,-605178000,5),(1503,-591872400,4),(1503,-573642000,5),(1503,-559818000,4),(1503,-541674000,5),(1503,-528368400,4),(1503,-510224400,5),(1503,-498128400,4),(1503,-478774800,5),(1503,-466678800,4),(1503,-446720400,5),(1503,-435229200,4),(1503,-415258200,1),(1503,-403158600,6),(1503,-383808600,1),(1503,-371709000,6),(1503,-352359000,1),(1503,-340259400,6),(1503,-320909400,1),(1503,-308809800,6),(1503,-288855000,1),(1503,-277360200,6),(1503,-257405400,1),(1503,-245910600,6),(1503,-225955800,1),(1503,-213856200,6),(1503,-194506200,1),(1503,-182406600,6),(1503,-163056600,1),(1503,-148537800,6),(1503,-132820200,1),(1503,-117088200,6),(1503,-101370600,1),(1503,-85638600,6),(1503,-69312600,1),(1503,-53584200,6),(1503,-37863000,1),(1503,-22134600,6),(1503,-6413400,1),(1503,9315000,6),(1503,25036200,1),(1503,40764600,6),(1503,56485800,1),(1503,72214200,6),(1503,88540201,1),(1503,104268602,6),(1503,119989802,1),(1503,126041402,6),(1503,151439403,1),(1503,167167804,6),(1503,182889004,1),(1503,198617405,6),(1503,214338605,1),(1503,295385408,6),(1503,309292208,1),(1504,-2147483648,0),(1504,-2056692850,1),(1504,-884509200,3),(1504,-873280800,2),(1504,-855918000,3),(1504,-841744800,2),(1504,-828529200,3),(1504,-765363600,1),(1504,-747046800,4),(1504,-733827600,5),(1504,-716461200,4),(1504,-697021200,5),(1504,-683715600,4),(1504,-667990800,5),(1504,-654771600,4),(1504,-636627600,5),(1504,-623322000,4),(1504,-605178000,5),(1504,-591872400,4),(1504,-573642000,5),(1504,-559818000,4),(1504,-541674000,5),(1504,-528368400,4),(1504,-510224400,5),(1504,-498128400,4),(1504,-478774800,5),(1504,-466678800,4),(1504,-446720400,5),(1504,-435229200,4),(1504,-415258200,1),(1504,-403158600,6),(1504,-383808600,1),(1504,-371709000,6),(1504,-352359000,1),(1504,-340259400,6),(1504,-320909400,1),(1504,-308809800,6),(1504,-288855000,1),(1504,-277360200,6),(1504,-257405400,1),(1504,-245910600,6),(1504,-225955800,1),(1504,-213856200,6),(1504,-194506200,1),(1504,-182406600,6),(1504,-163056600,1),(1504,-148537800,6),(1504,-132820200,1),(1504,-117088200,6),(1504,-101370600,1),(1504,-85638600,6),(1504,-69312600,1),(1504,-53584200,6),(1504,-37863000,1),(1504,-22134600,6),(1504,-6413400,1),(1504,9315000,6),(1504,25036200,1),(1504,40764600,6),(1504,56485800,1),(1504,72214200,6),(1504,88540201,1),(1504,104268602,6),(1504,119989802,1),(1504,126041402,6),(1504,151439403,1),(1504,167167804,6),(1504,182889004,1),(1504,198617405,6),(1504,214338605,1),(1504,295385408,6),(1504,309292208,1),(1505,-2147483648,0),(1505,-1441188192,1),(1505,-1247565600,3),(1505,354891609,2),(1505,370699210,3),(1505,386427610,2),(1505,402235211,3),(1505,417963611,2),(1505,433771212,3),(1505,449586012,2),(1505,465318012,4),(1505,481042812,5),(1505,496767613,4),(1505,512492413,5),(1505,528217213,4),(1505,543942013,5),(1505,559666813,4),(1505,575391614,5),(1505,591116414,4),(1505,606841214,5),(1505,622566014,4),(1505,638290815,5),(1505,654620415,4),(1505,670345216,6),(1505,686073616,7),(1505,695750416,4),(1505,701794816,5),(1505,717519617,4),(1505,733244417,5),(1505,748969218,4),(1505,764694018,5),(1505,780418819,4),(1505,796143619,5),(1505,811868419,4),(1505,828198020,5),(1505,846342020,4),(1505,859647620,5),(1505,877791621,4),(1505,891097221,5),(1505,909241221,4),(1505,922546822,5),(1505,941295622,4),(1505,953996422,5),(1505,972745222,4),(1505,985446022,5),(1505,1004194822,4),(1505,1017500422,5),(1505,1035644422,4),(1505,1048950022,5),(1505,1067094022,4),(1505,1080399622,5),(1505,1099148422,4),(1505,1111849222,5),(1505,1130598022,4),(1505,1143298823,5),(1505,1162047623,4),(1505,1174748423,5),(1505,1193497223,4),(1505,1206802823,5),(1505,1224946823,4),(1505,1238252424,5),(1505,1256396424,4),(1505,1269702024,5),(1505,1288450824,4),(1505,1301151624,8),(1505,1414245625,7),(1505,1461427226,4),(1506,-2147483648,0),(1506,-1577951856,1),(1506,-1172908656,2),(1506,-880272000,3),(1506,-766054800,4),(1507,-2147483648,2),(1507,-1046678400,1),(1507,-1038733200,2),(1507,-873273600,3),(1507,-794221200,2),(1507,-496224000,1),(1507,-489315600,2),(1507,259344007,1),(1507,275151607,2),(1508,-2147483648,0),(1508,-1577936472,1),(1509,-2147483648,0),(1509,-1518920008,2),(1509,166572004,1),(1509,182293204,2),(1509,200959205,1),(1509,213829205,2),(1509,228866406,1),(1509,243982806,2),(1509,260316007,1),(1509,276123607,2),(1509,291765608,1),(1509,307486808,2),(1509,323820009,1),(1509,338936409,2),(1509,354664809,1),(1509,370386010,2),(1509,386114410,1),(1509,401835611,2),(1509,417564011,1),(1509,433285212,2),(1509,449013612,1),(1509,465339612,2),(1509,481068012,1),(1509,496789213,2),(1509,512517613,1),(1509,528238813,2),(1509,543967213,1),(1509,559688413,2),(1509,575416814,1),(1509,591138014,2),(1509,606866414,1),(1509,622587614,2),(1509,638316015,1),(1509,654642015,2),(1509,670370416,1),(1509,686091616,2),(1509,701820016,1),(1509,717541217,2),(1509,733269617,1),(1509,748990818,2),(1509,764719218,1),(1509,780440419,2),(1509,796168819,1),(1509,811890019,2),(1509,828223220,1),(1509,843944420,2),(1509,859672820,1),(1509,875394021,2),(1509,891122421,1),(1509,909277221,3),(1509,922582822,4),(1509,941331622,3),(1509,954032422,4),(1509,972781222,3),(1509,985482022,4),(1509,1004230822,3),(1509,1017536422,4),(1509,1035680422,3),(1509,1048986022,4),(1509,1067130022,3),(1509,1080435622,4),(1509,1099184422,3),(1509,1111885222,4),(1509,1130634022,3),(1509,1143334823,4),(1509,1162083623,3),(1509,1174784423,4),(1509,1193533223,3),(1509,1206838823,4),(1509,1224982823,3),(1509,1238288424,4),(1509,1256432424,3),(1509,1269738024,4),(1509,1288486824,3),(1509,1301187624,4),(1509,1319936424,3),(1509,1332637224,4),(1509,1351386025,3),(1509,1364691625,4),(1509,1382835625,3),(1509,1396141225,4),(1509,1414285225,3),(1509,1427590825,4),(1509,1445734826,3),(1509,1459040426,4),(1509,1477789226,3),(1509,1490490027,4),(1509,1509238827,3),(1509,1521939627,4),(1509,1540688427,3),(1509,1553994027,4),(1509,1572138027,3),(1509,1585443627,4),(1509,1603587627,3),(1509,1616893227,4),(1509,1635642027,3),(1509,1648342827,4),(1509,1667091627,3),(1509,1679792427,4),(1509,1698541227,3),(1509,1711846827,4),(1509,1729990827,3),(1509,1743296427,4),(1509,1761440427,3),(1509,1774746027,4),(1509,1792890027,3),(1509,1806195627,4),(1509,1824944427,3),(1509,1837645227,4),(1509,1856394027,3),(1509,1869094827,4),(1509,1887843627,3),(1509,1901149227,4),(1509,1919293227,3),(1509,1932598827,4),(1509,1950742827,3),(1509,1964048427,4),(1509,1982797227,3),(1509,1995498027,4),(1509,2014246827,3),(1509,2026947627,4),(1509,2045696427,3),(1509,2058397227,4),(1509,2077146027,3),(1509,2090451627,4),(1509,2108595627,3),(1509,2121901227,4),(1509,2140045227,3),(1510,-2147483648,0),(1510,-1441259328,1),(1510,-1247551200,3),(1510,354906009,2),(1510,370713610,3),(1510,386442010,2),(1510,402249611,3),(1510,417978011,2),(1510,433785612,3),(1510,449600412,2),(1510,465332412,4),(1510,481057212,5),(1510,496782013,4),(1510,512506813,5),(1510,528231613,4),(1510,543956413,5),(1510,559681213,4),(1510,575406014,5),(1510,591130814,4),(1510,606855614,5),(1510,622580414,4),(1510,638305215,5),(1510,654634815,4),(1510,670359616,6),(1510,686088016,7),(1510,695764816,4),(1510,701809216,5),(1510,717534017,4),(1510,733258817,5),(1510,748983618,4),(1510,764708418,5),(1510,780433219,4),(1510,796158019,5),(1510,811882819,4),(1510,828212420,5),(1510,846356420,4),(1510,859662020,5),(1510,877806021,4),(1510,891111621,5),(1510,909255621,4),(1510,922561222,5),(1510,941310022,4),(1510,954010822,5),(1510,972759622,4),(1510,985460422,5),(1510,1004209222,4),(1510,1017514822,5),(1510,1035658822,4),(1510,1048964422,5),(1510,1067108422,4),(1510,1080414022,5),(1510,1099162822,4),(1510,1111863622,5),(1510,1130612422,4),(1510,1143313223,5),(1510,1162062023,4),(1510,1174762823,5),(1510,1193511623,4),(1510,1206817223,5),(1510,1224961223,4),(1510,1238266824,5),(1510,1256410824,4),(1510,1269716424,6),(1510,1288468824,7),(1510,1301169624,4),(1511,-2147483648,0),(1511,-1579476700,1),(1511,-1247551200,3),(1511,354906009,2),(1511,370713610,3),(1511,386442010,2),(1511,402249611,3),(1511,417978011,2),(1511,433785612,3),(1511,449600412,2),(1511,465332412,4),(1511,481057212,5),(1511,496782013,4),(1511,512506813,5),(1511,528231613,4),(1511,543956413,5),(1511,559681213,4),(1511,575406014,5),(1511,591130814,4),(1511,606855614,5),(1511,622580414,4),(1511,638305215,5),(1511,654634815,4),(1511,670359616,6),(1511,686088016,7),(1511,695764816,4),(1511,701809216,5),(1511,717534017,4),(1511,733258817,5),(1511,738086417,8),(1511,748987218,7),(1511,764712018,6),(1511,780436819,7),(1511,796161619,6),(1511,811886419,7),(1511,828216020,6),(1511,846360020,7),(1511,859665620,6),(1511,877809621,7),(1511,891115221,6),(1511,909259221,7),(1511,922564822,6),(1511,941313622,7),(1511,954014422,6),(1511,972763222,7),(1511,985464022,6),(1511,1004212822,7),(1511,1017518422,6),(1511,1035662422,7),(1511,1048968022,6),(1511,1067112022,7),(1511,1080417622,6),(1511,1099166422,7),(1511,1111867222,6),(1511,1130616022,7),(1511,1143316823,6),(1511,1162065623,7),(1511,1174766423,6),(1511,1193515223,7),(1511,1206820823,6),(1511,1224964823,7),(1511,1238270424,6),(1511,1256414424,7),(1511,1269720024,6),(1511,1288468824,7),(1511,1301169624,4),(1511,1414263625,7),(1511,1469304026,4),(1512,-2147483648,0),(1512,-1582088010,1),(1512,-1247547600,3),(1512,354909609,2),(1512,370717210,3),(1512,386445610,2),(1512,402253211,3),(1512,417981611,2),(1512,433789212,3),(1512,449604012,2),(1512,465336012,4),(1512,481060812,5),(1512,496785613,4),(1512,512510413,5),(1512,528235213,4),(1512,543960013,5),(1512,559684813,4),(1512,575409614,5),(1512,591134414,4),(1512,606859214,5),(1512,622584014,4),(1512,638308815,5),(1512,654638415,4),(1512,670363216,6),(1512,686091616,7),(1512,695768416,4),(1512,701812816,5),(1512,717537617,4),(1512,733262417,5),(1512,748987218,4),(1512,764712018,5),(1512,780436819,4),(1512,796161619,5),(1512,811886419,4),(1512,828216020,5),(1512,846360020,4),(1512,859665620,5),(1512,877809621,4),(1512,891115221,5),(1512,909259221,4),(1512,922564822,5),(1512,941313622,4),(1512,954014422,5),(1512,972763222,4),(1512,985464022,5),(1512,1004212822,4),(1512,1017518422,5),(1512,1035662422,4),(1512,1048968022,5),(1512,1067112022,4),(1512,1080417622,5),(1512,1099166422,4),(1512,1111867222,5),(1512,1130616022,4),(1512,1143316823,5),(1512,1162065623,4),(1512,1174766423,5),(1512,1193515223,4),(1512,1206820823,5),(1512,1224964823,4),(1512,1238270424,5),(1512,1256414424,4),(1512,1269720024,5),(1512,1288468824,4),(1512,1301169624,8),(1512,1414263625,4),(1513,-2147483648,0),(1513,-1441164324,1),(1513,-1247540400,2),(1513,354913209,3),(1513,370720810,4),(1513,386445610,3),(1513,402256811,2),(1513,417985211,3),(1513,433792812,2),(1513,449607612,3),(1513,465339612,5),(1513,481064412,6),(1513,496789213,5),(1513,512514013,6),(1513,528238813,5),(1513,543963613,6),(1513,559688413,5),(1513,575413214,6),(1513,591138014,5),(1513,606862814,7),(1513,622591214,8),(1513,638316015,7),(1513,654645615,8),(1513,670370416,7),(1513,686095216,8),(1513,695772016,5),(1513,701816416,7),(1513,717544817,8),(1513,733269617,7),(1513,748994418,8),(1513,764719218,7),(1513,780444019,8),(1513,796168819,7),(1513,811893619,8),(1513,828223220,7),(1513,846367220,8),(1513,859672820,7),(1513,877816821,8),(1513,891122421,7),(1513,909266421,8),(1513,922572022,7),(1513,941320822,8),(1513,954021622,7),(1513,972770422,8),(1513,985471222,7),(1513,1004220022,8),(1513,1017525622,7),(1513,1035669622,8),(1513,1048975222,7),(1513,1067119222,8),(1513,1080424822,7),(1513,1099173622,5),(1514,-2147483648,1),(1514,-1570084924,2),(1515,-2147483648,0),(1515,-1946186240,1),(1515,-1172906240,2),(1515,-881220600,3),(1515,-766054800,2),(1515,-683883000,4),(1515,-620812800,2),(1515,-189415800,5),(1515,567964813,6),(1516,-2147483648,0),(1516,-1948782180,1),(1516,-1830414600,2),(1516,-768646800,3),(1516,1439564426,1),(1516,1525446027,3),(1517,-2147483648,0),(1517,-1577935568,1),(1517,76190400,2),(1518,-2147483648,0),(1518,-1441167268,1),(1518,-1247544000,2),(1518,354913209,3),(1518,370720810,4),(1518,386445610,3),(1518,402256811,2),(1518,417985211,3),(1518,433792812,2),(1518,449607612,3),(1518,465339612,5),(1518,481064412,6),(1518,496789213,5),(1518,512514013,6),(1518,528238813,5),(1518,543963613,6),(1518,559688413,5),(1518,575413214,6),(1518,591138014,5),(1518,606862814,6),(1518,622587614,5),(1518,638312415,6),(1518,654642015,5),(1518,670366816,7),(1518,686095216,8),(1518,695772016,5),(1518,701816416,6),(1518,717541217,5),(1518,733266017,6),(1518,748990818,5),(1518,764715618,6),(1518,780440419,5),(1518,796165219,6),(1518,811890019,5),(1518,828219620,6),(1518,846363620,5),(1518,859669220,6),(1518,877813221,5),(1518,891118821,6),(1518,909262821,5),(1518,922568422,6),(1518,941317222,5),(1518,954018022,6),(1518,972766822,5),(1518,985467622,6),(1518,1004216422,5),(1518,1017522022,6),(1518,1035666022,5),(1518,1048971622,6),(1518,1067115622,5),(1518,1080421222,6),(1518,1099170022,9),(1519,-2147483648,0),(1519,-1441167712,1),(1519,-1247544000,2),(1519,354913209,3),(1519,370720810,4),(1519,386445610,3),(1519,402256811,2),(1519,417985211,3),(1519,433792812,2),(1519,449607612,3),(1519,465339612,5),(1519,481064412,6),(1519,496789213,5),(1519,512514013,6),(1519,528238813,5),(1519,543963613,6),(1519,559688413,5),(1519,575413214,6),(1519,591138014,5),(1519,606862814,6),(1519,622587614,5),(1519,638312415,6),(1519,654642015,5),(1519,670366816,7),(1519,686095216,5),(1519,695768416,9),(1519,701812816,6),(1519,717541217,5),(1519,733266017,6),(1519,748990818,5),(1519,764715618,6),(1519,780440419,5),(1519,796165219,6),(1519,811890019,5),(1519,828219620,6),(1519,846363620,5),(1519,859669220,6),(1519,877813221,5),(1519,891118821,6),(1519,909262821,5),(1519,922568422,6),(1519,941317222,5),(1519,954018022,6),(1519,972766822,5),(1519,985467622,6),(1519,1004216422,5),(1519,1017522022,6),(1519,1035666022,5),(1519,1048971622,6),(1519,1067115622,5),(1519,1080421222,6),(1519,1099170022,9),(1519,1545328827,2),(1520,-2147483648,1),(1520,-1577946287,2),(1520,-873268200,3),(1520,-778410000,2),(1521,-2147483648,0),(1521,-719636812,1),(1522,-2147483648,0),(1522,-2004073600,1),(1522,-1851577590,2),(1522,-852105600,3),(1522,-782643600,4),(1522,-767869200,2),(1522,-718095600,3),(1522,-457776000,2),(1522,-315648000,3),(1522,171820804,2),(1523,-2147483648,0),(1523,-2031039048,1),(1523,-768560400,3),(1523,354891609,2),(1523,370699210,3),(1523,386427610,2),(1523,402235211,3),(1523,417963611,2),(1523,433771212,3),(1523,449586012,2),(1523,465318012,4),(1523,481042812,5),(1523,496767613,4),(1523,512492413,5),(1523,528217213,4),(1523,543942013,5),(1523,559666813,4),(1523,575391614,5),(1523,591116414,4),(1523,606841214,5),(1523,622566014,4),(1523,638290815,5),(1523,654620415,4),(1523,670345216,6),(1523,686073616,7),(1523,695750416,4),(1523,701794816,5),(1523,717519617,4),(1523,733244417,5),(1523,748969218,4),(1523,764694018,5),(1523,780418819,4),(1523,796143619,5),(1523,811868419,4),(1523,828198020,5),(1523,846342020,4),(1523,859647620,6),(1523,877795221,7),(1523,891100821,6),(1523,909244821,7),(1523,922550422,6),(1523,941299222,7),(1523,954000022,6),(1523,972748822,7),(1523,985449622,6),(1523,1004198422,7),(1523,1017504022,6),(1523,1035648022,7),(1523,1048953622,6),(1523,1067097622,7),(1523,1080403222,6),(1523,1099152022,7),(1523,1111852822,6),(1523,1130601622,7),(1523,1143302423,6),(1523,1162051223,7),(1523,1174752023,6),(1523,1193500823,7),(1523,1206806423,6),(1523,1224950423,7),(1523,1238256024,6),(1523,1256400024,7),(1523,1269705624,6),(1523,1288454424,7),(1523,1301155224,4),(1523,1414249225,7),(1523,1459008026,4),(1524,-2147483648,0),(1524,-1441168073,1),(1524,-1247544000,2),(1524,354913209,3),(1524,370720810,4),(1524,386445610,3),(1524,402256811,2),(1524,417985211,3),(1524,433792812,2),(1524,449607612,3),(1524,465339612,5),(1524,481064412,6),(1524,496789213,5),(1524,512514013,6),(1524,528238813,5),(1524,543963613,6),(1524,559688413,5),(1524,575413214,6),(1524,591138014,5),(1524,606862814,6),(1524,622587614,5),(1524,638312415,6),(1524,654642015,5),(1524,670366816,6),(1524,686091616,5),(1524,694206016,2),(1525,-2147483648,0),(1525,-1948782472,1),(1525,-1830414600,2),(1525,-767350800,4),(1525,-681210000,3),(1525,-672228000,4),(1525,-654771600,3),(1525,-640864800,4),(1525,-623408400,3),(1525,-609415200,4),(1525,-588848400,3),(1525,-577965600,4),(1525,-498128400,1),(1525,-462702600,5),(1525,-451733400,1),(1525,-429784200,5),(1525,-418296600,1),(1525,-399544200,5),(1525,-387451800,1),(1525,-368094600,5),(1525,-356002200,1),(1525,-336645000,5),(1525,-324552600,1),(1525,-305195400,5),(1525,-293103000,1),(1525,-264933000,4),(1525,547578013,3),(1525,560883613,4),(1525,579027614,3),(1525,592333214,4),(1526,-2147483648,2),(1526,-933667200,1),(1526,-922093200,2),(1526,-908870400,1),(1526,-888829200,2),(1526,-881049600,1),(1526,-767869200,2),(1526,-745833600,1),(1526,-733827600,2),(1526,-716889600,1),(1526,-699613200,2),(1526,-683884800,1),(1526,-670669200,2),(1526,-652348800,1),(1526,-650019600,2),(1526,515527213,1),(1526,527014813,2),(1526,545162413,1),(1526,558464413,2),(1526,577216814,1),(1526,589914014,2),(1526,608666414,1),(1526,621968414,2),(1526,640116015,1),(1526,653418015,2),(1526,671565616,1),(1526,684867616,2),(1527,-2147483648,1),(1527,-2038200925,2),(1527,-1167634800,3),(1527,-1073028000,4),(1527,-894180000,5),(1527,-879665400,6),(1527,-767005200,5),(1527,378664210,7),(1528,-2147483648,0),(1528,-1441188892,1),(1528,-1247565600,3),(1528,354891609,2),(1528,370699210,3),(1528,386427610,2),(1528,402235211,3),(1528,417963611,2),(1528,433771212,3),(1528,449586012,2),(1528,465318012,4),(1528,481042812,5),(1528,496767613,4),(1528,512492413,5),(1528,528217213,4),(1528,543942013,5),(1528,559666813,4),(1528,575391614,5),(1528,591116414,4),(1528,606841214,5),(1528,622566014,4),(1528,638290815,5),(1528,654620415,4),(1528,670345216,6),(1528,686073616,7),(1528,695750416,4),(1528,701794816,5),(1528,717519617,4),(1528,733244417,5),(1528,748969218,4),(1528,764694018,5),(1528,780418819,4),(1528,796143619,5),(1528,811868419,4),(1528,828198020,5),(1528,846342020,4),(1528,859647620,5),(1528,877791621,4),(1528,891097221,5),(1528,909241221,4),(1528,922546822,5),(1528,941295622,4),(1528,953996422,5),(1528,972745222,4),(1528,985446022,5),(1528,1004194822,4),(1528,1017500422,5),(1528,1035644422,4),(1528,1048950022,5),(1528,1067094022,4),(1528,1080399622,5),(1528,1099148422,4),(1528,1111849222,5),(1528,1130598022,4),(1528,1143298823,5),(1528,1162047623,4),(1528,1174748423,5),(1528,1193497223,4),(1528,1206802823,5),(1528,1224946823,4),(1528,1238252424,5),(1528,1256396424,4),(1528,1269702024,5),(1528,1288450824,4),(1528,1301151624,8),(1528,1414245625,4),(1529,-2147483648,1),(1529,-1017820800,2),(1529,-766224000,1),(1529,-745833600,3),(1529,-733827600,1),(1529,-716889600,3),(1529,-699613200,1),(1529,-683884800,3),(1529,-670669200,1),(1529,-652348800,3),(1529,-639133200,1),(1529,-620812800,3),(1529,-607597200,1),(1529,-589276800,3),(1529,-576061200,1),(1529,-562924800,3),(1529,-541760400,1),(1529,-528710400,3),(1529,-510224400,1),(1529,-497174400,3),(1529,-478688400,1),(1529,-465638400,3),(1529,-449830800,1),(1529,-434016000,3),(1529,-418208400,1),(1529,-402480000,3),(1529,-386672400,1),(1529,-370944000,3),(1529,-355136400,1),(1529,-339408000,3),(1529,-323600400,1),(1529,-302515200,3),(1529,-291978000,1),(1529,-270979200,3),(1529,-260442000,1),(1529,133977603,3),(1529,149785203,1),(1529,165513604,3),(1529,181321204,1),(1529,299606408,3),(1529,307551608,1),(1530,-2147483648,0),(1530,-1441168631,1),(1530,-1247547600,3),(1530,354909609,2),(1530,370717210,3),(1530,386445610,2),(1530,402253211,3),(1530,417981611,2),(1530,433789212,3),(1530,449604012,2),(1530,465336012,4),(1530,481060812,5),(1530,496785613,4),(1530,512510413,5),(1530,528235213,4),(1530,543960013,5),(1530,559684813,4),(1530,575409614,5),(1530,591134414,4),(1530,606859214,5),(1530,622584014,4),(1530,638308815,5),(1530,654638415,4),(1530,670363216,6),(1530,686091616,7),(1530,694206016,1),(1531,-2147483648,1),(1531,-1441162751,2),(1531,-405140400,4),(1531,354916809,3),(1531,370724410,4),(1531,386452810,3),(1531,402260411,4),(1531,417988811,3),(1531,433796412,4),(1531,449611212,3),(1531,465343212,5),(1531,481068012,6),(1531,496792813,5),(1531,512517613,6),(1531,528242413,5),(1531,543967213,6),(1531,559692013,5),(1531,575416814,6),(1531,591141614,5),(1531,606866414,6),(1531,622591214,5),(1531,638316015,6),(1531,654645615,5),(1531,670370416,7),(1531,686098816,8),(1531,694213216,2),(1531,701816416,9),(1531,717537617,2),(1531,733266017,9),(1531,748987218,2),(1531,764715618,9),(1531,780436819,4),(1531,796161619,3),(1531,811882819,4),(1531,828216020,3),(1531,859662020,3),(1531,877806021,4),(1531,891115221,3),(1531,909255621,4),(1531,922564822,3),(1531,941310022,4),(1531,954014422,3),(1531,972759622,4),(1531,985464022,3),(1531,1004209222,4),(1531,1017518422,3),(1531,1035658822,4),(1531,1048968022,3),(1531,1067108422,4),(1531,1080417622,3),(1531,1088276422,9),(1531,1099177222,8),(1531,1111878022,4),(1532,-2147483648,0),(1532,-1704165944,1),(1532,-757394744,2),(1532,247177806,4),(1532,259272007,3),(1532,277758007,4),(1532,283982407,2),(1532,290809808,5),(1532,306531008,2),(1532,322432209,5),(1532,338499009,2),(1532,673216216,5),(1532,685481416,2),(1532,701209816,5),(1532,717103817,2),(1532,732745817,5),(1532,748639818,2),(1532,764281818,5),(1532,780175819,2),(1532,795817819,5),(1532,811711819,2),(1532,827353820,5),(1532,843247820,2),(1532,858976220,5),(1532,874870221,2),(1532,890512221,5),(1532,906406221,2),(1532,922048222,5),(1532,937942222,2),(1532,953584222,5),(1532,969478222,2),(1532,985206622,5),(1532,1001100622,2),(1532,1016742622,5),(1532,1032636622,2),(1532,1048278622,5),(1532,1064172622,2),(1532,1079814622,5),(1532,1095708622,2),(1532,1111437022,5),(1532,1127331022,2),(1532,1206045023,5),(1532,1221939023,2),(1532,1237667424,5),(1532,1253561424,2),(1532,1269203424,5),(1532,1285097424,2),(1532,1300739424,5),(1532,1316633424,2),(1532,1332275424,5),(1532,1348169425,2),(1532,1363897825,5),(1532,1379791825,2),(1532,1395433825,5),(1532,1411327825,2),(1532,1426969825,5),(1532,1442863826,2),(1532,1458505826,5),(1532,1474399826,2),(1532,1490128227,5),(1532,1506022227,2),(1532,1521664227,5),(1532,1537558227,2),(1532,1553200227,5),(1532,1569094227,2),(1532,1584736227,5),(1532,1600630227,2),(1532,1616358627,5),(1532,1632252627,2),(1532,1647894627,5),(1532,1663788627,2),(1532,1679430627,5),(1532,1695324627,2),(1532,1710966627,5),(1532,1726860627,2),(1532,1742589027,5),(1532,1758483027,2),(1532,1774125027,5),(1532,1790019027,2),(1532,1805661027,5),(1532,1821555027,2),(1532,1837197027,5),(1532,1853091027,2),(1532,1868733027,5),(1532,1884627027,2),(1532,1900355427,5),(1532,1916249427,2),(1532,1931891427,5),(1532,1947785427,2),(1532,1963427427,5),(1532,1979321427,2),(1532,1994963427,5),(1532,2010857427,2),(1532,2026585827,5),(1532,2042479827,2),(1532,2058121827,5),(1532,2074015827,2),(1532,2089657827,5),(1532,2105551827,2),(1532,2121193827,5),(1532,2137087827,2),(1533,-2147483648,1),(1533,-1641003640,3),(1533,-933645600,2),(1533,-857358000,3),(1533,-844300800,2),(1533,-825822000,3),(1533,-812685600,2),(1533,-794199600,3),(1533,-779853600,2),(1533,-762656400,3),(1533,-748310400,2),(1533,-731127600,3),(1533,-681962400,4),(1533,-673243200,2),(1533,-667962000,3),(1533,-652327200,2),(1533,-636426000,3),(1533,-622087200,2),(1533,-608947200,3),(1533,-591847200,2),(1533,-572486400,3),(1533,-558576000,2),(1533,-542851200,3),(1533,-527731200,2),(1533,-514425600,3),(1533,-490845600,2),(1533,-482986800,3),(1533,-459475200,2),(1533,-451537200,3),(1533,-428551200,2),(1533,-418262400,3),(1533,-400032000,2),(1533,-387428400,3),(1533,142380003,2),(1533,150843603,3),(1533,167176804,2),(1533,178664404,3),(1533,334015209,2),(1533,337644009,3),(1533,452556012,2),(1533,462232812,3),(1533,482277612,2),(1533,495579613,3),(1533,516751213,2),(1533,526424413,3),(1533,545436013,2),(1533,558478813,3),(1533,576626414,2),(1533,589323614,3),(1533,609890414,2),(1533,620773214,3),(1533,638316015,2),(1533,651618015,3),(1533,669765616,2),(1533,683672416,3),(1533,701820016,2),(1533,715726817,3),(1533,733701617,2),(1533,747176418,3),(1533,765151218,2),(1533,778021219,3),(1533,796600819,2),(1533,810075619,3),(1533,826840820,2),(1533,842821220,3),(1533,858895220,2),(1533,874184421,3),(1533,890344821,2),(1533,905029221,3),(1533,923011222,2),(1533,936313222,3),(1533,955670422,2),(1533,970783222,3),(1533,986770822,2),(1533,1001282422,3),(1533,1017356422,2),(1533,1033941622,3),(1533,1048806022,2),(1533,1065132022,3),(1533,1081292422,2),(1533,1095804022,3),(1533,1112313622,2),(1533,1128812422,3),(1533,1143763223,2),(1533,1159657223,3),(1533,1175212823,2),(1533,1189897223,3),(1533,1206662423,2),(1533,1223161223,3),(1533,1238112024,2),(1533,1254006024,3),(1533,1269561624,2),(1533,1284246024,3),(1533,1301616024,2),(1533,1317510024,3),(1533,1333065624,2),(1533,1348354825,3),(1533,1364515225,2),(1533,1382828425,3),(1533,1395964825,2),(1533,1414278025,3),(1533,1427414425,2),(1533,1445727626,3),(1533,1458864026,2),(1533,1477782026,3),(1533,1490313627,2),(1533,1509231627,3),(1533,1521763227,2),(1533,1540681227,3),(1533,1553817627,2),(1533,1572130827,3),(1533,1585267227,2),(1533,1603580427,3),(1533,1616716827,2),(1533,1635634827,3),(1533,1648166427,2),(1533,1667084427,3),(1533,1679616027,2),(1533,1698534027,3),(1533,1711670427,2),(1533,1729983627,3),(1533,1743120027,2),(1533,1761433227,3),(1533,1774569627,2),(1533,1792882827,3),(1533,1806019227,2),(1533,1824937227,3),(1533,1837468827,2),(1533,1856386827,3),(1533,1868918427,2),(1533,1887836427,3),(1533,1900972827,2),(1533,1919286027,3),(1533,1932422427,2),(1533,1950735627,3),(1533,1963872027,2),(1533,1982790027,3),(1533,1995321627,2),(1533,2014239627,3),(1533,2026771227,2),(1533,2045689227,3),(1533,2058220827,2),(1533,2077138827,3),(1533,2090275227,2),(1533,2108588427,3),(1533,2121724827,2),(1533,2140038027,3),(1534,-2147483648,0),(1534,-706341516,1),(1534,560025013,2),(1535,-2147483648,0),(1535,-706341516,1),(1535,560025013,2),(1536,-2147483648,3),(1536,-683802000,1),(1536,-672310800,2),(1536,-654771600,1),(1536,-640861200,2),(1536,-620298000,1),(1536,-609411600,2),(1536,-588848400,1),(1536,-577962000,2),(1537,-2147483648,0),(1537,-1578807591,1),(1537,-1247551200,3),(1537,354906009,2),(1537,370713610,3),(1537,386442010,2),(1537,402249611,3),(1537,417978011,2),(1537,433785612,3),(1537,449600412,2),(1537,465332412,4),(1537,481057212,5),(1537,496782013,4),(1537,512506813,5),(1537,528231613,4),(1537,543956413,5),(1537,559681213,4),(1537,575406014,5),(1537,591130814,4),(1537,606855614,5),(1537,622580414,4),(1537,638305215,5),(1537,654634815,4),(1537,670359616,6),(1537,686088016,7),(1537,695764816,4),(1537,701809216,5),(1537,717534017,4),(1537,733258817,5),(1537,748983618,4),(1537,764708418,5),(1537,780433219,4),(1537,796158019,5),(1537,811882819,4),(1537,828212420,5),(1537,846356420,4),(1537,859662020,5),(1537,877806021,4),(1537,891111621,5),(1537,909255621,4),(1537,922561222,5),(1537,941310022,4),(1537,954010822,5),(1537,972759622,4),(1537,985460422,5),(1537,1004209222,4),(1537,1017514822,5),(1537,1020193222,8),(1537,1035662422,7),(1537,1048968022,6),(1537,1067112022,7),(1537,1080417622,6),(1537,1099166422,7),(1537,1111867222,6),(1537,1130616022,7),(1537,1143316823,6),(1537,1162065623,7),(1537,1174766423,6),(1537,1193515223,7),(1537,1206820823,6),(1537,1224964823,7),(1537,1238270424,6),(1537,1256414424,7),(1537,1269720024,6),(1537,1288468824,7),(1537,1301169624,4),(1537,1414263625,7),(1537,1464465626,4),(1538,-2147483648,0),(1538,-1577951856,1),(1538,-1172908656,2),(1538,-880272000,3),(1538,-766054800,4),(1539,-2147483648,0),(1539,-2032931252,1),(1539,252435606,3),(1539,417974411,2),(1539,433782012,3),(1539,449596812,2),(1539,465318012,3),(1539,481046412,2),(1539,496767613,3),(1539,512496013,2),(1539,528217213,3),(1539,543945613,2),(1539,559666813,3),(1539,575395214,2),(1539,591116414,3),(1539,606844814,2),(1539,622566014,3),(1539,638294415,2),(1539,654620415,3),(1539,670348816,2),(1539,686070016,3),(1539,701798416,2),(1539,717519617,3),(1539,733248017,2),(1539,748969218,3),(1539,764697618,2),(1539,780418819,3),(1539,796147219,2),(1539,811868419,3),(1539,828201620,2),(1539,843922820,3),(1539,859651220,2),(1539,875372421,3),(1539,891100821,2),(1539,906822021,3),(1539,988394422,2),(1539,1001696422,3),(1539,1017424822,2),(1539,1033146022,3),(1539,1048874422,2),(1539,1064595622,3),(1539,1080324022,2),(1539,1096045222,3),(1539,1111773622,2),(1539,1127494822,3),(1539,1143223223,2),(1539,1159549223,3),(1539,1427479225,2),(1539,1443193226,3),(1539,1458928826,2),(1539,1474642826,3),(1540,-2147483648,0),(1540,-2032931252,1),(1540,252435606,3),(1540,417974411,2),(1540,433782012,3),(1540,449596812,2),(1540,465318012,3),(1540,481046412,2),(1540,496767613,3),(1540,512496013,2),(1540,528217213,3),(1540,543945613,2),(1540,559666813,3),(1540,575395214,2),(1540,591116414,3),(1540,606844814,2),(1540,622566014,3),(1540,638294415,2),(1540,654620415,3),(1540,670348816,2),(1540,686070016,3),(1540,701798416,2),(1540,717519617,3),(1540,733248017,2),(1540,748969218,3),(1540,764697618,2),(1540,780418819,3),(1540,796147219,2),(1540,811868419,3),(1540,828201620,2),(1540,843922820,3),(1540,859651220,2),(1540,875372421,3),(1540,891100821,2),(1540,906822021,3),(1540,988394422,2),(1540,1001696422,3),(1540,1017424822,2),(1540,1033146022,3),(1540,1048874422,2),(1540,1064595622,3),(1540,1080324022,2),(1540,1096045222,3),(1540,1111773622,2),(1540,1127494822,3),(1540,1143223223,2),(1540,1159549223,3),(1540,1427479225,2),(1540,1443193226,3),(1540,1458928826,2),(1540,1474642826,3),(1541,-2147483648,0),(1541,-1325483420,1),(1542,-2147483648,0),(1542,-1579426374,1),(1542,-1247558400,2),(1542,354898809,4),(1542,370699210,3),(1542,386427610,4),(1542,402235211,3),(1542,417963611,4),(1542,433771212,3),(1542,449586012,4),(1542,465318012,5),(1542,481042812,6),(1542,496767613,5),(1542,512492413,6),(1542,528217213,5),(1542,543942013,6),(1542,559666813,5),(1542,575391614,6),(1542,591116414,5),(1542,606841214,6),(1542,622566014,5),(1542,638290815,6),(1542,654620415,5),(1542,670345216,7),(1542,686073616,8),(1542,695750416,5),(1542,701794816,6),(1542,717519617,5),(1542,733244417,6),(1542,748969218,5),(1542,764694018,6),(1542,780418819,5),(1542,796143619,6),(1542,811868419,5),(1542,828198020,6),(1542,846342020,5),(1542,859647620,6),(1542,877791621,5),(1542,891097221,6),(1542,909241221,5),(1542,922546822,6),(1542,941295622,5),(1542,953996422,6),(1542,972745222,5),(1542,985446022,6),(1542,1004194822,5),(1542,1017500422,6),(1542,1035644422,5),(1542,1048950022,6),(1542,1067094022,5),(1542,1080399622,6),(1542,1099148422,5),(1542,1111849222,6),(1542,1130598022,5),(1542,1143298823,6),(1542,1162047623,5),(1542,1174748423,6),(1542,1193497223,5),(1542,1206802823,6),(1542,1224946823,5),(1542,1238252424,6),(1542,1256396424,5),(1542,1269702024,6),(1542,1288450824,5),(1542,1301151624,9),(1542,1315828824,5),(1542,1414249225,8),(1543,-2147483648,1),(1543,-1570084924,2),(1544,-2147483648,0),(1544,-1487321251,1),(1544,-1247562000,3),(1544,354895209,2),(1544,370702810,3),(1544,386431210,2),(1544,402238811,3),(1544,417967211,2),(1544,433774812,3),(1544,449589612,2),(1544,465321612,4),(1544,481046412,5),(1544,496771213,4),(1544,512496013,5),(1544,528220813,4),(1544,543945613,5),(1544,559670413,4),(1544,575395214,5),(1544,591120014,4),(1544,606844814,5),(1544,622569614,4),(1544,638294415,5),(1544,654624015,4),(1544,670348816,6),(1544,686077216,7),(1544,695754016,4),(1544,701798416,5),(1544,717523217,4),(1544,733248017,5),(1544,748972818,4),(1544,764697618,5),(1544,780422419,4),(1544,796147219,5),(1544,811872019,4),(1544,828201620,5),(1544,846345620,4),(1544,859651220,5),(1544,877795221,4),(1544,891100821,5),(1544,909244821,4),(1544,922550422,5),(1544,941299222,4),(1544,954000022,5),(1544,972748822,4),(1544,985449622,5),(1544,1004198422,4),(1544,1017504022,5),(1544,1035648022,4),(1544,1048953622,5),(1544,1067097622,4),(1544,1080403222,5),(1544,1099152022,4),(1544,1111852822,5),(1544,1130601622,4),(1544,1143302423,5),(1544,1162051223,4),(1544,1174752023,5),(1544,1193500823,4),(1544,1206806423,5),(1544,1224950423,4),(1544,1238256024,5),(1544,1256400024,4),(1544,1269705624,5),(1544,1288454424,4),(1544,1301155224,8),(1544,1414249225,4),(1545,-2147483648,0),(1545,-1579423138,1),(1545,-1247558400,3),(1545,354898809,2),(1545,370706410,3),(1545,386434810,2),(1545,402242411,3),(1545,417970811,2),(1545,433778412,3),(1545,449593212,2),(1545,465325212,4),(1545,481050012,5),(1545,496774813,4),(1545,512499613,5),(1545,528224413,4),(1545,543949213,5),(1545,559674013,4),(1545,575398814,5),(1545,591123614,4),(1545,606848414,5),(1545,622573214,4),(1545,638298015,5),(1545,654627615,4),(1545,670352416,6),(1545,686080816,7),(1545,695757616,4),(1545,701802016,5),(1545,717526817,4),(1545,733251617,5),(1545,748976418,4),(1545,764701218,5),(1545,780426019,4),(1545,796150819,5),(1545,811875619,4),(1545,828205220,5),(1545,846349220,4),(1545,859654820,5),(1545,877798821,4),(1545,891104421,5),(1545,909248421,4),(1545,922554022,5),(1545,941302822,4),(1545,954003622,5),(1545,972752422,4),(1545,985453222,5),(1545,1004202022,4),(1545,1017507622,5),(1545,1035651622,4),(1545,1048957222,5),(1545,1067101222,4),(1545,1080406822,5),(1545,1099155622,4),(1545,1111856422,5),(1545,1130605222,4),(1545,1143306023,5),(1545,1162054823,4),(1545,1174755623,5),(1545,1193504423,4),(1545,1206810023,5),(1545,1224954023,4),(1545,1238259624,5),(1545,1256403624,4),(1545,1269709224,5),(1545,1288458024,4),(1545,1301158824,8),(1545,1414252825,4),(1546,-2147483648,1),(1546,-1577946287,2),(1546,-873268200,3),(1546,-778410000,2),(1547,-2147483648,0),(1547,-1688270553,1),(1547,-1592610305,2),(1547,-1247544000,4),(1547,354913209,3),(1547,370720810,4),(1547,386449210,3),(1547,402256811,4),(1547,417985211,3),(1547,433792812,4),(1547,449607612,3),(1547,465339612,5),(1547,481064412,6),(1547,496789213,5),(1547,512514013,6),(1547,528238813,5),(1547,543963613,6),(1547,559688413,5),(1547,575413214,6),(1547,591138014,5),(1547,606862814,6),(1547,622587614,5),(1547,638312415,6),(1547,654642015,5),(1547,670366816,7),(1547,686095216,8),(1547,695772016,5),(1547,701816416,6),(1547,717541217,5),(1547,733266017,6),(1547,748990818,5),(1547,764715618,6),(1547,780440419,5),(1547,796165219,6),(1547,811890019,5),(1547,828219620,6),(1547,846363620,5),(1547,859669220,6),(1547,877813221,5),(1547,891118821,6),(1547,909262821,5),(1547,922568422,6),(1547,941317222,5),(1547,954018022,6),(1547,972766822,5),(1547,985467622,6),(1547,1004216422,5),(1547,1017522022,6),(1547,1035666022,5),(1547,1048971622,6),(1547,1067115622,5),(1547,1080421222,6),(1547,1099170022,5),(1547,1111870822,6),(1547,1130619622,5),(1547,1143320423,6),(1547,1162069223,5),(1547,1174770023,6),(1547,1193518823,5),(1547,1206824423,6),(1547,1224968423,5),(1547,1238274024,6),(1547,1256418024,5),(1547,1269723624,6),(1547,1288472424,5),(1547,1301173224,9),(1547,1414267225,5),(1548,-2147483648,0),(1548,-1441162680,1),(1548,-405140400,3),(1548,354916809,2),(1548,370724410,3),(1548,386452810,2),(1548,402260411,3),(1548,417988811,2),(1548,433796412,3),(1548,449611212,2),(1548,465343212,4),(1548,481068012,5),(1548,496792813,4),(1548,512517613,5),(1548,528242413,4),(1548,543967213,5),(1548,559692013,4),(1548,575416814,5),(1548,591141614,4),(1548,606866414,5),(1548,622591214,4),(1548,638316015,5),(1548,654645615,4),(1548,670370416,6),(1548,686098816,7),(1548,701823616,6),(1548,717548417,7),(1548,733273217,6),(1548,748998018,7),(1548,764722818,6),(1548,780447619,7),(1548,796172419,6),(1548,811897219,4),(1548,852062420,3),(1548,859672820,5),(1548,877816821,4),(1548,891122421,5),(1548,909266421,4),(1548,922572022,5),(1548,941320822,4),(1548,954021622,5),(1548,972770422,4),(1548,985471222,5),(1548,1004220022,4),(1548,1017525622,5),(1548,1035669622,4),(1548,1048975222,5),(1548,1067119222,4),(1548,1080424822,5),(1548,1099173622,4),(1548,1111874422,5),(1548,1130623222,4),(1548,1143324023,5),(1548,1162072823,4),(1548,1174773623,5),(1548,1193522423,4),(1548,1206828023,5),(1548,1224972023,4),(1548,1238277624,5),(1548,1256421624,4),(1548,1269727224,5),(1548,1288476024,4),(1548,1293825624,3),(1548,1301176824,5),(1548,1319925624,4),(1549,-2147483648,1),(1549,-1830376800,6),(1549,-1689548400,2),(1549,-1677794400,3),(1549,-1667430000,4),(1549,-1647730800,5),(1549,-1635807600,4),(1549,-1616194800,5),(1549,-1604358000,4),(1549,-1584658800,5),(1549,-1572735600,4),(1549,-1553036400,5),(1549,-1541199600,4),(1549,-1521500400,5),(1549,-1442444400,4),(1549,-1426806000,5),(1549,-1379286000,4),(1549,-1364770800,5),(1549,-1348441200,4),(1549,-1333321200,5),(1549,-1316386800,4),(1549,-1301266800,5),(1549,-1284332400,4),(1549,-1269817200,5),(1549,-1221433200,4),(1549,-1206918000,5),(1549,-1191193200,4),(1549,-1175468400,5),(1549,-1127689200,4),(1549,-1111964400,5),(1549,-1096844400,4),(1549,-1080514800,5),(1549,-1063580400,4),(1549,-1049065200,5),(1549,-1033340400,4),(1549,-1017615600,5),(1549,-1002495600,4),(1549,-986166000,5),(1549,-969231600,4),(1549,-950482800,5),(1549,-942015600,4),(1549,-922662000,5),(1549,-906937200,4),(1549,-891126000,5),(1549,-877302000,4),(1549,-873676800,7),(1549,-864000000,4),(1549,-857948400,5),(1549,-845852400,4),(1549,-842832000,7),(1549,-831340800,4),(1549,-825894000,5),(1549,-814402800,4),(1549,-810777600,7),(1549,-799891200,4),(1549,-794444400,5),(1549,-782953200,4),(1549,-779328000,7),(1549,-768441600,4),(1549,-762994800,5),(1549,-749084400,4),(1549,-733359600,5),(1549,-717624000,4),(1549,-701899200,5),(1549,-686174400,4),(1549,-670449600,5),(1549,-654724800,4),(1549,-639000000,5),(1549,-591825600,4),(1549,-575496000,5),(1549,-559771200,4),(1549,-544046400,5),(1549,-528321600,4),(1549,-512596800,5),(1549,-496872000,4),(1549,-481147200,5),(1549,-465422400,4),(1549,-449697600,5),(1549,-433972800,4),(1549,-417643200,5),(1549,-401918400,4),(1549,-386193600,5),(1549,-370468800,4),(1549,-354744000,5),(1549,-339019200,4),(1549,-323294400,5),(1549,-307569600,4),(1549,-291844800,5),(1549,-276120000,4),(1549,-260395200,5),(1549,-244670400,4),(1549,-228340800,5),(1549,-212616000,4),(1549,-196891200,5),(1549,-181166400,4),(1549,-165441600,5),(1549,-149716800,4),(1549,-133992000,5),(1549,-118267200,9),(1549,228272406,7),(1549,243997206,8),(1549,260326807,7),(1549,276051607,8),(1549,291776408,7),(1549,307504808,8),(1549,323226009,7),(1549,338954409,8),(1549,354679209,7),(1549,370404010,8),(1549,386128810,7),(1549,401853611,8),(1549,417582011,7),(1549,433303212,8),(1549,449028012,7),(1549,465357612,8),(1549,481082412,7),(1549,496807213,8),(1549,512532013,7),(1549,528256813,8),(1549,543981613,7),(1549,559706413,8),(1549,575431214,7),(1549,591156014,8),(1549,606880814,7),(1549,622605614,8),(1549,638330415,7),(1549,654660015,8),(1549,670384816,7),(1549,686109616,8),(1549,701834416,7),(1549,717559217,10),(1549,733280417,11),(1549,749005218,12),(1549,764730018,11),(1549,780454819,12),(1549,796179619,11),(1549,811904419,12),(1549,828234020,11),(1549,846378020,12),(1549,859683620,11),(1549,877827621,12),(1549,891133221,11),(1549,909277221,12),(1549,922582822,11),(1549,941331622,12),(1549,954032422,11),(1549,972781222,12),(1549,985482022,11),(1549,1004230822,12),(1549,1017536422,11),(1549,1035680422,12),(1549,1048986022,11),(1549,1067130022,12),(1549,1080435622,11),(1549,1099184422,12),(1549,1111885222,11),(1549,1130634022,12),(1549,1143334823,11),(1549,1162083623,12),(1549,1174784423,11),(1549,1193533223,12),(1549,1206838823,11),(1549,1224982823,12),(1549,1238288424,11),(1549,1256432424,12),(1549,1269738024,11),(1549,1288486824,12),(1549,1301187624,11),(1549,1319936424,12),(1549,1332637224,11),(1549,1351386025,12),(1549,1364691625,11),(1549,1382835625,12),(1549,1396141225,11),(1549,1414285225,12),(1549,1427590825,11),(1549,1445734826,12),(1549,1459040426,11),(1549,1477789226,12),(1549,1490490027,11),(1549,1509238827,12),(1549,1521939627,11),(1549,1540688427,12),(1549,1553994027,11),(1549,1572138027,12),(1549,1585443627,11),(1549,1603587627,12),(1549,1616893227,11),(1549,1635642027,12),(1549,1648342827,11),(1549,1667091627,12),(1549,1679792427,11),(1549,1698541227,12),(1549,1711846827,11),(1549,1729990827,12),(1549,1743296427,11),(1549,1761440427,12),(1549,1774746027,11),(1549,1792890027,12),(1549,1806195627,11),(1549,1824944427,12),(1549,1837645227,11),(1549,1856394027,12),(1549,1869094827,11),(1549,1887843627,12),(1549,1901149227,11),(1549,1919293227,12),(1549,1932598827,11),(1549,1950742827,12),(1549,1964048427,11),(1549,1982797227,12),(1549,1995498027,11),(1549,2014246827,12),(1549,2026947627,11),(1549,2045696427,12),(1549,2058397227,11),(1549,2077146027,12),(1549,2090451627,11),(1549,2108595627,12),(1549,2121901227,11),(1549,2140045227,12),(1550,-2147483648,0),(1550,-1262281242,1),(1550,136360803,2),(1550,152082003,1),(1550,167810404,2),(1550,183531604,1),(1550,199260005,2),(1550,215586005,1),(1550,230709606,2),(1550,247035606,1),(1550,262764007,2),(1550,278485207,1),(1550,294213608,2),(1550,309934808,1),(1550,325663209,2),(1550,341384409,1),(1550,357112809,2),(1550,372834010,1),(1550,388562410,2),(1550,404888411,1),(1550,420012011,2),(1550,436338012,1),(1550,452066412,2),(1550,467787612,1),(1550,483516012,2),(1550,499237213,1),(1550,514965613,2),(1550,530686813,1),(1550,544600813,2),(1550,562136413,1),(1550,576050414,2),(1550,594190814,1),(1550,607500014,2),(1550,625640414,1),(1550,638949615,2),(1550,657090015,1),(1550,671004016,2),(1550,688539616,1),(1550,702453616,2),(1550,719989217,1),(1550,733903217,2),(1550,752043618,1),(1550,765352818,2),(1550,783493219,1),(1550,796802419,2),(1550,814942819,1),(1550,828856820,2),(1550,846392420,1),(1550,860306420,2),(1550,877842021,1),(1550,891756021,2),(1550,909291621,1),(1550,923205622,2),(1550,941346022,1),(1550,954655222,2),(1550,972795622,1),(1550,986104822,2),(1550,1004245222,1),(1550,1018159222,2),(1550,1035694822,1),(1550,1049608822,2),(1550,1067144422,1),(1550,1081058422,2),(1550,1099198822,1),(1550,1112508022,2),(1550,1130648422,1),(1550,1143957623,2),(1550,1162098023,1),(1550,1173592823,2),(1550,1194152423,1),(1550,1205042423,2),(1550,1225602023,1),(1550,1236492024,2),(1550,1257051624,1),(1550,1268546424,2),(1550,1289106024,1),(1550,1299996024,2),(1550,1320555624,1),(1550,1331445624,2),(1550,1352005225,1),(1550,1362895225,2),(1550,1383454825,1),(1550,1394344825,2),(1550,1414904425,1),(1550,1425794425,2),(1550,1446354026,1),(1550,1457848826,2),(1550,1478408426,1),(1550,1489298427,2),(1550,1509858027,1),(1550,1520748027,2),(1550,1541307627,1),(1550,1552197627,2),(1550,1572757227,1),(1550,1583647227,2),(1550,1604206827,1),(1550,1615701627,2),(1550,1636261227,1),(1550,1647151227,2),(1550,1667710827,1),(1550,1678600827,2),(1550,1699160427,1),(1550,1710050427,2),(1550,1730610027,1),(1550,1741500027,2),(1550,1762059627,1),(1550,1772949627,2),(1550,1793509227,1),(1550,1805004027,2),(1550,1825563627,1),(1550,1836453627,2),(1550,1857013227,1),(1550,1867903227,2),(1550,1888462827,1),(1550,1899352827,2),(1550,1919912427,1),(1550,1930802427,2),(1550,1951362027,1),(1550,1962856827,2),(1550,1983416427,1),(1550,1994306427,2),(1550,2014866027,1),(1550,2025756027,2),(1550,2046315627,1),(1550,2057205627,2),(1550,2077765227,1),(1550,2088655227,2),(1550,2109214827,1),(1550,2120104827,2),(1550,2140664427,1),(1551,-2147483648,0),(1551,-1509663504,1),(1551,-733874400,2),(1551,323827209,3),(1551,338950809,4),(1551,354675609,5),(1551,370400410,4),(1551,386125210,5),(1551,401850011,4),(1551,417574811,5),(1551,433299612,4),(1551,449024412,5),(1551,465354012,4),(1551,481078812,5),(1551,496803613,4),(1551,512528413,5),(1551,528253213,4),(1551,543978013,5),(1551,559702813,4),(1551,575427614,5),(1551,591152414,4),(1551,606877214,5),(1551,622602014,4),(1551,638326815,5),(1551,654656415,4),(1551,670381216,5),(1551,686106016,4),(1551,701830816,5),(1551,717555617,4),(1551,733280417,5),(1551,749005218,4),(1551,764730018,5),(1551,780454819,4),(1551,796179619,5),(1551,811904419,4),(1551,828234020,5),(1551,846378020,4),(1551,859683620,5),(1551,877827621,4),(1551,891133221,5),(1551,909277221,4),(1551,922582822,5),(1551,941331622,4),(1551,954032422,5),(1551,972781222,4),(1551,985482022,5),(1551,1004230822,4),(1551,1017536422,5),(1551,1035680422,4),(1551,1048986022,5),(1551,1067130022,4),(1551,1080435622,5),(1551,1099184422,4),(1551,1111885222,5),(1551,1130634022,4),(1551,1143334823,5),(1551,1162083623,4),(1551,1174784423,5),(1551,1193533223,4),(1551,1206838823,5),(1551,1224982823,4),(1551,1238288424,5),(1551,1256432424,4),(1551,1269738024,5),(1551,1288486824,4),(1551,1301187624,5),(1551,1319936424,4),(1551,1332637224,5),(1551,1351386025,4),(1551,1364691625,5),(1551,1382835625,4),(1551,1396141225,5),(1551,1414285225,4),(1551,1427590825,5),(1551,1445734826,4),(1551,1459040426,5),(1551,1477789226,4),(1551,1490490027,5),(1551,1509238827,4),(1551,1521939627,5),(1551,1540688427,4),(1551,1553994027,5),(1551,1572138027,4),(1551,1585443627,5),(1551,1603587627,4),(1551,1616893227,5),(1551,1635642027,4),(1551,1648342827,5),(1551,1667091627,4),(1551,1679792427,5),(1551,1698541227,4),(1551,1711846827,5),(1551,1729990827,4),(1551,1743296427,5),(1551,1761440427,4),(1551,1774746027,5),(1551,1792890027,4),(1551,1806195627,5),(1551,1824944427,4),(1551,1837645227,5),(1551,1856394027,4),(1551,1869094827,5),(1551,1887843627,4),(1551,1901149227,5),(1551,1919293227,4),(1551,1932598827,5),(1551,1950742827,4),(1551,1964048427,5),(1551,1982797227,4),(1551,1995498027,5),(1551,2014246827,4),(1551,2026947627,5),(1551,2045696427,4),(1551,2058397227,5),(1551,2077146027,4),(1551,2090451627,5),(1551,2108595627,4),(1551,2121901227,5),(1551,2140045227,4),(1552,-2147483648,0),(1552,-1830376800,1),(1552,-862610400,2),(1552,-764118000,3),(1552,186120004,4),(1553,-2147483648,0),(1553,-1955748776,1),(1553,354675609,2),(1553,370400410,3),(1553,386125210,2),(1553,401850011,3),(1553,417574811,2),(1553,433299612,3),(1553,449024412,2),(1553,465354012,3),(1553,481078812,2),(1553,496803613,3),(1553,512528413,2),(1553,528253213,3),(1553,543978013,2),(1553,559702813,3),(1553,575427614,2),(1553,591152414,3),(1553,606877214,2),(1553,622602014,3),(1553,638326815,2),(1553,654656415,3),(1553,670381216,2),(1553,686106016,3),(1553,701830816,2),(1553,717555617,3),(1553,733280417,2),(1553,749005218,3),(1553,764730018,2),(1553,780454819,3),(1553,796179619,2),(1553,811904419,3),(1553,828234020,2),(1553,846378020,3),(1553,859683620,2),(1553,877827621,3),(1553,891133221,2),(1553,909277221,3),(1553,922582822,2),(1553,941331622,3),(1553,954032422,2),(1553,972781222,3),(1553,985482022,2),(1553,1004230822,3),(1553,1017536422,2),(1553,1035680422,3),(1553,1048986022,2),(1553,1067130022,3),(1553,1080435622,2),(1553,1099184422,3),(1553,1111885222,2),(1553,1130634022,3),(1553,1143334823,2),(1553,1162083623,3),(1553,1174784423,2),(1553,1193533223,3),(1553,1206838823,2),(1553,1224982823,3),(1553,1238288424,2),(1553,1256432424,3),(1553,1269738024,2),(1553,1288486824,3),(1553,1301187624,2),(1553,1319936424,3),(1553,1332637224,2),(1553,1351386025,3),(1553,1364691625,2),(1553,1382835625,3),(1553,1396141225,2),(1553,1414285225,3),(1553,1427590825,2),(1553,1445734826,3),(1553,1459040426,2),(1553,1477789226,3),(1553,1490490027,2),(1553,1509238827,3),(1553,1521939627,2),(1553,1540688427,3),(1553,1553994027,2),(1553,1572138027,3),(1553,1585443627,2),(1553,1603587627,3),(1553,1616893227,2),(1553,1635642027,3),(1553,1648342827,2),(1553,1667091627,3),(1553,1679792427,2),(1553,1698541227,3),(1553,1711846827,2),(1553,1729990827,3),(1553,1743296427,2),(1553,1761440427,3),(1553,1774746027,2),(1553,1792890027,3),(1553,1806195627,2),(1553,1824944427,3),(1553,1837645227,2),(1553,1856394027,3),(1553,1869094827,2),(1553,1887843627,3),(1553,1901149227,2),(1553,1919293227,3),(1553,1932598827,2),(1553,1950742827,3),(1553,1964048427,2),(1553,1982797227,3),(1553,1995498027,2),(1553,2014246827,3),(1553,2026947627,2),(1553,2045696427,3),(1553,2058397227,2),(1553,2077146027,3),(1553,2090451627,2),(1553,2108595627,3),(1553,2121901227,2),(1553,2140045227,3),(1554,-2147483648,0),(1554,-1955748776,1),(1554,354675609,2),(1554,370400410,3),(1554,386125210,2),(1554,401850011,3),(1554,417574811,2),(1554,433299612,3),(1554,449024412,2),(1554,465354012,3),(1554,481078812,2),(1554,496803613,3),(1554,512528413,2),(1554,528253213,3),(1554,543978013,2),(1554,559702813,3),(1554,575427614,2),(1554,591152414,3),(1554,606877214,2),(1554,622602014,3),(1554,638326815,2),(1554,654656415,3),(1554,670381216,2),(1554,686106016,3),(1554,701830816,2),(1554,717555617,3),(1554,733280417,2),(1554,749005218,3),(1554,764730018,2),(1554,780454819,3),(1554,796179619,2),(1554,811904419,3),(1554,828234020,2),(1554,846378020,3),(1554,859683620,2),(1554,877827621,3),(1554,891133221,2),(1554,909277221,3),(1554,922582822,2),(1554,941331622,3),(1554,954032422,2),(1554,972781222,3),(1554,985482022,2),(1554,1004230822,3),(1554,1017536422,2),(1554,1035680422,3),(1554,1048986022,2),(1554,1067130022,3),(1554,1080435622,2),(1554,1099184422,3),(1554,1111885222,2),(1554,1130634022,3),(1554,1143334823,2),(1554,1162083623,3),(1554,1174784423,2),(1554,1193533223,3),(1554,1206838823,2),(1554,1224982823,3),(1554,1238288424,2),(1554,1256432424,3),(1554,1269738024,2),(1554,1288486824,3),(1554,1301187624,2),(1554,1319936424,3),(1554,1332637224,2),(1554,1351386025,3),(1554,1364691625,2),(1554,1382835625,3),(1554,1396141225,2),(1554,1414285225,3),(1554,1427590825,2),(1554,1445734826,3),(1554,1459040426,2),(1554,1477789226,3),(1554,1490490027,2),(1554,1509238827,3),(1554,1521939627,2),(1554,1540688427,3),(1554,1553994027,2),(1554,1572138027,3),(1554,1585443627,2),(1554,1603587627,3),(1554,1616893227,2),(1554,1635642027,3),(1554,1648342827,2),(1554,1667091627,3),(1554,1679792427,2),(1554,1698541227,3),(1554,1711846827,2),(1554,1729990827,3),(1554,1743296427,2),(1554,1761440427,3),(1554,1774746027,2),(1554,1792890027,3),(1554,1806195627,2),(1554,1824944427,3),(1554,1837645227,2),(1554,1856394027,3),(1554,1869094827,2),(1554,1887843627,3),(1554,1901149227,2),(1554,1919293227,3),(1554,1932598827,2),(1554,1950742827,3),(1554,1964048427,2),(1554,1982797227,3),(1554,1995498027,2),(1554,2014246827,3),(1554,2026947627,2),(1554,2045696427,3),(1554,2058397227,2),(1554,2077146027,3),(1554,2090451627,2),(1554,2108595627,3),(1554,2121901227,2),(1554,2140045227,3),(1555,-2147483648,2),(1555,-1691884800,1),(1555,-1680573600,2),(1555,-927511200,1),(1555,-857257200,3),(1555,-844556400,4),(1555,-828226800,3),(1555,-812502000,4),(1555,-796777200,3),(1555,-781052400,4),(1555,-765327600,3),(1555,-340844400,4),(1555,-324514800,3),(1555,-308790000,4),(1555,-293065200,3),(1555,-277340400,4),(1555,-261615600,3),(1555,-245890800,4),(1555,-230166000,3),(1555,-214441200,4),(1555,-198716400,3),(1555,-182991600,4),(1555,-166662000,3),(1555,-147913200,4),(1555,-135212400,3),(1555,315529208,2),(1555,323830809,5),(1555,338950809,6),(1555,354675609,5),(1555,370400410,6),(1555,386125210,5),(1555,401850011,6),(1555,417574811,5),(1555,433299612,6),(1555,449024412,5),(1555,465354012,6),(1555,481078812,5),(1555,496803613,6),(1555,512528413,5),(1555,528253213,6),(1555,543978013,5),(1555,559702813,6),(1555,575427614,5),(1555,591152414,6),(1555,606877214,5),(1555,622602014,6),(1555,638326815,5),(1555,654656415,6),(1555,670381216,5),(1555,686106016,6),(1555,701830816,5),(1555,717555617,6),(1555,733280417,5),(1555,749005218,6),(1555,764730018,5),(1555,780454819,6),(1555,796179619,5),(1555,811904419,6),(1555,828234020,5),(1555,846378020,6),(1555,859683620,5),(1555,877827621,6),(1555,891133221,5),(1555,909277221,6),(1555,922582822,5),(1555,941331622,6),(1555,954032422,5),(1555,972781222,6),(1555,985482022,5),(1555,1004230822,6),(1555,1017536422,5),(1555,1035680422,6),(1555,1048986022,5),(1555,1067130022,6),(1555,1080435622,5),(1555,1099184422,6),(1555,1111885222,5),(1555,1130634022,6),(1555,1143334823,5),(1555,1162083623,6),(1555,1174784423,5),(1555,1193533223,6),(1555,1206838823,5),(1555,1224982823,6),(1555,1238288424,5),(1555,1256432424,6),(1555,1269738024,5),(1555,1288486824,6),(1555,1301187624,5),(1555,1319936424,6),(1555,1332637224,5),(1555,1351386025,6),(1555,1364691625,5),(1555,1382835625,6),(1555,1396141225,5),(1555,1414285225,6),(1555,1427590825,5),(1555,1445734826,6),(1555,1459040426,5),(1555,1477789226,6),(1555,1490490027,5),(1555,1509238827,6),(1555,1521939627,5),(1555,1540688427,6),(1555,1553994027,5),(1555,1572138027,6),(1555,1585443627,5),(1555,1603587627,6),(1555,1616893227,5),(1555,1635642027,6),(1555,1648342827,5),(1555,1667091627,6),(1555,1679792427,5),(1555,1698541227,6),(1555,1711846827,5),(1555,1729990827,6),(1555,1743296427,5),(1555,1761440427,6),(1555,1774746027,5),(1555,1792890027,6),(1555,1806195627,5),(1555,1824944427,6),(1555,1837645227,5),(1555,1856394027,6),(1555,1869094827,5),(1555,1887843627,6),(1555,1901149227,5),(1555,1919293227,6),(1555,1932598827,5),(1555,1950742827,6),(1555,1964048427,5),(1555,1982797227,6),(1555,1995498027,5),(1555,2014246827,6),(1555,2026947627,5),(1555,2045696427,6),(1555,2058397227,5),(1555,2077146027,6),(1555,2090451627,5),(1555,2108595627,6),(1555,2121901227,5),(1555,2140045227,6),(1556,-2147483648,1),(1556,-1830380400,6),(1556,-1689552000,2),(1556,-1677798000,3),(1556,-1667433600,4),(1556,-1647734400,5),(1556,-1635811200,4),(1556,-1616198400,5),(1556,-1604361600,4),(1556,-1584662400,5),(1556,-1572739200,4),(1556,-1553040000,5),(1556,-1541203200,4),(1556,-1521504000,5),(1556,-1442448000,4),(1556,-1426809600,5),(1556,-1379289600,4),(1556,-1364774400,5),(1556,-1348444800,4),(1556,-1333324800,5),(1556,-1316390400,4),(1556,-1301270400,5),(1556,-1284336000,4),(1556,-1269820800,5),(1556,-1221436800,4),(1556,-1206921600,5),(1556,-1191196800,4),(1556,-1175472000,5),(1556,-1127692800,4),(1556,-1111968000,5),(1556,-1096848000,4),(1556,-1080518400,5),(1556,-1063584000,4),(1556,-1049068800,5),(1556,-1033344000,4),(1556,-1017619200,5),(1556,-1002499200,4),(1556,-986169600,5),(1556,-969235200,4),(1556,-950486400,5),(1556,-942019200,4),(1556,-922665600,5),(1556,-906940800,4),(1556,-891129600,5),(1556,-877305600,4),(1556,-873680400,7),(1556,-864003600,4),(1556,-857952000,5),(1556,-845856000,4),(1556,-842835600,7),(1556,-831344400,4),(1556,-825897600,5),(1556,-814406400,4),(1556,-810781200,7),(1556,-799894800,4),(1556,-794448000,5),(1556,-782956800,4),(1556,-779331600,7),(1556,-768445200,4),(1556,-762998400,5),(1556,-749088000,4),(1556,-733363200,5),(1556,-717627600,4),(1556,-701902800,5),(1556,-686178000,4),(1556,-670453200,5),(1556,-654728400,4),(1556,-639003600,5),(1556,-591829200,4),(1556,-575499600,5),(1556,-559774800,4),(1556,-544050000,5),(1556,-528325200,4),(1556,-512600400,5),(1556,-496875600,4),(1556,-481150800,5),(1556,-465426000,4),(1556,-449701200,5),(1556,-433976400,4),(1556,-417646800,5),(1556,-401922000,4),(1556,-386197200,5),(1556,-370472400,4),(1556,-354747600,5),(1556,-339022800,4),(1556,-323298000,5),(1556,-307573200,4),(1556,-291848400,5),(1556,-276123600,4),(1556,-260398800,5),(1556,-244674000,4),(1556,-228344400,5),(1556,-212619600,4),(1556,-196894800,5),(1556,-181170000,4),(1556,-165445200,5),(1556,-149720400,4),(1556,-133995600,5),(1556,-118270800,10),(1556,228268806,8),(1556,243993606,9),(1556,260323207,8),(1556,276048007,9),(1556,291772808,8),(1556,307501208,9),(1556,323222409,8),(1556,338950809,9),(1556,354675609,8),(1556,370400410,9),(1556,386125210,8),(1556,401850011,9),(1556,417578411,8),(1556,433299612,11),(1556,449024412,12),(1556,465354012,11),(1556,481078812,12),(1556,496803613,11),(1556,512528413,12),(1556,528253213,11),(1556,543978013,12),(1556,559702813,11),(1556,575427614,12),(1556,591152414,11),(1556,606877214,12),(1556,622602014,11),(1556,638326815,12),(1556,654656415,11),(1556,670381216,12),(1556,686106016,11),(1556,701830816,12),(1556,717555617,11),(1556,733280417,12),(1556,749005218,11),(1556,764730018,12),(1556,780454819,11),(1556,796179619,12),(1556,811904419,11),(1556,828234020,12),(1556,846378020,11),(1556,859683620,12),(1556,877827621,11),(1556,891133221,12),(1556,909277221,11),(1556,922582822,12),(1556,941331622,11),(1556,954032422,12),(1556,972781222,11),(1556,985482022,12),(1556,1004230822,11),(1556,1017536422,12),(1556,1035680422,11),(1556,1048986022,12),(1556,1067130022,11),(1556,1080435622,12),(1556,1099184422,11),(1556,1111885222,12),(1556,1130634022,11),(1556,1143334823,12),(1556,1162083623,11),(1556,1174784423,12),(1556,1193533223,11),(1556,1206838823,12),(1556,1224982823,11),(1556,1238288424,12),(1556,1256432424,11),(1556,1269738024,12),(1556,1288486824,11),(1556,1301187624,12),(1556,1319936424,11),(1556,1332637224,12),(1556,1351386025,11),(1556,1364691625,12),(1556,1382835625,11),(1556,1396141225,12),(1556,1414285225,11),(1556,1427590825,12),(1556,1445734826,11),(1556,1459040426,12),(1556,1477789226,11),(1556,1490490027,12),(1556,1509238827,11),(1556,1521939627,12),(1556,1540688427,11),(1556,1553994027,12),(1556,1572138027,11),(1556,1585443627,12),(1556,1603587627,11),(1556,1616893227,12),(1556,1635642027,11),(1556,1648342827,12),(1556,1667091627,11),(1556,1679792427,12),(1556,1698541227,11),(1556,1711846827,12),(1556,1729990827,11),(1556,1743296427,12),(1556,1761440427,11),(1556,1774746027,12),(1556,1792890027,11),(1556,1806195627,12),(1556,1824944427,11),(1556,1837645227,12),(1556,1856394027,11),(1556,1869094827,12),(1556,1887843627,11),(1556,1901149227,12),(1556,1919293227,11),(1556,1932598827,12),(1556,1950742827,11),(1556,1964048427,12),(1556,1982797227,11),(1556,1995498027,12),(1556,2014246827,11),(1556,2026947627,12),(1556,2045696427,11),(1556,2058397227,12),(1556,2077146027,11),(1556,2090451627,12),(1556,2108595627,11),(1556,2121901227,12),(1556,2140045227,11),(1557,-2147483648,0),(1557,-1956609120,2),(1557,-1668211200,1),(1557,-1647212400,2),(1557,-1636675200,1),(1557,-1613430000,2),(1557,-1605139200,1),(1557,-1581894000,2),(1557,-1539561600,1),(1557,-1531350000,2),(1557,-968025600,1),(1557,-952293600,2),(1557,-942008400,1),(1557,-920239200,3),(1557,-909957600,4),(1557,-888789600,3),(1557,-877903200,4),(1557,-857944800,3),(1557,-846453600,4),(1557,-826495200,3),(1557,-815004000,4),(1557,-795045600,3),(1557,-783554400,4),(1557,-762991200,3),(1557,-752104800,4),(1557,-731541600,3),(1557,-717631200,4),(1557,-700092000,3),(1557,-686181600,4),(1557,-668642400,3),(1557,-654732000,4),(1557,-636588000,3),(1557,-623282400,4),(1557,-605743200,3),(1557,-591832800,4),(1557,-573688800,3),(1557,-559778400,4),(1557,-542239200,3),(1557,-528328800,4),(1557,-510789600,3),(1557,-496879200,4),(1557,-479340000,3),(1557,-465429600,4),(1557,-447890400,3),(1557,-433980000,4),(1557,-415836000,3),(1557,-401925600,4),(1557,-384386400,3),(1557,-370476000,4),(1557,-352936800,3),(1557,-339026400,4),(1557,-321487200,3),(1557,-307576800,4),(1557,-290037600,3),(1557,-276127200,4),(1557,-258588000,3),(1557,-244677600,4),(1557,-226533600,3),(1557,-212623200,4),(1557,-195084000,3),(1557,-181173600,4),(1557,-163634400,3),(1557,-149724000,4),(1557,-132184800,3),(1557,-118274400,4),(1557,-100735200,3),(1557,-86824800,4),(1557,-68680800,3),(1557,-54770400,5),(1559,-2147483648,0),(1559,-1830383032,1),(1560,-2147483648,1),(1560,-1824235716,3),(1560,-1018209600,2),(1560,-1003093200,3),(1560,-986760000,2),(1560,-971643600,3),(1560,-954705600,2),(1560,-939589200,3),(1560,-923256000,2),(1560,-908139600,3),(1560,-891806400,2),(1560,-876690000,3),(1560,-860356800,2),(1560,-852066000,3),(1560,420609611,5),(1560,433306812,4),(1560,452052012,5),(1560,464151612,4),(1560,483501612,5),(1560,495601213,2),(1560,514350013,3),(1560,527054413,2),(1560,545799613,3),(1560,558504013,2),(1560,577249214,3),(1560,589953614,2),(1560,608698814,3),(1560,621403214,2),(1560,640753215,3),(1560,652852815,2),(1560,672202816,3),(1560,684907216,2),(1560,703652416,3),(1560,716356817,2),(1560,735102017,3),(1560,747806418,2),(1560,766551618,3),(1560,779256019,2),(1560,798001219,3),(1560,810705619,2),(1560,830055620,3),(1560,842760020,2),(1560,861505220,3),(1560,874209621,2),(1560,892954821,3),(1560,905659221,2),(1560,924404422,3),(1560,937108822,2),(1560,955854022,3),(1560,968558422,2),(1560,987310822,3),(1560,999410422,2),(1560,1019365222,3),(1560,1030860022,2),(1560,1050814822,3),(1560,1062914422,2),(1560,1082264422,3),(1560,1094364022,2),(1560,1113714022,3),(1560,1125813622,2),(1560,1145163623,3),(1560,1157263223,2),(1560,1176613223,3),(1560,1188712823,2),(1560,1208667623,3),(1560,1220767223,2),(1560,1240117224,3),(1560,1252216824,2),(1560,1271566824,3),(1560,1283666424,5),(1561,-2147483648,2),(1561,-1672567140,1),(1561,-1665392400,2),(1561,-883641600,1),(1561,-876128400,2),(1561,-860400000,1),(1561,-844678800,2),(1561,-828345600,1),(1561,-813229200,2),(1561,57686400,3),(1561,67968000,4),(1561,89136001,3),(1561,100022402,4),(1561,120585602,3),(1561,131472003,4),(1561,152035203,3),(1561,162921604,4),(1561,183484804,3),(1561,194976005,4),(1561,215539205,3),(1561,226425606,4),(1561,246988806,3),(1561,257875207,4),(1561,278438407,3),(1561,289324808,4),(1561,309888008,3),(1561,320774409,4),(1561,341337609,3),(1561,352224009,4),(1561,372787210,3),(1561,386697610,4),(1561,404841611,3),(1561,415728011,4),(1561,436291212,3),(1561,447177612,4),(1561,467740812,3),(1561,478627212,4),(1561,499190413,3),(1561,511286413,4),(1561,530035213,3),(1561,542736013,4),(1561,562089613,3),(1561,574790414,4),(1561,594144014,3),(1561,606240014,4),(1561,625593614,3),(1561,636480015,4),(1561,657043215,3),(1561,667929616,4),(1561,688492816,3),(1561,699379216,4),(1561,719942417,3),(1561,731433617,4),(1561,751996818,3),(1561,762883218,4),(1561,783446419,3),(1561,794332819,4),(1561,814896019,3),(1561,828201620,4),(1561,846345620,3),(1561,859651220,4),(1561,877795221,3),(1561,891100821,4),(1561,909244821,3),(1561,922550422,4),(1561,941299222,3),(1561,954000022,4),(1561,967305622,3),(1561,985449622,4),(1561,1004198422,3),(1561,1017504022,4),(1561,1035648022,3),(1561,1048953622,4),(1561,1067097622,3),(1561,1080403222,4),(1561,1099152022,3),(1561,1111852822,4),(1561,1130601622,3),(1561,1143907223,4),(1561,1162051223,3),(1561,1174752023,4),(1561,1193500823,3),(1561,1207411223,4),(1561,1223136023,3),(1561,1238860824,4),(1561,1254585624,3),(1561,1270310424,4),(1561,1286035224,3),(1561,1301760024,4),(1561,1317484824,3),(1561,1333209624,4),(1561,1349539225,3),(1561,1365264025,4),(1561,1380988825,3),(1561,1396713625,4),(1561,1412438425,3),(1561,1428163225,4),(1561,1443888026,3),(1561,1459612826,4),(1561,1475337626,3),(1561,1491062427,4),(1561,1506787227,3),(1561,1522512027,4),(1561,1538841627,3),(1561,1554566427,4),(1561,1570291227,3),(1561,1586016027,4),(1561,1601740827,3),(1561,1617465627,4),(1561,1633190427,3),(1561,1648915227,4),(1561,1664640027,3),(1561,1680364827,4),(1561,1696089627,3),(1561,1712419227,4),(1561,1728144027,3),(1561,1743868827,4),(1561,1759593627,3),(1561,1775318427,4),(1561,1791043227,3),(1561,1806768027,4),(1561,1822492827,3),(1561,1838217627,4),(1561,1853942427,3),(1561,1869667227,4),(1561,1885996827,3),(1561,1901721627,4),(1561,1917446427,3),(1561,1933171227,4),(1561,1948896027,3),(1561,1964620827,4),(1561,1980345627,3),(1561,1996070427,4),(1561,2011795227,3),(1561,2027520027,4),(1561,2043244827,3),(1561,2058969627,4),(1561,2075299227,3),(1561,2091024027,4),(1561,2106748827,3),(1561,2122473627,4),(1561,2138198427,3),(1562,-2147483648,2),(1562,-1672565340,1),(1562,-1665390600,2),(1562,-883639800,1),(1562,-876126600,2),(1562,-860398200,1),(1562,-844677000,2),(1562,-828343800,1),(1562,-813227400,2),(1562,57688200,3),(1562,67969800,4),(1562,89137801,3),(1562,100024202,4),(1562,120587402,3),(1562,131473803,4),(1562,152037003,3),(1562,162923404,4),(1562,183486604,3),(1562,194977805,4),(1562,215541005,3),(1562,226427406,4),(1562,246990606,3),(1562,257877007,4),(1562,278440207,3),(1562,289326608,4),(1562,309889808,3),(1562,320776209,4),(1562,341339409,3),(1562,352225809,4),(1562,372789010,3),(1562,384280210,4),(1562,404843411,3),(1562,415729811,4),(1562,436293012,3),(1562,447179412,4),(1562,467742612,3),(1562,478629012,4),(1562,499192213,3),(1562,511288213,4),(1562,530037013,3),(1562,542737813,4),(1562,562091413,3),(1562,574792214,4),(1562,594145814,3),(1562,606241814,4),(1562,625595414,3),(1562,637691415,4),(1562,657045015,3),(1562,667931416,4),(1562,688494616,3),(1562,701195416,4),(1562,719944217,3),(1562,731435417,4),(1562,751998618,3),(1562,764094618,4),(1562,783448219,3),(1562,796149019,4),(1562,814897819,3),(1562,828203420,4),(1562,846347420,3),(1562,859653020,4),(1562,877797021,3),(1562,891102621,4),(1562,909246621,3),(1562,922552222,4),(1562,941301022,3),(1562,954001822,4),(1562,972750622,3),(1562,985451422,4),(1562,1004200222,3),(1562,1017505822,4),(1562,1035649822,3),(1562,1048955422,4),(1562,1067099422,3),(1562,1080405022,4),(1562,1099153822,3),(1562,1111854622,4),(1562,1130603422,3),(1562,1143909023,4),(1562,1162053023,3),(1562,1174753823,4),(1562,1193502623,3),(1562,1207413023,4),(1562,1223137823,3),(1562,1238862624,4),(1562,1254587424,3),(1562,1270312224,4),(1562,1286037024,3),(1562,1301761824,4),(1562,1317486624,3),(1562,1333211424,4),(1562,1349541025,3),(1562,1365265825,4),(1562,1380990625,3),(1562,1396715425,4),(1562,1412440225,3),(1562,1428165025,4),(1562,1443889826,3),(1562,1459614626,4),(1562,1475339426,3),(1562,1491064227,4),(1562,1506789027,3),(1562,1522513827,4),(1562,1538843427,3),(1562,1554568227,4),(1562,1570293027,3),(1562,1586017827,4),(1562,1601742627,3),(1562,1617467427,4),(1562,1633192227,3),(1562,1648917027,4),(1562,1664641827,3),(1562,1680366627,4),(1562,1696091427,3),(1562,1712421027,4),(1562,1728145827,3),(1562,1743870627,4),(1562,1759595427,3),(1562,1775320227,4),(1562,1791045027,3),(1562,1806769827,4),(1562,1822494627,3),(1562,1838219427,4),(1562,1853944227,3),(1562,1869669027,4),(1562,1885998627,3),(1562,1901723427,4),(1562,1917448227,3),(1562,1933173027,4),(1562,1948897827,3),(1562,1964622627,4),(1562,1980347427,3),(1562,1996072227,4),(1562,2011797027,3),(1562,2027521827,4),(1562,2043246627,3),(1562,2058971427,4),(1562,2075301027,3),(1562,2091025827,4),(1562,2106750627,3),(1562,2122475427,4),(1562,2138200227,3),(1563,-2147483648,2),(1563,-1672567140,1),(1563,-1665392400,2),(1563,-883641600,1),(1563,-876128400,2),(1563,-860400000,1),(1563,-844678800,2),(1563,-828345600,1),(1563,-813229200,2),(1563,57686400,3),(1563,67968000,4),(1563,625593614,3),(1563,636480015,4),(1563,657043215,3),(1563,667929616,4),(1563,688492816,3),(1563,699379216,4),(1564,-2147483648,2),(1564,-1672565340,1),(1564,-1665390600,2),(1564,-883639800,1),(1564,-876126600,2),(1564,-860398200,1),(1564,-844677000,2),(1564,-828343800,1),(1564,-813227400,2),(1564,57688200,3),(1564,67969800,4),(1564,89137801,3),(1564,100024202,4),(1564,120587402,3),(1564,131473803,4),(1564,152037003,3),(1564,162923404,4),(1564,183486604,3),(1564,194977805,4),(1564,215541005,3),(1564,226427406,4),(1564,246990606,3),(1564,257877007,4),(1564,278440207,3),(1564,289326608,4),(1564,309889808,3),(1564,320776209,4),(1564,341339409,3),(1564,352225809,4),(1564,372789010,3),(1564,386699410,4),(1564,404843411,3),(1564,415729811,4),(1564,436293012,3),(1564,447179412,4),(1564,467742612,3),(1564,478629012,4),(1564,499192213,3),(1564,511288213,4),(1564,530037013,3),(1564,542737813,4),(1564,562091413,3),(1564,574792214,4),(1564,594145814,3),(1564,606241814,4),(1564,625595414,3),(1564,636481815,4),(1564,657045015,3),(1564,667931416,4),(1564,688494616,3),(1564,699381016,4),(1564,719944217,3),(1564,731435417,4),(1564,751998618,3),(1564,762885018,4),(1564,783448219,3),(1564,794334619,4),(1564,814897819,3),(1564,828203420,4),(1564,846347420,3),(1564,859653020,4),(1564,877797021,3),(1564,891102621,4),(1564,909246621,3),(1564,922552222,4),(1564,941301022,3),(1564,946647022,1),(1564,954001822,4),(1564,972750622,3),(1564,985451422,4),(1564,1004200222,3),(1564,1017505822,4),(1564,1035649822,3),(1564,1048955422,4),(1564,1067099422,3),(1564,1080405022,4),(1564,1099153822,3),(1564,1111854622,4),(1564,1130603422,3),(1564,1143909023,4),(1564,1162053023,3),(1564,1174753823,4),(1564,1193502623,3),(1564,1207413023,4),(1564,1223137823,3),(1564,1238862624,4),(1564,1254587424,3),(1564,1270312224,4),(1564,1286037024,3),(1564,1301761824,4),(1564,1317486624,3),(1564,1333211424,4),(1564,1349541025,3),(1564,1365265825,4),(1564,1380990625,3),(1564,1396715425,4),(1564,1412440225,3),(1564,1428165025,4),(1564,1443889826,3),(1564,1459614626,4),(1564,1475339426,3),(1564,1491064227,4),(1564,1506789027,3),(1564,1522513827,4),(1564,1538843427,3),(1564,1554568227,4),(1564,1570293027,3),(1564,1586017827,4),(1564,1601742627,3),(1564,1617467427,4),(1564,1633192227,3),(1564,1648917027,4),(1564,1664641827,3),(1564,1680366627,4),(1564,1696091427,3),(1564,1712421027,4),(1564,1728145827,3),(1564,1743870627,4),(1564,1759595427,3),(1564,1775320227,4),(1564,1791045027,3),(1564,1806769827,4),(1564,1822494627,3),(1564,1838219427,4),(1564,1853944227,3),(1564,1869669027,4),(1564,1885998627,3),(1564,1901723427,4),(1564,1917448227,3),(1564,1933173027,4),(1564,1948897827,3),(1564,1964622627,4),(1564,1980347427,3),(1564,1996072227,4),(1564,2011797027,3),(1564,2027521827,4),(1564,2043246627,3),(1564,2058971427,4),(1564,2075301027,3),(1564,2091025827,4),(1564,2106750627,3),(1564,2122475427,4),(1564,2138200227,3),(1565,-2147483648,2),(1565,-1672567140,1),(1565,-1665392400,2),(1565,-883641600,1),(1565,-876128400,2),(1565,-860400000,1),(1565,-844678800,2),(1565,-828345600,1),(1565,-813229200,2),(1565,57686400,3),(1565,67968000,4),(1565,89136001,3),(1565,100022402,4),(1565,120585602,3),(1565,131472003,4),(1565,152035203,3),(1565,162921604,4),(1565,183484804,3),(1565,194976005,4),(1565,215539205,3),(1565,226425606,4),(1565,246988806,3),(1565,257875207,4),(1565,278438407,3),(1565,289324808,4),(1565,309888008,3),(1565,320774409,4),(1565,341337609,3),(1565,352224009,4),(1565,372787210,3),(1565,386697610,4),(1565,404841611,3),(1565,415728011,4),(1565,436291212,3),(1565,447177612,4),(1565,467740812,3),(1565,478627212,4),(1565,499190413,3),(1565,511286413,4),(1565,530035213,3),(1565,542736013,4),(1565,562089613,3),(1565,574790414,4),(1565,594144014,3),(1565,606240014,4),(1565,625593614,3),(1565,636480015,4),(1565,657043215,3),(1565,667929616,4),(1565,688492816,3),(1565,699379216,4),(1565,719942417,3),(1565,731433617,4),(1565,751996818,3),(1565,762883218,4),(1565,783446419,3),(1565,794332819,4),(1565,814896019,3),(1565,828201620,4),(1565,846345620,3),(1565,859651220,4),(1565,877795221,3),(1565,891100821,4),(1565,909244821,3),(1565,922550422,4),(1565,941299222,3),(1565,954000022,4),(1565,967305622,3),(1565,985449622,4),(1565,1004198422,3),(1565,1017504022,4),(1565,1035648022,3),(1565,1048953622,4),(1565,1067097622,3),(1565,1080403222,4),(1565,1099152022,3),(1565,1111852822,4),(1565,1130601622,3),(1565,1143907223,4),(1565,1162051223,3),(1565,1174752023,4),(1565,1193500823,3),(1565,1207411223,4),(1565,1223136023,3),(1565,1238860824,4),(1565,1254585624,3),(1565,1270310424,4),(1565,1286035224,3),(1565,1301760024,4),(1565,1317484824,3),(1565,1333209624,4),(1565,1349539225,3),(1565,1365264025,4),(1565,1380988825,3),(1565,1396713625,4),(1565,1412438425,3),(1565,1428163225,4),(1565,1443888026,3),(1565,1459612826,4),(1565,1475337626,3),(1565,1491062427,4),(1565,1506787227,3),(1565,1522512027,4),(1565,1538841627,3),(1565,1554566427,4),(1565,1570291227,3),(1565,1586016027,4),(1565,1601740827,3),(1565,1617465627,4),(1565,1633190427,3),(1565,1648915227,4),(1565,1664640027,3),(1565,1680364827,4),(1565,1696089627,3),(1565,1712419227,4),(1565,1728144027,3),(1565,1743868827,4),(1565,1759593627,3),(1565,1775318427,4),(1565,1791043227,3),(1565,1806768027,4),(1565,1822492827,3),(1565,1838217627,4),(1565,1853942427,3),(1565,1869667227,4),(1565,1885996827,3),(1565,1901721627,4),(1565,1917446427,3),(1565,1933171227,4),(1565,1948896027,3),(1565,1964620827,4),(1565,1980345627,3),(1565,1996070427,4),(1565,2011795227,3),(1565,2027520027,4),(1565,2043244827,3),(1565,2058969627,4),(1565,2075299227,3),(1565,2091024027,4),(1565,2106748827,3),(1565,2122473627,4),(1565,2138198427,3),(1566,-2147483648,1),(1566,-1680508800,2),(1566,-1665392400,1),(1566,-883641600,2),(1566,-876128400,1),(1566,-860400000,2),(1566,-844678800,1),(1566,-828345600,2),(1566,-813229200,1),(1566,57686400,3),(1566,67968000,4),(1566,89136001,3),(1566,100022402,4),(1566,120585602,3),(1566,131472003,4),(1566,152035203,3),(1566,162921604,4),(1566,183484804,3),(1566,194976005,4),(1566,215539205,3),(1566,226425606,4),(1566,246988806,3),(1566,257875207,4),(1566,278438407,3),(1566,289324808,4),(1566,309888008,3),(1566,320774409,4),(1566,341337609,3),(1566,352224009,4),(1566,372787210,3),(1566,386092810,4),(1566,404841611,3),(1566,417542411,4),(1566,436291212,3),(1566,447177612,4),(1566,467740812,3),(1566,478627212,4),(1566,499190413,3),(1566,510076813,4),(1566,530035213,3),(1566,542736013,4),(1566,562089613,3),(1566,574790414,4),(1566,594144014,3),(1566,606240014,4),(1566,625593614,3),(1566,637689615,4),(1566,657043215,3),(1566,670348816,4),(1566,686678416,3),(1566,701798416,4),(1566,718128017,3),(1566,733248017,4),(1566,749577618,3),(1566,764697618,4),(1566,781027219,3),(1566,796147219,4),(1566,812476819,3),(1566,828201620,4),(1566,844531220,3),(1566,859651220,4),(1566,875980821,3),(1566,891100821,4),(1566,907430421,3),(1566,922550422,4),(1566,938880022,3),(1566,954000022,4),(1566,967305622,3),(1566,985449622,4),(1566,1002384022,3),(1566,1017504022,4),(1566,1033833622,3),(1566,1048953622,4),(1566,1065283222,3),(1566,1080403222,4),(1566,1096732822,3),(1566,1111852822,4),(1566,1128182422,3),(1566,1143907223,4),(1566,1159632023,3),(1566,1174752023,4),(1566,1191686423,3),(1566,1207411223,4),(1566,1223136023,3),(1566,1238860824,4),(1566,1254585624,3),(1566,1270310424,4),(1566,1286035224,3),(1566,1301760024,4),(1566,1317484824,3),(1566,1333209624,4),(1566,1349539225,3),(1566,1365264025,4),(1566,1380988825,3),(1566,1396713625,4),(1566,1412438425,3),(1566,1428163225,4),(1566,1443888026,3),(1566,1459612826,4),(1566,1475337626,3),(1566,1491062427,4),(1566,1506787227,3),(1566,1522512027,4),(1566,1538841627,3),(1566,1554566427,4),(1566,1570291227,3),(1566,1586016027,4),(1566,1601740827,3),(1566,1617465627,4),(1566,1633190427,3),(1566,1648915227,4),(1566,1664640027,3),(1566,1680364827,4),(1566,1696089627,3),(1566,1712419227,4),(1566,1728144027,3),(1566,1743868827,4),(1566,1759593627,3),(1566,1775318427,4),(1566,1791043227,3),(1566,1806768027,4),(1566,1822492827,3),(1566,1838217627,4),(1566,1853942427,3),(1566,1869667227,4),(1566,1885996827,3),(1566,1901721627,4),(1566,1917446427,3),(1566,1933171227,4),(1566,1948896027,3),(1566,1964620827,4),(1566,1980345627,3),(1566,1996070427,4),(1566,2011795227,3),(1566,2027520027,4),(1566,2043244827,3),(1566,2058969627,4),(1566,2075299227,3),(1566,2091024027,4),(1566,2106748827,3),(1566,2122473627,4),(1566,2138198427,3),(1567,-2147483648,2),(1567,-1672565340,1),(1567,-1665390600,2),(1567,-883639800,1),(1567,-876126600,2),(1567,-860398200,1),(1567,-844677000,2),(1567,-828343800,1),(1567,-813227400,2),(1568,-2147483648,2),(1568,-1672562640,1),(1568,-1665387900,2),(1568,-883637100,1),(1568,-876123900,2),(1568,-860395500,1),(1568,-844674300,2),(1568,152039703,3),(1568,162926104,4),(1568,436295712,3),(1568,447182112,4),(1568,690311716,3),(1568,699383716,4),(1568,1165079723,3),(1568,1174756523,4),(1568,1193505323,3),(1568,1206810923,4),(1568,1224954923,3),(1568,1238260524,4),(1569,-2147483648,1),(1569,-1680508800,2),(1569,-1665392400,1),(1569,-883641600,2),(1569,-876128400,1),(1569,-860400000,2),(1569,-844678800,1),(1569,-828345600,2),(1569,-813229200,1),(1569,-71136000,3),(1569,-55411200,4),(1569,-37267200,3),(1569,-25776000,4),(1569,-5817600,3),(1569,5673600,4),(1569,25632000,3),(1569,37728000,4),(1569,57686400,3),(1569,67968000,4),(1569,89136001,3),(1569,100022402,4),(1569,120585602,3),(1569,131472003,4),(1569,152035203,3),(1569,162921604,4),(1569,183484804,3),(1569,194976005,4),(1569,215539205,3),(1569,226425606,4),(1569,246988806,3),(1569,257875207,4),(1569,278438407,3),(1569,289324808,4),(1569,309888008,3),(1569,320774409,4),(1569,341337609,3),(1569,352224009,4),(1569,372787210,3),(1569,386092810,4),(1569,404841611,3),(1569,417542411,4),(1569,436291212,3),(1569,447177612,4),(1569,467740812,3),(1569,478627212,4),(1569,499190413,3),(1569,510076813,4),(1569,530035213,3),(1569,542736013,4),(1569,562089613,3),(1569,574790414,4),(1569,594144014,3),(1569,606240014,4),(1569,625593614,3),(1569,637689615,4),(1569,657043215,3),(1569,670348816,4),(1569,686678416,3),(1569,701798416,4),(1569,718128017,3),(1569,733248017,4),(1569,749577618,3),(1569,764697618,4),(1569,781027219,3),(1569,796147219,4),(1569,812476819,3),(1569,828201620,4),(1569,844531220,3),(1569,859651220,4),(1569,875980821,3),(1569,891100821,4),(1569,907430421,3),(1569,922550422,4),(1569,938880022,3),(1569,954000022,4),(1569,967305622,3),(1569,985449622,4),(1569,1002384022,3),(1569,1017504022,4),(1569,1033833622,3),(1569,1048953622,4),(1569,1065283222,3),(1569,1080403222,4),(1569,1096732822,3),(1569,1111852822,4),(1569,1128182422,3),(1569,1143907223,4),(1569,1159632023,3),(1569,1174752023,4),(1569,1191686423,3),(1569,1207411223,4),(1569,1223136023,3),(1569,1238860824,4),(1569,1254585624,3),(1569,1270310424,4),(1569,1286035224,3),(1569,1301760024,4),(1569,1317484824,3),(1569,1333209624,4),(1569,1349539225,3),(1569,1365264025,4),(1569,1380988825,3),(1569,1396713625,4),(1569,1412438425,3),(1569,1428163225,4),(1569,1443888026,3),(1569,1459612826,4),(1569,1475337626,3),(1569,1491062427,4),(1569,1506787227,3),(1569,1522512027,4),(1569,1538841627,3),(1569,1554566427,4),(1569,1570291227,3),(1569,1586016027,4),(1569,1601740827,3),(1569,1617465627,4),(1569,1633190427,3),(1569,1648915227,4),(1569,1664640027,3),(1569,1680364827,4),(1569,1696089627,3),(1569,1712419227,4),(1569,1728144027,3),(1569,1743868827,4),(1569,1759593627,3),(1569,1775318427,4),(1569,1791043227,3),(1569,1806768027,4),(1569,1822492827,3),(1569,1838217627,4),(1569,1853942427,3),(1569,1869667227,4),(1569,1885996827,3),(1569,1901721627,4),(1569,1917446427,3),(1569,1933171227,4),(1569,1948896027,3),(1569,1964620827,4),(1569,1980345627,3),(1569,1996070427,4),(1569,2011795227,3),(1569,2027520027,4),(1569,2043244827,3),(1569,2058969627,4),(1569,2075299227,3),(1569,2091024027,4),(1569,2106748827,3),(1569,2122473627,4),(1569,2138198427,3),(1570,-2147483648,1),(1570,352216809,3),(1570,372785410,2),(1570,384273010,3),(1570,404839811,2),(1570,415722611,3),(1570,436289412,2),(1570,447172212,3),(1570,467739012,2),(1570,478621812,3),(1570,499188613,4),(1570,511282813,3),(1570,530033413,4),(1570,542732413,3),(1570,562087813,4),(1570,574786814,3),(1570,594142214,4),(1570,606236414,3),(1570,625591814,4),(1570,636476415,3),(1570,657041415,4),(1570,667926016,3),(1570,688491016,4),(1570,699375616,3),(1570,719940617,4),(1570,731430017,3),(1570,751995018,4),(1570,762879618,3),(1570,783444619,4),(1570,794329219,3),(1570,814894219,4),(1570,828198020,3),(1570,846343820,4),(1570,859647620,3),(1570,877793421,4),(1570,891097221,3),(1570,909243021,4),(1570,922546822,3),(1570,941297422,4),(1570,953996422,3),(1570,967303822,4),(1570,985446022,3),(1570,1004196622,4),(1570,1017500422,3),(1570,1035646222,4),(1570,1048950022,3),(1570,1067095822,4),(1570,1080399622,3),(1570,1099150222,4),(1570,1111849222,3),(1570,1130599822,4),(1570,1143903623,3),(1570,1162049423,4),(1570,1174748423,3),(1570,1193499023,4),(1570,1207407623,3),(1570,1223134223,4),(1570,1238857224,3),(1570,1254583824,4),(1570,1270306824,3),(1570,1286033424,4),(1570,1301756424,3),(1570,1317483024,4),(1570,1333206024,3),(1570,1349537425,4),(1570,1365260425,3),(1570,1380987025,4),(1570,1396710025,3),(1570,1412436625,4),(1570,1428159625,3),(1570,1443886226,4),(1570,1459609226,3),(1570,1475335826,4),(1570,1491058827,3),(1570,1506785427,4),(1570,1522508427,3),(1570,1538839827,4),(1570,1554562827,3),(1570,1570289427,4); +INSERT INTO `time_zone_transition` VALUES (1570,1586012427,3),(1570,1601739027,4),(1570,1617462027,3),(1570,1633188627,4),(1570,1648911627,3),(1570,1664638227,4),(1570,1680361227,3),(1570,1696087827,4),(1570,1712415627,3),(1570,1728142227,4),(1570,1743865227,3),(1570,1759591827,4),(1570,1775314827,3),(1570,1791041427,4),(1570,1806764427,3),(1570,1822491027,4),(1570,1838214027,3),(1570,1853940627,4),(1570,1869663627,3),(1570,1885995027,4),(1570,1901718027,3),(1570,1917444627,4),(1570,1933167627,3),(1570,1948894227,4),(1570,1964617227,3),(1570,1980343827,4),(1570,1996066827,3),(1570,2011793427,4),(1570,2027516427,3),(1570,2043243027,4),(1570,2058966027,3),(1570,2075297427,4),(1570,2091020427,3),(1570,2106747027,4),(1570,2122470027,3),(1570,2138196627,4),(1571,-2147483648,2),(1571,-1672567140,1),(1571,-1665392400,2),(1571,-883641600,1),(1571,-876128400,2),(1571,-860400000,1),(1571,-844678800,2),(1571,-828345600,1),(1571,-813229200,2),(1571,57686400,3),(1571,67968000,4),(1571,625593614,3),(1571,636480015,4),(1571,657043215,3),(1571,667929616,4),(1571,688492816,3),(1571,699379216,4),(1571,709912816,2),(1571,719942417,3),(1571,731433617,4),(1571,751996818,3),(1571,762883218,4),(1572,-2147483648,1),(1572,352216809,3),(1572,372785410,2),(1572,384273010,3),(1572,404839811,2),(1572,415722611,3),(1572,436289412,2),(1572,447172212,3),(1572,467739012,2),(1572,478621812,3),(1572,499188613,4),(1572,511282813,3),(1572,530033413,4),(1572,542732413,3),(1572,562087813,4),(1572,574786814,3),(1572,594142214,4),(1572,606236414,3),(1572,625591814,4),(1572,636476415,3),(1572,657041415,4),(1572,667926016,3),(1572,688491016,4),(1572,699375616,3),(1572,719940617,4),(1572,731430017,3),(1572,751995018,4),(1572,762879618,3),(1572,783444619,4),(1572,794329219,3),(1572,814894219,4),(1572,828198020,3),(1572,846343820,4),(1572,859647620,3),(1572,877793421,4),(1572,891097221,3),(1572,909243021,4),(1572,922546822,3),(1572,941297422,4),(1572,953996422,3),(1572,967303822,4),(1572,985446022,3),(1572,1004196622,4),(1572,1017500422,3),(1572,1035646222,4),(1572,1048950022,3),(1572,1067095822,4),(1572,1080399622,3),(1572,1099150222,4),(1572,1111849222,3),(1572,1130599822,4),(1572,1143903623,3),(1572,1162049423,4),(1572,1174748423,3),(1572,1193499023,4),(1572,1207407623,3),(1572,1223134223,4),(1572,1238857224,3),(1572,1254583824,4),(1572,1270306824,3),(1572,1286033424,4),(1572,1301756424,3),(1572,1317483024,4),(1572,1333206024,3),(1572,1349537425,4),(1572,1365260425,3),(1572,1380987025,4),(1572,1396710025,3),(1572,1412436625,4),(1572,1428159625,3),(1572,1443886226,4),(1572,1459609226,3),(1572,1475335826,4),(1572,1491058827,3),(1572,1506785427,4),(1572,1522508427,3),(1572,1538839827,4),(1572,1554562827,3),(1572,1570289427,4),(1572,1586012427,3),(1572,1601739027,4),(1572,1617462027,3),(1572,1633188627,4),(1572,1648911627,3),(1572,1664638227,4),(1572,1680361227,3),(1572,1696087827,4),(1572,1712415627,3),(1572,1728142227,4),(1572,1743865227,3),(1572,1759591827,4),(1572,1775314827,3),(1572,1791041427,4),(1572,1806764427,3),(1572,1822491027,4),(1572,1838214027,3),(1572,1853940627,4),(1572,1869663627,3),(1572,1885995027,4),(1572,1901718027,3),(1572,1917444627,4),(1572,1933167627,3),(1572,1948894227,4),(1572,1964617227,3),(1572,1980343827,4),(1572,1996066827,3),(1572,2011793427,4),(1572,2027516427,3),(1572,2043243027,4),(1572,2058966027,3),(1572,2075297427,4),(1572,2091020427,3),(1572,2106747027,4),(1572,2122470027,3),(1572,2138196627,4),(1573,-2147483648,2),(1573,-1672567140,1),(1573,-1665392400,2),(1573,-883641600,1),(1573,-876128400,2),(1573,-860400000,1),(1573,-844678800,2),(1573,-828345600,1),(1573,-813229200,2),(1573,57686400,3),(1573,67968000,4),(1573,89136001,3),(1573,100022402,4),(1573,120585602,3),(1573,131472003,4),(1573,152035203,3),(1573,162921604,4),(1573,183484804,3),(1573,194976005,4),(1573,215539205,3),(1573,226425606,4),(1573,246988806,3),(1573,257875207,4),(1573,278438407,3),(1573,289324808,4),(1573,309888008,3),(1573,320774409,4),(1573,341337609,3),(1573,352224009,4),(1573,372787210,3),(1573,384278410,4),(1573,404841611,3),(1573,415728011,4),(1573,436291212,3),(1573,447177612,4),(1573,467740812,3),(1573,478627212,4),(1573,499190413,3),(1573,511286413,4),(1573,530035213,3),(1573,542736013,4),(1573,561484813,3),(1573,574790414,4),(1573,594144014,3),(1573,606240014,4),(1573,625593614,3),(1573,637689615,4),(1573,657043215,3),(1573,667929616,4),(1573,688492816,3),(1573,699379216,4),(1573,719942417,3),(1573,731433617,4),(1573,751996818,3),(1573,762883218,4),(1573,783446419,3),(1573,796147219,4),(1573,814896019,3),(1573,828201620,4),(1573,846345620,3),(1573,859651220,4),(1573,877795221,3),(1573,891100821,4),(1573,909244821,3),(1573,922550422,4),(1573,941299222,3),(1573,954000022,4),(1573,967305622,3),(1573,985449622,4),(1573,1004198422,3),(1573,1017504022,4),(1573,1035648022,3),(1573,1048953622,4),(1573,1067097622,3),(1573,1080403222,4),(1573,1099152022,3),(1573,1111852822,4),(1573,1130601622,3),(1573,1143907223,4),(1573,1162051223,3),(1573,1174752023,4),(1573,1193500823,3),(1573,1207411223,4),(1573,1223136023,3),(1573,1238860824,4),(1573,1254585624,3),(1573,1270310424,4),(1573,1286035224,3),(1573,1301760024,4),(1573,1317484824,3),(1573,1333209624,4),(1573,1349539225,3),(1573,1365264025,4),(1573,1380988825,3),(1573,1396713625,4),(1573,1412438425,3),(1573,1428163225,4),(1573,1443888026,3),(1573,1459612826,4),(1573,1475337626,3),(1573,1491062427,4),(1573,1506787227,3),(1573,1522512027,4),(1573,1538841627,3),(1573,1554566427,4),(1573,1570291227,3),(1573,1586016027,4),(1573,1601740827,3),(1573,1617465627,4),(1573,1633190427,3),(1573,1648915227,4),(1573,1664640027,3),(1573,1680364827,4),(1573,1696089627,3),(1573,1712419227,4),(1573,1728144027,3),(1573,1743868827,4),(1573,1759593627,3),(1573,1775318427,4),(1573,1791043227,3),(1573,1806768027,4),(1573,1822492827,3),(1573,1838217627,4),(1573,1853942427,3),(1573,1869667227,4),(1573,1885996827,3),(1573,1901721627,4),(1573,1917446427,3),(1573,1933171227,4),(1573,1948896027,3),(1573,1964620827,4),(1573,1980345627,3),(1573,1996070427,4),(1573,2011795227,3),(1573,2027520027,4),(1573,2043244827,3),(1573,2058969627,4),(1573,2075299227,3),(1573,2091024027,4),(1573,2106748827,3),(1573,2122473627,4),(1573,2138198427,3),(1574,-2147483648,2),(1574,-1672567140,1),(1574,-1665392400,2),(1574,-883641600,1),(1574,-876128400,2),(1574,-860400000,1),(1574,-844678800,2),(1574,-828345600,1),(1574,-813229200,2),(1574,57686400,3),(1574,67968000,4),(1574,89136001,3),(1574,100022402,4),(1574,120585602,3),(1574,131472003,4),(1574,152035203,3),(1574,162921604,4),(1574,183484804,3),(1574,194976005,4),(1574,215539205,3),(1574,226425606,4),(1574,246988806,3),(1574,257875207,4),(1574,278438407,3),(1574,289324808,4),(1574,309888008,3),(1574,320774409,4),(1574,341337609,3),(1574,352224009,4),(1574,372787210,3),(1574,386697610,4),(1574,404841611,3),(1574,415728011,4),(1574,436291212,3),(1574,447177612,4),(1574,467740812,3),(1574,478627212,4),(1574,499190413,3),(1574,511286413,4),(1574,530035213,3),(1574,542736013,4),(1574,562089613,3),(1574,574790414,4),(1574,594144014,3),(1574,606240014,4),(1574,625593614,3),(1574,636480015,4),(1574,657043215,3),(1574,667929616,4),(1574,688492816,3),(1574,699379216,4),(1574,719942417,3),(1574,731433617,4),(1574,751996818,3),(1574,762883218,4),(1574,783446419,3),(1574,794332819,4),(1574,814896019,3),(1574,828201620,4),(1574,846345620,3),(1574,859651220,4),(1574,877795221,3),(1574,891100821,4),(1574,909244821,3),(1574,922550422,4),(1574,941299222,3),(1574,954000022,4),(1574,967305622,3),(1574,985449622,4),(1574,1004198422,3),(1574,1017504022,4),(1574,1035648022,3),(1574,1048953622,4),(1574,1067097622,3),(1574,1080403222,4),(1574,1099152022,3),(1574,1111852822,4),(1574,1130601622,3),(1574,1143907223,4),(1574,1162051223,3),(1574,1174752023,4),(1574,1193500823,3),(1574,1207411223,4),(1574,1223136023,3),(1574,1238860824,4),(1574,1254585624,3),(1574,1270310424,4),(1574,1286035224,3),(1574,1301760024,4),(1574,1317484824,3),(1574,1333209624,4),(1574,1349539225,3),(1574,1365264025,4),(1574,1380988825,3),(1574,1396713625,4),(1574,1412438425,3),(1574,1428163225,4),(1574,1443888026,3),(1574,1459612826,4),(1574,1475337626,3),(1574,1491062427,4),(1574,1506787227,3),(1574,1522512027,4),(1574,1538841627,3),(1574,1554566427,4),(1574,1570291227,3),(1574,1586016027,4),(1574,1601740827,3),(1574,1617465627,4),(1574,1633190427,3),(1574,1648915227,4),(1574,1664640027,3),(1574,1680364827,4),(1574,1696089627,3),(1574,1712419227,4),(1574,1728144027,3),(1574,1743868827,4),(1574,1759593627,3),(1574,1775318427,4),(1574,1791043227,3),(1574,1806768027,4),(1574,1822492827,3),(1574,1838217627,4),(1574,1853942427,3),(1574,1869667227,4),(1574,1885996827,3),(1574,1901721627,4),(1574,1917446427,3),(1574,1933171227,4),(1574,1948896027,3),(1574,1964620827,4),(1574,1980345627,3),(1574,1996070427,4),(1574,2011795227,3),(1574,2027520027,4),(1574,2043244827,3),(1574,2058969627,4),(1574,2075299227,3),(1574,2091024027,4),(1574,2106748827,3),(1574,2122473627,4),(1574,2138198427,3),(1575,-2147483648,2),(1575,-1672565340,1),(1575,-1665390600,2),(1575,-883639800,1),(1575,-876126600,2),(1575,-860398200,1),(1575,-844677000,2),(1575,-828343800,1),(1575,-813227400,2),(1576,-2147483648,2),(1576,-1672559940,1),(1576,-1665385200,2),(1576,-883634400,1),(1576,-876121200,2),(1576,-860392800,1),(1576,-844671600,2),(1576,152042403,3),(1576,162928804,4),(1576,436298412,3),(1576,447184812,4),(1576,690314416,3),(1576,699386416,4),(1576,1165082423,3),(1576,1174759223,4),(1576,1193508023,3),(1576,1206813623,4),(1576,1224957623,3),(1576,1238263224,4),(1577,-2147483648,2),(1577,-1672567140,1),(1577,-1665392400,2),(1577,-883641600,1),(1577,-876128400,2),(1577,-860400000,1),(1577,-844678800,2),(1577,-828345600,1),(1577,-813229200,2),(1577,57686400,3),(1577,67968000,4),(1577,625593614,3),(1577,636480015,4),(1577,657043215,3),(1577,667929616,4),(1577,688492816,3),(1577,699379216,4),(1578,-2147483648,2),(1578,-1672565340,1),(1578,-1665390600,2),(1578,-883639800,1),(1578,-876126600,2),(1578,-860398200,1),(1578,-844677000,2),(1578,-828343800,1),(1578,-813227400,2),(1578,57688200,3),(1578,67969800,4),(1578,89137801,3),(1578,100024202,4),(1578,120587402,3),(1578,131473803,4),(1578,152037003,3),(1578,162923404,4),(1578,183486604,3),(1578,194977805,4),(1578,215541005,3),(1578,226427406,4),(1578,246990606,3),(1578,257877007,4),(1578,278440207,3),(1578,289326608,4),(1578,309889808,3),(1578,320776209,4),(1578,341339409,3),(1578,352225809,4),(1578,372789010,3),(1578,384280210,4),(1578,404843411,3),(1578,415729811,4),(1578,436293012,3),(1578,447179412,4),(1578,467742612,3),(1578,478629012,4),(1578,499192213,3),(1578,511288213,4),(1578,530037013,3),(1578,542737813,4),(1578,562091413,3),(1578,574792214,4),(1578,594145814,3),(1578,606241814,4),(1578,625595414,3),(1578,637691415,4),(1578,657045015,3),(1578,667931416,4),(1578,688494616,3),(1578,701195416,4),(1578,719944217,3),(1578,731435417,4),(1578,751998618,3),(1578,764094618,4),(1578,783448219,3),(1578,796149019,4),(1578,814897819,3),(1578,828203420,4),(1578,846347420,3),(1578,859653020,4),(1578,877797021,3),(1578,891102621,4),(1578,909246621,3),(1578,922552222,4),(1578,941301022,3),(1578,954001822,4),(1578,972750622,3),(1578,985451422,4),(1578,1004200222,3),(1578,1017505822,4),(1578,1035649822,3),(1578,1048955422,4),(1578,1067099422,3),(1578,1080405022,4),(1578,1099153822,3),(1578,1111854622,4),(1578,1130603422,3),(1578,1143909023,4),(1578,1162053023,3),(1578,1174753823,4),(1578,1193502623,3),(1578,1207413023,4),(1578,1223137823,3),(1578,1238862624,4),(1578,1254587424,3),(1578,1270312224,4),(1578,1286037024,3),(1578,1301761824,4),(1578,1317486624,3),(1578,1333211424,4),(1578,1349541025,3),(1578,1365265825,4),(1578,1380990625,3),(1578,1396715425,4),(1578,1412440225,3),(1578,1428165025,4),(1578,1443889826,3),(1578,1459614626,4),(1578,1475339426,3),(1578,1491064227,4),(1578,1506789027,3),(1578,1522513827,4),(1578,1538843427,3),(1578,1554568227,4),(1578,1570293027,3),(1578,1586017827,4),(1578,1601742627,3),(1578,1617467427,4),(1578,1633192227,3),(1578,1648917027,4),(1578,1664641827,3),(1578,1680366627,4),(1578,1696091427,3),(1578,1712421027,4),(1578,1728145827,3),(1578,1743870627,4),(1578,1759595427,3),(1578,1775320227,4),(1578,1791045027,3),(1578,1806769827,4),(1578,1822494627,3),(1578,1838219427,4),(1578,1853944227,3),(1578,1869669027,4),(1578,1885998627,3),(1578,1901723427,4),(1578,1917448227,3),(1578,1933173027,4),(1578,1948897827,3),(1578,1964622627,4),(1578,1980347427,3),(1578,1996072227,4),(1578,2011797027,3),(1578,2027521827,4),(1578,2043246627,3),(1578,2058971427,4),(1578,2075301027,3),(1578,2091025827,4),(1578,2106750627,3),(1578,2122475427,4),(1578,2138200227,3),(1579,-2147483648,2),(1579,-1672567140,1),(1579,-1665392400,2),(1579,-883641600,1),(1579,-876128400,2),(1579,-860400000,1),(1579,-844678800,2),(1579,-828345600,1),(1579,-813229200,2),(1579,57686400,3),(1579,67968000,4),(1579,89136001,3),(1579,100022402,4),(1579,120585602,3),(1579,131472003,4),(1579,152035203,3),(1579,162921604,4),(1579,183484804,3),(1579,194976005,4),(1579,215539205,3),(1579,226425606,4),(1579,246988806,3),(1579,257875207,4),(1579,278438407,3),(1579,289324808,4),(1579,309888008,3),(1579,320774409,4),(1579,341337609,3),(1579,352224009,4),(1579,372787210,3),(1579,386697610,4),(1579,404841611,3),(1579,415728011,4),(1579,436291212,3),(1579,447177612,4),(1579,467740812,3),(1579,478627212,4),(1579,499190413,3),(1579,511286413,4),(1579,530035213,3),(1579,542736013,4),(1579,562089613,3),(1579,574790414,4),(1579,594144014,3),(1579,606240014,4),(1579,625593614,3),(1579,636480015,4),(1579,657043215,3),(1579,667929616,4),(1579,688492816,3),(1579,699379216,4),(1579,719942417,3),(1579,731433617,4),(1579,751996818,3),(1579,762883218,4),(1579,783446419,3),(1579,794332819,4),(1579,814896019,3),(1579,828201620,4),(1579,846345620,3),(1579,859651220,4),(1579,877795221,3),(1579,891100821,4),(1579,909244821,3),(1579,922550422,4),(1579,941299222,3),(1579,954000022,4),(1579,967305622,3),(1579,985449622,4),(1579,1004198422,3),(1579,1017504022,4),(1579,1035648022,3),(1579,1048953622,4),(1579,1067097622,3),(1579,1080403222,4),(1579,1099152022,3),(1579,1111852822,4),(1579,1130601622,3),(1579,1143907223,4),(1579,1162051223,3),(1579,1174752023,4),(1579,1193500823,3),(1579,1207411223,4),(1579,1223136023,3),(1579,1238860824,4),(1579,1254585624,3),(1579,1270310424,4),(1579,1286035224,3),(1579,1301760024,4),(1579,1317484824,3),(1579,1333209624,4),(1579,1349539225,3),(1579,1365264025,4),(1579,1380988825,3),(1579,1396713625,4),(1579,1412438425,3),(1579,1428163225,4),(1579,1443888026,3),(1579,1459612826,4),(1579,1475337626,3),(1579,1491062427,4),(1579,1506787227,3),(1579,1522512027,4),(1579,1538841627,3),(1579,1554566427,4),(1579,1570291227,3),(1579,1586016027,4),(1579,1601740827,3),(1579,1617465627,4),(1579,1633190427,3),(1579,1648915227,4),(1579,1664640027,3),(1579,1680364827,4),(1579,1696089627,3),(1579,1712419227,4),(1579,1728144027,3),(1579,1743868827,4),(1579,1759593627,3),(1579,1775318427,4),(1579,1791043227,3),(1579,1806768027,4),(1579,1822492827,3),(1579,1838217627,4),(1579,1853942427,3),(1579,1869667227,4),(1579,1885996827,3),(1579,1901721627,4),(1579,1917446427,3),(1579,1933171227,4),(1579,1948896027,3),(1579,1964620827,4),(1579,1980345627,3),(1579,1996070427,4),(1579,2011795227,3),(1579,2027520027,4),(1579,2043244827,3),(1579,2058969627,4),(1579,2075299227,3),(1579,2091024027,4),(1579,2106748827,3),(1579,2122473627,4),(1579,2138198427,3),(1580,-2147483648,1),(1580,-1680508800,2),(1580,-1665392400,1),(1580,-883641600,2),(1580,-876128400,1),(1580,-860400000,2),(1580,-844678800,1),(1580,-828345600,2),(1580,-813229200,1),(1580,-71136000,3),(1580,-55411200,4),(1580,-37267200,3),(1580,-25776000,4),(1580,-5817600,3),(1580,5673600,4),(1580,25632000,3),(1580,37728000,4),(1580,57686400,3),(1580,67968000,4),(1580,89136001,3),(1580,100022402,4),(1580,120585602,3),(1580,131472003,4),(1580,152035203,3),(1580,162921604,4),(1580,183484804,3),(1580,194976005,4),(1580,215539205,3),(1580,226425606,4),(1580,246988806,3),(1580,257875207,4),(1580,278438407,3),(1580,289324808,4),(1580,309888008,3),(1580,320774409,4),(1580,341337609,3),(1580,352224009,4),(1580,372787210,3),(1580,386092810,4),(1580,404841611,3),(1580,417542411,4),(1580,436291212,3),(1580,447177612,4),(1580,467740812,3),(1580,478627212,4),(1580,499190413,3),(1580,510076813,4),(1580,530035213,3),(1580,542736013,4),(1580,562089613,3),(1580,574790414,4),(1580,594144014,3),(1580,606240014,4),(1580,625593614,3),(1580,637689615,4),(1580,657043215,3),(1580,670348816,4),(1580,686678416,3),(1580,701798416,4),(1580,718128017,3),(1580,733248017,4),(1580,749577618,3),(1580,764697618,4),(1580,781027219,3),(1580,796147219,4),(1580,812476819,3),(1580,828201620,4),(1580,844531220,3),(1580,859651220,4),(1580,875980821,3),(1580,891100821,4),(1580,907430421,3),(1580,922550422,4),(1580,938880022,3),(1580,954000022,4),(1580,967305622,3),(1580,985449622,4),(1580,1002384022,3),(1580,1017504022,4),(1580,1033833622,3),(1580,1048953622,4),(1580,1065283222,3),(1580,1080403222,4),(1580,1096732822,3),(1580,1111852822,4),(1580,1128182422,3),(1580,1143907223,4),(1580,1159632023,3),(1580,1174752023,4),(1580,1191686423,3),(1580,1207411223,4),(1580,1223136023,3),(1580,1238860824,4),(1580,1254585624,3),(1580,1270310424,4),(1580,1286035224,3),(1580,1301760024,4),(1580,1317484824,3),(1580,1333209624,4),(1580,1349539225,3),(1580,1365264025,4),(1580,1380988825,3),(1580,1396713625,4),(1580,1412438425,3),(1580,1428163225,4),(1580,1443888026,3),(1580,1459612826,4),(1580,1475337626,3),(1580,1491062427,4),(1580,1506787227,3),(1580,1522512027,4),(1580,1538841627,3),(1580,1554566427,4),(1580,1570291227,3),(1580,1586016027,4),(1580,1601740827,3),(1580,1617465627,4),(1580,1633190427,3),(1580,1648915227,4),(1580,1664640027,3),(1580,1680364827,4),(1580,1696089627,3),(1580,1712419227,4),(1580,1728144027,3),(1580,1743868827,4),(1580,1759593627,3),(1580,1775318427,4),(1580,1791043227,3),(1580,1806768027,4),(1580,1822492827,3),(1580,1838217627,4),(1580,1853942427,3),(1580,1869667227,4),(1580,1885996827,3),(1580,1901721627,4),(1580,1917446427,3),(1580,1933171227,4),(1580,1948896027,3),(1580,1964620827,4),(1580,1980345627,3),(1580,1996070427,4),(1580,2011795227,3),(1580,2027520027,4),(1580,2043244827,3),(1580,2058969627,4),(1580,2075299227,3),(1580,2091024027,4),(1580,2106748827,3),(1580,2122473627,4),(1580,2138198427,3),(1581,-2147483648,2),(1581,-1672567140,1),(1581,-1665392400,2),(1581,-883641600,1),(1581,-876128400,2),(1581,-860400000,1),(1581,-844678800,2),(1581,-828345600,1),(1581,-813229200,2),(1581,57686400,3),(1581,67968000,4),(1581,89136001,3),(1581,100022402,4),(1581,120585602,3),(1581,131472003,4),(1581,152035203,3),(1581,162921604,4),(1581,183484804,3),(1581,194976005,4),(1581,215539205,3),(1581,226425606,4),(1581,246988806,3),(1581,257875207,4),(1581,278438407,3),(1581,289324808,4),(1581,309888008,3),(1581,320774409,4),(1581,341337609,3),(1581,352224009,4),(1581,372787210,3),(1581,384278410,4),(1581,404841611,3),(1581,415728011,4),(1581,436291212,3),(1581,447177612,4),(1581,467740812,3),(1581,478627212,4),(1581,499190413,3),(1581,511286413,4),(1581,530035213,3),(1581,542736013,4),(1581,561484813,3),(1581,574790414,4),(1581,594144014,3),(1581,606240014,4),(1581,625593614,3),(1581,637689615,4),(1581,657043215,3),(1581,667929616,4),(1581,688492816,3),(1581,699379216,4),(1581,719942417,3),(1581,731433617,4),(1581,751996818,3),(1581,762883218,4),(1581,783446419,3),(1581,796147219,4),(1581,814896019,3),(1581,828201620,4),(1581,846345620,3),(1581,859651220,4),(1581,877795221,3),(1581,891100821,4),(1581,909244821,3),(1581,922550422,4),(1581,941299222,3),(1581,954000022,4),(1581,967305622,3),(1581,985449622,4),(1581,1004198422,3),(1581,1017504022,4),(1581,1035648022,3),(1581,1048953622,4),(1581,1067097622,3),(1581,1080403222,4),(1581,1099152022,3),(1581,1111852822,4),(1581,1130601622,3),(1581,1143907223,4),(1581,1162051223,3),(1581,1174752023,4),(1581,1193500823,3),(1581,1207411223,4),(1581,1223136023,3),(1581,1238860824,4),(1581,1254585624,3),(1581,1270310424,4),(1581,1286035224,3),(1581,1301760024,4),(1581,1317484824,3),(1581,1333209624,4),(1581,1349539225,3),(1581,1365264025,4),(1581,1380988825,3),(1581,1396713625,4),(1581,1412438425,3),(1581,1428163225,4),(1581,1443888026,3),(1581,1459612826,4),(1581,1475337626,3),(1581,1491062427,4),(1581,1506787227,3),(1581,1522512027,4),(1581,1538841627,3),(1581,1554566427,4),(1581,1570291227,3),(1581,1586016027,4),(1581,1601740827,3),(1581,1617465627,4),(1581,1633190427,3),(1581,1648915227,4),(1581,1664640027,3),(1581,1680364827,4),(1581,1696089627,3),(1581,1712419227,4),(1581,1728144027,3),(1581,1743868827,4),(1581,1759593627,3),(1581,1775318427,4),(1581,1791043227,3),(1581,1806768027,4),(1581,1822492827,3),(1581,1838217627,4),(1581,1853942427,3),(1581,1869667227,4),(1581,1885996827,3),(1581,1901721627,4),(1581,1917446427,3),(1581,1933171227,4),(1581,1948896027,3),(1581,1964620827,4),(1581,1980345627,3),(1581,1996070427,4),(1581,2011795227,3),(1581,2027520027,4),(1581,2043244827,3),(1581,2058969627,4),(1581,2075299227,3),(1581,2091024027,4),(1581,2106748827,3),(1581,2122473627,4),(1581,2138198427,3),(1582,-2147483648,2),(1582,-1672559940,1),(1582,-1665385200,2),(1582,-883634400,1),(1582,-876121200,2),(1582,-860392800,1),(1582,-844671600,2),(1582,152042403,3),(1582,162928804,4),(1582,436298412,3),(1582,447184812,4),(1582,690314416,3),(1582,699386416,4),(1582,1165082423,3),(1582,1174759223,4),(1582,1193508023,3),(1582,1206813623,4),(1582,1224957623,3),(1582,1238263224,4),(1583,-2147483648,2),(1583,-1672565340,1),(1583,-1665390600,2),(1583,-883639800,1),(1583,-876126600,2),(1583,-860398200,1),(1583,-844677000,2),(1583,-828343800,1),(1583,-813227400,2),(1583,57688200,3),(1583,67969800,4),(1583,89137801,3),(1583,100024202,4),(1583,120587402,3),(1583,131473803,4),(1583,152037003,3),(1583,162923404,4),(1583,183486604,3),(1583,194977805,4),(1583,215541005,3),(1583,226427406,4),(1583,246990606,3),(1583,257877007,4),(1583,278440207,3),(1583,289326608,4),(1583,309889808,3),(1583,320776209,4),(1583,341339409,3),(1583,352225809,4),(1583,372789010,3),(1583,386699410,4),(1583,404843411,3),(1583,415729811,4),(1583,436293012,3),(1583,447179412,4),(1583,467742612,3),(1583,478629012,4),(1583,499192213,3),(1583,511288213,4),(1583,530037013,3),(1583,542737813,4),(1583,562091413,3),(1583,574792214,4),(1583,594145814,3),(1583,606241814,4),(1583,625595414,3),(1583,636481815,4),(1583,657045015,3),(1583,667931416,4),(1583,688494616,3),(1583,699381016,4),(1583,719944217,3),(1583,731435417,4),(1583,751998618,3),(1583,762885018,4),(1583,783448219,3),(1583,794334619,4),(1583,814897819,3),(1583,828203420,4),(1583,846347420,3),(1583,859653020,4),(1583,877797021,3),(1583,891102621,4),(1583,909246621,3),(1583,922552222,4),(1583,941301022,3),(1583,946647022,1),(1583,954001822,4),(1583,972750622,3),(1583,985451422,4),(1583,1004200222,3),(1583,1017505822,4),(1583,1035649822,3),(1583,1048955422,4),(1583,1067099422,3),(1583,1080405022,4),(1583,1099153822,3),(1583,1111854622,4),(1583,1130603422,3),(1583,1143909023,4),(1583,1162053023,3),(1583,1174753823,4),(1583,1193502623,3),(1583,1207413023,4),(1583,1223137823,3),(1583,1238862624,4),(1583,1254587424,3),(1583,1270312224,4),(1583,1286037024,3),(1583,1301761824,4),(1583,1317486624,3),(1583,1333211424,4),(1583,1349541025,3),(1583,1365265825,4),(1583,1380990625,3),(1583,1396715425,4),(1583,1412440225,3),(1583,1428165025,4),(1583,1443889826,3),(1583,1459614626,4),(1583,1475339426,3),(1583,1491064227,4),(1583,1506789027,3),(1583,1522513827,4),(1583,1538843427,3),(1583,1554568227,4),(1583,1570293027,3),(1583,1586017827,4),(1583,1601742627,3),(1583,1617467427,4),(1583,1633192227,3),(1583,1648917027,4),(1583,1664641827,3),(1583,1680366627,4),(1583,1696091427,3),(1583,1712421027,4),(1583,1728145827,3),(1583,1743870627,4),(1583,1759595427,3),(1583,1775320227,4),(1583,1791045027,3),(1583,1806769827,4),(1583,1822494627,3),(1583,1838219427,4),(1583,1853944227,3),(1583,1869669027,4),(1583,1885998627,3),(1583,1901723427,4),(1583,1917448227,3),(1583,1933173027,4),(1583,1948897827,3),(1583,1964622627,4),(1583,1980347427,3),(1583,1996072227,4),(1583,2011797027,3),(1583,2027521827,4),(1583,2043246627,3),(1583,2058971427,4),(1583,2075301027,3),(1583,2091025827,4),(1583,2106750627,3),(1583,2122475427,4),(1583,2138200227,3),(1584,-2147483648,0),(1584,-1767209328,2),(1584,-1206950400,1),(1584,-1191355200,2),(1584,-1175367600,1),(1584,-1159819200,2),(1584,-633812400,1),(1584,-622062000,2),(1584,-602276400,1),(1584,-591825600,2),(1584,-570740400,1),(1584,-560203200,2),(1584,-539118000,1),(1584,-531345600,2),(1584,-191358000,1),(1584,-184190400,2),(1584,-155156400,1),(1584,-150062400,2),(1584,-128890800,1),(1584,-121118400,2),(1584,-99946800,1),(1584,-89582400,2),(1584,-68410800,1),(1584,-57960000,2),(1584,499755613,1),(1584,511243213,2),(1584,530600413,1),(1584,540273613,2),(1584,562136413,1),(1584,571204814,2),(1584,1214283623,3),(1584,1384056025,2),(1585,-2147483648,0),(1585,-1767217820,2),(1585,-1206961200,1),(1585,-1191366000,2),(1585,-1175378400,1),(1585,-1159830000,2),(1585,-633823200,1),(1585,-622072800,2),(1585,-602287200,1),(1585,-591836400,2),(1585,-570751200,1),(1585,-560214000,2),(1585,-539128800,1),(1585,-531356400,2),(1585,-191368800,1),(1585,-184201200,2),(1585,-155167200,1),(1585,-150073200,2),(1585,-128901600,1),(1585,-121129200,2),(1585,-99957600,1),(1585,-89593200,2),(1585,-68421600,1),(1585,-57970800,2),(1585,499744813,1),(1585,511232413,2),(1585,530589613,1),(1585,540262813,2),(1585,562125613,1),(1585,571194014,2),(1585,592970414,1),(1585,602038814,2),(1585,624420014,1),(1585,634698015,2),(1585,938916022,1),(1585,951613222,2),(1585,970970422,1),(1585,971571622,2),(1585,1003024822,1),(1585,1013907622,2),(1586,-2147483648,0),(1586,-1767214412,2),(1586,-1206957600,1),(1586,-1191362400,2),(1586,-1175374800,1),(1586,-1159826400,2),(1586,-633819600,1),(1586,-622069200,2),(1586,-602283600,1),(1586,-591832800,2),(1586,-570747600,1),(1586,-560210400,2),(1586,-539125200,1),(1586,-531352800,2),(1586,-195426000,1),(1586,-184197600,2),(1586,-155163600,1),(1586,-150069600,2),(1586,-128898000,1),(1586,-121125600,2),(1586,-99954000,1),(1586,-89589600,2),(1586,-68418000,1),(1586,-57967200,2),(1586,499748413,1),(1586,511236013,2),(1586,530593213,1),(1586,540266413,2),(1586,562129213,1),(1586,571197614,2),(1586,592974014,1),(1586,602042414,2),(1586,624423614,1),(1586,634701615,2),(1586,656478015,1),(1586,666756016,2),(1586,687927616,1),(1586,697600816,2),(1586,719982017,1),(1586,728445617,2),(1586,750826818,1),(1586,761709618,2),(1586,782276419,1),(1586,793159219,2),(1586,813726019,1),(1586,824004020,2),(1586,844570820,1),(1586,856058420,2),(1586,876106821,1),(1586,888717621,2),(1586,908074821,1),(1586,919562422,2),(1586,938919622,1),(1586,951616822,2),(1586,970974022,1),(1586,982461622,2),(1586,1003028422,1),(1586,1013911222,2),(1586,1036292422,1),(1586,1045360822,2),(1586,1066532422,1),(1586,1076810422,2),(1586,1099364422,1),(1586,1108864822,2),(1586,1129431622,1),(1586,1140314423,2),(1586,1162695623,1),(1586,1172368823,2),(1586,1192330823,1),(1586,1203213623,2),(1586,1224385223,1),(1586,1234663224,2),(1586,1255834824,1),(1586,1266717624,2),(1586,1287284424,1),(1586,1298167224,2),(1586,1318734024,1),(1586,1330221624,2),(1586,1350788425,1),(1586,1361066425,2),(1586,1382238025,1),(1586,1392516025,2),(1586,1413687625,1),(1586,1424570425,2),(1586,1445137226,1),(1586,1456020026,2),(1586,1476586826,1),(1586,1487469627,2),(1586,1508036427,1),(1586,1518919227,2),(1586,1541300427,1),(1586,1550368827,2),(1587,-2147483648,0),(1587,-1767211196,2),(1587,-1206954000,1),(1587,-1191358800,2),(1587,-1175371200,1),(1587,-1159822800,2),(1587,-633816000,1),(1587,-622065600,2),(1587,-602280000,1),(1587,-591829200,2),(1587,-570744000,1),(1587,-560206800,2),(1587,-539121600,1),(1587,-531349200,2),(1587,-191361600,1),(1587,-184194000,2),(1587,-155160000,1),(1587,-150066000,2),(1587,-128894400,1),(1587,-121122000,2),(1587,-99950400,1),(1587,-89586000,2),(1587,-68414400,1),(1587,-57963600,2),(1587,499752013,1),(1587,511239613,2),(1587,530596813,1),(1587,540270013,2),(1587,562132813,1),(1587,571201214,2),(1587,750830418,1),(1587,761713218,2),(1588,-1693706400,0),(1588,-1680483600,1),(1588,-1663455600,2),(1588,-1650150000,3),(1588,-1632006000,2),(1588,-1618700400,3),(1588,-938905200,2),(1588,-857257200,3),(1588,-844556400,2),(1588,-828226800,3),(1588,-812502000,2),(1588,-796777200,3),(1588,-781052400,2),(1588,-766623600,3),(1588,228877206,2),(1588,243997206,3),(1588,260326807,2),(1588,276051607,3),(1588,291776408,2),(1588,307501208,3),(1588,323830809,2),(1588,338950809,3),(1588,354675609,2),(1588,370400410,3),(1588,386125210,2),(1588,401850011,3),(1588,417574811,2),(1588,433299612,3),(1588,449024412,2),(1588,465354012,3),(1588,481078812,2),(1588,496803613,3),(1588,512528413,2),(1588,528253213,3),(1588,543978013,2),(1588,559702813,3),(1588,575427614,2),(1588,591152414,3),(1588,606877214,2),(1588,622602014,3),(1588,638326815,2),(1588,654656415,3),(1588,670381216,2),(1588,686106016,3),(1588,701830816,2),(1588,717555617,3),(1588,733280417,2),(1588,749005218,3),(1588,764730018,2),(1588,780454819,3),(1588,796179619,2),(1588,811904419,3),(1588,828234020,2),(1588,846378020,3),(1588,859683620,2),(1588,877827621,3),(1588,891133221,2),(1588,909277221,3),(1588,922582822,2),(1588,941331622,3),(1588,954032422,2),(1588,972781222,3),(1588,985482022,2),(1588,1004230822,3),(1588,1017536422,2),(1588,1035680422,3),(1588,1048986022,2),(1588,1067130022,3),(1588,1080435622,2),(1588,1099184422,3),(1588,1111885222,2),(1588,1130634022,3),(1588,1143334823,2),(1588,1162083623,3),(1588,1174784423,2),(1588,1193533223,3),(1588,1206838823,2),(1588,1224982823,3),(1588,1238288424,2),(1588,1256432424,3),(1588,1269738024,2),(1588,1288486824,3),(1588,1301187624,2),(1588,1319936424,3),(1588,1332637224,2),(1588,1351386025,3),(1588,1364691625,2),(1588,1382835625,3),(1588,1396141225,2),(1588,1414285225,3),(1588,1427590825,2),(1588,1445734826,3),(1588,1459040426,2),(1588,1477789226,3),(1588,1490490027,2),(1588,1509238827,3),(1588,1521939627,2),(1588,1540688427,3),(1588,1553994027,2),(1588,1572138027,3),(1588,1585443627,2),(1588,1603587627,3),(1588,1616893227,2),(1588,1635642027,3),(1588,1648342827,2),(1588,1667091627,3),(1588,1679792427,2),(1588,1698541227,3),(1588,1711846827,2),(1588,1729990827,3),(1588,1743296427,2),(1588,1761440427,3),(1588,1774746027,2),(1588,1792890027,3),(1588,1806195627,2),(1588,1824944427,3),(1588,1837645227,2),(1588,1856394027,3),(1588,1869094827,2),(1588,1887843627,3),(1588,1901149227,2),(1588,1919293227,3),(1588,1932598827,2),(1588,1950742827,3),(1588,1964048427,2),(1588,1982797227,3),(1588,1995498027,2),(1588,2014246827,3),(1588,2026947627,2),(1588,2045696427,3),(1588,2058397227,2),(1588,2077146027,3),(1588,2090451627,2),(1588,2108595627,3),(1588,2121901227,2),(1588,2140045227,3),(1589,-1633276800,0),(1589,-1615136400,1),(1589,-1601827200,0),(1589,-1583686800,1),(1589,-880214400,2),(1589,-769395600,3),(1589,-765392400,1),(1589,-84384000,0),(1589,-68662800,1),(1589,-52934400,0),(1589,-37213200,1),(1589,-21484800,0),(1589,-5763600,1),(1589,9964800,0),(1589,25686000,1),(1589,41414400,0),(1589,57740400,1),(1589,73468800,0),(1589,89190001,1),(1589,104918402,0),(1589,120639602,1),(1589,126691203,0),(1589,152089203,1),(1589,162374404,0),(1589,183538804,1),(1589,199267205,0),(1589,215593205,1),(1589,230716806,0),(1589,247042806,1),(1589,262771207,0),(1589,278492407,1),(1589,294220808,0),(1589,309942008,1),(1589,325670409,0),(1589,341391609,1),(1589,357120009,0),(1589,372841210,1),(1589,388569610,0),(1589,404895611,1),(1589,420019211,0),(1589,436345212,1),(1589,452073612,0),(1589,467794812,1),(1589,483523212,0),(1589,499244413,1),(1589,514972813,0),(1589,530694013,1),(1589,544608013,0),(1589,562143613,1),(1589,576057614,0),(1589,594198014,1),(1589,607507214,0),(1589,625647614,1),(1589,638956815,0),(1589,657097215,1),(1589,671011216,0),(1589,688546816,1),(1589,702460816,0),(1589,719996417,1),(1589,733910417,0),(1589,752050818,1),(1589,765360018,0),(1589,783500419,1),(1589,796809619,0),(1589,814950019,1),(1589,828864020,0),(1589,846399620,1),(1589,860313620,0),(1589,877849221,1),(1589,891763221,0),(1589,909298821,1),(1589,923212822,0),(1589,941353222,1),(1589,954662422,0),(1589,972802822,1),(1589,986112022,0),(1589,1004252422,1),(1589,1018166422,0),(1589,1035702022,1),(1589,1049616022,0),(1589,1067151622,1),(1589,1081065622,0),(1589,1099206022,1),(1589,1112515222,0),(1589,1130655622,1),(1589,1143964823,0),(1589,1162105223,1),(1589,1173600023,0),(1589,1194159623,1),(1589,1205049623,0),(1589,1225609223,1),(1589,1236499224,0),(1589,1257058824,1),(1589,1268553624,0),(1589,1289113224,1),(1589,1300003224,0),(1589,1320562824,1),(1589,1331452824,0),(1589,1352012425,1),(1589,1362902425,0),(1589,1383462025,1),(1589,1394352025,0),(1589,1414911625,1),(1589,1425801625,0),(1589,1446361226,1),(1589,1457856026,0),(1589,1478415626,1),(1589,1489305627,0),(1589,1509865227,1),(1589,1520755227,0),(1589,1541314827,1),(1589,1552204827,0),(1589,1572764427,1),(1589,1583654427,0),(1589,1604214027,1),(1589,1615708827,0),(1589,1636268427,1),(1589,1647158427,0),(1589,1667718027,1),(1589,1678608027,0),(1589,1699167627,1),(1589,1710057627,0),(1589,1730617227,1),(1589,1741507227,0),(1589,1762066827,1),(1589,1772956827,0),(1589,1793516427,1),(1589,1805011227,0),(1589,1825570827,1),(1589,1836460827,0),(1589,1857020427,1),(1589,1867910427,0),(1589,1888470027,1),(1589,1899360027,0),(1589,1919919627,1),(1589,1930809627,0),(1589,1951369227,1),(1589,1962864027,0),(1589,1983423627,1),(1589,1994313627,0),(1589,2014873227,1),(1589,2025763227,0),(1589,2046322827,1),(1589,2057212827,0),(1589,2077772427,1),(1589,2088662427,0),(1589,2109222027,1),(1589,2120112027,0),(1589,2140671627,1),(1590,-2147483648,0),(1590,-2131645536,2),(1590,-1696276800,1),(1590,-1680469200,2),(1590,-1632074400,1),(1590,-1615143600,2),(1590,-1566763200,1),(1590,-1557090000,2),(1590,-1535486400,1),(1590,-1524949200,2),(1590,-1504468800,1),(1590,-1493413200,2),(1590,-1472414400,1),(1590,-1461963600,2),(1590,-1440964800,1),(1590,-1429390800,2),(1590,-1409515200,1),(1590,-1396731600,2),(1590,-1376856000,1),(1590,-1366491600,2),(1590,-1346616000,1),(1590,-1333832400,2),(1590,-1313956800,1),(1590,-1303678800,2),(1590,-1282507200,1),(1590,-1272661200,2),(1590,-1251057600,1),(1590,-1240088400,2),(1590,-1219608000,1),(1590,-1207429200,2),(1590,-1188763200,1),(1590,-1175979600,2),(1590,-1157313600,1),(1590,-1143925200,2),(1590,-1124049600,1),(1590,-1113771600,2),(1590,-1091390400,1),(1590,-1081026000,2),(1590,-1059854400,1),(1590,-1050786000,2),(1590,-1030910400,1),(1590,-1018126800,2),(1590,-999460800,1),(1590,-986677200,2),(1590,-965592000,1),(1590,-955227600,2),(1590,-935956800,1),(1590,-923173200,2),(1590,-904507200,1),(1590,-891723600,2),(1590,-880221600,3),(1590,-769395600,4),(1590,-765399600,2),(1590,-747252000,1),(1590,-733950000,2),(1590,-715802400,1),(1590,-702500400,2),(1590,-684352800,1),(1590,-671050800,2),(1590,-652903200,1),(1590,-639601200,2),(1590,-589399200,1),(1590,-576097200,2),(1590,-557949600,1),(1590,-544647600,2),(1590,-526500000,1),(1590,-513198000,2),(1590,-495050400,1),(1590,-481748400,2),(1590,-431546400,1),(1590,-418244400,2),(1590,-400096800,1),(1590,-386794800,2),(1590,-368647200,1),(1590,-355345200,2),(1590,-337197600,1),(1590,-323895600,2),(1590,-242244000,1),(1590,-226522800,2),(1590,-210794400,1),(1590,-195073200,2),(1590,-179344800,1),(1590,-163623600,2),(1590,-147895200,1),(1590,-131569200,2),(1590,-116445600,1),(1590,-100119600,2),(1590,-84391200,1),(1590,-68670000,2),(1590,-52941600,1),(1590,-37220400,2),(1590,-21492000,1),(1590,-5770800,2),(1590,9957600,1),(1590,25678800,2),(1590,41407200,1),(1590,57733200,2),(1590,73461600,1),(1590,89182801,2),(1590,104911202,1),(1590,120632402,2),(1590,136360803,1),(1590,152082003,2),(1590,167810404,1),(1590,183531604,2),(1590,199260005,1),(1590,215586005,2),(1590,230709606,1),(1590,247035606,2),(1590,262764007,1),(1590,278485207,2),(1590,294213608,1),(1590,309934808,2),(1590,325663209,1),(1590,341384409,2),(1590,357112809,1),(1590,372834010,2),(1590,388562410,1),(1590,404888411,2),(1590,420012011,1),(1590,436338012,2),(1590,452066412,1),(1590,467787612,2),(1590,483516012,1),(1590,499237213,2),(1590,514965613,1),(1590,530686813,2),(1590,544600813,1),(1590,562136413,2),(1590,576050414,1),(1590,594190814,2),(1590,607500014,1),(1590,625640414,2),(1590,638949615,1),(1590,657090015,2),(1590,671004016,1),(1590,688539616,2),(1590,702453616,1),(1590,719989217,2),(1590,733903217,1),(1590,752043618,2),(1590,765352818,1),(1590,783493219,2),(1590,796802419,1),(1590,814942819,2),(1590,828856820,1),(1590,846392420,2),(1590,860306420,1),(1590,877842021,2),(1590,891756021,1),(1590,909291621,2),(1590,923205622,1),(1590,941346022,2),(1590,954655222,1),(1590,972795622,2),(1590,986104822,1),(1590,1004245222,2),(1590,1018159222,1),(1590,1035694822,2),(1590,1049608822,1),(1590,1067144422,2),(1590,1081058422,1),(1590,1099198822,2),(1590,1112508022,1),(1590,1130648422,2),(1590,1143957623,1),(1590,1162098023,2),(1590,1173592823,1),(1590,1194152423,2),(1590,1205042423,1),(1590,1225602023,2),(1590,1236492024,1),(1590,1257051624,2),(1590,1268546424,1),(1590,1289106024,2),(1590,1299996024,1),(1590,1320555624,2),(1590,1331445624,1),(1590,1352005225,2),(1590,1362895225,1),(1590,1383454825,2),(1590,1394344825,1),(1590,1414904425,2),(1590,1425794425,1),(1590,1446354026,2),(1590,1457848826,1),(1590,1478408426,2),(1590,1489298427,1),(1590,1509858027,2),(1590,1520748027,1),(1590,1541307627,2),(1590,1552197627,1),(1590,1572757227,2),(1590,1583647227,1),(1590,1604206827,2),(1590,1615701627,1),(1590,1636261227,2),(1590,1647151227,1),(1590,1667710827,2),(1590,1678600827,1),(1590,1699160427,2),(1590,1710050427,1),(1590,1730610027,2),(1590,1741500027,1),(1590,1762059627,2),(1590,1772949627,1),(1590,1793509227,2),(1590,1805004027,1),(1590,1825563627,2),(1590,1836453627,1),(1590,1857013227,2),(1590,1867903227,1),(1590,1888462827,2),(1590,1899352827,1),(1590,1919912427,2),(1590,1930802427,1),(1590,1951362027,2),(1590,1962856827,1),(1590,1983416427,2),(1590,1994306427,1),(1590,2014866027,2),(1590,2025756027,1),(1590,2046315627,2),(1590,2057205627,1),(1590,2077765227,2),(1590,2088655227,1),(1590,2109214827,2),(1590,2120104827,1),(1590,2140664427,2),(1591,-2147483648,2),(1591,-1694368800,1),(1591,-1681671600,2),(1591,-1632067200,1),(1591,-1615136400,2),(1591,-1029686400,1),(1591,-1018198800,2),(1591,-880214400,3),(1591,-769395600,4),(1591,-765392400,2),(1591,-746035200,1),(1591,-732733200,2),(1591,-715795200,1),(1591,-702493200,2),(1591,-684345600,1),(1591,-671043600,2),(1591,-652896000,1),(1591,-639594000,2),(1591,-620755200,1),(1591,-607626000,2),(1591,-589392000,1),(1591,-576090000,2),(1591,-557942400,1),(1591,-544640400,2),(1591,-526492800,1),(1591,-513190800,2),(1591,-495043200,1),(1591,-481741200,2),(1591,-463593600,1),(1591,-450291600,2),(1591,-431539200,1),(1591,-418237200,2),(1591,-400089600,1),(1591,-386787600,2),(1591,-368640000,1),(1591,-355338000,2),(1591,-337190400,1),(1591,-321469200,2),(1591,-305740800,1),(1591,-292438800,2),(1591,-210787200,1),(1591,-198090000,2),(1591,-116438400,5),(1591,-100108800,6),(1591,-84384000,5),(1591,-68659200,6),(1591,-52934400,5),(1591,-37209600,6),(1591,-21484800,5),(1591,-5760000,6),(1591,9964800,5),(1591,25689600,6),(1591,41414400,5),(1591,57744000,6),(1591,73468800,5),(1591,89193601,6),(1591,104918402,5),(1591,120643202,6),(1591,136368003,5),(1591,152092803,6),(1591,167817604,5),(1591,183542404,6),(1591,199267205,5),(1591,215596805,6),(1591,230716806,5),(1591,247046406,6),(1591,262771207,5),(1591,278496007,6),(1591,294220808,5),(1591,309945608,6),(1591,325670409,5),(1591,341395209,6),(1591,357120009,5),(1591,372844810,6),(1591,388569610,5),(1591,404899211,6),(1591,420019211,5),(1591,436348812,6),(1591,452073612,5),(1591,467798412,6),(1591,483523212,5),(1591,499248013,6),(1591,514972813,5),(1591,530697613,6),(1591,544608013,5),(1591,562147213,6),(1591,576057614,5),(1591,594201614,6),(1591,607507214,5),(1591,625651214,6),(1591,638956815,5),(1591,657100815,6),(1591,671011216,5),(1591,688550416,6),(1591,702460816,5),(1591,720000017,6),(1591,733910417,5),(1591,752054418,6),(1591,765360018,5),(1591,783504019,6),(1591,796809619,5),(1591,814953619,6),(1591,828864020,5),(1591,846403220,6),(1591,860313620,5),(1591,877852821,6),(1591,891763221,5),(1591,909302421,6),(1591,923212822,5),(1591,941356822,6),(1591,954662422,5),(1591,972806422,6),(1591,986112022,5),(1591,1004256022,6),(1591,1018166422,5),(1591,1035705622,6),(1591,1049616022,5),(1591,1067155222,6),(1591,1081065622,5),(1591,1099209622,6),(1591,1112515222,5),(1591,1130659222,6),(1591,1136095223,2),(1591,1143964823,1),(1591,1162105223,2),(1591,1173600023,1),(1591,1194159623,2),(1591,1205049623,1),(1591,1225609223,2),(1591,1236499224,1),(1591,1257058824,2),(1591,1268553624,1),(1591,1289113224,2),(1591,1300003224,1),(1591,1320562824,2),(1591,1331452824,1),(1591,1352012425,2),(1591,1362902425,1),(1591,1383462025,2),(1591,1394352025,1),(1591,1414911625,2),(1591,1425801625,1),(1591,1446361226,2),(1591,1457856026,1),(1591,1478415626,2),(1591,1489305627,1),(1591,1509865227,2),(1591,1520755227,1),(1591,1541314827,2),(1591,1552204827,1),(1591,1572764427,2),(1591,1583654427,1),(1591,1604214027,2),(1591,1615708827,1),(1591,1636268427,2),(1591,1647158427,1),(1591,1667718027,2),(1591,1678608027,1),(1591,1699167627,2),(1591,1710057627,1),(1591,1730617227,2),(1591,1741507227,1),(1591,1762066827,2),(1591,1772956827,1),(1591,1793516427,2),(1591,1805011227,1),(1591,1825570827,2),(1591,1836460827,1),(1591,1857020427,2),(1591,1867910427,1),(1591,1888470027,2),(1591,1899360027,1),(1591,1919919627,2),(1591,1930809627,1),(1591,1951369227,2),(1591,1962864027,1),(1591,1983423627,2),(1591,1994313627,1),(1591,2014873227,2),(1591,2025763227,1),(1591,2046322827,2),(1591,2057212827,1),(1591,2077772427,2),(1591,2088662427,1),(1591,2109222027,2),(1591,2120112027,1),(1591,2140671627,2),(1592,-2147483648,2),(1592,-1632070800,1),(1592,-1615140000,2),(1592,-1601753400,1),(1592,-1583697600,2),(1592,-1567357200,1),(1592,-1554667200,2),(1592,-1534698000,1),(1592,-1524074400,2),(1592,-1503248400,1),(1592,-1492365600,2),(1592,-1471798800,1),(1592,-1460916000,2),(1592,-1440954000,1),(1592,-1428861600,2),(1592,-1409504400,1),(1592,-1397412000,2),(1592,-1378054800,1),(1592,-1365962400,2),(1592,-1346605200,1),(1592,-1333908000,2),(1592,-1315155600,1),(1592,-1301853600,2),(1592,-1283706000,1),(1592,-1270404000,2),(1592,-1252256400,1),(1592,-1238954400,2),(1592,-1220806800,1),(1592,-1207504800,2),(1592,-1188752400,1),(1592,-1176055200,2),(1592,-1157302800,1),(1592,-1144000800,2),(1592,-1125853200,1),(1592,-1112551200,2),(1592,-1094403600,1),(1592,-1081101600,2),(1592,-1062954000,1),(1592,-1049652000,2),(1592,-1031504400,1),(1592,-1018202400,2),(1592,-1000054800,1),(1592,-986752800,2),(1592,-968000400,1),(1592,-955303200,2),(1592,-936550800,1),(1592,-880218000,3),(1592,-769395600,4),(1592,-765396000,2),(1592,-747248400,1),(1592,-733946400,2),(1592,-715806000,1),(1592,-702504000,2),(1592,-684356400,1),(1592,-671054400,2),(1592,-652906800,1),(1592,-634161600,2),(1592,-620845200,1),(1592,-602704800,2),(1592,-589395600,1),(1592,-576093600,2),(1592,-557946000,1),(1592,-544644000,2),(1592,-526496400,1),(1592,-513194400,2),(1592,-495046800,1),(1592,-481744800,2),(1592,-463597200,1),(1592,-450295200,2),(1592,-431542800,1),(1592,-418240800,2),(1592,-400093200,1),(1592,-384372000,2),(1592,-368643600,1),(1592,-352922400,2),(1592,-337194000,1),(1592,-321472800,2),(1592,-305744400,1),(1592,-289418400,2),(1592,-273690000,1),(1592,-257968800,2),(1592,-242240400,1),(1592,-226519200,2),(1592,-210790800,1),(1592,-195069600,2),(1592,-179341200,1),(1592,-163620000,2),(1592,-147891600,1),(1592,-131565600,2),(1592,-116442000,1),(1592,-100116000,2),(1592,-84387600,1),(1592,-68666400,2),(1592,-52938000,1),(1592,-37216800,2),(1592,-21488400,1),(1592,-5767200,2),(1592,9961200,1),(1592,25682400,2),(1592,41410800,1),(1592,57736800,2),(1592,73465200,1),(1592,89186401,2),(1592,104914802,1),(1592,120636002,2),(1592,136364403,1),(1592,152085603,2),(1592,167814004,1),(1592,183535204,2),(1592,199263605,1),(1592,215589605,2),(1592,230713206,1),(1592,247039206,2),(1592,262767607,1),(1592,278488807,2),(1592,294217208,1),(1592,309938408,2),(1592,325666809,1),(1592,341388009,2),(1592,357116409,1),(1592,372837610,2),(1592,388566010,1),(1592,404892011,2),(1592,420015611,1),(1592,436341612,2),(1592,452070012,1),(1592,467791212,2),(1592,483519612,1),(1592,499240813,2),(1592,514969213,1),(1592,530690413,2),(1592,544604413,1),(1592,562140013,2),(1592,576054014,1),(1592,594194414,2),(1592,607503614,1),(1592,625644014,2),(1592,638953215,1),(1592,657093615,2),(1592,671007616,1),(1592,688543216,2),(1592,702457216,1),(1592,719992817,2),(1592,733906817,1),(1592,752047218,2),(1592,765356418,1),(1592,783496819,2),(1592,796806019,1),(1592,814946419,2),(1592,828860420,1),(1592,846396020,2),(1592,860310020,1),(1592,877845621,2),(1592,891759621,1),(1592,909295221,2),(1592,923209222,1),(1592,941349622,2),(1592,954658822,1),(1592,972799222,2),(1592,986108422,1),(1592,1004248822,2),(1592,1018162822,1),(1592,1035698422,2),(1592,1049612422,1),(1592,1067148022,2),(1592,1081062022,1),(1592,1099202422,2),(1592,1112511622,1),(1592,1130652022,2),(1592,1143961223,1),(1592,1162101623,2),(1592,1173596423,1),(1592,1194156023,2),(1592,1205046023,1),(1592,1225605623,2),(1592,1236495624,1),(1592,1257055224,2),(1592,1268550024,1),(1592,1289109624,2),(1592,1299999624,1),(1592,1320559224,2),(1592,1331449224,1),(1592,1352008825,2),(1592,1362898825,1),(1592,1383458425,2),(1592,1394348425,1),(1592,1414908025,2),(1592,1425798025,1),(1592,1446357626,2),(1592,1457852426,1),(1592,1478412026,2),(1592,1489302027,1),(1592,1509861627,2),(1592,1520751627,1),(1592,1541311227,2),(1592,1552201227,1),(1592,1572760827,2),(1592,1583650827,1),(1592,1604210427,2),(1592,1615705227,1),(1592,1636264827,2),(1592,1647154827,1),(1592,1667714427,2),(1592,1678604427,1),(1592,1699164027,2),(1592,1710054027,1),(1592,1730613627,2),(1592,1741503627,1),(1592,1762063227,2),(1592,1772953227,1),(1592,1793512827,2),(1592,1805007627,1),(1592,1825567227,2),(1592,1836457227,1),(1592,1857016827,2),(1592,1867906827,1),(1592,1888466427,2),(1592,1899356427,1),(1592,1919916027,2),(1592,1930806027,1),(1592,1951365627,2),(1592,1962860427,1),(1592,1983420027,2),(1592,1994310027,1),(1592,2014869627,2),(1592,2025759627,1),(1592,2046319227,2),(1592,2057209227,1),(1592,2077768827,2),(1592,2088658827,1),(1592,2109218427,2),(1592,2120108427,1),(1592,2140668027,2),(1593,-2147483648,0),(1593,-1998663968,2),(1593,-1632063600,1),(1593,-1615132800,2),(1593,-1600614000,1),(1593,-1596816000,2),(1593,-1567954800,1),(1593,-1551628800,2),(1593,-1536505200,1),(1593,-1523203200,2),(1593,-1504450800,1),(1593,-1491753600,2),(1593,-1473001200,1),(1593,-1459699200,2),(1593,-880210800,3),(1593,-769395600,4),(1593,-765388800,2),(1593,-715791600,1),(1593,-702489600,2),(1593,73472400,1),(1593,89193601,2),(1593,104922002,1),(1593,120643202,2),(1593,136371603,1),(1593,152092803,2),(1593,167821204,1),(1593,183542404,2),(1593,199270805,1),(1593,215596805,2),(1593,230720406,1),(1593,247046406,2),(1593,262774807,1),(1593,278496007,2),(1593,294224408,1),(1593,309945608,2),(1593,325674009,1),(1593,341395209,2),(1593,357123609,1),(1593,372844810,2),(1593,388573210,1),(1593,404899211,2),(1593,420022811,1),(1593,436348812,2),(1593,452077212,1),(1593,467798412,2),(1593,483526812,1),(1593,499248013,2),(1593,514976413,1),(1593,530697613,2),(1593,544611613,1),(1593,562147213,2),(1593,576061214,1),(1593,594201614,2),(1593,607510814,1),(1593,625651214,2),(1593,638960415,1),(1593,657100815,2),(1593,671014816,1),(1593,688550416,2),(1593,702464416,1),(1593,720000017,2),(1593,733914017,1),(1593,752054418,2),(1593,765363618,1),(1593,783504019,2),(1593,796813219,1),(1593,814953619,2),(1593,828867620,1),(1593,846403220,2),(1593,860317220,1),(1593,877852821,2),(1593,891766821,1),(1593,909302421,2),(1593,923216422,1),(1593,941356822,2),(1593,954666022,1),(1593,972806422,2),(1593,986115622,1),(1593,1004256022,2),(1593,1018170022,1),(1593,1035705622,2),(1593,1049619622,1),(1593,1067155222,2),(1593,1081069222,1),(1593,1099209622,2),(1593,1112518822,1),(1593,1130659222,2),(1593,1143968423,1),(1593,1162108823,2),(1593,1173603623,1),(1593,1194163223,2),(1593,1205053223,1),(1593,1225612823,2),(1593,1236502824,1),(1593,1257062424,2),(1593,1268557224,1),(1593,1289116824,2),(1593,1300006824,1),(1593,1320566424,2),(1593,1331456424,1),(1593,1352016025,2),(1593,1362906025,1),(1593,1383465625,2),(1593,1394355625,1),(1593,1414915225,2),(1593,1425805225,1),(1593,1446364826,2),(1593,1457859626,1),(1593,1478419226,2),(1593,1489309227,1),(1593,1509868827,2),(1593,1520758827,1),(1593,1541318427,2),(1593,1552208427,1),(1593,1572768027,2),(1593,1583658027,1),(1593,1604217627,2),(1593,1615712427,1),(1593,1636272027,2),(1593,1647162027,1),(1593,1667721627,2),(1593,1678611627,1),(1593,1699171227,2),(1593,1710061227,1),(1593,1730620827,2),(1593,1741510827,1),(1593,1762070427,2),(1593,1772960427,1),(1593,1793520027,2),(1593,1805014827,1),(1593,1825574427,2),(1593,1836464427,1),(1593,1857024027,2),(1593,1867914027,1),(1593,1888473627,2),(1593,1899363627,1),(1593,1919923227,2),(1593,1930813227,1),(1593,1951372827,2),(1593,1962867627,1),(1593,1983427227,2),(1593,1994317227,1),(1593,2014876827,2),(1593,2025766827,1),(1593,2046326427,2),(1593,2057216427,1),(1593,2077776027,2),(1593,2088666027,1),(1593,2109225627,2),(1593,2120115627,1),(1593,2140675227,2),(1594,-2147483648,2),(1594,-1664130548,1),(1594,-1650137348,2),(1594,-1632076148,1),(1594,-1615145348,2),(1594,-1598650148,1),(1594,-1590100148,2),(1594,-1567286948,1),(1594,-1551565748,2),(1594,-1535837348,1),(1594,-1520116148,2),(1594,-1503782948,1),(1594,-1488666548,2),(1594,-1472333348,1),(1594,-1457216948,2),(1594,-1440883748,1),(1594,-1425767348,2),(1594,-1409434148,1),(1594,-1394317748,2),(1594,-1377984548,1),(1594,-1362263348,2),(1594,-1346534948,1),(1594,-1330813748,2),(1594,-1314480548,1),(1594,-1299364148,2),(1594,-1283030948,1),(1594,-1267914548,2),(1594,-1251581348,1),(1594,-1236464948,2),(1594,-1220131748,1),(1594,-1205015348,2),(1594,-1188682148,1),(1594,-1172960948,2),(1594,-1156627748,1),(1594,-1141511348,2),(1594,-1125178148,1),(1594,-1110061748,2),(1594,-1096921748,4),(1594,-1093728600,3),(1594,-1078612200,4),(1594,-1061670600,3),(1594,-1048973400,4),(1594,-1030221000,3),(1594,-1017523800,4),(1594,-998771400,3),(1594,-986074200,4),(1594,-966717000,3),(1594,-954624600,4),(1594,-935267400,3),(1594,-922570200,4),(1594,-903817800,3),(1594,-891120600,4),(1594,-872368200,6),(1594,-769395600,5),(1594,-765401400,4),(1594,-746044200,3),(1594,-733347000,4),(1594,-714594600,3),(1594,-701897400,4),(1594,-683145000,3),(1594,-670447800,4),(1594,-651695400,3),(1594,-638998200,4),(1594,-619641000,3),(1594,-606943800,4),(1594,-589401000,3),(1594,-576099000,4),(1594,-557951400,3),(1594,-544649400,4),(1594,-526501800,3),(1594,-513199800,4),(1594,-495052200,3),(1594,-481750200,4),(1594,-463602600,3),(1594,-450300600,4),(1594,-431548200,3),(1594,-418246200,4),(1594,-400098600,3),(1594,-386796600,4),(1594,-368649000,3),(1594,-355347000,4),(1594,-337199400,3),(1594,-323897400,4),(1594,-305749800,3),(1594,-289423800,4),(1594,-273695400,3),(1594,-257974200,4),(1594,-242245800,3),(1594,-226524600,4),(1594,-210796200,3),(1594,-195075000,4),(1594,-179346600,3),(1594,-163625400,4),(1594,-147897000,3),(1594,-131571000,4),(1594,-116447400,3),(1594,-100121400,4),(1594,-84393000,3),(1594,-68671800,4),(1594,-52943400,3),(1594,-37222200,4),(1594,-21493800,3),(1594,-5772600,4),(1594,9955800,3),(1594,25677000,4),(1594,41405400,3),(1594,57731400,4),(1594,73459800,3),(1594,89181001,4),(1594,104909402,3),(1594,120630602,4),(1594,136359003,3),(1594,152080203,4),(1594,167808604,3),(1594,183529804,4),(1594,199258205,3),(1594,215584205,4),(1594,230707806,3),(1594,247033806,4),(1594,262762207,3),(1594,278483407,4),(1594,294211808,3),(1594,309933008,4),(1594,325661409,3),(1594,341382609,4),(1594,357111009,3),(1594,372832210,4),(1594,388560610,3),(1594,404886611,4),(1594,420010211,3),(1594,436336212,4),(1594,452064612,3),(1594,467785812,4),(1594,483514212,3),(1594,499235413,4),(1594,514963813,3),(1594,530685013,4),(1594,544591873,3),(1594,562127473,4),(1594,576041474,7),(1594,594178274,4),(1594,607491074,3),(1594,625631474,4),(1594,638940675,3),(1594,657081075,4),(1594,670995076,3),(1594,688530676,4),(1594,702444676,3),(1594,719980277,4),(1594,733894277,3),(1594,752034678,4),(1594,765343878,3),(1594,783484279,4),(1594,796793479,3),(1594,814933879,4),(1594,828847880,3),(1594,846383480,4),(1594,860297480,3),(1594,877833081,4),(1594,891747081,3),(1594,909282681,4),(1594,923196682,3),(1594,941337082,4),(1594,954646282,3),(1594,972786682,4),(1594,986095882,3),(1594,1004236282,4),(1594,1018150282,3),(1594,1035685882,4),(1594,1049599882,3),(1594,1067135482,4),(1594,1081049482,3),(1594,1099189882,4),(1594,1112499082,3),(1594,1130639482,4),(1594,1143948683,3),(1594,1162089083,4),(1594,1173583883,3),(1594,1194143483,4),(1594,1205033483,3),(1594,1225593083,4),(1594,1236483084,3),(1594,1257042684,4),(1594,1268537484,3),(1594,1289097084,4),(1594,1299987084,3),(1594,1320553824,4),(1594,1331443824,3),(1594,1352003425,4),(1594,1362893425,3),(1594,1383453025,4),(1594,1394343025,3),(1594,1414902625,4),(1594,1425792625,3),(1594,1446352226,4),(1594,1457847026,3),(1594,1478406626,4),(1594,1489296627,3),(1594,1509856227,4),(1594,1520746227,3),(1594,1541305827,4),(1594,1552195827,3),(1594,1572755427,4),(1594,1583645427,3),(1594,1604205027,4),(1594,1615699827,3),(1594,1636259427,4),(1594,1647149427,3),(1594,1667709027,4),(1594,1678599027,3),(1594,1699158627,4),(1594,1710048627,3),(1594,1730608227,4),(1594,1741498227,3),(1594,1762057827,4),(1594,1772947827,3),(1594,1793507427,4),(1594,1805002227,3),(1594,1825561827,4),(1594,1836451827,3),(1594,1857011427,4),(1594,1867901427,3),(1594,1888461027,4),(1594,1899351027,3),(1594,1919910627,4),(1594,1930800627,3),(1594,1951360227,4),(1594,1962855027,3),(1594,1983414627,4),(1594,1994304627,3),(1594,2014864227,4),(1594,2025754227,3),(1594,2046313827,4),(1594,2057203827,3),(1594,2077763427,4),(1594,2088653427,3),(1594,2109213027,4),(1594,2120103027,3),(1594,2140662627,4),(1595,-2147483648,2),(1595,-1632060000,1),(1595,-1615129200,2),(1595,-880207200,3),(1595,-769395600,4),(1595,-765385200,2),(1595,-747237600,1),(1595,-733935600,2),(1595,-715788000,1),(1595,-702486000,2),(1595,-684338400,1),(1595,-671036400,2),(1595,-652888800,1),(1595,-639586800,2),(1595,-620834400,1),(1595,-608137200,2),(1595,-589384800,1),(1595,-576082800,2),(1595,-557935200,1),(1595,-544633200,2),(1595,-526485600,1),(1595,-513183600,2),(1595,-495036000,1),(1595,-481734000,2),(1595,-463586400,1),(1595,-450284400,2),(1595,-431532000,1),(1595,-418230000,2),(1595,-400082400,1),(1595,-386780400,2),(1595,-368632800,1),(1595,-355330800,2),(1595,-337183200,1),(1595,-323881200,2),(1595,-305733600,1),(1595,-292431600,2),(1595,-273679200,1),(1595,-260982000,2),(1595,-242229600,1),(1595,-226508400,2),(1595,-210780000,1),(1595,-195058800,2),(1595,-179330400,1),(1595,-163609200,2),(1595,-147880800,1),(1595,-131554800,2),(1595,-116431200,1),(1595,-100105200,2),(1595,-84376800,1),(1595,-68655600,2),(1595,-52927200,1),(1595,-37206000,2),(1595,-21477600,1),(1595,-5756400,2),(1595,9972000,1),(1595,25693200,2),(1595,41421600,1),(1595,57747600,2),(1595,73476000,1),(1595,89197201,2),(1595,104925602,1),(1595,120646802,2),(1595,136375203,1),(1595,152096403,2),(1595,167824804,1),(1595,183546004,2),(1595,199274405,1),(1595,215600405,2),(1595,230724006,1),(1595,247050006,2),(1595,262778407,1),(1595,278499607,2),(1595,294228008,1),(1595,309949208,2),(1595,325677609,1),(1595,341398809,2),(1595,357127209,1),(1595,372848410,2),(1595,388576810,1),(1595,404902811,2),(1595,420026411,1),(1595,436352412,2),(1595,452080812,1),(1595,467802012,2),(1595,483530412,1),(1595,499251613,2),(1595,514980013,1),(1595,530701213,2),(1595,544615213,1),(1595,562150813,2),(1595,576064814,1),(1595,594205214,2),(1595,607514414,1),(1595,625654814,2),(1595,638964015,1),(1595,657104415,2),(1595,671018416,1),(1595,688554016,2),(1595,702468016,1),(1595,720003617,2),(1595,733917617,1),(1595,752058018,2),(1595,765367218,1),(1595,783507619,2),(1595,796816819,1),(1595,814957219,2),(1595,828871220,1),(1595,846406820,2),(1595,860320820,1),(1595,877856421,2),(1595,891770421,1),(1595,909306021,2),(1595,923220022,1),(1595,941360422,2),(1595,954669622,1),(1595,972810022,2),(1595,986119222,1),(1595,1004259622,2),(1595,1018173622,1),(1595,1035709222,2),(1595,1049623222,1),(1595,1067158822,2),(1595,1081072822,1),(1595,1099213222,2),(1595,1112522422,1),(1595,1130662822,2),(1595,1143972023,1),(1595,1162112423,2),(1595,1173607223,1),(1595,1194166823,2),(1595,1205056823,1),(1595,1225616423,2),(1595,1236506424,1),(1595,1257066024,2),(1595,1268560824,1),(1595,1289120424,2),(1595,1300010424,1),(1595,1320570024,2),(1595,1331460024,1),(1595,1352019625,2),(1595,1362909625,1),(1595,1383469225,2),(1595,1394359225,1),(1595,1414918825,2),(1595,1425808825,1),(1595,1446368426,2),(1595,1457863226,1),(1595,1478422826,2),(1595,1489312827,1),(1595,1509872427,2),(1595,1520762427,1),(1595,1541322027,2),(1595,1552212027,1),(1595,1572771627,2),(1595,1583661627,1),(1595,1604221227,2),(1595,1615716027,1),(1595,1636275627,2),(1595,1647165627,1),(1595,1667725227,2),(1595,1678615227,1),(1595,1699174827,2),(1595,1710064827,1),(1595,1730624427,2),(1595,1741514427,1),(1595,1762074027,2),(1595,1772964027,1),(1595,1793523627,2),(1595,1805018427,1),(1595,1825578027,2),(1595,1836468027,1),(1595,1857027627,2),(1595,1867917627,1),(1595,1888477227,2),(1595,1899367227,1),(1595,1919926827,2),(1595,1930816827,1),(1595,1951376427,2),(1595,1962871227,1),(1595,1983430827,2),(1595,1994320827,1),(1595,2014880427,2),(1595,2025770427,1),(1595,2046330027,2),(1595,2057220027,1),(1595,2077779627,2),(1595,2088669627,1),(1595,2109229227,2),(1595,2120119227,1),(1595,2140678827,2),(1596,-2147483648,0),(1596,-2030202084,2),(1596,-1632063600,1),(1596,-1615132800,2),(1596,-1251651600,1),(1596,-1238349600,2),(1596,-1220202000,1),(1596,-1206900000,2),(1596,-1188752400,1),(1596,-1175450400,2),(1596,-1156698000,1),(1596,-1144000800,2),(1596,-1125248400,1),(1596,-1111946400,2),(1596,-1032714000,1),(1596,-1016992800,2),(1596,-1001264400,1),(1596,-986148000,2),(1596,-969814800,1),(1596,-954093600,2),(1596,-937760400,1),(1596,-922039200,2),(1596,-906310800,1),(1596,-890589600,2),(1596,-880210800,3),(1596,-769395600,4),(1596,-765388800,2),(1596,-748450800,1),(1596,-732729600,2),(1596,-715791600,1),(1596,-702489600,2),(1596,-684342000,1),(1596,-671040000,2),(1596,-652892400,1),(1596,-639590400,2),(1596,-620838000,1),(1596,-608140800,2),(1596,-589388400,1),(1596,-576086400,2),(1596,-557938800,1),(1596,-544636800,2),(1596,-526489200,1),(1596,-513187200,2),(1596,-495039600,1),(1596,-481737600,2),(1596,-463590000,1),(1596,-450288000,2),(1596,-431535600,1),(1596,-418233600,2),(1596,-400086000,1),(1596,-386784000,2),(1596,-337186800,1),(1596,-321465600,2),(1596,-305737200,5),(1597,-2147483648,2),(1597,-1632056400,1),(1597,-1615125600,2),(1597,-1596978000,1),(1597,-1583164800,2),(1597,-880203600,3),(1597,-769395600,4),(1597,-765381600,2),(1597,-147884400,5),(1597,-131554800,2),(1597,-81961200,6),(1597,325677609,7),(1597,341398809,6),(1597,357127209,7),(1597,372848410,6),(1597,388576810,7),(1597,404902811,6),(1597,420026411,7),(1597,436352412,6),(1597,452080812,7),(1597,467802012,6),(1597,483530412,7),(1597,499251613,6),(1597,514980013,7),(1597,530701213,6),(1597,544615213,7),(1597,562150813,6),(1597,576064814,7),(1597,594205214,6),(1597,607514414,7),(1597,625654814,6),(1597,638964015,7),(1597,657104415,6),(1597,671018416,7),(1597,688554016,6),(1597,702468016,7),(1597,720003617,6),(1597,733917617,7),(1597,752058018,6),(1597,765367218,7),(1597,783507619,6),(1597,796816819,7),(1597,814957219,6),(1597,828871220,7),(1597,846406820,6),(1597,860320820,7),(1597,877856421,6),(1597,891770421,7),(1597,909306021,6),(1597,923220022,7),(1597,941360422,6),(1597,954669622,7),(1597,972810022,6),(1597,986119222,7),(1597,1004259622,6),(1597,1018173622,7),(1597,1035709222,6),(1597,1049623222,7),(1597,1067158822,6),(1597,1081072822,7),(1597,1099213222,6),(1597,1112522422,7),(1597,1130662822,6),(1597,1143972023,7),(1597,1162112423,6),(1597,1173607223,7),(1597,1194166823,6),(1597,1205056823,7),(1597,1225616423,6),(1597,1236506424,7),(1597,1257066024,6),(1597,1268560824,7),(1597,1289120424,6),(1597,1300010424,7),(1597,1320570024,6),(1597,1331460024,7),(1597,1352019625,6),(1597,1362909625,7),(1597,1383469225,6),(1597,1394359225,7),(1597,1414918825,6),(1597,1425808825,7),(1597,1446368426,6),(1597,1457863226,7),(1597,1478422826,6),(1597,1489312827,7),(1597,1509872427,6),(1597,1520762427,7),(1597,1541322027,6),(1597,1552212027,7),(1597,1572771627,6),(1597,1583661627,7),(1597,1604221227,6),(1597,1615716027,7),(1597,1636275627,6),(1597,1647165627,7),(1597,1667725227,6),(1597,1678615227,7),(1597,1699174827,6),(1597,1710064827,7),(1597,1730624427,6),(1597,1741514427,7),(1597,1762074027,6),(1597,1772964027,7),(1597,1793523627,6),(1597,1805018427,7),(1597,1825578027,6),(1597,1836468027,7),(1597,1857027627,6),(1597,1867917627,7),(1597,1888477227,6),(1597,1899367227,7),(1597,1919926827,6),(1597,1930816827,7),(1597,1951376427,6),(1597,1962871227,7),(1597,1983430827,6),(1597,1994320827,7),(1597,2014880427,6),(1597,2025770427,7),(1597,2046330027,6),(1597,2057220027,7),(1597,2077779627,6),(1597,2088669627,7),(1597,2109229227,6),(1597,2120119227,7),(1597,2140678827,6),(1598,-2147483648,1),(1598,-1892661434,2),(1598,-1688410800,1),(1598,-1619205434,3),(1598,-1593806400,1),(1598,-1335986234,4),(1598,-1317585600,2),(1598,-1304362800,4),(1598,-1286049600,2),(1598,-1272826800,4),(1598,-1254513600,2),(1598,-1241290800,4),(1598,-1222977600,2),(1598,-1209754800,4),(1598,-1191355200,2),(1598,-1178132400,3),(1598,-870552000,2),(1598,-865278000,3),(1598,-740520000,5),(1598,-736376400,3),(1598,-718056000,2),(1598,-713649600,3),(1598,-36619200,6),(1598,-23922000,7),(1598,-3355200,6),(1598,7527600,7),(1598,24465600,6),(1598,37767600,7),(1598,55915200,6),(1598,69217200,7),(1598,87969601,6),(1598,100666802,7),(1598,118209602,6),(1598,132116403,7),(1598,150868803,6),(1598,163566004,7),(1598,182318404,6),(1598,195620405,7),(1598,213768005,6),(1598,227070006,7),(1598,245217606,6),(1598,258519607,7),(1598,277272007,6),(1598,289969208,7),(1598,308721608,6),(1598,321418809,7),(1598,340171209,6),(1598,353473209,7),(1598,371620810,6),(1598,384922810,7),(1598,403070411,6),(1598,416372411,7),(1598,434520012,6),(1598,447822012,7),(1598,466574412,6),(1598,479271612,7),(1598,498024013,6),(1598,510721213,7),(1598,529473613,6),(1598,545194813,7),(1598,560923213,6),(1598,574225214,7),(1598,592372814,6),(1598,605674814,7),(1598,624427214,6),(1598,637124415,7),(1598,653457615,6),(1598,668574016,7),(1598,687326416,6),(1598,700628416,7),(1598,718776017,6),(1598,732078017,7),(1598,750225618,6),(1598,763527618,7),(1598,781675219,6),(1598,794977219,7),(1598,813729619,6),(1598,826426820,7),(1598,845179220,6),(1598,859690820,7),(1598,876628821,6),(1598,889930821,7),(1598,906868821,6),(1598,923194822,7),(1598,939528022,6),(1598,952830022,7),(1598,971582422,6),(1598,984279622,7),(1598,1003032022,6),(1598,1015729222,7),(1598,1034481622,6),(1598,1047178822,7),(1598,1065931222,6),(1598,1079233222,7),(1598,1097380822,6),(1598,1110682822,7),(1598,1128830422,6),(1598,1142132423,7),(1598,1160884823,6),(1598,1173582023,7),(1598,1192334423,6),(1598,1206846023,7),(1598,1223784023,6),(1598,1237086024,7),(1598,1255233624,6),(1598,1270350024,7),(1598,1286683224,6),(1598,1304823624,7),(1598,1313899224,6),(1598,1335668424,7),(1598,1346558425,6),(1598,1367118025,7),(1598,1378612825,6),(1598,1398567625,7),(1598,1410062425,6),(1598,1463281226,7),(1598,1471147226,6),(1598,1494730827,7),(1598,1502596827,6),(1598,1526180427,7),(1598,1534046427,6),(1598,1554606027,7),(1598,1567915227,6),(1598,1586055627,7),(1598,1599364827,6),(1598,1617505227,7),(1598,1630814427,6),(1598,1648954827,7),(1598,1662264027,6),(1598,1680404427,7),(1598,1693713627,6),(1598,1712458827,7),(1598,1725768027,6),(1598,1743908427,7),(1598,1757217627,6),(1598,1775358027,7),(1598,1788667227,6),(1598,1806807627,7),(1598,1820116827,6),(1598,1838257227,7),(1598,1851566427,6),(1598,1870311627,7),(1598,1883016027,6),(1598,1901761227,7),(1598,1915070427,6),(1598,1933210827,7),(1598,1946520027,6),(1598,1964660427,7),(1598,1977969627,6),(1598,1996110027,7),(1598,2009419227,6),(1598,2027559627,7),(1598,2040868827,6),(1598,2059614027,7),(1598,2072318427,6),(1598,2091063627,7),(1598,2104372827,6),(1598,2122513227,7),(1598,2135822427,6),(1599,-2147483648,1),(1599,-1178124152,4),(1599,-36619200,2),(1599,-23922000,3),(1599,-3355200,2),(1599,7527600,3),(1599,24465600,2),(1599,37767600,3),(1599,55915200,2),(1599,69217200,3),(1599,87969601,2),(1599,100666802,3),(1599,118209602,2),(1599,132116403,3),(1599,150868803,2),(1599,163566004,3),(1599,182318404,2),(1599,195620405,3),(1599,213768005,2),(1599,227070006,3),(1599,245217606,2),(1599,258519607,3),(1599,277272007,2),(1599,289969208,3),(1599,308721608,2),(1599,321418809,3),(1599,340171209,2),(1599,353473209,3),(1599,371620810,2),(1599,384922810,5),(1599,403070411,6),(1599,416372411,5),(1599,434520012,6),(1599,447822012,5),(1599,466574412,6),(1599,479271612,5),(1599,498024013,6),(1599,510721213,5),(1599,529473613,6),(1599,545194813,5),(1599,560923213,6),(1599,574225214,5),(1599,592372814,6),(1599,605674814,5),(1599,624427214,6),(1599,637124415,5),(1599,653457615,6),(1599,668574016,5),(1599,687326416,6),(1599,700628416,5),(1599,718776017,6),(1599,732078017,5),(1599,750225618,6),(1599,763527618,5),(1599,781675219,6),(1599,794977219,5),(1599,813729619,6),(1599,826426820,5),(1599,845179220,6),(1599,859690820,5),(1599,876628821,6),(1599,889930821,5),(1599,906868821,6),(1599,923194822,5),(1599,939528022,6),(1599,952830022,5),(1599,971582422,6),(1599,984279622,5),(1599,1003032022,6),(1599,1015729222,5),(1599,1034481622,6),(1599,1047178822,5),(1599,1065931222,6),(1599,1079233222,5),(1599,1097380822,6),(1599,1110682822,5),(1599,1128830422,6),(1599,1142132423,5),(1599,1160884823,6),(1599,1173582023,5),(1599,1192334423,6),(1599,1206846023,5),(1599,1223784023,6),(1599,1237086024,5),(1599,1255233624,6),(1599,1270350024,5),(1599,1286683224,6),(1599,1304823624,5),(1599,1313899224,6),(1599,1335668424,5),(1599,1346558425,6),(1599,1367118025,5),(1599,1378612825,6),(1599,1398567625,5),(1599,1410062425,6),(1599,1463281226,5),(1599,1471147226,6),(1599,1494730827,5),(1599,1502596827,6),(1599,1526180427,5),(1599,1534046427,6),(1599,1554606027,5),(1599,1567915227,6),(1599,1586055627,5),(1599,1599364827,6),(1599,1617505227,5),(1599,1630814427,6),(1599,1648954827,5),(1599,1662264027,6),(1599,1680404427,5),(1599,1693713627,6),(1599,1712458827,5),(1599,1725768027,6),(1599,1743908427,5),(1599,1757217627,6),(1599,1775358027,5),(1599,1788667227,6),(1599,1806807627,5),(1599,1820116827,6),(1599,1838257227,5),(1599,1851566427,6),(1599,1870311627,5),(1599,1883016027,6),(1599,1901761227,5),(1599,1915070427,6),(1599,1933210827,5),(1599,1946520027,6),(1599,1964660427,5),(1599,1977969627,6),(1599,1996110027,5),(1599,2009419227,6),(1599,2027559627,5),(1599,2040868827,6),(1599,2059614027,5),(1599,2072318427,6),(1599,2091063627,5),(1599,2104372827,6),(1599,2122513227,5),(1599,2135822427,6),(1600,-2147483648,1),(1600,-1402813824,3),(1600,-1311534000,2),(1600,-1300996800,3),(1600,-933534000,2),(1600,-925675200,3),(1600,-902084400,2),(1600,-893620800,3),(1600,-870030000,2),(1600,-862171200,3),(1600,-775681200,2),(1600,-767822400,3),(1600,-744231600,2),(1600,-736372800,3),(1600,-144702000,2),(1600,-134251200,3),(1600,-113425200,2),(1600,-102542400,3),(1600,-86295600,2),(1600,-72907200,3),(1600,-54154800,2),(1600,-41457600,3),(1600,-21495600,2),(1600,-5774400,3),(1600,9954000,2),(1600,25675200,3),(1600,41403600,2),(1600,57729600,3),(1600,73458000,2),(1600,87364801,3),(1600,104907602,2),(1600,118900802,3),(1600,136357203,2),(1600,150436803,3),(1600,167806804,2),(1600,183528004,3),(1600,199256405,2),(1600,215582405,3),(1600,230706006,2),(1600,247032006,3),(1600,263365207,2),(1600,276667207,3),(1600,290581208,2),(1600,308721608,3),(1600,322030809,2),(1600,340171209,3),(1600,358318809,2),(1600,371620810,3),(1600,389768410,2),(1600,403070411,3),(1600,421218011,2),(1600,434520012,3),(1600,452667612,2),(1600,466574412,3),(1600,484117212,2),(1600,498024013,3),(1600,511333213,2),(1600,529473613,3),(1600,542782813,2),(1600,560923213,3),(1600,574837214,2),(1600,592372814,3),(1600,606286814,2),(1600,623822414,3),(1600,638946015,2),(1600,655876815,3),(1600,671000416,2),(1600,687330016,4),(1600,702450016,2),(1600,718779617,4),(1600,733899617,2),(1600,750229218,4),(1600,765349218,2),(1600,781678819,4),(1600,796798819,2),(1600,813128419,4),(1600,828853220,2),(1600,844578020,4),(1600,860302820,2),(1600,876632421,4),(1600,891147621,5),(1600,909291621,4),(1600,922597222,5),(1600,941346022,4),(1600,954651622,5),(1600,972795622,4),(1600,986101222,5),(1600,1004245222,4),(1600,1018155622,5),(1600,1035694822,4),(1600,1049605222,5),(1600,1067144422,4),(1600,1080450022,5),(1600,1162098023,4),(1600,1173589223,5),(1600,1193547623,4),(1600,1205643623,5),(1600,1224997223,4),(1600,1236488424,5),(1600,1256446824,4),(1600,1268542824,5),(1600,1288501224,4),(1600,1300597224,5),(1600,1321160424,4),(1600,1333256424,5),(1600,1352005225,4),(1600,1362891625,5),(1600,1383454825,4),(1600,1394341225,5),(1600,1414904425,4),(1600,1425790825,5),(1600,1446354026,4),(1600,1457845226,5),(1600,1478408426,4),(1600,1489294827,5),(1600,1509858027,4),(1600,1520744427,5),(1600,1541307627,4),(1600,1552194027,5),(1600,1572757227,4),(1600,1583643627,5),(1600,1604206827,4),(1600,1615698027,5),(1600,1636261227,4),(1600,1647147627,5),(1600,1667710827,4),(1600,1678597227,5),(1600,1699160427,4),(1600,1710046827,5),(1600,1730610027,4),(1600,1741496427,5),(1600,1762059627,4),(1600,1772946027,5),(1600,1793509227,4),(1600,1805000427,5),(1600,1825563627,4),(1600,1836450027,5),(1600,1857013227,4),(1600,1867899627,5),(1600,1888462827,4),(1600,1899349227,5),(1600,1919912427,4),(1600,1930798827,5),(1600,1951362027,4),(1600,1962853227,5),(1600,1983416427,4),(1600,1994302827,5),(1600,2014866027,4),(1600,2025752427,5),(1600,2046315627,4),(1600,2057202027,5),(1600,2077765227,4),(1600,2088651627,5),(1600,2109214827,4),(1600,2120101227,5),(1600,2140664427,4),(1601,228877206,0),(1601,243997206,1),(1601,260326807,0),(1601,276051607,1),(1601,291776408,0),(1601,307501208,1),(1601,323830809,0),(1601,338950809,1),(1601,354675609,0),(1601,370400410,1),(1601,386125210,0),(1601,401850011,1),(1601,417574811,0),(1601,433299612,1),(1601,449024412,0),(1601,465354012,1),(1601,481078812,0),(1601,496803613,1),(1601,512528413,0),(1601,528253213,1),(1601,543978013,0),(1601,559702813,1),(1601,575427614,0),(1601,591152414,1),(1601,606877214,0),(1601,622602014,1),(1601,638326815,0),(1601,654656415,1),(1601,670381216,0),(1601,686106016,1),(1601,701830816,0),(1601,717555617,1),(1601,733280417,0),(1601,749005218,1),(1601,764730018,0),(1601,780454819,1),(1601,796179619,0),(1601,811904419,1),(1601,828234020,0),(1601,846378020,1),(1601,859683620,0),(1601,877827621,1),(1601,891133221,0),(1601,909277221,1),(1601,922582822,0),(1601,941331622,1),(1601,954032422,0),(1601,972781222,1),(1601,985482022,0),(1601,1004230822,1),(1601,1017536422,0),(1601,1035680422,1),(1601,1048986022,0),(1601,1067130022,1),(1601,1080435622,0),(1601,1099184422,1),(1601,1111885222,0),(1601,1130634022,1),(1601,1143334823,0),(1601,1162083623,1),(1601,1174784423,0),(1601,1193533223,1),(1601,1206838823,0),(1601,1224982823,1),(1601,1238288424,0),(1601,1256432424,1),(1601,1269738024,0),(1601,1288486824,1),(1601,1301187624,0),(1601,1319936424,1),(1601,1332637224,0),(1601,1351386025,1),(1601,1364691625,0),(1601,1382835625,1),(1601,1396141225,0),(1601,1414285225,1),(1601,1427590825,0),(1601,1445734826,1),(1601,1459040426,0),(1601,1477789226,1),(1601,1490490027,0),(1601,1509238827,1),(1601,1521939627,0),(1601,1540688427,1),(1601,1553994027,0),(1601,1572138027,1),(1601,1585443627,0),(1601,1603587627,1),(1601,1616893227,0),(1601,1635642027,1),(1601,1648342827,0),(1601,1667091627,1),(1601,1679792427,0),(1601,1698541227,1),(1601,1711846827,0),(1601,1729990827,1),(1601,1743296427,0),(1601,1761440427,1),(1601,1774746027,0),(1601,1792890027,1),(1601,1806195627,0),(1601,1824944427,1),(1601,1837645227,0),(1601,1856394027,1),(1601,1869094827,0),(1601,1887843627,1),(1601,1901149227,0),(1601,1919293227,1),(1601,1932598827,0),(1601,1950742827,1),(1601,1964048427,0),(1601,1982797227,1),(1601,1995498027,0),(1601,2014246827,1),(1601,2026947627,0),(1601,2045696427,1),(1601,2058397227,0),(1601,2077146027,1),(1601,2090451627,0),(1601,2108595627,1),(1601,2121901227,0),(1601,2140045227,1),(1603,-1633280400,0),(1603,-1615140000,1),(1603,-1601830800,0),(1603,-1583690400,1),(1603,-880218000,2),(1603,-769395600,3),(1603,-765396000,1),(1603,-84387600,0),(1603,-68666400,1),(1603,-52938000,0),(1603,-37216800,1),(1603,-21488400,0),(1603,-5767200,1),(1603,9961200,0),(1603,25682400,1),(1603,41410800,0),(1603,57736800,1),(1603,73465200,0),(1603,89186401,1),(1603,104914802,0),(1603,120636002,1),(1603,126687603,0),(1603,152085603,1),(1603,162370804,0),(1603,183535204,1),(1603,199263605,0),(1603,215589605,1),(1603,230713206,0),(1603,247039206,1),(1603,262767607,0),(1603,278488807,1),(1603,294217208,0),(1603,309938408,1),(1603,325666809,0),(1603,341388009,1),(1603,357116409,0),(1603,372837610,1),(1603,388566010,0),(1603,404892011,1),(1603,420015611,0),(1603,436341612,1),(1603,452070012,0),(1603,467791212,1),(1603,483519612,0),(1603,499240813,1),(1603,514969213,0),(1603,530690413,1),(1603,544604413,0),(1603,562140013,1),(1603,576054014,0),(1603,594194414,1),(1603,607503614,0),(1603,625644014,1),(1603,638953215,0),(1603,657093615,1),(1603,671007616,0),(1603,688543216,1),(1603,702457216,0),(1603,719992817,1),(1603,733906817,0),(1603,752047218,1),(1603,765356418,0),(1603,783496819,1),(1603,796806019,0),(1603,814946419,1),(1603,828860420,0),(1603,846396020,1),(1603,860310020,0),(1603,877845621,1),(1603,891759621,0),(1603,909295221,1),(1603,923209222,0),(1603,941349622,1),(1603,954658822,0),(1603,972799222,1),(1603,986108422,0),(1603,1004248822,1),(1603,1018162822,0),(1603,1035698422,1),(1603,1049612422,0),(1603,1067148022,1),(1603,1081062022,0),(1603,1099202422,1),(1603,1112511622,0),(1603,1130652022,1),(1603,1143961223,0),(1603,1162101623,1),(1603,1173596423,0),(1603,1194156023,1),(1603,1205046023,0),(1603,1225605623,1),(1603,1236495624,0),(1603,1257055224,1),(1603,1268550024,0),(1603,1289109624,1),(1603,1299999624,0),(1603,1320559224,1),(1603,1331449224,0),(1603,1352008825,1),(1603,1362898825,0),(1603,1383458425,1),(1603,1394348425,0),(1603,1414908025,1),(1603,1425798025,0),(1603,1446357626,1),(1603,1457852426,0),(1603,1478412026,1),(1603,1489302027,0),(1603,1509861627,1),(1603,1520751627,0),(1603,1541311227,1),(1603,1552201227,0),(1603,1572760827,1),(1603,1583650827,0),(1603,1604210427,1),(1603,1615705227,0),(1603,1636264827,1),(1603,1647154827,0),(1603,1667714427,1),(1603,1678604427,0),(1603,1699164027,1),(1603,1710054027,0),(1603,1730613627,1),(1603,1741503627,0),(1603,1762063227,1),(1603,1772953227,0),(1603,1793512827,1),(1603,1805007627,0),(1603,1825567227,1),(1603,1836457227,0),(1603,1857016827,1),(1603,1867906827,0),(1603,1888466427,1),(1603,1899356427,0),(1603,1919916027,1),(1603,1930806027,0),(1603,1951365627,1),(1603,1962860427,0),(1603,1983420027,1),(1603,1994310027,0),(1603,2014869627,1),(1603,2025759627,0),(1603,2046319227,1),(1603,2057209227,0),(1603,2077768827,1),(1603,2088658827,0),(1603,2109218427,1),(1603,2120108427,0),(1603,2140668027,1),(1604,-2147483648,2),(1604,-929844000,1),(1604,-923108400,2),(1604,-906170400,1),(1604,-892868400,2),(1604,-875844000,1),(1604,-857790000,2),(1604,-844308000,1),(1604,-825822000,2),(1604,-812685600,1),(1604,-794199600,2),(1604,-779853600,1),(1604,-762663600,2),(1604,-399088800,1),(1604,-386650800,2),(1604,-368330400,1),(1604,-355114800,2),(1604,-336790800,1),(1604,-323654400,2),(1604,-305168400,1),(1604,-292032000,2),(1604,-273632400,1),(1604,-260496000,2),(1604,-242096400,1),(1604,-228960000,2),(1604,-210560400,1),(1604,-197424000,2),(1604,-178938000,1),(1604,-165801600,2),(1604,-147402000,1),(1604,-134265600,2),(1604,-115866000,1),(1604,-102643200,2),(1604,-84330000,1),(1604,-71107200,2),(1604,-52707600,1),(1604,-39484800,2),(1604,-21171600,1),(1604,-7948800,2),(1604,10364400,1),(1604,23587200,2),(1604,41900400,1),(1604,55123200,2),(1604,73522800,1),(1604,86745601,2),(1604,105058802,1),(1604,118281602,2),(1604,136594803,1),(1604,149817603,2),(1604,168130804,1),(1604,181353604,2),(1604,199753205,1),(1604,212976005,2),(1604,231289206,1),(1604,244512006,2),(1604,262825207,1),(1604,276048007,2),(1604,294361208,1),(1604,307584008,2),(1604,325983609,1),(1604,339206409,2),(1604,357519609,1),(1604,370742410,2),(1604,396399611,1),(1604,402278411,2),(1604,426812412,1),(1604,433814412,2),(1604,452214012,1),(1604,465436812,2),(1604,483750012,1),(1604,496972813,2),(1604,515286013,1),(1604,528508813,2),(1604,546822013,1),(1604,560044813,2),(1604,578444414,1),(1604,591667214,2),(1604,610412414,1),(1604,623203214,2),(1604,641516415,1),(1604,654739215,2),(1604,673052416,1),(1604,686275216,2),(1604,704674816,1),(1604,717897617,2),(1604,736210817,1),(1604,749433618,2),(1604,767746818,1),(1604,780969619,2),(1604,799020019,3),(1604,812322019,2),(1604,830469620,3),(1604,843771620,2),(1604,861919220,3),(1604,875221221,2),(1604,893368821,3),(1604,906670821,2),(1604,925423222,3),(1604,938725222,2),(1604,956872822,3),(1604,970174822,2),(1604,988322422,3),(1604,1001624422,2),(1604,1019772022,3),(1604,1033074022,2),(1604,1051221622,3),(1604,1064523622,2),(1604,1083276022,3),(1604,1096578022,2),(1604,1114725622,3),(1604,1128027622,2),(1604,1146175223,3),(1604,1158872423,2),(1604,1177624823,3),(1604,1189112423,2),(1604,1209074423,3),(1604,1219957223,2),(1604,1240524024,3),(1604,1250802024,2),(1604,1272578424,3),(1604,1281474024,2),(1604,1284069624,1),(1604,1285880424,2),(1604,1400191225,1),(1604,1403816425,2),(1604,1406844025,1),(1604,1411678825,2),(1605,-2147483648,1),(1605,-1691962479,2),(1605,-1680471279,4),(1605,-1664143200,3),(1605,-1650146400,4),(1605,-1633903200,3),(1605,-1617487200,4),(1605,-1601848800,3),(1605,-1586037600,4),(1605,-1570399200,3),(1605,-1552168800,4),(1605,-1538344800,3),(1605,-1522533600,4),(1605,-1517011200,6),(1605,-1507500000,5),(1605,-1490565600,4),(1605,-1473631200,5),(1605,-1460930400,4),(1605,-1442786400,5),(1605,-1428876000,4),(1605,-1410732000,5),(1605,-1396216800,4),(1605,-1379282400,5),(1605,-1364767200,4),(1605,-1348437600,5),(1605,-1333317600,4),(1605,-1315778400,5),(1605,-1301263200,4),(1605,-1284328800,5),(1605,-1269813600,4),(1605,-1253484000,5),(1605,-1238364000,4),(1605,-1221429600,5),(1605,-1206914400,4),(1605,-1189980000,5),(1605,-1175464800,4),(1605,-1159135200,5),(1605,-1143410400,4),(1605,-1126476000,5),(1605,-1111960800,4),(1605,-1095631200,5),(1605,-1080511200,4),(1605,-1063576800,5),(1605,-1049061600,4),(1605,-1032127200,5),(1605,-1017612000,4),(1605,-1001282400,5),(1605,-986162400,4),(1605,-969228000,5),(1605,-950479200,4),(1605,-942012000,5),(1605,-733356000,4),(1605,-719445600,5),(1605,-699487200,4),(1605,-684972000,5),(1605,-668037600,4),(1605,-654732000,5),(1605,-636588000,4),(1605,-622072800,5),(1605,-605743200,4),(1605,-590623200,5),(1605,-574293600,4),(1605,-558568800,5),(1605,-542239200,4),(1605,-527119200,5),(1605,-512604000,4),(1605,-496274400,5),(1605,-481154400,4),(1605,-464220000,5),(1605,-449704800,4),(1605,-432165600,5),(1605,-417650400,4),(1605,-401320800,5),(1605,-386200800,4),(1605,-369266400,5),(1605,-354751200,4),(1605,-337816800,5),(1605,-323301600,4),(1605,-306972000,5),(1605,-291852000,4),(1605,-276732000,5),(1605,-257983200,4),(1605,-245282400,5),(1605,-226533600,4),(1605,-213228000,5),(1605,-195084000,4),(1605,-182383200,5),(1605,-163634400,4),(1605,-150933600,5),(1605,-132184800,4),(1605,-119484000,5),(1605,-100735200,4),(1605,-88034400,5),(1605,-68680800,4),(1605,-59004000,5),(1605,-37242000,9),(1605,57722400,7),(1605,69818400,8),(1605,89172001,7),(1605,101268002,8),(1605,120621602,7),(1605,132717603,8),(1605,152071203,7),(1605,164167204,8),(1605,183520804,7),(1605,196221605,8),(1605,214970405,7),(1605,227671206,8),(1605,246420006,7),(1605,259120807,8),(1605,278474407,7),(1605,290570408,8),(1605,309924008,7),(1605,322020009,8),(1605,341373609,7),(1605,354675609,8),(1605,372819610,7),(1605,386125210,8),(1605,404269211,7),(1605,417574811,8),(1605,435718812,7),(1605,449024412,8),(1605,467773212,7),(1605,481078812,8),(1605,499222813,7),(1605,512528413,8),(1605,530672413,7),(1605,543978013,8),(1605,562122013,7),(1605,575427614,8),(1605,593571614,7),(1605,606877214,8),(1605,625626014,7),(1605,638326815,8),(1605,657075615,7),(1605,670381216,8),(1605,688525216,7),(1605,701830816,8),(1605,719974817,7),(1605,733280417,8),(1605,751424418,7),(1605,764730018,8),(1605,782874019,7),(1605,796179619,8),(1605,814323619,7),(1605,828234020,8),(1605,846378020,7),(1605,859683620,8),(1605,877827621,7),(1605,891133221,8),(1605,909277221,7),(1605,922582822,8),(1605,941331622,7),(1605,954032422,8),(1605,972781222,7),(1605,985482022,8),(1605,1004230822,7),(1605,1017536422,8),(1605,1035680422,7),(1605,1048986022,8),(1605,1067130022,7),(1605,1080435622,8),(1605,1099184422,7),(1605,1111885222,8),(1605,1130634022,7),(1605,1143334823,8),(1605,1162083623,7),(1605,1174784423,8),(1605,1193533223,7),(1605,1206838823,8),(1605,1224982823,7),(1605,1238288424,8),(1605,1256432424,7),(1605,1269738024,8),(1605,1288486824,7),(1605,1301187624,8),(1605,1319936424,7),(1605,1332637224,8),(1605,1351386025,7),(1605,1364691625,8),(1605,1382835625,7),(1605,1396141225,8),(1605,1414285225,7),(1605,1427590825,8),(1605,1445734826,7),(1605,1459040426,8),(1605,1477789226,7),(1605,1490490027,8),(1605,1509238827,7),(1605,1521939627,8),(1605,1540688427,7),(1605,1553994027,8),(1605,1572138027,7),(1605,1585443627,8),(1605,1603587627,7),(1605,1616893227,8),(1605,1635642027,7),(1605,1648342827,8),(1605,1667091627,7),(1605,1679792427,8),(1605,1698541227,7),(1605,1711846827,8),(1605,1729990827,7),(1605,1743296427,8),(1605,1761440427,7),(1605,1774746027,8),(1605,1792890027,7),(1605,1806195627,8),(1605,1824944427,7),(1605,1837645227,8),(1605,1856394027,7),(1605,1869094827,8),(1605,1887843627,7),(1605,1901149227,8),(1605,1919293227,7),(1605,1932598827,8),(1605,1950742827,7),(1605,1964048427,8),(1605,1982797227,7),(1605,1995498027,8),(1605,2014246827,7),(1605,2026947627,8),(1605,2045696427,7),(1605,2058397227,8),(1605,2077146027,7),(1605,2090451627,8),(1605,2108595627,7),(1605,2121901227,8),(1605,2140045227,7),(1641,-2147483648,2),(1641,-1693700372,1),(1641,-1680484772,2),(1641,-1663453172,3),(1641,-1650147572,4),(1641,-1633213172,3),(1641,-1617488372,4),(1641,-1601158772,3),(1641,-1586038772,4),(1641,-1569709172,3),(1641,-1554589172,4),(1641,-1538259572,3),(1641,-1523139572,4),(1641,-1507501172,3),(1641,-1490566772,4),(1641,-1470176372,3),(1641,-1459117172,4),(1641,-1443997172,3),(1641,-1427667572,4),(1641,-1406672372,3),(1641,-1396217972,4),(1641,-1376950772,3),(1641,-1364768372,4),(1641,-1345414772,3),(1641,-1333318772,4),(1641,-1313792372,3),(1641,-1301264372,4),(1641,-1282256372,3),(1641,-1269814772,4),(1641,-1250720372,3),(1641,-1238365172,4),(1641,-1219184372,3),(1641,-1206915572,4),(1641,-1186957172,3),(1641,-1175465972,4),(1641,-1156025972,3),(1641,-1143411572,4),(1641,-1124489972,3),(1641,-1111961972,4),(1641,-1092953972,3),(1641,-1080512372,4),(1641,-1061331572,3),(1641,-1049062772,4),(1641,-1029190772,3),(1641,-1025745572,7),(1641,-1017613200,5),(1641,-998259600,6),(1641,-986163600,5),(1641,-966723600,6),(1641,-954109200,5),(1641,-935022000,10),(1641,-857257200,8),(1641,-844556400,9),(1641,-828226800,8),(1641,-812502000,9),(1641,-796777200,8),(1641,-781052400,9),(1641,-766623600,8),(1641,220921205,13),(1641,228877206,11),(1641,243997206,12),(1641,260326807,11),(1641,276051607,12),(1641,291776408,11),(1641,307501208,12),(1641,323830809,11),(1641,338950809,12),(1641,354675609,11),(1641,370400410,12),(1641,386125210,11),(1641,401850011,12),(1641,417574811,11),(1641,433299612,12),(1641,449024412,11),(1641,465354012,12),(1641,481078812,11),(1641,496803613,12),(1641,512528413,11),(1641,528253213,12),(1641,543978013,11),(1641,559702813,12),(1641,575427614,11),(1641,591152414,12),(1641,606877214,11),(1641,622602014,12),(1641,638326815,11),(1641,654656415,12),(1641,670381216,11),(1641,686106016,12),(1641,701830816,11),(1641,717555617,12),(1641,733280417,11),(1641,749005218,12),(1641,764730018,11),(1641,780454819,12),(1641,796179619,11),(1641,811904419,12),(1641,828234020,11),(1641,846378020,12),(1641,859683620,11),(1641,877827621,12),(1641,891133221,11),(1641,909277221,12),(1641,922582822,11),(1641,941331622,12),(1641,954032422,11),(1641,972781222,12),(1641,985482022,11),(1641,1004230822,12),(1641,1017536422,11),(1641,1035680422,12),(1641,1048986022,11),(1641,1067130022,12),(1641,1080435622,11),(1641,1099184422,12),(1641,1111885222,11),(1641,1130634022,12),(1641,1143334823,11),(1641,1162083623,12),(1641,1174784423,11),(1641,1193533223,12),(1641,1206838823,11),(1641,1224982823,12),(1641,1238288424,11),(1641,1256432424,12),(1641,1269738024,11),(1641,1288486824,12),(1641,1301187624,11),(1641,1319936424,12),(1641,1332637224,11),(1641,1351386025,12),(1641,1364691625,11),(1641,1382835625,12),(1641,1396141225,11),(1641,1414285225,12),(1641,1427590825,11),(1641,1445734826,12),(1641,1459040426,11),(1641,1477789226,12),(1641,1490490027,11),(1641,1509238827,12),(1641,1521939627,11),(1641,1540688427,12),(1641,1553994027,11),(1641,1572138027,12),(1641,1585443627,11),(1641,1603587627,12),(1641,1616893227,11),(1641,1635642027,12),(1641,1648342827,11),(1641,1667091627,12),(1641,1679792427,11),(1641,1698541227,12),(1641,1711846827,11),(1641,1729990827,12),(1641,1743296427,11),(1641,1761440427,12),(1641,1774746027,11),(1641,1792890027,12),(1641,1806195627,11),(1641,1824944427,12),(1641,1837645227,11),(1641,1856394027,12),(1641,1869094827,11),(1641,1887843627,12),(1641,1901149227,11),(1641,1919293227,12),(1641,1932598827,11),(1641,1950742827,12),(1641,1964048427,11),(1641,1982797227,12),(1641,1995498027,11),(1641,2014246827,12),(1641,2026947627,11),(1641,2045696427,12),(1641,2058397227,11),(1641,2077146027,12),(1641,2090451627,11),(1641,2108595627,12),(1641,2121901227,11),(1641,2140045227,12),(1642,-2147483648,1),(1642,-733881600,2),(1642,481078812,3),(1642,496803613,4),(1642,512528413,3),(1642,528253213,4),(1642,543978013,3),(1642,559702813,4),(1642,575427614,3),(1642,591152414,4),(1642,606877214,3),(1642,622602014,4),(1642,638326815,3),(1642,654656415,4),(1642,670381216,3),(1642,686106016,4),(1642,701830816,3),(1642,717555617,4),(1642,733280417,3),(1642,749005218,4),(1642,764730018,3),(1642,780454819,4),(1642,796179619,3),(1642,811904419,4),(1642,828234020,3),(1642,846378020,4),(1642,859683620,3),(1642,877827621,4),(1642,891133221,3),(1642,909277221,4),(1642,922582822,3),(1642,941331622,4),(1642,954032422,3),(1642,972781222,4),(1642,985482022,3),(1642,1004230822,4),(1642,1017536422,3),(1642,1035680422,4),(1642,1048986022,3),(1642,1067130022,4),(1642,1080435622,3),(1642,1099184422,4),(1642,1111885222,3),(1642,1130634022,4),(1642,1143334823,3),(1642,1162083623,4),(1642,1174784423,3),(1642,1193533223,4),(1642,1206838823,3),(1642,1224982823,4),(1642,1238288424,3),(1642,1256432424,4),(1642,1269738024,3),(1642,1288486824,4),(1642,1301187624,3),(1642,1319936424,4),(1642,1332637224,3),(1642,1351386025,4),(1642,1364691625,3),(1642,1382835625,4),(1642,1396141225,3),(1642,1414285225,4),(1642,1427590825,3),(1642,1445734826,4),(1642,1459040426,3),(1642,1477789226,4),(1642,1490490027,3),(1642,1509238827,4),(1642,1521939627,3),(1642,1540688427,4),(1642,1553994027,3),(1642,1572138027,4),(1642,1585443627,3),(1642,1603587627,4),(1642,1616893227,3),(1642,1635642027,4),(1642,1648342827,3),(1642,1667091627,4),(1642,1679792427,3),(1642,1698541227,4),(1642,1711846827,3),(1642,1729990827,4),(1642,1743296427,3),(1642,1761440427,4),(1642,1774746027,3),(1642,1792890027,4),(1642,1806195627,3),(1642,1824944427,4),(1642,1837645227,3),(1642,1856394027,4),(1642,1869094827,3),(1642,1887843627,4),(1642,1901149227,3),(1642,1919293227,4),(1642,1932598827,3),(1642,1950742827,4),(1642,1964048427,3),(1642,1982797227,4),(1642,1995498027,3),(1642,2014246827,4),(1642,2026947627,3),(1642,2045696427,4),(1642,2058397227,3),(1642,2077146027,4),(1642,2090451627,3),(1642,2108595627,4),(1642,2121901227,3),(1642,2140045227,4),(1643,-2147483648,0),(1643,-1441249932,1),(1643,-1247540400,3),(1643,354916809,2),(1643,370724410,3),(1643,386452810,2),(1643,402260411,3),(1643,417988811,2),(1643,433796412,3),(1643,449611212,2),(1643,465343212,4),(1643,481068012,5),(1643,496792813,4),(1643,512517613,5),(1643,528242413,4),(1643,543967213,5),(1643,559692013,4),(1643,575416814,5),(1643,591141614,4),(1643,606866414,6),(1643,622594814,7),(1643,638319615,6),(1643,654649215,7),(1643,670374016,4),(1643,701820016,6),(1643,717548417,7),(1643,733273217,6),(1643,748998018,7),(1643,764722818,6),(1643,780447619,7),(1643,796172419,6),(1643,811897219,7),(1643,828226820,6),(1643,846370820,7),(1643,859676420,6),(1643,877820421,7),(1643,891126021,6),(1643,909270021,7),(1643,922575622,6),(1643,941324422,7),(1643,954025222,6),(1643,972774022,7),(1643,985474822,6),(1643,1004223622,7),(1643,1017529222,6),(1643,1035673222,7),(1643,1048978822,6),(1643,1067122822,7),(1643,1080428422,6),(1643,1099177222,7),(1643,1111878022,6),(1643,1130626822,7),(1643,1143327623,6),(1643,1162076423,7),(1643,1174777223,6),(1643,1193526023,7),(1643,1206831623,6),(1643,1224975623,7),(1643,1238281224,6),(1643,1256425224,7),(1643,1269730824,6),(1643,1288479624,7),(1643,1301180424,4),(1643,1414274425,7),(1643,1459033226,4),(1644,-2147483648,1),(1644,-1686101632,3),(1644,-1182996000,2),(1644,-1178161200,3),(1644,-906861600,2),(1644,-904878000,5),(1644,-857257200,4),(1644,-844477200,5),(1644,-828237600,4),(1644,-812422800,3),(1644,-552362400,2),(1644,-541652400,3),(1644,166485604,6),(1644,186184804,7),(1644,198028805,6),(1644,213753605,7),(1644,228873606,6),(1644,244080006,7),(1644,260323207,6),(1644,275446807,3),(1644,291798008,2),(1644,307407608,3),(1644,323388009,2),(1644,338936409,3),(1644,354675609,8),(1644,370400410,9),(1644,386125210,8),(1644,401850011,9),(1644,417574811,8),(1644,433299612,9),(1644,449024412,8),(1644,465354012,9),(1644,481078812,8),(1644,496803613,9),(1644,512528413,8),(1644,528253213,9),(1644,543978013,8),(1644,559702813,9),(1644,575427614,8),(1644,591152414,9),(1644,606877214,8),(1644,622602014,9),(1644,638326815,8),(1644,654656415,9),(1644,670381216,8),(1644,686106016,9),(1644,701830816,8),(1644,717555617,9),(1644,733280417,8),(1644,749005218,9),(1644,764730018,8),(1644,780454819,9),(1644,796179619,8),(1644,811904419,9),(1644,828234020,8),(1644,846378020,9),(1644,859683620,8),(1644,877827621,9),(1644,891133221,8),(1644,909277221,9),(1644,922582822,8),(1644,941331622,9),(1644,954032422,8),(1644,972781222,9),(1644,985482022,8),(1644,1004230822,9),(1644,1017536422,8),(1644,1035680422,9),(1644,1048986022,8),(1644,1067130022,9),(1644,1080435622,8),(1644,1099184422,9),(1644,1111885222,8),(1644,1130634022,9),(1644,1143334823,8),(1644,1162083623,9),(1644,1174784423,8),(1644,1193533223,9),(1644,1206838823,8),(1644,1224982823,9),(1644,1238288424,8),(1644,1256432424,9),(1644,1269738024,8),(1644,1288486824,9),(1644,1301187624,8),(1644,1319936424,9),(1644,1332637224,8),(1644,1351386025,9),(1644,1364691625,8),(1644,1382835625,9),(1644,1396141225,8),(1644,1414285225,9),(1644,1427590825,8),(1644,1445734826,9),(1644,1459040426,8),(1644,1477789226,9),(1644,1490490027,8),(1644,1509238827,9),(1644,1521939627,8),(1644,1540688427,9),(1644,1553994027,8),(1644,1572138027,9),(1644,1585443627,8),(1644,1603587627,9),(1644,1616893227,8),(1644,1635642027,9),(1644,1648342827,8),(1644,1667091627,9),(1644,1679792427,8),(1644,1698541227,9),(1644,1711846827,8),(1644,1729990827,9),(1644,1743296427,8),(1644,1761440427,9),(1644,1774746027,8),(1644,1792890027,9),(1644,1806195627,8),(1644,1824944427,9),(1644,1837645227,8),(1644,1856394027,9),(1644,1869094827,8),(1644,1887843627,9),(1644,1901149227,8),(1644,1919293227,9),(1644,1932598827,8),(1644,1950742827,9),(1644,1964048427,8),(1644,1982797227,9),(1644,1995498027,8),(1644,2014246827,9),(1644,2026947627,8),(1644,2045696427,9),(1644,2058397227,8),(1644,2077146027,9),(1644,2090451627,8),(1644,2108595627,9),(1644,2121901227,8),(1644,2140045227,9),(1645,-2147483648,2),(1645,-1691964000,1),(1645,-1680472800,2),(1645,-1664143200,1),(1645,-1650146400,2),(1645,-1633903200,1),(1645,-1617487200,2),(1645,-1601848800,1),(1645,-1586037600,2),(1645,-1570399200,1),(1645,-1552168800,2),(1645,-1538344800,1),(1645,-1522533600,2),(1645,-1507500000,1),(1645,-1490565600,2),(1645,-1473631200,1),(1645,-1460930400,2),(1645,-1442786400,1),(1645,-1428876000,2),(1645,-1410732000,1),(1645,-1396216800,2),(1645,-1379282400,1),(1645,-1364767200,2),(1645,-1348437600,1),(1645,-1333317600,2),(1645,-1315778400,1),(1645,-1301263200,2),(1645,-1284328800,1),(1645,-1269813600,2),(1645,-1253484000,1),(1645,-1238364000,2),(1645,-1221429600,1),(1645,-1206914400,2),(1645,-1189980000,1),(1645,-1175464800,2),(1645,-1159135200,1),(1645,-1143410400,2),(1645,-1126476000,1),(1645,-1111960800,2),(1645,-1095631200,1),(1645,-1080511200,2),(1645,-1063576800,1),(1645,-1049061600,2),(1645,-1032127200,1),(1645,-1017612000,2),(1645,-1001282400,1),(1645,-986162400,2),(1645,-969228000,1),(1645,-950479200,2),(1645,-942012000,1),(1645,-904518000,3),(1645,-896050800,1),(1645,-875487600,3),(1645,-864601200,1),(1645,-844038000,3),(1645,-832546800,1),(1645,-812588400,3),(1645,-798073200,1),(1645,-781052400,3),(1645,-772066800,1),(1645,-764805600,2),(1645,-748476000,1),(1645,-733356000,2),(1645,-719445600,1),(1645,-717030000,3),(1645,-706748400,1),(1645,-699487200,2),(1645,-687996000,1),(1645,-668037600,2),(1645,-654732000,1),(1645,-636588000,2),(1645,-622072800,1),(1645,-605743200,2),(1645,-590623200,1),(1645,-574293600,2),(1645,-558568800,1),(1645,-542239200,2),(1645,-527119200,1),(1645,-512604000,2),(1645,-496274400,1),(1645,-481154400,2),(1645,-464220000,1),(1645,-449704800,2),(1645,-432165600,1),(1645,-417650400,2),(1645,-401320800,1),(1645,-386200800,2),(1645,-369266400,1),(1645,-354751200,2),(1645,-337816800,1),(1645,-323301600,2),(1645,-306972000,1),(1645,-291852000,2),(1645,-276732000,1),(1645,-257983200,2),(1645,-245282400,1),(1645,-226533600,2),(1645,-213228000,1),(1645,-195084000,2),(1645,-182383200,1),(1645,-163634400,2),(1645,-150933600,1),(1645,-132184800,2),(1645,-119484000,1),(1645,-100735200,2),(1645,-88034400,1),(1645,-68680800,2),(1645,-59004000,1),(1645,-37242000,4),(1645,57722400,6),(1645,69818400,1),(1645,89172001,2),(1645,101268002,1),(1645,120621602,2),(1645,132717603,1),(1645,152071203,2),(1645,164167204,1),(1645,183520804,2),(1645,196221605,1),(1645,214970405,2),(1645,227671206,1),(1645,246420006,2),(1645,259120807,1),(1645,278474407,2),(1645,290570408,1),(1645,309924008,2),(1645,322020009,1),(1645,341373609,2),(1645,354675609,5),(1645,372819610,6),(1645,386125210,5),(1645,404269211,6),(1645,417574811,5),(1645,435718812,6),(1645,449024412,5),(1645,467773212,6),(1645,481078812,5),(1645,499222813,6),(1645,512528413,5),(1645,530672413,6),(1645,543978013,5),(1645,562122013,6),(1645,575427614,5),(1645,593571614,6),(1645,606877214,5),(1645,625626014,6),(1645,638326815,5),(1645,657075615,6),(1645,670381216,5),(1645,688525216,6),(1645,701830816,5),(1645,719974817,6),(1645,733280417,5),(1645,751424418,6),(1645,764730018,5),(1645,782874019,6),(1645,796179619,5),(1645,814323619,6),(1645,820454420,7),(1645,828234020,5),(1645,846378020,6),(1645,859683620,5),(1645,877827621,6),(1645,891133221,5),(1645,909277221,6),(1645,922582822,5),(1645,941331622,6),(1645,954032422,5),(1645,972781222,6),(1645,985482022,5),(1645,1004230822,6),(1645,1017536422,5),(1645,1035680422,6),(1645,1048986022,5),(1645,1067130022,6),(1645,1080435622,5),(1645,1099184422,6),(1645,1111885222,5),(1645,1130634022,6),(1645,1143334823,5),(1645,1162083623,6),(1645,1174784423,5),(1645,1193533223,6),(1645,1206838823,5),(1645,1224982823,6),(1645,1238288424,5),(1645,1256432424,6),(1645,1269738024,5),(1645,1288486824,6),(1645,1301187624,5),(1645,1319936424,6),(1645,1332637224,5),(1645,1351386025,6),(1645,1364691625,5),(1645,1382835625,6),(1645,1396141225,5),(1645,1414285225,6),(1645,1427590825,5),(1645,1445734826,6),(1645,1459040426,5),(1645,1477789226,6),(1645,1490490027,5),(1645,1509238827,6),(1645,1521939627,5),(1645,1540688427,6),(1645,1553994027,5),(1645,1572138027,6),(1645,1585443627,5),(1645,1603587627,6),(1645,1616893227,5),(1645,1635642027,6),(1645,1648342827,5),(1645,1667091627,6),(1645,1679792427,5),(1645,1698541227,6),(1645,1711846827,5),(1645,1729990827,6),(1645,1743296427,5),(1645,1761440427,6),(1645,1774746027,5),(1645,1792890027,6),(1645,1806195627,5),(1645,1824944427,6),(1645,1837645227,5),(1645,1856394027,6),(1645,1869094827,5),(1645,1887843627,6),(1645,1901149227,5),(1645,1919293227,6),(1645,1932598827,5),(1645,1950742827,6),(1645,1964048427,5),(1645,1982797227,6),(1645,1995498027,5),(1645,2014246827,6),(1645,2026947627,5),(1645,2045696427,6),(1645,2058397227,5),(1645,2077146027,6),(1645,2090451627,5),(1645,2108595627,6),(1645,2121901227,5),(1645,2140045227,6),(1646,-2147483648,1),(1646,-905824800,4),(1646,-857257200,2),(1646,-844556400,3),(1646,-828226800,2),(1646,-812502000,3),(1646,-796777200,2),(1646,-788922000,1),(1646,-777942000,3),(1646,-766623600,2),(1646,407199611,1),(1646,417574811,5),(1646,433299612,6),(1646,449024412,5),(1646,465354012,6),(1646,481078812,5),(1646,496803613,6),(1646,512528413,5),(1646,528253213,6),(1646,543978013,5),(1646,559702813,6),(1646,575427614,5),(1646,591152414,6),(1646,606877214,5),(1646,622602014,6),(1646,638326815,5),(1646,654656415,6),(1646,670381216,5),(1646,686106016,6),(1646,701830816,5),(1646,717555617,6),(1646,733280417,5),(1646,749005218,6),(1646,764730018,5),(1646,780454819,6),(1646,796179619,5),(1646,811904419,6),(1646,828234020,5),(1646,846378020,6),(1646,859683620,5),(1646,877827621,6),(1646,891133221,5),(1646,909277221,6),(1646,922582822,5),(1646,941331622,6),(1646,954032422,5),(1646,972781222,6),(1646,985482022,5),(1646,1004230822,6),(1646,1017536422,5),(1646,1035680422,6),(1646,1048986022,5),(1646,1067130022,6),(1646,1080435622,5),(1646,1099184422,6),(1646,1111885222,5),(1646,1130634022,6),(1646,1143334823,5),(1646,1162083623,6),(1646,1174784423,5),(1646,1193533223,6),(1646,1206838823,5),(1646,1224982823,6),(1646,1238288424,5),(1646,1256432424,6),(1646,1269738024,5),(1646,1288486824,6),(1646,1301187624,5),(1646,1319936424,6),(1646,1332637224,5),(1646,1351386025,6),(1646,1364691625,5),(1646,1382835625,6),(1646,1396141225,5),(1646,1414285225,6),(1646,1427590825,5),(1646,1445734826,6),(1646,1459040426,5),(1646,1477789226,6),(1646,1490490027,5),(1646,1509238827,6),(1646,1521939627,5),(1646,1540688427,6),(1646,1553994027,5),(1646,1572138027,6),(1646,1585443627,5),(1646,1603587627,6),(1646,1616893227,5),(1646,1635642027,6),(1646,1648342827,5),(1646,1667091627,6),(1646,1679792427,5),(1646,1698541227,6),(1646,1711846827,5),(1646,1729990827,6),(1646,1743296427,5),(1646,1761440427,6),(1646,1774746027,5),(1646,1792890027,6),(1646,1806195627,5),(1646,1824944427,6),(1646,1837645227,5),(1646,1856394027,6),(1646,1869094827,5),(1646,1887843627,6),(1646,1901149227,5),(1646,1919293227,6),(1646,1932598827,5),(1646,1950742827,6),(1646,1964048427,5),(1646,1982797227,6),(1646,1995498027,5),(1646,2014246827,6),(1646,2026947627,5),(1646,2045696427,6),(1646,2058397227,5),(1646,2077146027,6),(1646,2090451627,5),(1646,2108595627,6),(1646,2121901227,5),(1646,2140045227,6),(1647,-2147483648,2),(1647,-1693706400,1),(1647,-1680483600,2),(1647,-1663455600,3),(1647,-1650150000,4),(1647,-1632006000,3),(1647,-1618700400,4),(1647,-938905200,3),(1647,-857257200,4),(1647,-844556400,3),(1647,-828226800,4),(1647,-812502000,3),(1647,-796777200,4),(1647,-781052400,3),(1647,-776563200,5),(1647,-765936000,1),(1647,-761180400,4),(1647,-757386000,2),(1647,-748479600,3),(1647,-733273200,4),(1647,-717631200,3),(1647,-714610800,6),(1647,-710380800,1),(1647,-701910000,4),(1647,-684975600,3),(1647,-670460400,4),(1647,-654130800,3),(1647,-639010800,4),(1647,315529208,2),(1647,323830809,7),(1647,338950809,8),(1647,354675609,7),(1647,370400410,8),(1647,386125210,7),(1647,401850011,8),(1647,417574811,7),(1647,433299612,8),(1647,449024412,7),(1647,465354012,8),(1647,481078812,7),(1647,496803613,8),(1647,512528413,7),(1647,528253213,8),(1647,543978013,7),(1647,559702813,8),(1647,575427614,7),(1647,591152414,8),(1647,606877214,7),(1647,622602014,8),(1647,638326815,7),(1647,654656415,8),(1647,670381216,7),(1647,686106016,8),(1647,701830816,7),(1647,717555617,8),(1647,733280417,7),(1647,749005218,8),(1647,764730018,7),(1647,780454819,8),(1647,796179619,7),(1647,811904419,8),(1647,828234020,7),(1647,846378020,8),(1647,859683620,7),(1647,877827621,8),(1647,891133221,7),(1647,909277221,8),(1647,922582822,7),(1647,941331622,8),(1647,954032422,7),(1647,972781222,8),(1647,985482022,7),(1647,1004230822,8),(1647,1017536422,7),(1647,1035680422,8),(1647,1048986022,7),(1647,1067130022,8),(1647,1080435622,7),(1647,1099184422,8),(1647,1111885222,7),(1647,1130634022,8),(1647,1143334823,7),(1647,1162083623,8),(1647,1174784423,7),(1647,1193533223,8),(1647,1206838823,7),(1647,1224982823,8),(1647,1238288424,7),(1647,1256432424,8),(1647,1269738024,7),(1647,1288486824,8),(1647,1301187624,7),(1647,1319936424,8),(1647,1332637224,7),(1647,1351386025,8),(1647,1364691625,7),(1647,1382835625,8),(1647,1396141225,7),(1647,1414285225,8),(1647,1427590825,7),(1647,1445734826,8),(1647,1459040426,7),(1647,1477789226,8),(1647,1490490027,7),(1647,1509238827,8),(1647,1521939627,7),(1647,1540688427,8),(1647,1553994027,7),(1647,1572138027,8),(1647,1585443627,7),(1647,1603587627,8),(1647,1616893227,7),(1647,1635642027,8),(1647,1648342827,7),(1647,1667091627,8),(1647,1679792427,7),(1647,1698541227,8),(1647,1711846827,7),(1647,1729990827,8),(1647,1743296427,7),(1647,1761440427,8),(1647,1774746027,7),(1647,1792890027,8),(1647,1806195627,7),(1647,1824944427,8),(1647,1837645227,7),(1647,1856394027,8),(1647,1869094827,7),(1647,1887843627,8),(1647,1901149227,7),(1647,1919293227,8),(1647,1932598827,7),(1647,1950742827,8),(1647,1964048427,7),(1647,1982797227,8),(1647,1995498027,7),(1647,2014246827,8),(1647,2026947627,7),(1647,2045696427,8),(1647,2058397227,7),(1647,2077146027,8),(1647,2090451627,7),(1647,2108595627,8),(1647,2121901227,7),(1647,2140045227,8),(1648,-2147483648,2),(1648,-1693706400,1),(1648,-1680483600,2),(1648,-1663455600,3),(1648,-1650150000,4),(1648,-1632006000,3),(1648,-1618700400,4),(1648,-938905200,3),(1648,-857257200,4),(1648,-844556400,3),(1648,-828226800,4),(1648,-812502000,3),(1648,-796777200,4),(1648,-781052400,3),(1648,-777866400,1),(1648,-765327600,4),(1648,-746578800,3),(1648,-733359600,4),(1648,-728517600,5),(1648,-721260000,2),(1648,-716425200,3),(1648,-701910000,4),(1648,-684975600,3),(1648,-670460400,4),(1648,-654217200,3),(1648,-639010800,4),(1648,283993207,2),(1648,291776408,6),(1648,307501208,7),(1648,323830809,6),(1648,338950809,7),(1648,354675609,6),(1648,370400410,7),(1648,386125210,6),(1648,401850011,7),(1648,417574811,6),(1648,433299612,7),(1648,449024412,6),(1648,465354012,7),(1648,481078812,6),(1648,496803613,7),(1648,512528413,6),(1648,528253213,7),(1648,543978013,6),(1648,559702813,7),(1648,575427614,6),(1648,591152414,7),(1648,606877214,6),(1648,622602014,7),(1648,638326815,6),(1648,654656415,7),(1648,670381216,6),(1648,686106016,7),(1648,701830816,6),(1648,717555617,7),(1648,733280417,6),(1648,749005218,7),(1648,764730018,6),(1648,780454819,7),(1648,796179619,6),(1648,811904419,7),(1648,828234020,6),(1648,846378020,7),(1648,859683620,6),(1648,877827621,7),(1648,891133221,6),(1648,909277221,7),(1648,922582822,6),(1648,941331622,7),(1648,954032422,6),(1648,972781222,7),(1648,985482022,6),(1648,1004230822,7),(1648,1017536422,6),(1648,1035680422,7),(1648,1048986022,6),(1648,1067130022,7),(1648,1080435622,6),(1648,1099184422,7),(1648,1111885222,6),(1648,1130634022,7),(1648,1143334823,6),(1648,1162083623,7),(1648,1174784423,6),(1648,1193533223,7),(1648,1206838823,6),(1648,1224982823,7),(1648,1238288424,6),(1648,1256432424,7),(1648,1269738024,6),(1648,1288486824,7),(1648,1301187624,6),(1648,1319936424,7),(1648,1332637224,6),(1648,1351386025,7),(1648,1364691625,6),(1648,1382835625,7),(1648,1396141225,6),(1648,1414285225,7),(1648,1427590825,6),(1648,1445734826,7),(1648,1459040426,6),(1648,1477789226,7),(1648,1490490027,6),(1648,1509238827,7),(1648,1521939627,6),(1648,1540688427,7),(1648,1553994027,6),(1648,1572138027,7),(1648,1585443627,6),(1648,1603587627,7),(1648,1616893227,6),(1648,1635642027,7),(1648,1648342827,6),(1648,1667091627,7),(1648,1679792427,6),(1648,1698541227,7),(1648,1711846827,6),(1648,1729990827,7),(1648,1743296427,6),(1648,1761440427,7),(1648,1774746027,6),(1648,1792890027,7),(1648,1806195627,6),(1648,1824944427,7),(1648,1837645227,6),(1648,1856394027,7),(1648,1869094827,6),(1648,1887843627,7),(1648,1901149227,6),(1648,1919293227,7),(1648,1932598827,6),(1648,1950742827,7),(1648,1964048427,6),(1648,1982797227,7),(1648,1995498027,6),(1648,2014246827,7),(1648,2026947627,6),(1648,2045696427,7),(1648,2058397227,6),(1648,2077146027,7),(1648,2090451627,6),(1648,2108595627,7),(1648,2121901227,6),(1648,2140045227,7),(1649,-2147483648,1),(1649,-1740355200,2),(1649,-1693702800,5),(1649,-1680483600,2),(1649,-1663455600,3),(1649,-1650150000,4),(1649,-1632006000,3),(1649,-1618700400,4),(1649,-1613826000,8),(1649,-1604278800,6),(1649,-1585530000,7),(1649,-1574038800,6),(1649,-1552266000,7),(1649,-1539997200,6),(1649,-1520557200,7),(1649,-1507510800,6),(1649,-1490576400,7),(1649,-1473642000,6),(1649,-1459126800,7),(1649,-1444006800,6),(1649,-1427677200,7),(1649,-1411952400,6),(1649,-1396227600,7),(1649,-1379293200,6),(1649,-1364778000,7),(1649,-1348448400,6),(1649,-1333328400,7),(1649,-1316394000,6),(1649,-1301263200,7),(1649,-1284328800,6),(1649,-1269813600,7),(1649,-1253484000,6),(1649,-1238364000,7),(1649,-1221429600,6),(1649,-1206914400,7),(1649,-1191189600,6),(1649,-1175464800,7),(1649,-1160344800,6),(1649,-1143410400,7),(1649,-1127685600,6),(1649,-1111960800,7),(1649,-1096840800,6),(1649,-1080511200,7),(1649,-1063576800,6),(1649,-1049061600,7),(1649,-1033336800,6),(1649,-1017612000,7),(1649,-1002492000,6),(1649,-986162400,7),(1649,-969228000,6),(1649,-950479200,7),(1649,-942012000,6),(1649,-934668000,3),(1649,-857257200,4),(1649,-844556400,3),(1649,-828226800,4),(1649,-812502000,3),(1649,-799293600,5),(1649,-798073200,4),(1649,-781052400,3),(1649,-766623600,4),(1649,-745455600,3),(1649,-733273200,4),(1649,220921205,2),(1649,228877206,9),(1649,243997206,10),(1649,260326807,9),(1649,276051607,10),(1649,291776408,9),(1649,307501208,10),(1649,323830809,9),(1649,338950809,10),(1649,354675609,9),(1649,370400410,10),(1649,386125210,9),(1649,401850011,10),(1649,417574811,9),(1649,433299612,10),(1649,449024412,9),(1649,465354012,10),(1649,481078812,9),(1649,496803613,10),(1649,512528413,9),(1649,528253213,10),(1649,543978013,9),(1649,559702813,10),(1649,575427614,9),(1649,591152414,10),(1649,606877214,9),(1649,622602014,10),(1649,638326815,9),(1649,654656415,10),(1649,670381216,9),(1649,686106016,10),(1649,701830816,9),(1649,717555617,10),(1649,733280417,9),(1649,749005218,10),(1649,764730018,9),(1649,780454819,10),(1649,796179619,9),(1649,811904419,10),(1649,828234020,9),(1649,846378020,10),(1649,859683620,9),(1649,877827621,10),(1649,891133221,9),(1649,909277221,10),(1649,922582822,9),(1649,941331622,10),(1649,954032422,9),(1649,972781222,10),(1649,985482022,9),(1649,1004230822,10),(1649,1017536422,9),(1649,1035680422,10),(1649,1048986022,9),(1649,1067130022,10),(1649,1080435622,9),(1649,1099184422,10),(1649,1111885222,9),(1649,1130634022,10),(1649,1143334823,9),(1649,1162083623,10),(1649,1174784423,9),(1649,1193533223,10),(1649,1206838823,9),(1649,1224982823,10),(1649,1238288424,9),(1649,1256432424,10),(1649,1269738024,9),(1649,1288486824,10),(1649,1301187624,9),(1649,1319936424,10),(1649,1332637224,9),(1649,1351386025,10),(1649,1364691625,9),(1649,1382835625,10),(1649,1396141225,9),(1649,1414285225,10),(1649,1427590825,9),(1649,1445734826,10),(1649,1459040426,9),(1649,1477789226,10),(1649,1490490027,9),(1649,1509238827,10),(1649,1521939627,9),(1649,1540688427,10),(1649,1553994027,9),(1649,1572138027,10),(1649,1585443627,9),(1649,1603587627,10),(1649,1616893227,9),(1649,1635642027,10),(1649,1648342827,9),(1649,1667091627,10),(1649,1679792427,9),(1649,1698541227,10),(1649,1711846827,9),(1649,1729990827,10),(1649,1743296427,9),(1649,1761440427,10),(1649,1774746027,9),(1649,1792890027,10),(1649,1806195627,9),(1649,1824944427,10),(1649,1837645227,9),(1649,1856394027,10),(1649,1869094827,9),(1649,1887843627,10),(1649,1901149227,9),(1649,1919293227,10),(1649,1932598827,9),(1649,1950742827,10),(1649,1964048427,9),(1649,1982797227,10),(1649,1995498027,9),(1649,2014246827,10),(1649,2026947627,9),(1649,2045696427,10),(1649,2058397227,9),(1649,2077146027,10),(1649,2090451627,9),(1649,2108595627,10),(1649,2121901227,9),(1649,2140045227,10),(1650,-2147483648,1),(1650,-1213148664,5),(1650,-1187056800,2),(1650,-1175479200,3),(1650,-1159754400,2),(1650,-1144029600,3),(1650,-1127700000,2),(1650,-1111975200,3),(1650,-1096250400,2),(1650,-1080525600,3),(1650,-1064800800,2),(1650,-1049076000,3),(1650,-1033351200,2),(1650,-1017626400,3),(1650,-1001901600,2),(1650,-986176800,3),(1650,-970452000,2),(1650,-954727200,3),(1650,296604008,4),(1650,307486808,5),(1650,323816409,4),(1650,338940009,5),(1650,354672009,2),(1650,370396810,3),(1650,386121610,2),(1650,401846411,3),(1650,417571211,2),(1650,433296012,3),(1650,449020812,2),(1650,465350412,3),(1650,481075212,2),(1650,496800013,3),(1650,512524813,2),(1650,528249613,3),(1650,543974413,2),(1650,559699213,3),(1650,575424014,2),(1650,591148814,3),(1650,606873614,2),(1650,622598414,3),(1650,638323215,2),(1650,654652815,3),(1650,662680815,5),(1650,670370416,2),(1650,686095216,3),(1650,701820016,2),(1650,717544817,3),(1650,733269617,2),(1650,748994418,3),(1650,757375218,5),(1650,764719218,4),(1650,780440419,5),(1650,796168819,4),(1650,811890019,5),(1650,828223220,4),(1650,846363620,5),(1650,859683620,6),(1650,877827621,7),(1650,891133221,6),(1650,909277221,7),(1650,922582822,6),(1650,941331622,7),(1650,954032422,6),(1650,972781222,7),(1650,985482022,6),(1650,1004230822,7),(1650,1017536422,6),(1650,1035680422,7),(1650,1048986022,6),(1650,1067130022,7),(1650,1080435622,6),(1650,1099184422,7),(1650,1111885222,6),(1650,1130634022,7),(1650,1143334823,6),(1650,1162083623,7),(1650,1174784423,6),(1650,1193533223,7),(1650,1206838823,6),(1650,1224982823,7),(1650,1238288424,6),(1650,1256432424,7),(1650,1269738024,6),(1650,1288486824,7),(1650,1301187624,6),(1650,1319936424,7),(1650,1332637224,6),(1650,1351386025,7),(1650,1364691625,6),(1650,1382835625,7),(1650,1396141225,6),(1650,1414285225,7),(1650,1427590825,6),(1650,1445734826,7),(1650,1459040426,6),(1650,1477789226,7),(1650,1490490027,6),(1650,1509238827,7),(1650,1521939627,6),(1650,1540688427,7),(1650,1553994027,6),(1650,1572138027,7),(1650,1585443627,6),(1650,1603587627,7),(1650,1616893227,6),(1650,1635642027,7),(1650,1648342827,6),(1650,1667091627,7),(1650,1679792427,6),(1650,1698541227,7),(1650,1711846827,6),(1650,1729990827,7),(1650,1743296427,6),(1650,1761440427,7),(1650,1774746027,6),(1650,1792890027,7),(1650,1806195627,6),(1650,1824944427,7),(1650,1837645227,6),(1650,1856394027,7),(1650,1869094827,6),(1650,1887843627,7),(1650,1901149227,6),(1650,1919293227,7),(1650,1932598827,6),(1650,1950742827,7),(1650,1964048427,6),(1650,1982797227,7),(1650,1995498027,6),(1650,2014246827,7),(1650,2026947627,6),(1650,2045696427,7),(1650,2058397227,6),(1650,2077146027,7),(1650,2090451627,6),(1650,2108595627,7),(1650,2121901227,6),(1650,2140045227,7),(1651,-2147483648,2),(1651,-1693706400,1),(1651,-1680483600,2),(1651,-1663455600,3),(1651,-1650150000,4),(1651,-1640998800,2),(1651,-1633212000,1),(1651,-1618700400,2),(1651,-1600466400,1),(1651,-1581202800,2),(1651,-906771600,1),(1651,-857257200,4),(1651,-844556400,3),(1651,-828226800,4),(1651,-812502000,3),(1651,-796777200,4),(1651,-788922000,2),(1651,-778471200,1),(1651,-762660000,2),(1651,-749689200,3),(1651,-733359600,4),(1651,-717634800,3),(1651,-701910000,4),(1651,-686185200,3),(1651,-670460400,4),(1651,-654130800,3),(1651,-639010800,4),(1651,-621990000,3),(1651,-605660400,4),(1651,-492656400,1),(1651,-481168800,2),(1651,-461120400,1),(1651,-449632800,2),(1651,-428547600,1),(1651,-418269600,2),(1651,-397094400,1),(1651,-386809200,2),(1651,323827209,1),(1651,338950809,5),(1651,354675609,6),(1651,370400410,5),(1651,386125210,6),(1651,401850011,5),(1651,417574811,6),(1651,433299612,5),(1651,449024412,6),(1651,465354012,5),(1651,481078812,6),(1651,496803613,5),(1651,512528413,6),(1651,528253213,5),(1651,543978013,6),(1651,559702813,5),(1651,575427614,6),(1651,591152414,5),(1651,606877214,6),(1651,622602014,5),(1651,638326815,6),(1651,654656415,5),(1651,670381216,6),(1651,686106016,5),(1651,701830816,6),(1651,717555617,5),(1651,733280417,6),(1651,749005218,5),(1651,764730018,6),(1651,780454819,5),(1651,796179619,6),(1651,811904419,5),(1651,828234020,6),(1651,846378020,5),(1651,859683620,6),(1651,877827621,5),(1651,891133221,6),(1651,909277221,5),(1651,922582822,6),(1651,941331622,5),(1651,954032422,6),(1651,972781222,5),(1651,985482022,6),(1651,1004230822,5),(1651,1017536422,6),(1651,1035680422,5),(1651,1048986022,6),(1651,1067130022,5),(1651,1080435622,6),(1651,1099184422,5),(1651,1111885222,6),(1651,1130634022,5),(1651,1143334823,6),(1651,1162083623,5),(1651,1174784423,6),(1651,1193533223,5),(1651,1206838823,6),(1651,1224982823,5),(1651,1238288424,6),(1651,1256432424,5),(1651,1269738024,6),(1651,1288486824,5),(1651,1301187624,6),(1651,1319936424,5),(1651,1332637224,6),(1651,1351386025,5),(1651,1364691625,6),(1651,1382835625,5),(1651,1396141225,6),(1651,1414285225,5),(1651,1427590825,6),(1651,1445734826,5),(1651,1459040426,6),(1651,1477789226,5),(1651,1490490027,6),(1651,1509238827,5),(1651,1521939627,6),(1651,1540688427,5),(1651,1553994027,6),(1651,1572138027,5),(1651,1585443627,6),(1651,1603587627,5),(1651,1616893227,6),(1651,1635642027,5),(1651,1648342827,6),(1651,1667091627,5),(1651,1679792427,6),(1651,1698541227,5),(1651,1711846827,6),(1651,1729990827,5),(1651,1743296427,6),(1651,1761440427,5),(1651,1774746027,6),(1651,1792890027,5),(1651,1806195627,6),(1651,1824944427,5),(1651,1837645227,6),(1651,1856394027,5),(1651,1869094827,6),(1651,1887843627,5),(1651,1901149227,6),(1651,1919293227,5),(1651,1932598827,6),(1651,1950742827,5),(1651,1964048427,6),(1651,1982797227,5),(1651,1995498027,6),(1651,2014246827,5),(1651,2026947627,6),(1651,2045696427,5),(1651,2058397227,6),(1651,2077146027,5),(1651,2090451627,6),(1651,2108595627,5),(1651,2121901227,6),(1651,2140045227,5),(1652,-2147483648,2),(1652,-904435200,1),(1652,-891129600,2),(1652,-872985600,1),(1652,-859680000,2),(1652,354675609,3),(1652,370400410,4),(1652,386125210,3),(1652,401850011,4),(1652,417574811,3),(1652,433299612,4),(1652,449024412,3),(1652,465354012,4),(1652,481078812,3),(1652,496803613,4),(1652,512528413,3),(1652,528253213,4),(1652,543978013,3),(1652,559702813,4),(1652,575427614,3),(1652,591152414,4),(1652,606877214,3),(1652,622602014,4),(1652,638326815,3),(1652,654656415,4),(1652,670381216,3),(1652,686106016,4),(1652,701830816,3),(1652,717555617,4),(1652,733280417,3),(1652,749005218,4),(1652,764730018,3),(1652,780454819,4),(1652,796179619,3),(1652,811904419,4),(1652,828234020,3),(1652,846378020,4),(1652,859683620,3),(1652,877827621,4),(1652,891133221,3),(1652,909277221,4),(1652,922582822,3),(1652,941331622,4),(1652,954032422,3),(1652,972781222,4),(1652,985482022,3),(1652,1004230822,4),(1652,1017536422,3),(1652,1035680422,4),(1652,1048986022,3),(1652,1067130022,4),(1652,1080435622,3),(1652,1099184422,4),(1652,1111885222,3),(1652,1130634022,4),(1652,1143334823,3),(1652,1162083623,4),(1652,1174784423,3),(1652,1193533223,4),(1652,1206838823,3),(1652,1224982823,4),(1652,1238288424,3),(1652,1256432424,4),(1652,1269738024,3),(1652,1288486824,4),(1652,1301187624,3),(1652,1319936424,4),(1652,1332637224,3),(1652,1351386025,4),(1652,1364691625,3),(1652,1382835625,4),(1652,1396141225,3),(1652,1414285225,4),(1652,1427590825,3),(1652,1445734826,4),(1652,1459040426,3),(1652,1477789226,4),(1652,1490490027,3),(1652,1509238827,4),(1652,1521939627,3),(1652,1540688427,4),(1652,1553994027,3),(1652,1572138027,4),(1652,1585443627,3),(1652,1603587627,4),(1652,1616893227,3),(1652,1635642027,4),(1652,1648342827,3),(1652,1667091627,4),(1652,1679792427,3),(1652,1698541227,4),(1652,1711846827,3),(1652,1729990827,4),(1652,1743296427,3),(1652,1761440427,4),(1652,1774746027,3),(1652,1792890027,4),(1652,1806195627,3),(1652,1824944427,4),(1652,1837645227,3),(1652,1856394027,4),(1652,1869094827,3),(1652,1887843627,4),(1652,1901149227,3),(1652,1919293227,4),(1652,1932598827,3),(1652,1950742827,4),(1652,1964048427,3),(1652,1982797227,4),(1652,1995498027,3),(1652,2014246827,4),(1652,2026947627,3),(1652,2045696427,4),(1652,2058397227,3),(1652,2077146027,4),(1652,2090451627,3),(1652,2108595627,4),(1652,2121901227,3),(1652,2140045227,4),(1653,-2147483648,1),(1653,-1637114100,2),(1653,-1213148664,5),(1653,-1187056800,3),(1653,-1175479200,4),(1653,-1159754400,3),(1653,-1144029600,4),(1653,-1127700000,3),(1653,-1111975200,4),(1653,-1096250400,3),(1653,-1080525600,4),(1653,-1064800800,3),(1653,-1049076000,4),(1653,-1033351200,3),(1653,-1017626400,4),(1653,-1001901600,3),(1653,-986176800,4),(1653,-970452000,3),(1653,-954727200,4),(1653,-927165600,6),(1653,-898138800,9),(1653,-857257200,7),(1653,-844556400,8),(1653,-828226800,7),(1653,-812502000,8),(1653,-800157600,11),(1653,354920409,10),(1653,370728010,11),(1653,386456410,10),(1653,402264011,11),(1653,417992411,10),(1653,433800012,11),(1653,449614812,10),(1653,465346812,12),(1653,481071612,13),(1653,496796413,12),(1653,512521213,13),(1653,528246013,12),(1653,543970813,13),(1653,559695613,12),(1653,575420414,13),(1653,591145214,12),(1653,606870014,13),(1653,622594814,12),(1653,638319615,13),(1653,641944815,6),(1653,654652815,4),(1653,670377616,3),(1653,686102416,4),(1653,694216816,5),(1653,701820016,6),(1653,717541217,5),(1653,733269617,6),(1653,748990818,5),(1653,764719218,6),(1653,780440419,5),(1653,796168819,6),(1653,811890019,5),(1653,828223220,6),(1653,846363620,5),(1653,859680020,6),(1653,877824021,5),(1653,891129621,6),(1653,909273621,5),(1653,922579222,6),(1653,941328022,5),(1653,954028822,6),(1653,972777622,5),(1653,985478422,6),(1653,1004227222,5),(1653,1017532822,6),(1653,1035676822,5),(1653,1048982422,6),(1653,1067126422,5),(1653,1080432022,6),(1653,1099180822,5),(1653,1111881622,6),(1653,1130630422,5),(1653,1143331223,6),(1653,1162080023,5),(1653,1174780823,6),(1653,1193529623,5),(1653,1206835223,6),(1653,1224979223,5),(1653,1238284824,6),(1653,1256428824,5),(1653,1269734424,6),(1653,1288483224,5),(1653,1301184024,6),(1653,1319932824,5),(1653,1332633624,6),(1653,1351382425,5),(1653,1364688025,6),(1653,1382832025,5),(1653,1396137625,6),(1653,1414281625,5),(1653,1427587225,6),(1653,1445731226,5),(1653,1459036826,6),(1653,1477785626,5),(1653,1490486427,6),(1653,1509235227,5),(1653,1521936027,6),(1653,1540684827,5),(1653,1553990427,6),(1653,1572134427,5),(1653,1585440027,6),(1653,1603584027,5),(1653,1616889627,6),(1653,1635638427,5),(1653,1648339227,6),(1653,1667088027,5),(1653,1679788827,6),(1653,1698537627,5),(1653,1711843227,6),(1653,1729987227,5),(1653,1743292827,6),(1653,1761436827,5),(1653,1774742427,6),(1653,1792886427,5),(1653,1806192027,6),(1653,1824940827,5),(1653,1837641627,6),(1653,1856390427,5),(1653,1869091227,6),(1653,1887840027,5),(1653,1901145627,6),(1653,1919289627,5),(1653,1932595227,6),(1653,1950739227,5),(1653,1964044827,6),(1653,1982793627,5),(1653,1995494427,6),(1653,2014243227,5),(1653,2026944027,6),(1653,2045692827,5),(1653,2058393627,6),(1653,2077142427,5),(1653,2090448027,6),(1653,2108592027,5),(1653,2121897627,6),(1653,2140041627,5),(1654,-2147483648,2),(1654,-1692496800,1),(1654,-1680490800,2),(1654,-935110800,1),(1654,-857257200,3),(1654,-844556400,4),(1654,-828226800,3),(1654,-812502000,4),(1654,-796777200,3),(1654,-781052400,4),(1654,-769388400,3),(1654,-747010800,4),(1654,-736383600,3),(1654,-715215600,4),(1654,-706748400,3),(1654,-683161200,4),(1654,-675298800,3),(1654,315529208,2),(1654,323830809,5),(1654,338950809,6),(1654,354675609,5),(1654,370400410,6),(1654,386125210,5),(1654,401850011,6),(1654,417574811,5),(1654,433299612,6),(1654,449024412,5),(1654,465354012,6),(1654,481078812,5),(1654,496803613,6),(1654,512528413,5),(1654,528253213,6),(1654,543978013,5),(1654,559702813,6),(1654,575427614,5),(1654,591152414,6),(1654,606877214,5),(1654,622602014,6),(1654,638326815,5),(1654,654656415,6),(1654,670381216,5),(1654,686106016,6),(1654,701830816,5),(1654,717555617,6),(1654,733280417,5),(1654,749005218,6),(1654,764730018,5),(1654,780454819,6),(1654,796179619,5),(1654,811904419,6),(1654,828234020,5),(1654,846378020,6),(1654,859683620,5),(1654,877827621,6),(1654,891133221,5),(1654,909277221,6),(1654,922582822,5),(1654,941331622,6),(1654,954032422,5),(1654,972781222,6),(1654,985482022,5),(1654,1004230822,6),(1654,1017536422,5),(1654,1035680422,6),(1654,1048986022,5),(1654,1067130022,6),(1654,1080435622,5),(1654,1099184422,6),(1654,1111885222,5),(1654,1130634022,6),(1654,1143334823,5),(1654,1162083623,6),(1654,1174784423,5),(1654,1193533223,6),(1654,1206838823,5),(1654,1224982823,6),(1654,1238288424,5),(1654,1256432424,6),(1654,1269738024,5),(1654,1288486824,6),(1654,1301187624,5),(1654,1319936424,6),(1654,1332637224,5),(1654,1351386025,6),(1654,1364691625,5),(1654,1382835625,6),(1654,1396141225,5),(1654,1414285225,6),(1654,1427590825,5),(1654,1445734826,6),(1654,1459040426,5),(1654,1477789226,6),(1654,1490490027,5),(1654,1509238827,6),(1654,1521939627,5),(1654,1540688427,6),(1654,1553994027,5),(1654,1572138027,6),(1654,1585443627,5),(1654,1603587627,6),(1654,1616893227,5),(1654,1635642027,6),(1654,1648342827,5),(1654,1667091627,6),(1654,1679792427,5),(1654,1698541227,6),(1654,1711846827,5),(1654,1729990827,6),(1654,1743296427,5),(1654,1761440427,6),(1654,1774746027,5),(1654,1792890027,6),(1654,1806195627,5),(1654,1824944427,6),(1654,1837645227,5),(1654,1856394027,6),(1654,1869094827,5),(1654,1887843627,6),(1654,1901149227,5),(1654,1919293227,6),(1654,1932598827,5),(1654,1950742827,6),(1654,1964048427,5),(1654,1982797227,6),(1654,1995498027,5),(1654,2014246827,6),(1654,2026947627,5),(1654,2045696427,6),(1654,2058397227,5),(1654,2077146027,6),(1654,2090451627,5),(1654,2108595627,6),(1654,2121901227,5),(1654,2140045227,6),(1655,-2147483648,1),(1655,-1691962479,2),(1655,-1680471279,4),(1655,-1664143200,3),(1655,-1650146400,4),(1655,-1633903200,3),(1655,-1617487200,4),(1655,-1601848800,3),(1655,-1586037600,4),(1655,-1570399200,3),(1655,-1552168800,4),(1655,-1538344800,3),(1655,-1522533600,4),(1655,-1517011200,6),(1655,-1507500000,5),(1655,-1490565600,4),(1655,-1473631200,5),(1655,-1460930400,4),(1655,-1442786400,5),(1655,-1428876000,4),(1655,-1410732000,5),(1655,-1396216800,4),(1655,-1379282400,5),(1655,-1364767200,4),(1655,-1348437600,5),(1655,-1333317600,4),(1655,-1315778400,5),(1655,-1301263200,4),(1655,-1284328800,5),(1655,-1269813600,4),(1655,-1253484000,5),(1655,-1238364000,4),(1655,-1221429600,5),(1655,-1206914400,4),(1655,-1189980000,5),(1655,-1175464800,4),(1655,-1159135200,5),(1655,-1143410400,4),(1655,-1126476000,5),(1655,-1111960800,4),(1655,-1095631200,5),(1655,-1080511200,4),(1655,-1063576800,5),(1655,-1049061600,4),(1655,-1032127200,5),(1655,-1017612000,4),(1655,-1001282400,5),(1655,-986162400,4),(1655,-969228000,5),(1655,-950479200,4),(1655,-942012000,5),(1655,-733356000,4),(1655,-719445600,5),(1655,-699487200,4),(1655,-684972000,5),(1655,-668037600,4),(1655,-654732000,5),(1655,-636588000,4),(1655,-622072800,5),(1655,-605743200,4),(1655,-590623200,5),(1655,-574293600,4),(1655,-558568800,5),(1655,-542239200,4),(1655,-527119200,5),(1655,-512604000,4),(1655,-496274400,5),(1655,-481154400,4),(1655,-464220000,5),(1655,-449704800,4),(1655,-432165600,5),(1655,-417650400,4),(1655,-401320800,5),(1655,-386200800,4),(1655,-369266400,5),(1655,-354751200,4),(1655,-337816800,5),(1655,-323301600,4),(1655,-306972000,5),(1655,-291852000,4),(1655,-276732000,5),(1655,-257983200,4),(1655,-245282400,5),(1655,-226533600,4),(1655,-213228000,5),(1655,-195084000,4),(1655,-182383200,5),(1655,-163634400,4),(1655,-150933600,5),(1655,-132184800,4),(1655,-119484000,5),(1655,-100735200,4),(1655,-88034400,5),(1655,-68680800,4),(1655,-59004000,5),(1655,-37242000,9),(1655,57722400,7),(1655,69818400,8),(1655,89172001,7),(1655,101268002,8),(1655,120621602,7),(1655,132717603,8),(1655,152071203,7),(1655,164167204,8),(1655,183520804,7),(1655,196221605,8),(1655,214970405,7),(1655,227671206,8),(1655,246420006,7),(1655,259120807,8),(1655,278474407,7),(1655,290570408,8),(1655,309924008,7),(1655,322020009,8),(1655,341373609,7),(1655,354675609,8),(1655,372819610,7),(1655,386125210,8),(1655,404269211,7),(1655,417574811,8),(1655,435718812,7),(1655,449024412,8),(1655,467773212,7),(1655,481078812,8),(1655,499222813,7),(1655,512528413,8),(1655,530672413,7),(1655,543978013,8),(1655,562122013,7),(1655,575427614,8),(1655,593571614,7),(1655,606877214,8),(1655,625626014,7),(1655,638326815,8),(1655,657075615,7),(1655,670381216,8),(1655,688525216,7),(1655,701830816,8),(1655,719974817,7),(1655,733280417,8),(1655,751424418,7),(1655,764730018,8),(1655,782874019,7),(1655,796179619,8),(1655,814323619,7),(1655,828234020,8),(1655,846378020,7),(1655,859683620,8),(1655,877827621,7),(1655,891133221,8),(1655,909277221,7),(1655,922582822,8),(1655,941331622,7),(1655,954032422,8),(1655,972781222,7),(1655,985482022,8),(1655,1004230822,7),(1655,1017536422,8),(1655,1035680422,7),(1655,1048986022,8),(1655,1067130022,7),(1655,1080435622,8),(1655,1099184422,7),(1655,1111885222,8),(1655,1130634022,7),(1655,1143334823,8),(1655,1162083623,7),(1655,1174784423,8),(1655,1193533223,7),(1655,1206838823,8),(1655,1224982823,7),(1655,1238288424,8),(1655,1256432424,7),(1655,1269738024,8),(1655,1288486824,7),(1655,1301187624,8),(1655,1319936424,7),(1655,1332637224,8),(1655,1351386025,7),(1655,1364691625,8),(1655,1382835625,7),(1655,1396141225,8),(1655,1414285225,7),(1655,1427590825,8),(1655,1445734826,7),(1655,1459040426,8),(1655,1477789226,7),(1655,1490490027,8),(1655,1509238827,7),(1655,1521939627,8),(1655,1540688427,7),(1655,1553994027,8),(1655,1572138027,7),(1655,1585443627,8),(1655,1603587627,7),(1655,1616893227,8),(1655,1635642027,7),(1655,1648342827,8),(1655,1667091627,7),(1655,1679792427,8),(1655,1698541227,7),(1655,1711846827,8),(1655,1729990827,7),(1655,1743296427,8),(1655,1761440427,7),(1655,1774746027,8),(1655,1792890027,7),(1655,1806195627,8),(1655,1824944427,7),(1655,1837645227,8),(1655,1856394027,7),(1655,1869094827,8),(1655,1887843627,7),(1655,1901149227,8),(1655,1919293227,7),(1655,1932598827,8),(1655,1950742827,7),(1655,1964048427,8),(1655,1982797227,7),(1655,1995498027,8),(1655,2014246827,7),(1655,2026947627,8),(1655,2045696427,7),(1655,2058397227,8),(1655,2077146027,7),(1655,2090451627,8),(1655,2108595627,7),(1655,2121901227,8),(1655,2140045227,7),(1656,-2147483648,2),(1656,-1691964000,1),(1656,-1680472800,2),(1656,-1664143200,1),(1656,-1650146400,2),(1656,-1633903200,1),(1656,-1617487200,2),(1656,-1601848800,1),(1656,-1586037600,2),(1656,-1570399200,1),(1656,-1552168800,2),(1656,-1538344800,1),(1656,-1522533600,2),(1656,-1507500000,1),(1656,-1490565600,2),(1656,-1473631200,1),(1656,-1460930400,2),(1656,-1442786400,1),(1656,-1428876000,2),(1656,-1410732000,1),(1656,-1396216800,2),(1656,-1379282400,1),(1656,-1364767200,2),(1656,-1348437600,1),(1656,-1333317600,2),(1656,-1315778400,1),(1656,-1301263200,2),(1656,-1284328800,1),(1656,-1269813600,2),(1656,-1253484000,1),(1656,-1238364000,2),(1656,-1221429600,1),(1656,-1206914400,2),(1656,-1189980000,1),(1656,-1175464800,2),(1656,-1159135200,1),(1656,-1143410400,2),(1656,-1126476000,1),(1656,-1111960800,2),(1656,-1095631200,1),(1656,-1080511200,2),(1656,-1063576800,1),(1656,-1049061600,2),(1656,-1032127200,1),(1656,-1017612000,2),(1656,-1001282400,1),(1656,-986162400,2),(1656,-969228000,1),(1656,-950479200,2),(1656,-942012000,1),(1656,-904518000,3),(1656,-896050800,1),(1656,-875487600,3),(1656,-864601200,1),(1656,-844038000,3),(1656,-832546800,1),(1656,-812588400,3),(1656,-798073200,1),(1656,-781052400,3),(1656,-772066800,1),(1656,-764805600,2),(1656,-748476000,1),(1656,-733356000,2),(1656,-719445600,1),(1656,-717030000,3),(1656,-706748400,1),(1656,-699487200,2),(1656,-687996000,1),(1656,-668037600,2),(1656,-654732000,1),(1656,-636588000,2),(1656,-622072800,1),(1656,-605743200,2),(1656,-590623200,1),(1656,-574293600,2),(1656,-558568800,1),(1656,-542239200,2),(1656,-527119200,1),(1656,-512604000,2),(1656,-496274400,1),(1656,-481154400,2),(1656,-464220000,1),(1656,-449704800,2),(1656,-432165600,1),(1656,-417650400,2),(1656,-401320800,4),(1656,386125210,5),(1656,401850011,6),(1656,417574811,5),(1656,433299612,6),(1656,449024412,5),(1656,465354012,6),(1656,481078812,5),(1656,496803613,6),(1656,512528413,5),(1656,528253213,6),(1656,543978013,5),(1656,559702813,6),(1656,575427614,5),(1656,591152414,6),(1656,606877214,5),(1656,622602014,6),(1656,638326815,5),(1656,654656415,6),(1656,670381216,5),(1656,686106016,6),(1656,701830816,5),(1656,717555617,6),(1656,733280417,5),(1656,749005218,6),(1656,764730018,5),(1656,780454819,6),(1656,796179619,5),(1656,811904419,6),(1656,828234020,5),(1656,846378020,6),(1656,859683620,5),(1656,877827621,6),(1656,891133221,5),(1656,909277221,6),(1656,922582822,5),(1656,941331622,6),(1656,954032422,5),(1656,972781222,6),(1656,985482022,5),(1656,1004230822,6),(1656,1017536422,5),(1656,1035680422,6),(1656,1048986022,5),(1656,1067130022,6),(1656,1080435622,5),(1656,1099184422,6),(1656,1111885222,5),(1656,1130634022,6),(1656,1143334823,5),(1656,1162083623,6),(1656,1174784423,5),(1656,1193533223,6),(1656,1206838823,5),(1656,1224982823,6),(1656,1238288424,5),(1656,1256432424,6),(1656,1269738024,5),(1656,1288486824,6),(1656,1301187624,5),(1656,1319936424,6),(1656,1332637224,5),(1656,1351386025,6),(1656,1364691625,5),(1656,1382835625,6),(1656,1396141225,5),(1656,1414285225,6),(1656,1427590825,5),(1656,1445734826,6),(1656,1459040426,5),(1656,1477789226,6),(1656,1490490027,5),(1656,1509238827,6),(1656,1521939627,5),(1656,1540688427,6),(1656,1553994027,5),(1656,1572138027,6),(1656,1585443627,5),(1656,1603587627,6),(1656,1616893227,5),(1656,1635642027,6),(1656,1648342827,5),(1656,1667091627,6),(1656,1679792427,5),(1656,1698541227,6),(1656,1711846827,5),(1656,1729990827,6),(1656,1743296427,5),(1656,1761440427,6),(1656,1774746027,5),(1656,1792890027,6),(1656,1806195627,5),(1656,1824944427,6),(1656,1837645227,5),(1656,1856394027,6),(1656,1869094827,5),(1656,1887843627,6),(1656,1901149227,5),(1656,1919293227,6),(1656,1932598827,5),(1656,1950742827,6),(1656,1964048427,5),(1656,1982797227,6),(1656,1995498027,5),(1656,2014246827,6),(1656,2026947627,5),(1656,2045696427,6),(1656,2058397227,5),(1656,2077146027,6),(1656,2090451627,5),(1656,2108595627,6),(1656,2121901227,5),(1656,2140045227,6),(1657,-2147483648,2),(1657,-1691964000,1),(1657,-1680472800,2),(1657,-1664143200,1),(1657,-1650146400,2),(1657,-1633903200,1),(1657,-1617487200,2),(1657,-1601848800,1),(1657,-1586037600,2),(1657,-1570399200,1),(1657,-1552168800,2),(1657,-1538344800,1),(1657,-1522533600,2),(1657,-1507500000,1),(1657,-1490565600,2),(1657,-1473631200,1),(1657,-1460930400,2),(1657,-1442786400,1),(1657,-1428876000,2),(1657,-1410732000,1),(1657,-1396216800,2),(1657,-1379282400,1),(1657,-1364767200,2),(1657,-1348437600,1),(1657,-1333317600,2),(1657,-1315778400,1),(1657,-1301263200,2),(1657,-1284328800,1),(1657,-1269813600,2),(1657,-1253484000,1),(1657,-1238364000,2),(1657,-1221429600,1),(1657,-1206914400,2),(1657,-1189980000,1),(1657,-1175464800,2),(1657,-1159135200,1),(1657,-1143410400,2),(1657,-1126476000,1),(1657,-1111960800,2),(1657,-1095631200,1),(1657,-1080511200,2),(1657,-1063576800,1),(1657,-1049061600,2),(1657,-1032127200,1),(1657,-1017612000,2),(1657,-1001282400,1),(1657,-986162400,2),(1657,-969228000,1),(1657,-950479200,2),(1657,-942012000,1),(1657,-904518000,3),(1657,-896050800,1),(1657,-875487600,3),(1657,-864601200,1),(1657,-844038000,3),(1657,-832546800,1),(1657,-812588400,3),(1657,-798073200,1),(1657,-781052400,3),(1657,-772066800,1),(1657,-764805600,2),(1657,-748476000,1),(1657,-733356000,2),(1657,-719445600,1),(1657,-717030000,3),(1657,-706748400,1),(1657,-699487200,2),(1657,-687996000,1),(1657,-668037600,2),(1657,-654732000,1),(1657,-636588000,2),(1657,-622072800,1),(1657,-605743200,2),(1657,-590623200,1),(1657,-574293600,2),(1657,-558568800,1),(1657,-542239200,2),(1657,-527119200,1),(1657,-512604000,2),(1657,-496274400,1),(1657,-481154400,2),(1657,-464220000,1),(1657,-449704800,2),(1657,-432165600,1),(1657,-417650400,2),(1657,-401320800,1),(1657,-386200800,2),(1657,-369266400,1),(1657,-354751200,2),(1657,-337816800,1),(1657,-323301600,2),(1657,-306972000,1),(1657,-291852000,2),(1657,-276732000,1),(1657,-257983200,2),(1657,-245282400,1),(1657,-226533600,2),(1657,-213228000,1),(1657,-195084000,2),(1657,-182383200,1),(1657,-163634400,2),(1657,-150933600,1),(1657,-132184800,2),(1657,-119484000,1),(1657,-100735200,2),(1657,-88034400,1),(1657,-68680800,2),(1657,-59004000,1),(1657,-37242000,4),(1657,57722400,6),(1657,69818400,1),(1657,89172001,2),(1657,101268002,1),(1657,120621602,2),(1657,132717603,1),(1657,152071203,2),(1657,164167204,1),(1657,183520804,2),(1657,196221605,1),(1657,214970405,2),(1657,227671206,1),(1657,246420006,2),(1657,259120807,1),(1657,278474407,2),(1657,290570408,1),(1657,309924008,2),(1657,322020009,1),(1657,341373609,2),(1657,354675609,5),(1657,372819610,6),(1657,386125210,5),(1657,404269211,6),(1657,417574811,5),(1657,435718812,6),(1657,449024412,5),(1657,467773212,6),(1657,481078812,5),(1657,499222813,6),(1657,512528413,5),(1657,530672413,6),(1657,543978013,5),(1657,562122013,6),(1657,575427614,5),(1657,593571614,6),(1657,606877214,5),(1657,625626014,6),(1657,638326815,5),(1657,657075615,6),(1657,670381216,5),(1657,688525216,6),(1657,701830816,5),(1657,719974817,6),(1657,733280417,5),(1657,751424418,6),(1657,764730018,5),(1657,782874019,6),(1657,796179619,5),(1657,814323619,6),(1657,820454420,7),(1657,828234020,5),(1657,846378020,6),(1657,859683620,5),(1657,877827621,6),(1657,891133221,5),(1657,909277221,6),(1657,922582822,5),(1657,941331622,6),(1657,954032422,5),(1657,972781222,6),(1657,985482022,5),(1657,1004230822,6),(1657,1017536422,5),(1657,1035680422,6),(1657,1048986022,5),(1657,1067130022,6),(1657,1080435622,5),(1657,1099184422,6),(1657,1111885222,5),(1657,1130634022,6),(1657,1143334823,5),(1657,1162083623,6),(1657,1174784423,5),(1657,1193533223,6),(1657,1206838823,5),(1657,1224982823,6),(1657,1238288424,5),(1657,1256432424,6),(1657,1269738024,5),(1657,1288486824,6),(1657,1301187624,5),(1657,1319936424,6),(1657,1332637224,5),(1657,1351386025,6),(1657,1364691625,5),(1657,1382835625,6),(1657,1396141225,5),(1657,1414285225,6),(1657,1427590825,5),(1657,1445734826,6),(1657,1459040426,5),(1657,1477789226,6),(1657,1490490027,5),(1657,1509238827,6),(1657,1521939627,5),(1657,1540688427,6),(1657,1553994027,5),(1657,1572138027,6),(1657,1585443627,5),(1657,1603587627,6),(1657,1616893227,5),(1657,1635642027,6),(1657,1648342827,5),(1657,1667091627,6),(1657,1679792427,5),(1657,1698541227,6),(1657,1711846827,5),(1657,1729990827,6),(1657,1743296427,5),(1657,1761440427,6),(1657,1774746027,5),(1657,1792890027,6),(1657,1806195627,5),(1657,1824944427,6),(1657,1837645227,5),(1657,1856394027,6),(1657,1869094827,5),(1657,1887843627,6),(1657,1901149227,5),(1657,1919293227,6),(1657,1932598827,5),(1657,1950742827,6),(1657,1964048427,5),(1657,1982797227,6),(1657,1995498027,5),(1657,2014246827,6),(1657,2026947627,5),(1657,2045696427,6),(1657,2058397227,5),(1657,2077146027,6),(1657,2090451627,5),(1657,2108595627,6),(1657,2121901227,5),(1657,2140045227,6),(1658,-2147483648,1),(1658,-1535938789,3),(1658,-875671200,2),(1658,-859773600,3),(1658,354672009,2),(1658,370396810,3),(1658,386121610,2),(1658,401846411,3),(1658,417574811,4),(1658,433299612,5),(1658,449024412,4),(1658,465354012,5),(1658,481078812,4),(1658,496803613,5),(1658,512528413,4),(1658,528253213,5),(1658,543978013,4),(1658,559702813,5),(1658,575427614,4),(1658,591152414,5),(1658,606877214,4),(1658,622602014,5),(1658,638326815,4),(1658,654656415,5),(1658,670381216,4),(1658,686106016,5),(1658,701830816,4),(1658,717555617,5),(1658,733280417,4),(1658,749005218,5),(1658,764730018,4),(1658,780454819,5),(1658,796179619,4),(1658,811904419,5),(1658,828234020,4),(1658,846378020,5),(1658,859683620,4),(1658,877827621,5),(1658,891133221,4),(1658,909277221,5),(1658,922582822,4),(1658,941331622,5),(1658,954032422,4),(1658,972781222,5),(1658,985482022,4),(1658,1004230822,5),(1658,1017536422,4),(1658,1035680422,5),(1658,1048986022,4),(1658,1067130022,5),(1658,1080435622,4),(1658,1099184422,5),(1658,1111885222,4),(1658,1130634022,5),(1658,1143334823,4),(1658,1162083623,5),(1658,1174784423,4),(1658,1193533223,5),(1658,1206838823,4),(1658,1224982823,5),(1658,1238288424,4),(1658,1256432424,5),(1658,1269738024,4),(1658,1288486824,5),(1658,1301187624,4),(1658,1319936424,5),(1658,1332637224,4),(1658,1351386025,5),(1658,1364691625,4),(1658,1382835625,5),(1658,1396141225,4),(1658,1414285225,5),(1658,1427590825,4),(1658,1445734826,5),(1658,1459040426,4),(1658,1477789226,5),(1658,1490490027,4),(1658,1509238827,5),(1658,1521939627,4),(1658,1540688427,5),(1658,1553994027,4),(1658,1572138027,5),(1658,1585443627,4),(1658,1603587627,5),(1658,1616893227,4),(1658,1635642027,5),(1658,1648342827,4),(1658,1667091627,5),(1658,1679792427,4),(1658,1698541227,5),(1658,1711846827,4),(1658,1729990827,5),(1658,1743296427,4),(1658,1761440427,5),(1658,1774746027,4),(1658,1792890027,5),(1658,1806195627,4),(1658,1824944427,5),(1658,1837645227,4),(1658,1856394027,5),(1658,1869094827,4),(1658,1887843627,5),(1658,1901149227,4),(1658,1919293227,5),(1658,1932598827,4),(1658,1950742827,5),(1658,1964048427,4),(1658,1982797227,5),(1658,1995498027,4),(1658,2014246827,5),(1658,2026947627,4),(1658,2045696427,5),(1658,2058397227,4),(1658,2077146027,5),(1658,2090451627,4),(1658,2108595627,5),(1658,2121901227,4),(1658,2140045227,5),(1659,-2147483648,2),(1659,-1691964000,1),(1659,-1680472800,2),(1659,-1664143200,1),(1659,-1650146400,2),(1659,-1633903200,1),(1659,-1617487200,2),(1659,-1601848800,1),(1659,-1586037600,2),(1659,-1570399200,1),(1659,-1552168800,2),(1659,-1538344800,1),(1659,-1522533600,2),(1659,-1507500000,1),(1659,-1490565600,2),(1659,-1473631200,1),(1659,-1460930400,2),(1659,-1442786400,1),(1659,-1428876000,2),(1659,-1410732000,1),(1659,-1396216800,2),(1659,-1379282400,1),(1659,-1364767200,2),(1659,-1348437600,1),(1659,-1333317600,2),(1659,-1315778400,1),(1659,-1301263200,2),(1659,-1284328800,1),(1659,-1269813600,2),(1659,-1253484000,1),(1659,-1238364000,2),(1659,-1221429600,1),(1659,-1206914400,2),(1659,-1189980000,1),(1659,-1175464800,2),(1659,-1159135200,1),(1659,-1143410400,2),(1659,-1126476000,1),(1659,-1111960800,2),(1659,-1095631200,1),(1659,-1080511200,2),(1659,-1063576800,1),(1659,-1049061600,2),(1659,-1032127200,1),(1659,-1017612000,2),(1659,-1001282400,1),(1659,-986162400,2),(1659,-969228000,1),(1659,-950479200,2),(1659,-942012000,1),(1659,-904518000,3),(1659,-896050800,1),(1659,-875487600,3),(1659,-864601200,1),(1659,-844038000,3),(1659,-832546800,1),(1659,-812588400,3),(1659,-798073200,1),(1659,-781052400,3),(1659,-772066800,1),(1659,-764805600,2),(1659,-748476000,1),(1659,-733356000,2),(1659,-719445600,1),(1659,-717030000,3),(1659,-706748400,1),(1659,-699487200,2),(1659,-687996000,1),(1659,-668037600,2),(1659,-654732000,1),(1659,-636588000,2),(1659,-622072800,1),(1659,-605743200,2),(1659,-590623200,1),(1659,-574293600,2),(1659,-558568800,1),(1659,-542239200,2),(1659,-527119200,1),(1659,-512604000,2),(1659,-496274400,1),(1659,-481154400,2),(1659,-464220000,1),(1659,-449704800,2),(1659,-432165600,1),(1659,-417650400,2),(1659,-401320800,1),(1659,-386200800,2),(1659,-369266400,1),(1659,-354751200,2),(1659,-337816800,1),(1659,-323301600,2),(1659,-306972000,1),(1659,-291852000,2),(1659,-276732000,1),(1659,-257983200,2),(1659,-245282400,1),(1659,-226533600,2),(1659,-213228000,1),(1659,-195084000,2),(1659,-182383200,1),(1659,-163634400,2),(1659,-150933600,1),(1659,-132184800,2),(1659,-119484000,1),(1659,-100735200,2),(1659,-88034400,1),(1659,-68680800,2),(1659,-59004000,1),(1659,-37242000,4),(1659,57722400,6),(1659,69818400,1),(1659,89172001,2),(1659,101268002,1),(1659,120621602,2),(1659,132717603,1),(1659,152071203,2),(1659,164167204,1),(1659,183520804,2),(1659,196221605,1),(1659,214970405,2),(1659,227671206,1),(1659,246420006,2),(1659,259120807,1),(1659,278474407,2),(1659,290570408,1),(1659,309924008,2),(1659,322020009,1),(1659,341373609,2),(1659,354675609,5),(1659,372819610,6),(1659,386125210,5),(1659,404269211,6),(1659,417574811,5),(1659,435718812,6),(1659,449024412,5),(1659,467773212,6),(1659,481078812,5),(1659,499222813,6),(1659,512528413,5),(1659,530672413,6),(1659,543978013,5),(1659,562122013,6),(1659,575427614,5),(1659,593571614,6),(1659,606877214,5),(1659,625626014,6),(1659,638326815,5),(1659,657075615,6),(1659,670381216,5),(1659,688525216,6),(1659,701830816,5),(1659,719974817,6),(1659,733280417,5),(1659,751424418,6),(1659,764730018,5),(1659,782874019,6),(1659,796179619,5),(1659,814323619,6),(1659,820454420,7),(1659,828234020,5),(1659,846378020,6),(1659,859683620,5),(1659,877827621,6),(1659,891133221,5),(1659,909277221,6),(1659,922582822,5),(1659,941331622,6),(1659,954032422,5),(1659,972781222,6),(1659,985482022,5),(1659,1004230822,6),(1659,1017536422,5),(1659,1035680422,6),(1659,1048986022,5),(1659,1067130022,6),(1659,1080435622,5),(1659,1099184422,6),(1659,1111885222,5),(1659,1130634022,6),(1659,1143334823,5),(1659,1162083623,6),(1659,1174784423,5),(1659,1193533223,6),(1659,1206838823,5),(1659,1224982823,6),(1659,1238288424,5),(1659,1256432424,6),(1659,1269738024,5),(1659,1288486824,6),(1659,1301187624,5),(1659,1319936424,6),(1659,1332637224,5),(1659,1351386025,6),(1659,1364691625,5),(1659,1382835625,6),(1659,1396141225,5),(1659,1414285225,6),(1659,1427590825,5),(1659,1445734826,6),(1659,1459040426,5),(1659,1477789226,6),(1659,1490490027,5),(1659,1509238827,6),(1659,1521939627,5),(1659,1540688427,6),(1659,1553994027,5),(1659,1572138027,6),(1659,1585443627,5),(1659,1603587627,6),(1659,1616893227,5),(1659,1635642027,6),(1659,1648342827,5),(1659,1667091627,6),(1659,1679792427,5),(1659,1698541227,6),(1659,1711846827,5),(1659,1729990827,6),(1659,1743296427,5),(1659,1761440427,6),(1659,1774746027,5),(1659,1792890027,6),(1659,1806195627,5),(1659,1824944427,6),(1659,1837645227,5),(1659,1856394027,6),(1659,1869094827,5),(1659,1887843627,6),(1659,1901149227,5),(1659,1919293227,6),(1659,1932598827,5),(1659,1950742827,6),(1659,1964048427,5),(1659,1982797227,6),(1659,1995498027,5),(1659,2014246827,6),(1659,2026947627,5),(1659,2045696427,6),(1659,2058397227,5),(1659,2077146027,6),(1659,2090451627,5),(1659,2108595627,6),(1659,2121901227,5),(1659,2140045227,6),(1660,-2147483648,1),(1660,-1869875816,3),(1660,-1693706400,2),(1660,-1680490800,3),(1660,-1570413600,2),(1660,-1552186800,3),(1660,-1538359200,2),(1660,-1522551600,3),(1660,-1507514400,2),(1660,-1490583600,3),(1660,-1440208800,2),(1660,-1428030000,3),(1660,-1409709600,2),(1660,-1396494000,3),(1660,-931053600,2),(1660,-922676400,3),(1660,-917834400,2),(1660,-892436400,3),(1660,-875844000,2),(1660,-764737200,3),(1660,-744343200,2),(1660,-733806000,3),(1660,-716436000,2),(1660,-701924400,3),(1660,-684986400,2),(1660,-670474800,3),(1660,-654141600,2),(1660,-639025200,3),(1660,-622087200,2),(1660,-606970800,3),(1660,-590032800,2),(1660,-575521200,3),(1660,-235620000,2),(1660,-194842800,3),(1660,-177732000,2),(1660,-165726000,3),(1660,107910002,2),(1660,121215602,3),(1660,133920003,2),(1660,152665203,3),(1660,164678404,2),(1660,184114804,3),(1660,196214405,2),(1660,215564405,3),(1660,228873606,2),(1660,245804406,3),(1660,260323207,2),(1660,267915607,4),(1660,428454012,5),(1660,433893612,4),(1660,468111612,3),(1660,482799612,6),(1660,496710013,7),(1660,512521213,6),(1660,528246013,7),(1660,543970813,6),(1660,559695613,7),(1660,575420414,6),(1660,591145214,7),(1660,606870014,6),(1660,622594814,7),(1660,638319615,6),(1660,654649215,7),(1660,670374016,6),(1660,686098816,7),(1660,701823616,6),(1660,717548417,7),(1660,733273217,6),(1660,748998018,7),(1660,764118018,6),(1660,780447619,7),(1660,796172419,6),(1660,811897219,7),(1660,828226820,6),(1660,846370820,7),(1660,859676420,6),(1660,877820421,7),(1660,891126021,6),(1660,909270021,7),(1660,922575622,6),(1660,941324422,7),(1660,954025222,6),(1660,972774022,7),(1660,985474822,6),(1660,1004223622,7),(1660,1017529222,6),(1660,1035673222,7),(1660,1048978822,6),(1660,1067122822,7),(1660,1080428422,6),(1660,1099177222,7),(1660,1111878022,6),(1660,1130626822,7),(1660,1143327623,6),(1660,1162076423,7),(1660,1167602423,3),(1660,1174784423,8),(1660,1193533223,9),(1660,1206838823,8),(1660,1224982823,9),(1660,1238288424,8),(1660,1256432424,9),(1660,1269738024,8),(1660,1288486824,9),(1660,1301274024,8),(1660,1319936424,9),(1660,1332637224,8),(1660,1351386025,9),(1660,1364691625,8),(1660,1382835625,9),(1660,1396227625,8),(1660,1414285225,9),(1660,1427590825,8),(1660,1446944426,9),(1660,1459040426,8),(1660,1473195626,4),(1661,-2147483648,2),(1661,-1691964000,1),(1661,-1680472800,2),(1661,-1664143200,1),(1661,-1650146400,2),(1661,-1633903200,1),(1661,-1617487200,2),(1661,-1601848800,1),(1661,-1586037600,2),(1661,-1570399200,1),(1661,-1552168800,2),(1661,-1538344800,1),(1661,-1522533600,2),(1661,-1507500000,1),(1661,-1490565600,2),(1661,-1473631200,1),(1661,-1460930400,2),(1661,-1442786400,1),(1661,-1428876000,2),(1661,-1410732000,1),(1661,-1396216800,2),(1661,-1379282400,1),(1661,-1364767200,2),(1661,-1348437600,1),(1661,-1333317600,2),(1661,-1315778400,1),(1661,-1301263200,2),(1661,-1284328800,1),(1661,-1269813600,2),(1661,-1253484000,1),(1661,-1238364000,2),(1661,-1221429600,1),(1661,-1206914400,2),(1661,-1189980000,1),(1661,-1175464800,2),(1661,-1159135200,1),(1661,-1143410400,2),(1661,-1126476000,1),(1661,-1111960800,2),(1661,-1095631200,1),(1661,-1080511200,2),(1661,-1063576800,1),(1661,-1049061600,2),(1661,-1032127200,1),(1661,-1017612000,2),(1661,-1001282400,1),(1661,-986162400,2),(1661,-969228000,1),(1661,-950479200,2),(1661,-942012000,1),(1661,-904518000,3),(1661,-896050800,1),(1661,-875487600,3),(1661,-864601200,1),(1661,-844038000,3),(1661,-832546800,1),(1661,-812588400,3),(1661,-798073200,1),(1661,-781052400,3),(1661,-772066800,1),(1661,-764805600,2),(1661,-748476000,1),(1661,-733356000,2),(1661,-719445600,1),(1661,-717030000,3),(1661,-706748400,1),(1661,-699487200,2),(1661,-687996000,1),(1661,-668037600,2),(1661,-654732000,1),(1661,-636588000,2),(1661,-622072800,1),(1661,-605743200,2),(1661,-590623200,1),(1661,-574293600,2),(1661,-558568800,1),(1661,-542239200,2),(1661,-527119200,1),(1661,-512604000,2),(1661,-496274400,1),(1661,-481154400,2),(1661,-464220000,1),(1661,-449704800,2),(1661,-432165600,1),(1661,-417650400,2),(1661,-401320800,1),(1661,-386200800,2),(1661,-369266400,1),(1661,-354751200,2),(1661,-337816800,1),(1661,-323301600,2),(1661,-306972000,1),(1661,-291852000,2),(1661,-276732000,1),(1661,-257983200,2),(1661,-245282400,1),(1661,-226533600,2),(1661,-213228000,1),(1661,-195084000,2),(1661,-182383200,1),(1661,-163634400,2),(1661,-150933600,1),(1661,-132184800,2),(1661,-119484000,1),(1661,-100735200,2),(1661,-88034400,1),(1661,-68680800,2),(1661,-59004000,1),(1661,-37242000,4),(1661,57722400,6),(1661,69818400,1),(1661,89172001,2),(1661,101268002,1),(1661,120621602,2),(1661,132717603,1),(1661,152071203,2),(1661,164167204,1),(1661,183520804,2),(1661,196221605,1),(1661,214970405,2),(1661,227671206,1),(1661,246420006,2),(1661,259120807,1),(1661,278474407,2),(1661,290570408,1),(1661,309924008,2),(1661,322020009,1),(1661,341373609,2),(1661,354675609,5),(1661,372819610,6),(1661,386125210,5),(1661,404269211,6),(1661,417574811,5),(1661,435718812,6),(1661,449024412,5),(1661,467773212,6),(1661,481078812,5),(1661,499222813,6),(1661,512528413,5),(1661,530672413,6),(1661,543978013,5),(1661,562122013,6),(1661,575427614,5),(1661,593571614,6),(1661,606877214,5),(1661,625626014,6),(1661,638326815,5),(1661,657075615,6),(1661,670381216,5),(1661,688525216,6),(1661,701830816,5),(1661,719974817,6),(1661,733280417,5),(1661,751424418,6),(1661,764730018,5),(1661,782874019,6),(1661,796179619,5),(1661,814323619,6),(1661,820454420,7),(1661,828234020,5),(1661,846378020,6),(1661,859683620,5),(1661,877827621,6),(1661,891133221,5),(1661,909277221,6),(1661,922582822,5),(1661,941331622,6),(1661,954032422,5),(1661,972781222,6),(1661,985482022,5),(1661,1004230822,6),(1661,1017536422,5),(1661,1035680422,6),(1661,1048986022,5),(1661,1067130022,6),(1661,1080435622,5),(1661,1099184422,6),(1661,1111885222,5),(1661,1130634022,6),(1661,1143334823,5),(1661,1162083623,6),(1661,1174784423,5),(1661,1193533223,6),(1661,1206838823,5),(1661,1224982823,6),(1661,1238288424,5),(1661,1256432424,6),(1661,1269738024,5),(1661,1288486824,6),(1661,1301187624,5),(1661,1319936424,6),(1661,1332637224,5),(1661,1351386025,6),(1661,1364691625,5),(1661,1382835625,6),(1661,1396141225,5),(1661,1414285225,6),(1661,1427590825,5),(1661,1445734826,6),(1661,1459040426,5),(1661,1477789226,6),(1661,1490490027,5),(1661,1509238827,6),(1661,1521939627,5),(1661,1540688427,6),(1661,1553994027,5),(1661,1572138027,6),(1661,1585443627,5),(1661,1603587627,6),(1661,1616893227,5),(1661,1635642027,6),(1661,1648342827,5),(1661,1667091627,6),(1661,1679792427,5),(1661,1698541227,6),(1661,1711846827,5),(1661,1729990827,6),(1661,1743296427,5),(1661,1761440427,6),(1661,1774746027,5),(1661,1792890027,6),(1661,1806195627,5),(1661,1824944427,6),(1661,1837645227,5),(1661,1856394027,6),(1661,1869094827,5),(1661,1887843627,6),(1661,1901149227,5),(1661,1919293227,6),(1661,1932598827,5),(1661,1950742827,6),(1661,1964048427,5),(1661,1982797227,6),(1661,1995498027,5),(1661,2014246827,6),(1661,2026947627,5),(1661,2045696427,6),(1661,2058397227,5),(1661,2077146027,6),(1661,2090451627,5),(1661,2108595627,6),(1661,2121901227,5),(1661,2140045227,6),(1662,-2147483648,2),(1662,-1693706400,1),(1662,-1680483600,2),(1662,-1663455600,3),(1662,-1650150000,4),(1662,-1632006000,3),(1662,-1618700400,4),(1662,-938905200,3),(1662,-857257200,4),(1662,-844556400,3),(1662,-828226800,4),(1662,-812502000,3),(1662,-796777200,4),(1662,-781052400,3),(1662,-780372000,6),(1662,-778730400,5),(1662,-762663600,6),(1662,-749095200,8),(1662,354920409,7),(1662,370728010,8),(1662,386456410,7),(1662,402264011,8),(1662,417992411,7),(1662,433800012,8),(1662,449614812,7),(1662,465346812,9),(1662,481071612,10),(1662,496796413,9),(1662,512521213,10),(1662,528246013,9),(1662,543970813,10),(1662,559695613,9),(1662,575420414,10),(1662,591145214,9),(1662,606870014,11),(1662,622598414,12),(1662,638323215,11),(1662,654652815,12),(1662,670377616,11),(1662,686102416,12),(1662,701827216,11),(1662,717552017,12),(1662,733276817,11),(1662,749001618,12),(1662,764726418,11),(1662,780451219,12),(1662,796176019,11),(1662,811900819,12),(1662,828230420,11),(1662,846374420,12),(1662,859680020,11),(1662,877824021,12),(1662,891129621,11),(1662,909273621,12),(1662,922579222,11),(1662,941328022,12),(1662,954028822,11),(1662,972777622,12),(1662,985478422,11),(1662,1004227222,12),(1662,1017532822,11),(1662,1035676822,12),(1662,1048982422,11),(1662,1067126422,12),(1662,1080432022,11),(1662,1099180822,12),(1662,1111881622,11),(1662,1130630422,12),(1662,1143331223,11),(1662,1162080023,12),(1662,1174780823,11),(1662,1193529623,12),(1662,1206835223,11),(1662,1224979223,12),(1662,1238284824,11),(1662,1256428824,12),(1662,1269734424,11),(1662,1288483224,12),(1662,1301184024,13),(1662,1414278025,12),(1663,-2147483648,1),(1663,-1441159324,2),(1663,-1247536800,3),(1663,-892522800,6),(1663,-857257200,4),(1663,-844556400,5),(1663,-828226800,4),(1663,-825382800,3),(1663,354920409,7),(1663,370728010,3),(1663,386456410,7),(1663,402264011,3),(1663,417992411,7),(1663,433800012,3),(1663,449614812,7),(1663,465346812,8),(1663,481071612,9),(1663,496796413,8),(1663,512521213,9),(1663,528246013,8),(1663,543970813,9),(1663,559695613,8),(1663,575420414,9),(1663,591145214,8),(1663,606870014,9),(1663,622594814,8),(1663,638319615,9),(1663,646783215,10),(1663,686102416,2),(1663,701820016,10),(1663,717541217,2),(1663,733269617,10),(1663,748990818,2),(1663,764719218,10),(1663,780440419,2),(1663,796179619,11),(1663,811904419,12),(1663,828234020,11),(1663,846378020,12),(1663,859683620,11),(1663,877827621,12),(1663,891133221,11),(1663,909277221,12),(1663,922582822,11),(1663,941331622,12),(1663,954032422,11),(1663,972781222,12),(1663,985482022,11),(1663,1004230822,12),(1663,1017536422,11),(1663,1035680422,12),(1663,1048986022,11),(1663,1067130022,12),(1663,1080435622,11),(1663,1099184422,12),(1663,1111885222,11),(1663,1130634022,12),(1663,1143334823,11),(1663,1162083623,12),(1663,1174784423,11),(1663,1193533223,12),(1663,1206838823,11),(1663,1224982823,12),(1663,1238288424,11),(1663,1256432424,12),(1663,1269738024,11),(1663,1288486824,12),(1663,1301187624,11),(1663,1319936424,12),(1663,1332637224,11),(1663,1351386025,12),(1663,1364691625,11),(1663,1382835625,12),(1663,1396141225,11),(1663,1414285225,12),(1663,1427590825,11),(1663,1445734826,12),(1663,1459040426,11),(1663,1477789226,12),(1663,1490490027,11),(1663,1509238827,12),(1663,1521939627,11),(1663,1540688427,12),(1663,1553994027,11),(1663,1572138027,12),(1663,1585443627,11),(1663,1603587627,12),(1663,1616893227,11),(1663,1635642027,12),(1663,1648342827,11),(1663,1667091627,12),(1663,1679792427,11),(1663,1698541227,12),(1663,1711846827,11),(1663,1729990827,12),(1663,1743296427,11),(1663,1761440427,12),(1663,1774746027,11),(1663,1792890027,12),(1663,1806195627,11),(1663,1824944427,12),(1663,1837645227,11),(1663,1856394027,12),(1663,1869094827,11),(1663,1887843627,12),(1663,1901149227,11),(1663,1919293227,12),(1663,1932598827,11),(1663,1950742827,12),(1663,1964048427,11),(1663,1982797227,12),(1663,1995498027,11),(1663,2014246827,12),(1663,2026947627,11),(1663,2045696427,12),(1663,2058397227,11),(1663,2077146027,12),(1663,2090451627,11),(1663,2108595627,12),(1663,2121901227,11),(1663,2140045227,12),(1664,-2147483648,0),(1664,-1593820800,1),(1664,-1247540400,3),(1664,354916809,2),(1664,370724410,3),(1664,386452810,2),(1664,402260411,3),(1664,417988811,2),(1664,433796412,3),(1664,449611212,2),(1664,465343212,4),(1664,481068012,5),(1664,496792813,4),(1664,512517613,5),(1664,528242413,4),(1664,543967213,5),(1664,559692013,4),(1664,575416814,5),(1664,591141614,4),(1664,606866414,6),(1664,622594814,7),(1664,638319615,6),(1664,654649215,7),(1664,670374016,4),(1664,701820016,6),(1664,717548417,7),(1664,733273217,6),(1664,748998018,7),(1664,764722818,6),(1664,780447619,7),(1664,796172419,6),(1664,811897219,7),(1664,828226820,6),(1664,846370820,7),(1664,859676420,6),(1664,877820421,7),(1664,891126021,6),(1664,909270021,7),(1664,922575622,6),(1664,941324422,7),(1664,954025222,6),(1664,972774022,7),(1664,985474822,6),(1664,1004223622,7),(1664,1017529222,6),(1664,1035673222,7),(1664,1048978822,6),(1664,1067122822,7),(1664,1080428422,6),(1664,1099177222,7),(1664,1111878022,6),(1664,1130626822,7),(1664,1143327623,6),(1664,1162076423,7),(1664,1174777223,6),(1664,1193526023,7),(1664,1206831623,6),(1664,1224975623,7),(1664,1238281224,6),(1664,1256425224,7),(1664,1269730824,6),(1664,1288479624,7),(1664,1301180424,4),(1664,1414274425,7),(1665,-2147483648,0),(1665,-1830384000,6),(1665,-1689555600,1),(1665,-1677801600,2),(1665,-1667437200,3),(1665,-1647738000,4),(1665,-1635814800,3),(1665,-1616202000,4),(1665,-1604365200,3),(1665,-1584666000,4),(1665,-1572742800,3),(1665,-1553043600,4),(1665,-1541206800,3),(1665,-1521507600,4),(1665,-1442451600,3),(1665,-1426813200,4),(1665,-1379293200,3),(1665,-1364778000,4),(1665,-1348448400,3),(1665,-1333328400,4),(1665,-1316394000,3),(1665,-1301274000,4),(1665,-1284339600,3),(1665,-1269824400,4),(1665,-1221440400,3),(1665,-1206925200,4),(1665,-1191200400,3),(1665,-1175475600,4),(1665,-1127696400,3),(1665,-1111971600,4),(1665,-1096851600,3),(1665,-1080522000,4),(1665,-1063587600,3),(1665,-1049072400,4),(1665,-1033347600,3),(1665,-1017622800,4),(1665,-1002502800,3),(1665,-986173200,4),(1665,-969238800,3),(1665,-950490000,4),(1665,-942022800,3),(1665,-922669200,4),(1665,-906944400,3),(1665,-891133200,4),(1665,-877309200,3),(1665,-873684000,5),(1665,-864007200,3),(1665,-857955600,4),(1665,-845859600,3),(1665,-842839200,5),(1665,-831348000,3),(1665,-825901200,4),(1665,-814410000,3),(1665,-810784800,5),(1665,-799898400,3),(1665,-794451600,4),(1665,-782960400,3),(1665,-779335200,5),(1665,-768448800,3),(1665,-763002000,4),(1665,-749091600,3),(1665,-733366800,4),(1665,-717631200,3),(1665,-701906400,4),(1665,-686181600,3),(1665,-670456800,4),(1665,-654732000,3),(1665,-639007200,4),(1665,-591832800,3),(1665,-575503200,4),(1665,-559778400,3),(1665,-544053600,4),(1665,-528328800,3),(1665,-512604000,4),(1665,-496879200,3),(1665,-481154400,4),(1665,-465429600,3),(1665,-449704800,4),(1665,-433980000,3),(1665,-417650400,4),(1665,-401925600,3),(1665,-386200800,4),(1665,-370476000,3),(1665,-354751200,4),(1665,-339026400,3),(1665,-323301600,4),(1665,-307576800,3),(1665,-291852000,4),(1665,-276127200,3),(1665,-260402400,4),(1665,-244677600,3),(1665,-228348000,4),(1665,-212623200,3),(1665,-196898400,4),(1665,-181173600,3),(1665,-165448800,4),(1665,-149724000,3),(1665,-133999200,4),(1665,-118274400,7),(1665,212544005,2),(1665,228268806,3),(1665,243993606,4),(1665,260323207,3),(1665,276048007,4),(1665,291772808,3),(1665,307501208,4),(1665,323222409,3),(1665,338950809,4),(1665,354675609,3),(1665,370400410,4),(1665,386125210,3),(1665,401850011,4),(1665,417578411,3),(1665,433299612,4),(1665,449024412,3),(1665,465354012,4),(1665,481078812,3),(1665,496803613,4),(1665,512528413,3),(1665,528253213,4),(1665,543978013,3),(1665,559702813,4),(1665,575427614,3),(1665,591152414,4),(1665,606877214,3),(1665,622602014,4),(1665,638326815,3),(1665,654656415,4),(1665,670381216,3),(1665,686106016,4),(1665,701830816,3),(1665,717555617,8),(1665,733280417,9),(1665,749005218,8),(1665,764730018,9),(1665,780454819,8),(1665,796179619,9),(1665,811904419,8),(1665,828234020,10),(1665,846378020,6),(1665,859683620,10),(1665,877827621,6),(1665,891133221,10),(1665,909277221,6),(1665,922582822,10),(1665,941331622,6),(1665,954032422,10),(1665,972781222,6),(1665,985482022,10),(1665,1004230822,6),(1665,1017536422,10),(1665,1035680422,6),(1665,1048986022,10),(1665,1067130022,6),(1665,1080435622,10),(1665,1099184422,6),(1665,1111885222,10),(1665,1130634022,6),(1665,1143334823,10),(1665,1162083623,6),(1665,1174784423,10),(1665,1193533223,6),(1665,1206838823,10),(1665,1224982823,6),(1665,1238288424,10),(1665,1256432424,6),(1665,1269738024,10),(1665,1288486824,6),(1665,1301187624,10),(1665,1319936424,6),(1665,1332637224,10),(1665,1351386025,6),(1665,1364691625,10),(1665,1382835625,6),(1665,1396141225,10),(1665,1414285225,6),(1665,1427590825,10),(1665,1445734826,6),(1665,1459040426,10),(1665,1477789226,6),(1665,1490490027,10),(1665,1509238827,6),(1665,1521939627,10),(1665,1540688427,6),(1665,1553994027,10),(1665,1572138027,6),(1665,1585443627,10),(1665,1603587627,6),(1665,1616893227,10),(1665,1635642027,6),(1665,1648342827,10),(1665,1667091627,6),(1665,1679792427,10),(1665,1698541227,6),(1665,1711846827,10),(1665,1729990827,6),(1665,1743296427,10),(1665,1761440427,6),(1665,1774746027,10),(1665,1792890027,6),(1665,1806195627,10),(1665,1824944427,6),(1665,1837645227,10),(1665,1856394027,6),(1665,1869094827,10),(1665,1887843627,6),(1665,1901149227,10),(1665,1919293227,6),(1665,1932598827,10),(1665,1950742827,6),(1665,1964048427,10),(1665,1982797227,6),(1665,1995498027,10),(1665,2014246827,6),(1665,2026947627,10),(1665,2045696427,6),(1665,2058397227,10),(1665,2077146027,6),(1665,2090451627,10),(1665,2108595627,6),(1665,2121901227,10),(1665,2140045227,6),(1666,-2147483648,1),(1666,-905824800,4),(1666,-857257200,2),(1666,-844556400,3),(1666,-828226800,2),(1666,-812502000,3),(1666,-796777200,2),(1666,-788922000,1),(1666,-777942000,3),(1666,-766623600,2),(1666,407199611,1),(1666,417574811,5),(1666,433299612,6),(1666,449024412,5),(1666,465354012,6),(1666,481078812,5),(1666,496803613,6),(1666,512528413,5),(1666,528253213,6),(1666,543978013,5),(1666,559702813,6),(1666,575427614,5),(1666,591152414,6),(1666,606877214,5),(1666,622602014,6),(1666,638326815,5),(1666,654656415,6),(1666,670381216,5),(1666,686106016,6),(1666,701830816,5),(1666,717555617,6),(1666,733280417,5),(1666,749005218,6),(1666,764730018,5),(1666,780454819,6),(1666,796179619,5),(1666,811904419,6),(1666,828234020,5),(1666,846378020,6),(1666,859683620,5),(1666,877827621,6),(1666,891133221,5),(1666,909277221,6),(1666,922582822,5),(1666,941331622,6),(1666,954032422,5),(1666,972781222,6),(1666,985482022,5),(1666,1004230822,6),(1666,1017536422,5),(1666,1035680422,6),(1666,1048986022,5),(1666,1067130022,6),(1666,1080435622,5),(1666,1099184422,6),(1666,1111885222,5),(1666,1130634022,6),(1666,1143334823,5),(1666,1162083623,6),(1666,1174784423,5),(1666,1193533223,6),(1666,1206838823,5),(1666,1224982823,6),(1666,1238288424,5),(1666,1256432424,6),(1666,1269738024,5),(1666,1288486824,6),(1666,1301187624,5),(1666,1319936424,6),(1666,1332637224,5),(1666,1351386025,6),(1666,1364691625,5),(1666,1382835625,6),(1666,1396141225,5),(1666,1414285225,6),(1666,1427590825,5),(1666,1445734826,6),(1666,1459040426,5),(1666,1477789226,6),(1666,1490490027,5),(1666,1509238827,6),(1666,1521939627,5),(1666,1540688427,6),(1666,1553994027,5),(1666,1572138027,6),(1666,1585443627,5),(1666,1603587627,6),(1666,1616893227,5),(1666,1635642027,6),(1666,1648342827,5),(1666,1667091627,6),(1666,1679792427,5),(1666,1698541227,6),(1666,1711846827,5),(1666,1729990827,6),(1666,1743296427,5),(1666,1761440427,6),(1666,1774746027,5),(1666,1792890027,6),(1666,1806195627,5),(1666,1824944427,6),(1666,1837645227,5),(1666,1856394027,6),(1666,1869094827,5),(1666,1887843627,6),(1666,1901149227,5),(1666,1919293227,6),(1666,1932598827,5),(1666,1950742827,6),(1666,1964048427,5),(1666,1982797227,6),(1666,1995498027,5),(1666,2014246827,6),(1666,2026947627,5),(1666,2045696427,6),(1666,2058397227,5),(1666,2077146027,6),(1666,2090451627,5),(1666,2108595627,6),(1666,2121901227,5),(1666,2140045227,6),(1667,-2147483648,2),(1667,-1691964000,1),(1667,-1680472800,2),(1667,-1664143200,1),(1667,-1650146400,2),(1667,-1633903200,1),(1667,-1617487200,2),(1667,-1601848800,1),(1667,-1586037600,2),(1667,-1570399200,1),(1667,-1552168800,2),(1667,-1538344800,1),(1667,-1522533600,2),(1667,-1507500000,1),(1667,-1490565600,2),(1667,-1473631200,1),(1667,-1460930400,2),(1667,-1442786400,1),(1667,-1428876000,2),(1667,-1410732000,1),(1667,-1396216800,2),(1667,-1379282400,1),(1667,-1364767200,2),(1667,-1348437600,1),(1667,-1333317600,2),(1667,-1315778400,1),(1667,-1301263200,2),(1667,-1284328800,1),(1667,-1269813600,2),(1667,-1253484000,1),(1667,-1238364000,2),(1667,-1221429600,1),(1667,-1206914400,2),(1667,-1189980000,1),(1667,-1175464800,2),(1667,-1159135200,1),(1667,-1143410400,2),(1667,-1126476000,1),(1667,-1111960800,2),(1667,-1095631200,1),(1667,-1080511200,2),(1667,-1063576800,1),(1667,-1049061600,2),(1667,-1032127200,1),(1667,-1017612000,2),(1667,-1001282400,1),(1667,-986162400,2),(1667,-969228000,1),(1667,-950479200,2),(1667,-942012000,1),(1667,-904518000,3),(1667,-896050800,1),(1667,-875487600,3),(1667,-864601200,1),(1667,-844038000,3),(1667,-832546800,1),(1667,-812588400,3),(1667,-798073200,1),(1667,-781052400,3),(1667,-772066800,1),(1667,-764805600,2),(1667,-748476000,1),(1667,-733356000,2),(1667,-719445600,1),(1667,-717030000,3),(1667,-706748400,1),(1667,-699487200,2),(1667,-687996000,1),(1667,-668037600,2),(1667,-654732000,1),(1667,-636588000,2),(1667,-622072800,1),(1667,-605743200,2),(1667,-590623200,1),(1667,-574293600,2),(1667,-558568800,1),(1667,-542239200,2),(1667,-527119200,1),(1667,-512604000,2),(1667,-496274400,1),(1667,-481154400,2),(1667,-464220000,1),(1667,-449704800,2),(1667,-432165600,1),(1667,-417650400,2),(1667,-401320800,1),(1667,-386200800,2),(1667,-369266400,1),(1667,-354751200,2),(1667,-337816800,1),(1667,-323301600,2),(1667,-306972000,1),(1667,-291852000,2),(1667,-276732000,1),(1667,-257983200,2),(1667,-245282400,1),(1667,-226533600,2),(1667,-213228000,1),(1667,-195084000,2),(1667,-182383200,1),(1667,-163634400,2),(1667,-150933600,1),(1667,-132184800,2),(1667,-119484000,1),(1667,-100735200,2),(1667,-88034400,1),(1667,-68680800,2),(1667,-59004000,1),(1667,-37242000,4),(1667,57722400,6),(1667,69818400,1),(1667,89172001,2),(1667,101268002,1),(1667,120621602,2),(1667,132717603,1),(1667,152071203,2),(1667,164167204,1),(1667,183520804,2),(1667,196221605,1),(1667,214970405,2),(1667,227671206,1),(1667,246420006,2),(1667,259120807,1),(1667,278474407,2),(1667,290570408,1),(1667,309924008,2),(1667,322020009,1),(1667,341373609,2),(1667,354675609,5),(1667,372819610,6),(1667,386125210,5),(1667,404269211,6),(1667,417574811,5),(1667,435718812,6),(1667,449024412,5),(1667,467773212,6),(1667,481078812,5),(1667,499222813,6),(1667,512528413,5),(1667,530672413,6),(1667,543978013,5),(1667,562122013,6),(1667,575427614,5),(1667,593571614,6),(1667,606877214,5),(1667,625626014,6),(1667,638326815,5),(1667,657075615,6),(1667,670381216,5),(1667,688525216,6),(1667,701830816,5),(1667,719974817,6),(1667,733280417,5),(1667,751424418,6),(1667,764730018,5),(1667,782874019,6),(1667,796179619,5),(1667,814323619,6),(1667,820454420,7),(1667,828234020,5),(1667,846378020,6),(1667,859683620,5),(1667,877827621,6),(1667,891133221,5),(1667,909277221,6),(1667,922582822,5),(1667,941331622,6),(1667,954032422,5),(1667,972781222,6),(1667,985482022,5),(1667,1004230822,6),(1667,1017536422,5),(1667,1035680422,6),(1667,1048986022,5),(1667,1067130022,6),(1667,1080435622,5),(1667,1099184422,6),(1667,1111885222,5),(1667,1130634022,6),(1667,1143334823,5),(1667,1162083623,6),(1667,1174784423,5),(1667,1193533223,6),(1667,1206838823,5),(1667,1224982823,6),(1667,1238288424,5),(1667,1256432424,6),(1667,1269738024,5),(1667,1288486824,6),(1667,1301187624,5),(1667,1319936424,6),(1667,1332637224,5),(1667,1351386025,6),(1667,1364691625,5),(1667,1382835625,6),(1667,1396141225,5),(1667,1414285225,6),(1667,1427590825,5),(1667,1445734826,6),(1667,1459040426,5),(1667,1477789226,6),(1667,1490490027,5),(1667,1509238827,6),(1667,1521939627,5),(1667,1540688427,6),(1667,1553994027,5),(1667,1572138027,6),(1667,1585443627,5),(1667,1603587627,6),(1667,1616893227,5),(1667,1635642027,6),(1667,1648342827,5),(1667,1667091627,6),(1667,1679792427,5),(1667,1698541227,6),(1667,1711846827,5),(1667,1729990827,6),(1667,1743296427,5),(1667,1761440427,6),(1667,1774746027,5),(1667,1792890027,6),(1667,1806195627,5),(1667,1824944427,6),(1667,1837645227,5),(1667,1856394027,6),(1667,1869094827,5),(1667,1887843627,6),(1667,1901149227,5),(1667,1919293227,6),(1667,1932598827,5),(1667,1950742827,6),(1667,1964048427,5),(1667,1982797227,6),(1667,1995498027,5),(1667,2014246827,6),(1667,2026947627,5),(1667,2045696427,6),(1667,2058397227,5),(1667,2077146027,6),(1667,2090451627,5),(1667,2108595627,6),(1667,2121901227,5),(1667,2140045227,6),(1668,-2147483648,0),(1668,-2069713476,2),(1668,-1692496800,1),(1668,-1680483600,2),(1668,-1662343200,1),(1668,-1650157200,2),(1668,-1632006000,3),(1668,-1618700400,4),(1668,-1612659600,6),(1668,-1604278800,5),(1668,-1585519200,6),(1668,-1574038800,5),(1668,-1552258800,6),(1668,-1539997200,5),(1668,-1520550000,6),(1668,-1507510800,5),(1668,-1490572800,6),(1668,-1473642000,5),(1668,-1459119600,6),(1668,-1444006800,5),(1668,-1427673600,6),(1668,-1411866000,5),(1668,-1396224000,6),(1668,-1379293200,5),(1668,-1364774400,6),(1668,-1348448400,5),(1668,-1333324800,6),(1668,-1316394000,5),(1668,-1301270400,6),(1668,-1284339600,5),(1668,-1269813600,7),(1668,-1253484000,8),(1668,-1238364000,7),(1668,-1221429600,8),(1668,-1206914400,7),(1668,-1191189600,8),(1668,-1175464800,7),(1668,-1160344800,8),(1668,-1143410400,7),(1668,-1127685600,8),(1668,-1111960800,7),(1668,-1096840800,8),(1668,-1080511200,7),(1668,-1063576800,8),(1668,-1049061600,7),(1668,-1033336800,8),(1668,-1017612000,7),(1668,-1002492000,8),(1668,-986162400,7),(1668,-969228000,8),(1668,-950479200,7),(1668,-942012000,8),(1668,-935186400,11),(1668,-857257200,9),(1668,-844556400,10),(1668,-828226800,9),(1668,-812502000,10),(1668,-797986800,2),(1668,-781052400,3),(1668,-766623600,4),(1668,-745455600,3),(1668,-733273200,4),(1668,220921205,2),(1668,228877206,12),(1668,243997206,13),(1668,260326807,12),(1668,276051607,13),(1668,291776408,12),(1668,307501208,13),(1668,323830809,12),(1668,338950809,13),(1668,354675609,12),(1668,370400410,13),(1668,386125210,12),(1668,401850011,13),(1668,417574811,12),(1668,433299612,13),(1668,449024412,12),(1668,465354012,13),(1668,481078812,12),(1668,496803613,13),(1668,512528413,12),(1668,528253213,13),(1668,543978013,12),(1668,559702813,13),(1668,575427614,12),(1668,591152414,13),(1668,606877214,12),(1668,622602014,13),(1668,638326815,12),(1668,654656415,13),(1668,670381216,12),(1668,686106016,13),(1668,701830816,12),(1668,717555617,13),(1668,733280417,12),(1668,749005218,13),(1668,764730018,12),(1668,780454819,13),(1668,796179619,12),(1668,811904419,13),(1668,828234020,12),(1668,846378020,13),(1668,859683620,12),(1668,877827621,13),(1668,891133221,12),(1668,909277221,13),(1668,922582822,12),(1668,941331622,13),(1668,954032422,12),(1668,972781222,13),(1668,985482022,12),(1668,1004230822,13),(1668,1017536422,12),(1668,1035680422,13),(1668,1048986022,12),(1668,1067130022,13),(1668,1080435622,12),(1668,1099184422,13),(1668,1111885222,12),(1668,1130634022,13),(1668,1143334823,12),(1668,1162083623,13),(1668,1174784423,12),(1668,1193533223,13),(1668,1206838823,12),(1668,1224982823,13),(1668,1238288424,12),(1668,1256432424,13),(1668,1269738024,12),(1668,1288486824,13),(1668,1301187624,12),(1668,1319936424,13),(1668,1332637224,12),(1668,1351386025,13),(1668,1364691625,12),(1668,1382835625,13),(1668,1396141225,12),(1668,1414285225,13),(1668,1427590825,12),(1668,1445734826,13),(1668,1459040426,12),(1668,1477789226,13),(1668,1490490027,12),(1668,1509238827,13),(1668,1521939627,12),(1668,1540688427,13),(1668,1553994027,12),(1668,1572138027,13),(1668,1585443627,12),(1668,1603587627,13),(1668,1616893227,12),(1668,1635642027,13),(1668,1648342827,12),(1668,1667091627,13),(1668,1679792427,12),(1668,1698541227,13),(1668,1711846827,12),(1668,1729990827,13),(1668,1743296427,12),(1668,1761440427,13),(1668,1774746027,12),(1668,1792890027,13),(1668,1806195627,12),(1668,1824944427,13),(1668,1837645227,12),(1668,1856394027,13),(1668,1869094827,12),(1668,1887843627,13),(1668,1901149227,12),(1668,1919293227,13),(1668,1932598827,12),(1668,1950742827,13),(1668,1964048427,12),(1668,1982797227,13),(1668,1995498027,12),(1668,2014246827,13),(1668,2026947627,12),(1668,2045696427,13),(1668,2058397227,12),(1668,2077146027,13),(1668,2090451627,12),(1668,2108595627,13),(1668,2121901227,12),(1668,2140045227,13),(1669,-2147483648,4),(1669,-1631926800,1),(1669,-1616889600,2),(1669,-1601168400,1),(1669,-1585353600,2),(1669,-1442451600,1),(1669,-1427673600,2),(1669,-1379293200,1),(1669,-1364774400,2),(1669,-1348448400,1),(1669,-1333324800,2),(1669,-1316390400,1),(1669,-1301270400,2),(1669,-1284339600,1),(1669,-1269820800,2),(1669,-1026954000,1),(1669,-1017619200,2),(1669,-1001898000,1),(1669,-999482400,3),(1669,-986090400,1),(1669,-954115200,2),(1669,-940208400,6),(1669,-873079200,5),(1669,-862621200,6),(1669,-842839200,5),(1669,-828320400,6),(1669,-811389600,5),(1669,-796870800,6),(1669,-779940000,5),(1669,-765421200,6),(1669,-748490400,5),(1669,-733971600,6),(1669,-652327200,5),(1669,-639018000,6),(1669,135122403,5),(1669,150246003,6),(1669,166572004,5),(1669,181695604,6),(1669,196812005,5),(1669,212540405,6),(1669,228866406,5),(1669,243990006,6),(1669,260326807,7),(1669,276051607,8),(1669,283993207,6),(1669,291776408,9),(1669,307501208,10),(1669,323830809,9),(1669,338950809,10),(1669,354675609,9),(1669,370400410,10),(1669,386125210,9),(1669,401850011,10),(1669,417574811,9),(1669,433299612,10),(1669,449024412,9),(1669,465354012,10),(1669,481078812,9),(1669,496803613,10),(1669,512528413,9),(1669,528253213,10),(1669,543978013,9),(1669,559702813,10),(1669,575427614,9),(1669,591152414,10),(1669,606877214,9),(1669,622602014,10),(1669,638326815,9),(1669,654656415,10),(1669,670381216,9),(1669,686106016,10),(1669,701830816,9),(1669,717555617,10),(1669,733280417,9),(1669,749005218,10),(1669,764730018,9),(1669,780454819,10),(1669,796179619,9),(1669,811904419,10),(1669,828234020,9),(1669,846378020,10),(1669,859683620,9),(1669,877827621,10),(1669,891133221,9),(1669,909277221,10),(1669,922582822,9),(1669,941331622,10),(1669,954032422,9),(1669,972781222,10),(1669,985482022,9),(1669,1004230822,10),(1669,1017536422,9),(1669,1035680422,10),(1669,1048986022,9),(1669,1067130022,10),(1669,1080435622,9),(1669,1099184422,10),(1669,1111885222,9),(1669,1130634022,10),(1669,1143334823,9),(1669,1162083623,10),(1669,1174784423,9),(1669,1193533223,10),(1669,1206838823,9),(1669,1224982823,10),(1669,1238288424,9),(1669,1256432424,10),(1669,1269738024,9),(1669,1288486824,10),(1669,1301187624,9),(1669,1319936424,10),(1669,1332637224,9),(1669,1351386025,10),(1669,1364691625,9),(1669,1382835625,10),(1669,1396141225,9),(1669,1414285225,10),(1669,1427590825,9),(1669,1445734826,10),(1669,1459040426,9),(1669,1477789226,10),(1669,1490490027,9),(1669,1509238827,10),(1669,1521939627,9),(1669,1540688427,10),(1669,1553994027,9),(1669,1572138027,10),(1669,1585443627,9),(1669,1603587627,10),(1669,1616893227,9),(1669,1635642027,10),(1669,1648342827,9),(1669,1667091627,10),(1669,1679792427,9),(1669,1698541227,10),(1669,1711846827,9),(1669,1729990827,10),(1669,1743296427,9),(1669,1761440427,10),(1669,1774746027,9),(1669,1792890027,10),(1669,1806195627,9),(1669,1824944427,10),(1669,1837645227,9),(1669,1856394027,10),(1669,1869094827,9),(1669,1887843627,10),(1669,1901149227,9),(1669,1919293227,10),(1669,1932598827,9),(1669,1950742827,10),(1669,1964048427,9),(1669,1982797227,10),(1669,1995498027,9),(1669,2014246827,10),(1669,2026947627,9),(1669,2045696427,10),(1669,2058397227,9),(1669,2077146027,10),(1669,2090451627,9),(1669,2108595627,10),(1669,2121901227,9),(1669,2140045227,10),(1670,-2147483648,3),(1670,-1690765200,1),(1670,-1680487200,2),(1670,-1664758800,1),(1670,-1648951200,2),(1670,-1635123600,1),(1670,-1616896800,2),(1670,-1604278800,1),(1670,-1585533600,2),(1670,-1571014800,1),(1670,-1555293600,2),(1670,-932432400,1),(1670,-857257200,3),(1670,-844556400,4),(1670,-828226800,3),(1670,-812588400,4),(1670,-798073200,3),(1670,-781052400,1),(1670,-766717200,2),(1670,-750898800,4),(1670,-733359600,3),(1670,-719456400,4),(1670,-701917200,3),(1670,-689209200,4),(1670,-670460400,3),(1670,-114051600,4),(1670,-103168800,2),(1670,-81997200,4),(1670,-71715600,3),(1670,-50547600,4),(1670,-40266000,3),(1670,-18493200,4),(1670,-8211600,3),(1670,12956400,4),(1670,23238000,3),(1670,43801200,4),(1670,54687600,3),(1670,75855600,4),(1670,86742001,3),(1670,102380402,4),(1670,118105202,3),(1670,135730803,4),(1670,148518003,3),(1670,167187604,1),(1670,180489604,2),(1670,198637205,1),(1670,211939205,2),(1670,230086806,1),(1670,243388806,2),(1670,261536407,1),(1670,274838407,2),(1670,292986008,1),(1670,306288008,2),(1670,323312409,1),(1670,338342409,2),(1670,354675609,5),(1670,370400410,6),(1670,386125210,5),(1670,401850011,6),(1670,417574811,5),(1670,433299612,6),(1670,449024412,5),(1670,465354012,6),(1670,481078812,5),(1670,496803613,6),(1670,512528413,5),(1670,528253213,6),(1670,543978013,5),(1670,559702813,6),(1670,575427614,5),(1670,591152414,6),(1670,606877214,5),(1670,622602014,6),(1670,638326815,5),(1670,654656415,6),(1670,670381216,5),(1670,686106016,6),(1670,701830816,5),(1670,717555617,6),(1670,733280417,5),(1670,749005218,6),(1670,764730018,5),(1670,780454819,6),(1670,796179619,5),(1670,811904419,6),(1670,828234020,5),(1670,846378020,6),(1670,859683620,5),(1670,877827621,6),(1670,891133221,5),(1670,909277221,6),(1670,922582822,5),(1670,941331622,6),(1670,954032422,5),(1670,972781222,6),(1670,985482022,5),(1670,1004230822,6),(1670,1017536422,5),(1670,1035680422,6),(1670,1048986022,5),(1670,1067130022,6),(1670,1080435622,5),(1670,1099184422,6),(1670,1111885222,5),(1670,1130634022,6),(1670,1143334823,5),(1670,1162083623,6),(1670,1174784423,5),(1670,1193533223,6),(1670,1206838823,5),(1670,1224982823,6),(1670,1238288424,5),(1670,1256432424,6),(1670,1269738024,5),(1670,1288486824,6),(1670,1301187624,5),(1670,1319936424,6),(1670,1332637224,5),(1670,1351386025,6),(1670,1364691625,5),(1670,1382835625,6),(1670,1396141225,5),(1670,1414285225,6),(1670,1427590825,5),(1670,1445734826,6),(1670,1459040426,5),(1670,1477789226,6),(1670,1490490027,5),(1670,1509238827,6),(1670,1521939627,5),(1670,1540688427,6),(1670,1553994027,5),(1670,1572138027,6),(1670,1585443627,5),(1670,1603587627,6),(1670,1616893227,5),(1670,1635642027,6),(1670,1648342827,5),(1670,1667091627,6),(1670,1679792427,5),(1670,1698541227,6),(1670,1711846827,5),(1670,1729990827,6),(1670,1743296427,5),(1670,1761440427,6),(1670,1774746027,5),(1670,1792890027,6),(1670,1806195627,5),(1670,1824944427,6),(1670,1837645227,5),(1670,1856394027,6),(1670,1869094827,5),(1670,1887843627,6),(1670,1901149227,5),(1670,1919293227,6),(1670,1932598827,5),(1670,1950742827,6),(1670,1964048427,5),(1670,1982797227,6),(1670,1995498027,5),(1670,2014246827,6),(1670,2026947627,5),(1670,2045696427,6),(1670,2058397227,5),(1670,2077146027,6),(1670,2090451627,5),(1670,2108595627,6),(1670,2121901227,5),(1670,2140045227,6),(1671,-2147483648,1),(1671,-1535938789,3),(1671,-875671200,2),(1671,-859773600,3),(1671,354672009,2),(1671,370396810,3),(1671,386121610,2),(1671,401846411,3),(1671,417574811,4),(1671,433299612,5),(1671,449024412,4),(1671,465354012,5),(1671,481078812,4),(1671,496803613,5),(1671,512528413,4),(1671,528253213,5),(1671,543978013,4),(1671,559702813,5),(1671,575427614,4),(1671,591152414,5),(1671,606877214,4),(1671,622602014,5),(1671,638326815,4),(1671,654656415,5),(1671,670381216,4),(1671,686106016,5),(1671,701830816,4),(1671,717555617,5),(1671,733280417,4),(1671,749005218,5),(1671,764730018,4),(1671,780454819,5),(1671,796179619,4),(1671,811904419,5),(1671,828234020,4),(1671,846378020,5),(1671,859683620,4),(1671,877827621,5),(1671,891133221,4),(1671,909277221,5),(1671,922582822,4),(1671,941331622,5),(1671,954032422,4),(1671,972781222,5),(1671,985482022,4),(1671,1004230822,5),(1671,1017536422,4),(1671,1035680422,5),(1671,1048986022,4),(1671,1067130022,5),(1671,1080435622,4),(1671,1099184422,5),(1671,1111885222,4),(1671,1130634022,5),(1671,1143334823,4),(1671,1162083623,5),(1671,1174784423,4),(1671,1193533223,5),(1671,1206838823,4),(1671,1224982823,5),(1671,1238288424,4),(1671,1256432424,5),(1671,1269738024,4),(1671,1288486824,5),(1671,1301187624,4),(1671,1319936424,5),(1671,1332637224,4),(1671,1351386025,5),(1671,1364691625,4),(1671,1382835625,5),(1671,1396141225,4),(1671,1414285225,5),(1671,1427590825,4),(1671,1445734826,5),(1671,1459040426,4),(1671,1477789226,5),(1671,1490490027,4),(1671,1509238827,5),(1671,1521939627,4),(1671,1540688427,5),(1671,1553994027,4),(1671,1572138027,5),(1671,1585443627,4),(1671,1603587627,5),(1671,1616893227,4),(1671,1635642027,5),(1671,1648342827,4),(1671,1667091627,5),(1671,1679792427,4),(1671,1698541227,5),(1671,1711846827,4),(1671,1729990827,5),(1671,1743296427,4),(1671,1761440427,5),(1671,1774746027,4),(1671,1792890027,5),(1671,1806195627,4),(1671,1824944427,5),(1671,1837645227,4),(1671,1856394027,5),(1671,1869094827,4),(1671,1887843627,5),(1671,1901149227,4),(1671,1919293227,5),(1671,1932598827,4),(1671,1950742827,5),(1671,1964048427,4),(1671,1982797227,5),(1671,1995498027,4),(1671,2014246827,5),(1671,2026947627,4),(1671,2045696427,5),(1671,2058397227,4),(1671,2077146027,5),(1671,2090451627,4),(1671,2108595627,5),(1671,2121901227,4),(1671,2140045227,5),(1672,-2147483648,1),(1672,-1441158600,2),(1672,-1247536800,3),(1672,-899780400,6),(1672,-857257200,4),(1672,-844556400,5),(1672,-828226800,4),(1672,-812502000,5),(1672,-804650400,3),(1672,354920409,7),(1672,370728010,3),(1672,386456410,7),(1672,402264011,3),(1672,417992411,7),(1672,433800012,3),(1672,449614812,7),(1672,465346812,8),(1672,481071612,9),(1672,496796413,8),(1672,512521213,9),(1672,528246013,8),(1672,543970813,9),(1672,559695613,8),(1672,575420414,9),(1672,591145214,8),(1672,606870014,9),(1672,622594814,8),(1672,631141214,3),(1672,670374016,10),(1672,686102416,11),(1672,701827216,10),(1672,717552017,11),(1672,733276817,10),(1672,749001618,11),(1672,764726418,10),(1672,780451219,11),(1672,796176019,10),(1672,811900819,11),(1672,828230420,10),(1672,846374420,11),(1672,859680020,10),(1672,877824021,11),(1672,891129621,10),(1672,909273621,11),(1672,922579222,10),(1672,941328022,11),(1672,954028822,10),(1672,972777622,11),(1672,985478422,10),(1672,1004227222,11),(1672,1017532822,10),(1672,1035676822,11),(1672,1048982422,10),(1672,1067126422,11),(1672,1080432022,10),(1672,1099180822,11),(1672,1111881622,10),(1672,1130630422,11),(1672,1143331223,10),(1672,1162080023,11),(1672,1174780823,10),(1672,1193529623,11),(1672,1206835223,10),(1672,1224979223,11),(1672,1238284824,10),(1672,1256428824,11),(1672,1269734424,10),(1672,1288483224,11),(1672,1301184024,12),(1673,-2147483648,1),(1673,-1855958961,6),(1673,-1689814800,2),(1673,-1680397200,3),(1673,-1665363600,2),(1673,-1648342800,3),(1673,-1635123600,2),(1673,-1616893200,3),(1673,-1604278800,2),(1673,-1585443600,3),(1673,-1574038800,2),(1673,-1552266000,3),(1673,-1539997200,2),(1673,-1520557200,3),(1673,-1507510800,2),(1673,-1490576400,3),(1673,-1470618000,2),(1673,-1459126800,3),(1673,-1444006800,2),(1673,-1427677200,3),(1673,-1411952400,2),(1673,-1396227600,3),(1673,-1379293200,2),(1673,-1364778000,3),(1673,-1348448400,2),(1673,-1333328400,3),(1673,-1316394000,2),(1673,-1301274000,3),(1673,-1284339600,2),(1673,-1269824400,3),(1673,-1253494800,2),(1673,-1238374800,3),(1673,-1221440400,2),(1673,-1206925200,3),(1673,-1191200400,2),(1673,-1175475600,3),(1673,-1160355600,2),(1673,-1143421200,3),(1673,-1127696400,2),(1673,-1111971600,3),(1673,-1096851600,2),(1673,-1080522000,3),(1673,-1063587600,2),(1673,-1049072400,3),(1673,-1033347600,2),(1673,-1017622800,3),(1673,-1002502800,2),(1673,-986173200,3),(1673,-969238800,2),(1673,-950490000,3),(1673,-942012000,4),(1673,-904438800,5),(1673,-891136800,4),(1673,-877827600,5),(1673,-857257200,4),(1673,-844556400,5),(1673,-828226800,4),(1673,-812502000,5),(1673,-796266000,4),(1673,-781052400,5),(1673,-766623600,8),(1673,196819205,7),(1673,212540405,8),(1673,228877206,9),(1673,243997206,10),(1673,260326807,9),(1673,276051607,10),(1673,291776408,9),(1673,307501208,10),(1673,323830809,9),(1673,338950809,10),(1673,354675609,9),(1673,370400410,10),(1673,386125210,9),(1673,401850011,10),(1673,417574811,9),(1673,433299612,10),(1673,449024412,9),(1673,465354012,10),(1673,481078812,9),(1673,496803613,10),(1673,512528413,9),(1673,528253213,10),(1673,543978013,9),(1673,559702813,10),(1673,575427614,9),(1673,591152414,10),(1673,606877214,9),(1673,622602014,10),(1673,638326815,9),(1673,654656415,10),(1673,670381216,9),(1673,686106016,10),(1673,701830816,9),(1673,717555617,10),(1673,733280417,9),(1673,749005218,10),(1673,764730018,9),(1673,780454819,10),(1673,796179619,9),(1673,811904419,10),(1673,828234020,9),(1673,846378020,10),(1673,859683620,9),(1673,877827621,10),(1673,891133221,9),(1673,909277221,10),(1673,922582822,9),(1673,941331622,10),(1673,954032422,9),(1673,972781222,10),(1673,985482022,9),(1673,1004230822,10),(1673,1017536422,9),(1673,1035680422,10),(1673,1048986022,9),(1673,1067130022,10),(1673,1080435622,9),(1673,1099184422,10),(1673,1111885222,9),(1673,1130634022,10),(1673,1143334823,9),(1673,1162083623,10),(1673,1174784423,9),(1673,1193533223,10),(1673,1206838823,9),(1673,1224982823,10),(1673,1238288424,9),(1673,1256432424,10),(1673,1269738024,9),(1673,1288486824,10),(1673,1301187624,9),(1673,1319936424,10),(1673,1332637224,9),(1673,1351386025,10),(1673,1364691625,9),(1673,1382835625,10),(1673,1396141225,9),(1673,1414285225,10),(1673,1427590825,9),(1673,1445734826,10),(1673,1459040426,9),(1673,1477789226,10),(1673,1490490027,9),(1673,1509238827,10),(1673,1521939627,9),(1673,1540688427,10),(1673,1553994027,9),(1673,1572138027,10),(1673,1585443627,9),(1673,1603587627,10),(1673,1616893227,9),(1673,1635642027,10),(1673,1648342827,9),(1673,1667091627,10),(1673,1679792427,9),(1673,1698541227,10),(1673,1711846827,9),(1673,1729990827,10),(1673,1743296427,9),(1673,1761440427,10),(1673,1774746027,9),(1673,1792890027,10),(1673,1806195627,9),(1673,1824944427,10),(1673,1837645227,9),(1673,1856394027,10),(1673,1869094827,9),(1673,1887843627,10),(1673,1901149227,9),(1673,1919293227,10),(1673,1932598827,9),(1673,1950742827,10),(1673,1964048427,9),(1673,1982797227,10),(1673,1995498027,9),(1673,2014246827,10),(1673,2026947627,9),(1673,2045696427,10),(1673,2058397227,9),(1673,2077146027,10),(1673,2090451627,9),(1673,2108595627,10),(1673,2121901227,9),(1673,2140045227,10),(1674,-2147483648,1),(1674,-1688265017,3),(1674,-1656819079,2),(1674,-1641353479,3),(1674,-1627965079,4),(1674,-1618716679,2),(1674,-1596429079,4),(1674,-1593820800,5),(1674,-1589860800,6),(1674,-1542427200,7),(1674,-1539493200,8),(1674,-1525323600,7),(1674,-1522728000,6),(1674,-1491188400,9),(1674,-1247536800,6),(1674,354920409,7),(1674,370728010,6),(1674,386456410,7),(1674,402264011,6),(1674,417992411,7),(1674,433800012,6),(1674,449614812,7),(1674,465346812,10),(1674,481071612,11),(1674,496796413,10),(1674,512521213,11),(1674,528246013,10),(1674,543970813,11),(1674,559695613,10),(1674,575420414,11),(1674,591145214,10),(1674,606870014,11),(1674,622594814,10),(1674,638319615,11),(1674,654649215,10),(1674,670374016,12),(1674,686102416,13),(1674,695779216,10),(1674,701823616,11),(1674,717548417,10),(1674,733273217,11),(1674,748998018,10),(1674,764722818,11),(1674,780447619,10),(1674,796172419,11),(1674,811897219,10),(1674,828226820,11),(1674,846370820,10),(1674,859676420,11),(1674,877820421,10),(1674,891126021,11),(1674,909270021,10),(1674,922575622,11),(1674,941324422,10),(1674,954025222,11),(1674,972774022,10),(1674,985474822,11),(1674,1004223622,10),(1674,1017529222,11),(1674,1035673222,10),(1674,1048978822,11),(1674,1067122822,10),(1674,1080428422,11),(1674,1099177222,10),(1674,1111878022,11),(1674,1130626822,10),(1674,1143327623,11),(1674,1162076423,10),(1674,1174777223,11),(1674,1193526023,10),(1674,1206831623,11),(1674,1224975623,10),(1674,1238281224,11),(1674,1256425224,10),(1674,1269730824,11),(1674,1288479624,10),(1674,1301180424,14),(1674,1414274425,10),(1675,-2147483648,0),(1675,-1518920008,2),(1675,166572004,1),(1675,182293204,2),(1675,200959205,1),(1675,213829205,2),(1675,228866406,1),(1675,243982806,2),(1675,260316007,1),(1675,276123607,2),(1675,291765608,1),(1675,307486808,2),(1675,323820009,1),(1675,338936409,2),(1675,354664809,1),(1675,370386010,2),(1675,386114410,1),(1675,401835611,2),(1675,417564011,1),(1675,433285212,2),(1675,449013612,1),(1675,465339612,2),(1675,481068012,1),(1675,496789213,2),(1675,512517613,1),(1675,528238813,2),(1675,543967213,1),(1675,559688413,2),(1675,575416814,1),(1675,591138014,2),(1675,606866414,1),(1675,622587614,2),(1675,638316015,1),(1675,654642015,2),(1675,670370416,1),(1675,686091616,2),(1675,701820016,1),(1675,717541217,2),(1675,733269617,1),(1675,748990818,2),(1675,764719218,1),(1675,780440419,2),(1675,796168819,1),(1675,811890019,2),(1675,828223220,1),(1675,843944420,2),(1675,859672820,1),(1675,875394021,2),(1675,891122421,1),(1675,909277221,3),(1675,922582822,4),(1675,941331622,3),(1675,954032422,4),(1675,972781222,3),(1675,985482022,4),(1675,1004230822,3),(1675,1017536422,4),(1675,1035680422,3),(1675,1048986022,4),(1675,1067130022,3),(1675,1080435622,4),(1675,1099184422,3),(1675,1111885222,4),(1675,1130634022,3),(1675,1143334823,4),(1675,1162083623,3),(1675,1174784423,4),(1675,1193533223,3),(1675,1206838823,4),(1675,1224982823,3),(1675,1238288424,4),(1675,1256432424,3),(1675,1269738024,4),(1675,1288486824,3),(1675,1301187624,4),(1675,1319936424,3),(1675,1332637224,4),(1675,1351386025,3),(1675,1364691625,4),(1675,1382835625,3),(1675,1396141225,4),(1675,1414285225,3),(1675,1427590825,4),(1675,1445734826,3),(1675,1459040426,4),(1675,1477789226,3),(1675,1490490027,4),(1675,1509238827,3),(1675,1521939627,4),(1675,1540688427,3),(1675,1553994027,4),(1675,1572138027,3),(1675,1585443627,4),(1675,1603587627,3),(1675,1616893227,4),(1675,1635642027,3),(1675,1648342827,4),(1675,1667091627,3),(1675,1679792427,4),(1675,1698541227,3),(1675,1711846827,4),(1675,1729990827,3),(1675,1743296427,4),(1675,1761440427,3),(1675,1774746027,4),(1675,1792890027,3),(1675,1806195627,4),(1675,1824944427,3),(1675,1837645227,4),(1675,1856394027,3),(1675,1869094827,4),(1675,1887843627,3),(1675,1901149227,4),(1675,1919293227,3),(1675,1932598827,4),(1675,1950742827,3),(1675,1964048427,4),(1675,1982797227,3),(1675,1995498027,4),(1675,2014246827,3),(1675,2026947627,4),(1675,2045696427,3),(1675,2058397227,4),(1675,2077146027,3),(1675,2090451627,4),(1675,2108595627,3),(1675,2121901227,4),(1675,2140045227,3),(1676,-2147483648,2),(1676,-1691884800,1),(1676,-1680573600,2),(1676,-927511200,1),(1676,-857257200,3),(1676,-844556400,4),(1676,-828226800,3),(1676,-812502000,4),(1676,-796777200,3),(1676,-781052400,4),(1676,-765327600,3),(1676,-340844400,4),(1676,-324514800,3),(1676,-308790000,4),(1676,-293065200,3),(1676,-277340400,4),(1676,-261615600,3),(1676,-245890800,4),(1676,-230166000,3),(1676,-214441200,4),(1676,-198716400,3),(1676,-182991600,4),(1676,-166662000,3),(1676,-147913200,4),(1676,-135212400,3),(1676,315529208,2),(1676,323830809,5),(1676,338950809,6),(1676,354675609,5),(1676,370400410,6),(1676,386125210,5),(1676,401850011,6),(1676,417574811,5),(1676,433299612,6),(1676,449024412,5),(1676,465354012,6),(1676,481078812,5),(1676,496803613,6),(1676,512528413,5),(1676,528253213,6),(1676,543978013,5),(1676,559702813,6),(1676,575427614,5),(1676,591152414,6),(1676,606877214,5),(1676,622602014,6),(1676,638326815,5),(1676,654656415,6),(1676,670381216,5),(1676,686106016,6),(1676,701830816,5),(1676,717555617,6),(1676,733280417,5),(1676,749005218,6),(1676,764730018,5),(1676,780454819,6),(1676,796179619,5),(1676,811904419,6),(1676,828234020,5),(1676,846378020,6),(1676,859683620,5),(1676,877827621,6),(1676,891133221,5),(1676,909277221,6),(1676,922582822,5),(1676,941331622,6),(1676,954032422,5),(1676,972781222,6),(1676,985482022,5),(1676,1004230822,6),(1676,1017536422,5),(1676,1035680422,6),(1676,1048986022,5),(1676,1067130022,6),(1676,1080435622,5),(1676,1099184422,6),(1676,1111885222,5),(1676,1130634022,6),(1676,1143334823,5),(1676,1162083623,6),(1676,1174784423,5),(1676,1193533223,6),(1676,1206838823,5),(1676,1224982823,6),(1676,1238288424,5),(1676,1256432424,6),(1676,1269738024,5),(1676,1288486824,6),(1676,1301187624,5),(1676,1319936424,6),(1676,1332637224,5),(1676,1351386025,6),(1676,1364691625,5),(1676,1382835625,6),(1676,1396141225,5),(1676,1414285225,6),(1676,1427590825,5),(1676,1445734826,6),(1676,1459040426,5),(1676,1477789226,6),(1676,1490490027,5),(1676,1509238827,6),(1676,1521939627,5),(1676,1540688427,6),(1676,1553994027,5),(1676,1572138027,6),(1676,1585443627,5),(1676,1603587627,6),(1676,1616893227,5),(1676,1635642027,6),(1676,1648342827,5),(1676,1667091627,6),(1676,1679792427,5),(1676,1698541227,6),(1676,1711846827,5),(1676,1729990827,6),(1676,1743296427,5),(1676,1761440427,6),(1676,1774746027,5),(1676,1792890027,6),(1676,1806195627,5),(1676,1824944427,6),(1676,1837645227,5),(1676,1856394027,6),(1676,1869094827,5),(1676,1887843627,6),(1676,1901149227,5),(1676,1919293227,6),(1676,1932598827,5),(1676,1950742827,6),(1676,1964048427,5),(1676,1982797227,6),(1676,1995498027,5),(1676,2014246827,6),(1676,2026947627,5),(1676,2045696427,6),(1676,2058397227,5),(1676,2077146027,6),(1676,2090451627,5),(1676,2108595627,6),(1676,2121901227,5),(1676,2140045227,6),(1677,-2147483648,1),(1677,-1855958901,5),(1677,-1689814800,2),(1677,-1680397200,3),(1677,-1665363600,2),(1677,-1648342800,3),(1677,-1635123600,2),(1677,-1616893200,3),(1677,-1604278800,2),(1677,-1585443600,3),(1677,-1574038800,2),(1677,-1552266000,3),(1677,-1539997200,2),(1677,-1520557200,3),(1677,-1507510800,2),(1677,-1490576400,3),(1677,-1470618000,2),(1677,-1459126800,3),(1677,-1444006800,2),(1677,-1427677200,3),(1677,-1411952400,2),(1677,-1396227600,3),(1677,-1379293200,2),(1677,-1364778000,3),(1677,-1348448400,2),(1677,-1333328400,3),(1677,-1316394000,2),(1677,-1301274000,3),(1677,-1284339600,2),(1677,-1269824400,3),(1677,-1253494800,2),(1677,-1238374800,3),(1677,-1221440400,2),(1677,-1206925200,3),(1677,-1191200400,2),(1677,-1175475600,3),(1677,-1160355600,2),(1677,-1143421200,3),(1677,-1127696400,2),(1677,-1111971600,3),(1677,-1096851600,2),(1677,-1080522000,3),(1677,-1063587600,2),(1677,-1049072400,3),(1677,-1033347600,2),(1677,-1017622800,3),(1677,-1002502800,2),(1677,-986173200,3),(1677,-969238800,2),(1677,-950490000,3),(1677,-942012000,4),(1677,-932436000,8),(1677,-857257200,6),(1677,-844556400,7),(1677,-828226800,6),(1677,-812502000,7),(1677,-800071200,9),(1677,-796266000,4),(1677,-781052400,9),(1677,-766623600,10),(1677,196819205,8),(1677,212540405,10),(1677,228877206,11),(1677,243997206,12),(1677,260326807,11),(1677,276051607,12),(1677,291776408,11),(1677,307501208,12),(1677,323830809,11),(1677,338950809,12),(1677,354675609,11),(1677,370400410,12),(1677,386125210,11),(1677,401850011,12),(1677,417574811,11),(1677,433299612,12),(1677,449024412,11),(1677,465354012,12),(1677,481078812,11),(1677,496803613,12),(1677,512528413,11),(1677,528253213,12),(1677,543978013,11),(1677,559702813,12),(1677,575427614,11),(1677,591152414,12),(1677,606877214,11),(1677,622602014,12),(1677,638326815,11),(1677,654656415,12),(1677,670381216,11),(1677,686106016,12),(1677,701830816,11),(1677,717555617,12),(1677,733280417,11),(1677,749005218,12),(1677,764730018,11),(1677,780454819,12),(1677,796179619,11),(1677,811904419,12),(1677,828234020,11),(1677,846378020,12),(1677,859683620,11),(1677,877827621,12),(1677,891133221,11),(1677,909277221,12),(1677,922582822,11),(1677,941331622,12),(1677,954032422,11),(1677,972781222,12),(1677,985482022,11),(1677,1004230822,12),(1677,1017536422,11),(1677,1035680422,12),(1677,1048986022,11),(1677,1067130022,12),(1677,1080435622,11),(1677,1099184422,12),(1677,1111885222,11),(1677,1130634022,12),(1677,1143334823,11),(1677,1162083623,12),(1677,1174784423,11),(1677,1193533223,12),(1677,1206838823,11),(1677,1224982823,12),(1677,1238288424,11),(1677,1256432424,12),(1677,1269738024,11),(1677,1288486824,12),(1677,1301187624,11),(1677,1319936424,12),(1677,1332637224,11),(1677,1351386025,12),(1677,1364691625,11),(1677,1382835625,12),(1677,1396141225,11),(1677,1414285225,12),(1677,1427590825,11),(1677,1445734826,12),(1677,1459040426,11),(1677,1477789226,12),(1677,1490490027,11),(1677,1509238827,12),(1677,1521939627,11),(1677,1540688427,12),(1677,1553994027,11),(1677,1572138027,12),(1677,1585443627,11),(1677,1603587627,12),(1677,1616893227,11),(1677,1635642027,12),(1677,1648342827,11),(1677,1667091627,12),(1677,1679792427,11),(1677,1698541227,12),(1677,1711846827,11),(1677,1729990827,12),(1677,1743296427,11),(1677,1761440427,12),(1677,1774746027,11),(1677,1792890027,12),(1677,1806195627,11),(1677,1824944427,12),(1677,1837645227,11),(1677,1856394027,12),(1677,1869094827,11),(1677,1887843627,12),(1677,1901149227,11),(1677,1919293227,12),(1677,1932598827,11),(1677,1950742827,12),(1677,1964048427,11),(1677,1982797227,12),(1677,1995498027,11),(1677,2014246827,12),(1677,2026947627,11),(1677,2045696427,12),(1677,2058397227,11),(1677,2077146027,12),(1677,2090451627,11),(1677,2108595627,12),(1677,2121901227,11),(1677,2140045227,12),(1678,-2147483648,1),(1678,-905824800,4),(1678,-857257200,2),(1678,-844556400,3),(1678,-828226800,2),(1678,-812502000,3),(1678,-796777200,2),(1678,-788922000,1),(1678,-777942000,3),(1678,-766623600,2),(1678,407199611,1),(1678,417574811,5),(1678,433299612,6),(1678,449024412,5),(1678,465354012,6),(1678,481078812,5),(1678,496803613,6),(1678,512528413,5),(1678,528253213,6),(1678,543978013,5),(1678,559702813,6),(1678,575427614,5),(1678,591152414,6),(1678,606877214,5),(1678,622602014,6),(1678,638326815,5),(1678,654656415,6),(1678,670381216,5),(1678,686106016,6),(1678,701830816,5),(1678,717555617,6),(1678,733280417,5),(1678,749005218,6),(1678,764730018,5),(1678,780454819,6),(1678,796179619,5),(1678,811904419,6),(1678,828234020,5),(1678,846378020,6),(1678,859683620,5),(1678,877827621,6),(1678,891133221,5),(1678,909277221,6),(1678,922582822,5),(1678,941331622,6),(1678,954032422,5),(1678,972781222,6),(1678,985482022,5),(1678,1004230822,6),(1678,1017536422,5),(1678,1035680422,6),(1678,1048986022,5),(1678,1067130022,6),(1678,1080435622,5),(1678,1099184422,6),(1678,1111885222,5),(1678,1130634022,6),(1678,1143334823,5),(1678,1162083623,6),(1678,1174784423,5),(1678,1193533223,6),(1678,1206838823,5),(1678,1224982823,6),(1678,1238288424,5),(1678,1256432424,6),(1678,1269738024,5),(1678,1288486824,6),(1678,1301187624,5),(1678,1319936424,6),(1678,1332637224,5),(1678,1351386025,6),(1678,1364691625,5),(1678,1382835625,6),(1678,1396141225,5),(1678,1414285225,6),(1678,1427590825,5),(1678,1445734826,6),(1678,1459040426,5),(1678,1477789226,6),(1678,1490490027,5),(1678,1509238827,6),(1678,1521939627,5),(1678,1540688427,6),(1678,1553994027,5),(1678,1572138027,6),(1678,1585443627,5),(1678,1603587627,6),(1678,1616893227,5),(1678,1635642027,6),(1678,1648342827,5),(1678,1667091627,6),(1678,1679792427,5),(1678,1698541227,6),(1678,1711846827,5),(1678,1729990827,6),(1678,1743296427,5),(1678,1761440427,6),(1678,1774746027,5),(1678,1792890027,6),(1678,1806195627,5),(1678,1824944427,6),(1678,1837645227,5),(1678,1856394027,6),(1678,1869094827,5),(1678,1887843627,6),(1678,1901149227,5),(1678,1919293227,6),(1678,1932598827,5),(1678,1950742827,6),(1678,1964048427,5),(1678,1982797227,6),(1678,1995498027,5),(1678,2014246827,6),(1678,2026947627,5),(1678,2045696427,6),(1678,2058397227,5),(1678,2077146027,6),(1678,2090451627,5),(1678,2108595627,6),(1678,2121901227,5),(1678,2140045227,6),(1679,-2147483648,2),(1679,-1693706400,1),(1679,-1680483600,2),(1679,-1663455600,3),(1679,-1650150000,4),(1679,-1632006000,3),(1679,-1618700400,4),(1679,-938905200,3),(1679,-857257200,4),(1679,-844556400,3),(1679,-828226800,4),(1679,-812502000,3),(1679,-796777200,4),(1679,-781052400,3),(1679,-777866400,1),(1679,-765327600,4),(1679,-746578800,3),(1679,-733359600,4),(1679,-728517600,5),(1679,-721260000,2),(1679,-716425200,3),(1679,-701910000,4),(1679,-684975600,3),(1679,-670460400,4),(1679,-654217200,3),(1679,-639010800,4),(1679,283993207,2),(1679,291776408,6),(1679,307501208,7),(1679,323830809,6),(1679,338950809,7),(1679,354675609,6),(1679,370400410,7),(1679,386125210,6),(1679,401850011,7),(1679,417574811,6),(1679,433299612,7),(1679,449024412,6),(1679,465354012,7),(1679,481078812,6),(1679,496803613,7),(1679,512528413,6),(1679,528253213,7),(1679,543978013,6),(1679,559702813,7),(1679,575427614,6),(1679,591152414,7),(1679,606877214,6),(1679,622602014,7),(1679,638326815,6),(1679,654656415,7),(1679,670381216,6),(1679,686106016,7),(1679,701830816,6),(1679,717555617,7),(1679,733280417,6),(1679,749005218,7),(1679,764730018,6),(1679,780454819,7),(1679,796179619,6),(1679,811904419,7),(1679,828234020,6),(1679,846378020,7),(1679,859683620,6),(1679,877827621,7),(1679,891133221,6),(1679,909277221,7),(1679,922582822,6),(1679,941331622,7),(1679,954032422,6),(1679,972781222,7),(1679,985482022,6),(1679,1004230822,7),(1679,1017536422,6),(1679,1035680422,7),(1679,1048986022,6),(1679,1067130022,7),(1679,1080435622,6),(1679,1099184422,7),(1679,1111885222,6),(1679,1130634022,7),(1679,1143334823,6),(1679,1162083623,7),(1679,1174784423,6),(1679,1193533223,7),(1679,1206838823,6),(1679,1224982823,7),(1679,1238288424,6),(1679,1256432424,7),(1679,1269738024,6),(1679,1288486824,7),(1679,1301187624,6),(1679,1319936424,7),(1679,1332637224,6),(1679,1351386025,7),(1679,1364691625,6),(1679,1382835625,7),(1679,1396141225,6),(1679,1414285225,7),(1679,1427590825,6),(1679,1445734826,7),(1679,1459040426,6),(1679,1477789226,7),(1679,1490490027,6),(1679,1509238827,7),(1679,1521939627,6),(1679,1540688427,7),(1679,1553994027,6),(1679,1572138027,7),(1679,1585443627,6),(1679,1603587627,7),(1679,1616893227,6),(1679,1635642027,7),(1679,1648342827,6),(1679,1667091627,7),(1679,1679792427,6),(1679,1698541227,7),(1679,1711846827,6),(1679,1729990827,7),(1679,1743296427,6),(1679,1761440427,7),(1679,1774746027,6),(1679,1792890027,7),(1679,1806195627,6),(1679,1824944427,7),(1679,1837645227,6),(1679,1856394027,7),(1679,1869094827,6),(1679,1887843627,7),(1679,1901149227,6),(1679,1919293227,7),(1679,1932598827,6),(1679,1950742827,7),(1679,1964048427,6),(1679,1982797227,7),(1679,1995498027,6),(1679,2014246827,7),(1679,2026947627,6),(1679,2045696427,7),(1679,2058397227,6),(1679,2077146027,7),(1679,2090451627,6),(1679,2108595627,7),(1679,2121901227,6),(1679,2140045227,7),(1680,-2147483648,1),(1680,-1632008194,2),(1680,-1618702594,1),(1680,-1601681794,2),(1680,-1597275394,1),(1680,-1377308194,3),(1680,-928029600,4),(1680,-899521200,7),(1680,-857257200,5),(1680,-844556400,6),(1680,-828226800,5),(1680,-812502000,6),(1680,-796777200,5),(1680,-795834000,4),(1680,354920409,8),(1680,370728010,4),(1680,386456410,8),(1680,402264011,4),(1680,417992411,8),(1680,433800012,4),(1680,449614812,8),(1680,465346812,9),(1680,481071612,10),(1680,496796413,9),(1680,512521213,10),(1680,528246013,9),(1680,543970813,10),(1680,559695613,9),(1680,575420414,10),(1680,591145214,9),(1680,606870014,11),(1680,622598414,12),(1680,638323215,11),(1680,654652815,12),(1680,670377616,11),(1680,686102416,12),(1680,701827216,11),(1680,717552017,12),(1680,733276817,11),(1680,749001618,12),(1680,764726418,11),(1680,780451219,12),(1680,796176019,11),(1680,811900819,12),(1680,828230420,11),(1680,843955220,12),(1680,853797620,3),(1680,859683620,13),(1680,877827621,14),(1680,891133221,13),(1680,909277221,14),(1680,922582822,13),(1680,941331622,14),(1680,951775222,3),(1680,985482022,13),(1680,1004230822,14),(1680,1017536422,13),(1680,1035680422,14),(1680,1048986022,13),(1680,1067130022,14),(1680,1080435622,13),(1680,1099184422,14),(1680,1111885222,13),(1680,1130634022,14),(1680,1143334823,13),(1680,1162083623,14),(1680,1174784423,13),(1680,1193533223,14),(1680,1206838823,13),(1680,1224982823,14),(1680,1238288424,13),(1680,1256432424,14),(1680,1269738024,13),(1680,1288486824,14),(1680,1301187624,13),(1680,1319936424,14),(1680,1332637224,13),(1680,1351386025,14),(1680,1364691625,13),(1680,1382835625,14),(1680,1396141225,13),(1680,1414285225,14),(1680,1427590825,13),(1680,1445734826,14),(1680,1459040426,13),(1680,1477789226,14),(1680,1490490027,13),(1680,1509238827,14),(1680,1521939627,13),(1680,1540688427,14),(1680,1553994027,13),(1680,1572138027,14),(1680,1585443627,13),(1680,1603587627,14),(1680,1616893227,13),(1680,1635642027,14),(1680,1648342827,13),(1680,1667091627,14),(1680,1679792427,13),(1680,1698541227,14),(1680,1711846827,13),(1680,1729990827,14),(1680,1743296427,13),(1680,1761440427,14),(1680,1774746027,13),(1680,1792890027,14),(1680,1806195627,13),(1680,1824944427,14),(1680,1837645227,13),(1680,1856394027,14),(1680,1869094827,13),(1680,1887843627,14),(1680,1901149227,13),(1680,1919293227,14),(1680,1932598827,13),(1680,1950742827,14),(1680,1964048427,13),(1680,1982797227,14),(1680,1995498027,13),(1680,2014246827,14),(1680,2026947627,13),(1680,2045696427,14),(1680,2058397227,13),(1680,2077146027,14),(1680,2090451627,13),(1680,2108595627,14),(1680,2121901227,13),(1680,2140045227,14),(1681,-2147483648,2),(1681,-1690765200,1),(1681,-1680487200,2),(1681,-1664758800,1),(1681,-1648951200,2),(1681,-1635123600,1),(1681,-1616896800,2),(1681,-1604278800,1),(1681,-1585533600,2),(1681,-1571014800,1),(1681,-1555293600,2),(1681,-932432400,1),(1681,-857257200,3),(1681,-844556400,4),(1681,-830311200,1),(1681,-828226800,3),(1681,-812502000,4),(1681,-807156000,1),(1681,-798073200,3),(1681,-781052400,1),(1681,-766717200,2),(1681,-750898800,4),(1681,-733359600,3),(1681,-719456400,4),(1681,-701917200,3),(1681,-689209200,4),(1681,-670460400,3),(1681,-114051600,4),(1681,-103168800,2),(1681,-81997200,4),(1681,-71715600,3),(1681,-50547600,4),(1681,-40266000,3),(1681,-18493200,4),(1681,-8211600,3),(1681,12956400,4),(1681,23238000,3),(1681,43801200,4),(1681,54687600,3),(1681,75855600,4),(1681,86742001,3),(1681,107910002,4),(1681,118191602,3),(1681,138754803,4),(1681,149641203,3),(1681,170809204,4),(1681,181090804,3),(1681,202258805,4),(1681,212540405,3),(1681,233103606,4),(1681,243990006,3),(1681,265158007,4),(1681,276044407,3),(1681,296607608,4),(1681,307494008,3),(1681,315529208,2),(1681,323830809,5),(1681,338950809,6),(1681,354675609,5),(1681,370400410,6),(1681,386125210,5),(1681,401850011,6),(1681,417574811,5),(1681,433299612,6),(1681,449024412,5),(1681,465354012,6),(1681,481078812,5),(1681,496803613,6),(1681,512528413,5),(1681,528253213,6),(1681,543978013,5),(1681,559702813,6),(1681,575427614,5),(1681,591152414,6),(1681,606877214,5),(1681,622602014,6),(1681,638326815,5),(1681,654656415,6),(1681,670381216,5),(1681,686106016,6),(1681,701830816,5),(1681,717555617,6),(1681,733280417,5),(1681,749005218,6),(1681,764730018,5),(1681,780454819,6),(1681,796179619,5),(1681,811904419,6),(1681,828234020,5),(1681,846378020,6),(1681,859683620,5),(1681,877827621,6),(1681,891133221,5),(1681,909277221,6),(1681,922582822,5),(1681,941331622,6),(1681,954032422,5),(1681,972781222,6),(1681,985482022,5),(1681,1004230822,6),(1681,1017536422,5),(1681,1035680422,6),(1681,1048986022,5),(1681,1067130022,6),(1681,1080435622,5),(1681,1099184422,6),(1681,1111885222,5),(1681,1130634022,6),(1681,1143334823,5),(1681,1162083623,6),(1681,1174784423,5),(1681,1193533223,6),(1681,1206838823,5),(1681,1224982823,6),(1681,1238288424,5),(1681,1256432424,6),(1681,1269738024,5),(1681,1288486824,6),(1681,1301187624,5),(1681,1319936424,6),(1681,1332637224,5),(1681,1351386025,6),(1681,1364691625,5),(1681,1382835625,6),(1681,1396141225,5),(1681,1414285225,6),(1681,1427590825,5),(1681,1445734826,6),(1681,1459040426,5),(1681,1477789226,6),(1681,1490490027,5),(1681,1509238827,6),(1681,1521939627,5),(1681,1540688427,6),(1681,1553994027,5),(1681,1572138027,6),(1681,1585443627,5),(1681,1603587627,6),(1681,1616893227,5),(1681,1635642027,6),(1681,1648342827,5),(1681,1667091627,6),(1681,1679792427,5),(1681,1698541227,6),(1681,1711846827,5),(1681,1729990827,6),(1681,1743296427,5),(1681,1761440427,6),(1681,1774746027,5),(1681,1792890027,6),(1681,1806195627,5),(1681,1824944427,6),(1681,1837645227,5),(1681,1856394027,6),(1681,1869094827,5),(1681,1887843627,6),(1681,1901149227,5),(1681,1919293227,6),(1681,1932598827,5),(1681,1950742827,6),(1681,1964048427,5),(1681,1982797227,6),(1681,1995498027,5),(1681,2014246827,6),(1681,2026947627,5),(1681,2045696427,6),(1681,2058397227,5),(1681,2077146027,6),(1681,2090451627,5),(1681,2108595627,6),(1681,2121901227,5),(1681,2140045227,6),(1682,-2147483648,0),(1682,-1593820800,1),(1682,-1247540400,2),(1682,354916809,3),(1682,370724410,2),(1682,386452810,3),(1682,402260411,2),(1682,417988811,3),(1682,433796412,2),(1682,449611212,3),(1682,465343212,4),(1682,481068012,5),(1682,496792813,4),(1682,512517613,5),(1682,528242413,4),(1682,543967213,5),(1682,559692013,4),(1682,575416814,5),(1682,591141614,4),(1682,606866414,6),(1682,622594814,7),(1682,638319615,6),(1682,654649215,7),(1682,670374016,8),(1682,686102416,7),(1682,687916816,2),(1682,701820016,5),(1682,717544817,4),(1682,733269617,5),(1682,748994418,4),(1682,764719218,5),(1682,780444019,4),(1682,796168819,5),(1682,811893619,4),(1682,828223220,5),(1682,846367220,4),(1682,859672820,5),(1682,877816821,4),(1682,891122421,5),(1682,909266421,4),(1682,922572022,5),(1682,941320822,4),(1682,954021622,5),(1682,972770422,4),(1682,985471222,5),(1682,1004220022,4),(1682,1017525622,5),(1682,1035669622,4),(1682,1048975222,5),(1682,1067119222,4),(1682,1080424822,5),(1682,1099173622,4),(1682,1111874422,5),(1682,1130623222,4),(1682,1143324023,5),(1682,1162072823,4),(1682,1174773623,5),(1682,1193522423,4),(1682,1206828023,5),(1682,1224972023,4),(1682,1238277624,5),(1682,1256421624,4),(1682,1269727224,6),(1682,1288479624,7),(1682,1301180424,4),(1683,-2147483648,2),(1683,-1690765200,1),(1683,-1680487200,2),(1683,-1664758800,1),(1683,-1648951200,2),(1683,-1635123600,1),(1683,-1616896800,2),(1683,-1604278800,1),(1683,-1585533600,2),(1683,-1571014800,1),(1683,-1555293600,2),(1683,-932432400,1),(1683,-857257200,3),(1683,-844556400,4),(1683,-830311200,1),(1683,-828226800,3),(1683,-812502000,4),(1683,-807156000,1),(1683,-798073200,3),(1683,-781052400,1),(1683,-766717200,2),(1683,-750898800,4),(1683,-733359600,3),(1683,-719456400,4),(1683,-701917200,3),(1683,-689209200,4),(1683,-670460400,3),(1683,-114051600,4),(1683,-103168800,2),(1683,-81997200,4),(1683,-71715600,3),(1683,-50547600,4),(1683,-40266000,3),(1683,-18493200,4),(1683,-8211600,3),(1683,12956400,4),(1683,23238000,3),(1683,43801200,4),(1683,54687600,3),(1683,75855600,4),(1683,86742001,3),(1683,107910002,4),(1683,118191602,3),(1683,138754803,4),(1683,149641203,3),(1683,170809204,4),(1683,181090804,3),(1683,202258805,4),(1683,212540405,3),(1683,233103606,4),(1683,243990006,3),(1683,265158007,4),(1683,276044407,3),(1683,296607608,4),(1683,307494008,3),(1683,315529208,2),(1683,323830809,5),(1683,338950809,6),(1683,354675609,5),(1683,370400410,6),(1683,386125210,5),(1683,401850011,6),(1683,417574811,5),(1683,433299612,6),(1683,449024412,5),(1683,465354012,6),(1683,481078812,5),(1683,496803613,6),(1683,512528413,5),(1683,528253213,6),(1683,543978013,5),(1683,559702813,6),(1683,575427614,5),(1683,591152414,6),(1683,606877214,5),(1683,622602014,6),(1683,638326815,5),(1683,654656415,6),(1683,670381216,5),(1683,686106016,6),(1683,701830816,5),(1683,717555617,6),(1683,733280417,5),(1683,749005218,6),(1683,764730018,5),(1683,780454819,6),(1683,796179619,5),(1683,811904419,6),(1683,828234020,5),(1683,846378020,6),(1683,859683620,5),(1683,877827621,6),(1683,891133221,5),(1683,909277221,6),(1683,922582822,5),(1683,941331622,6),(1683,954032422,5),(1683,972781222,6),(1683,985482022,5),(1683,1004230822,6),(1683,1017536422,5),(1683,1035680422,6),(1683,1048986022,5),(1683,1067130022,6),(1683,1080435622,5),(1683,1099184422,6),(1683,1111885222,5),(1683,1130634022,6),(1683,1143334823,5),(1683,1162083623,6),(1683,1174784423,5),(1683,1193533223,6),(1683,1206838823,5),(1683,1224982823,6),(1683,1238288424,5),(1683,1256432424,6),(1683,1269738024,5),(1683,1288486824,6),(1683,1301187624,5),(1683,1319936424,6),(1683,1332637224,5),(1683,1351386025,6),(1683,1364691625,5),(1683,1382835625,6),(1683,1396141225,5),(1683,1414285225,6),(1683,1427590825,5),(1683,1445734826,6),(1683,1459040426,5),(1683,1477789226,6),(1683,1490490027,5),(1683,1509238827,6),(1683,1521939627,5),(1683,1540688427,6),(1683,1553994027,5),(1683,1572138027,6),(1683,1585443627,5),(1683,1603587627,6),(1683,1616893227,5),(1683,1635642027,6),(1683,1648342827,5),(1683,1667091627,6),(1683,1679792427,5),(1683,1698541227,6),(1683,1711846827,5),(1683,1729990827,6),(1683,1743296427,5),(1683,1761440427,6),(1683,1774746027,5),(1683,1792890027,6),(1683,1806195627,5),(1683,1824944427,6),(1683,1837645227,5),(1683,1856394027,6),(1683,1869094827,5),(1683,1887843627,6),(1683,1901149227,5),(1683,1919293227,6),(1683,1932598827,5),(1683,1950742827,6),(1683,1964048427,5),(1683,1982797227,6),(1683,1995498027,5),(1683,2014246827,6),(1683,2026947627,5),(1683,2045696427,6),(1683,2058397227,5),(1683,2077146027,6),(1683,2090451627,5),(1683,2108595627,6),(1683,2121901227,5),(1683,2140045227,6),(1684,-2147483648,1),(1684,-905824800,4),(1684,-857257200,2),(1684,-844556400,3),(1684,-828226800,2),(1684,-812502000,3),(1684,-796777200,2),(1684,-788922000,1),(1684,-777942000,3),(1684,-766623600,2),(1684,407199611,1),(1684,417574811,5),(1684,433299612,6),(1684,449024412,5),(1684,465354012,6),(1684,481078812,5),(1684,496803613,6),(1684,512528413,5),(1684,528253213,6),(1684,543978013,5),(1684,559702813,6),(1684,575427614,5),(1684,591152414,6),(1684,606877214,5),(1684,622602014,6),(1684,638326815,5),(1684,654656415,6),(1684,670381216,5),(1684,686106016,6),(1684,701830816,5),(1684,717555617,6),(1684,733280417,5),(1684,749005218,6),(1684,764730018,5),(1684,780454819,6),(1684,796179619,5),(1684,811904419,6),(1684,828234020,5),(1684,846378020,6),(1684,859683620,5),(1684,877827621,6),(1684,891133221,5),(1684,909277221,6),(1684,922582822,5),(1684,941331622,6),(1684,954032422,5),(1684,972781222,6),(1684,985482022,5),(1684,1004230822,6),(1684,1017536422,5),(1684,1035680422,6),(1684,1048986022,5),(1684,1067130022,6),(1684,1080435622,5),(1684,1099184422,6),(1684,1111885222,5),(1684,1130634022,6),(1684,1143334823,5),(1684,1162083623,6),(1684,1174784423,5),(1684,1193533223,6),(1684,1206838823,5),(1684,1224982823,6),(1684,1238288424,5),(1684,1256432424,6),(1684,1269738024,5),(1684,1288486824,6),(1684,1301187624,5),(1684,1319936424,6),(1684,1332637224,5),(1684,1351386025,6),(1684,1364691625,5),(1684,1382835625,6),(1684,1396141225,5),(1684,1414285225,6),(1684,1427590825,5),(1684,1445734826,6),(1684,1459040426,5),(1684,1477789226,6),(1684,1490490027,5),(1684,1509238827,6),(1684,1521939627,5),(1684,1540688427,6),(1684,1553994027,5),(1684,1572138027,6),(1684,1585443627,5),(1684,1603587627,6),(1684,1616893227,5),(1684,1635642027,6),(1684,1648342827,5),(1684,1667091627,6),(1684,1679792427,5),(1684,1698541227,6),(1684,1711846827,5),(1684,1729990827,6),(1684,1743296427,5),(1684,1761440427,6),(1684,1774746027,5),(1684,1792890027,6),(1684,1806195627,5),(1684,1824944427,6),(1684,1837645227,5),(1684,1856394027,6),(1684,1869094827,5),(1684,1887843627,6),(1684,1901149227,5),(1684,1919293227,6),(1684,1932598827,5),(1684,1950742827,6),(1684,1964048427,5),(1684,1982797227,6),(1684,1995498027,5),(1684,2014246827,6),(1684,2026947627,5),(1684,2045696427,6),(1684,2058397227,5),(1684,2077146027,6),(1684,2090451627,5),(1684,2108595627,6),(1684,2121901227,5),(1684,2140045227,6),(1685,-2147483648,0),(1685,-1593820800,1),(1685,-1247540400,3),(1685,354916809,2),(1685,370724410,3),(1685,386452810,2),(1685,402260411,3),(1685,417988811,2),(1685,433796412,3),(1685,449611212,2),(1685,465343212,4),(1685,481068012,5),(1685,496792813,4),(1685,512517613,5),(1685,528242413,4),(1685,543967213,5),(1685,559692013,4),(1685,575416814,6),(1685,591145214,7),(1685,606870014,6),(1685,622594814,7),(1685,638319615,6),(1685,654649215,7),(1685,670374016,4),(1685,701820016,6),(1685,717548417,7),(1685,733273217,6),(1685,748998018,7),(1685,764722818,6),(1685,780447619,7),(1685,796172419,6),(1685,811897219,7),(1685,828226820,6),(1685,846370820,7),(1685,859676420,6),(1685,877820421,7),(1685,891126021,6),(1685,909270021,7),(1685,922575622,6),(1685,941324422,7),(1685,954025222,6),(1685,972774022,7),(1685,985474822,6),(1685,1004223622,7),(1685,1017529222,6),(1685,1035673222,7),(1685,1048978822,6),(1685,1067122822,7),(1685,1080428422,6),(1685,1099177222,7),(1685,1111878022,6),(1685,1130626822,7),(1685,1143327623,6),(1685,1162076423,7),(1685,1174777223,6),(1685,1193526023,7),(1685,1206831623,6),(1685,1224975623,7),(1685,1238281224,6),(1685,1256425224,7),(1685,1269730824,6),(1685,1288479624,7),(1685,1301180424,4),(1685,1414274425,7),(1685,1480806026,4),(1686,-2147483648,1),(1686,-1441160160,2),(1686,-1247536800,3),(1686,-888894000,6),(1686,-857257200,4),(1686,-844556400,5),(1686,-828226800,4),(1686,-812502000,5),(1686,-811648800,3),(1686,354920409,7),(1686,370728010,3),(1686,386456410,7),(1686,402264011,3),(1686,417992411,7),(1686,433800012,3),(1686,449614812,7),(1686,465346812,8),(1686,481071612,9),(1686,496796413,8),(1686,512521213,9),(1686,528246013,8),(1686,543970813,9),(1686,559695613,8),(1686,575420414,9),(1686,591145214,8),(1686,606870014,9),(1686,622594814,8),(1686,631141214,3),(1686,646786815,2),(1686,701820016,10),(1686,717541217,2),(1686,733269617,10),(1686,748990818,2),(1686,764719218,10),(1686,767739618,7),(1686,780436819,3),(1686,796165219,7),(1686,811886419,3),(1686,828219620,9),(1686,846374420,8),(1686,852066020,3),(1686,859683620,11),(1686,877827621,12),(1686,891133221,11),(1686,909277221,12),(1686,922582822,11),(1686,941331622,12),(1686,954032422,11),(1686,972781222,12),(1686,985482022,11),(1686,1004230822,12),(1686,1017536422,11),(1686,1035680422,12),(1686,1048986022,11),(1686,1067130022,12),(1686,1080435622,11),(1686,1099184422,12),(1686,1111885222,11),(1686,1130634022,12),(1686,1143334823,11),(1686,1162083623,12),(1686,1174784423,11),(1686,1193533223,12),(1686,1206838823,11),(1686,1224982823,12),(1686,1238288424,11),(1686,1256432424,12),(1686,1269738024,11),(1686,1288486824,12),(1686,1301187624,11),(1686,1319936424,12),(1686,1332637224,11),(1686,1351386025,12),(1686,1364691625,11),(1686,1382835625,12),(1686,1396137625,13),(1686,1414274425,8),(1687,-2147483648,1),(1687,-905824800,4),(1687,-857257200,2),(1687,-844556400,3),(1687,-828226800,2),(1687,-812502000,3),(1687,-796777200,2),(1687,-788922000,1),(1687,-777942000,3),(1687,-766623600,2),(1687,407199611,1),(1687,417574811,5),(1687,433299612,6),(1687,449024412,5),(1687,465354012,6),(1687,481078812,5),(1687,496803613,6),(1687,512528413,5),(1687,528253213,6),(1687,543978013,5),(1687,559702813,6),(1687,575427614,5),(1687,591152414,6),(1687,606877214,5),(1687,622602014,6),(1687,638326815,5),(1687,654656415,6),(1687,670381216,5),(1687,686106016,6),(1687,701830816,5),(1687,717555617,6),(1687,733280417,5),(1687,749005218,6),(1687,764730018,5),(1687,780454819,6),(1687,796179619,5),(1687,811904419,6),(1687,828234020,5),(1687,846378020,6),(1687,859683620,5),(1687,877827621,6),(1687,891133221,5),(1687,909277221,6),(1687,922582822,5),(1687,941331622,6),(1687,954032422,5),(1687,972781222,6),(1687,985482022,5),(1687,1004230822,6),(1687,1017536422,5),(1687,1035680422,6),(1687,1048986022,5),(1687,1067130022,6),(1687,1080435622,5),(1687,1099184422,6),(1687,1111885222,5),(1687,1130634022,6),(1687,1143334823,5),(1687,1162083623,6),(1687,1174784423,5),(1687,1193533223,6),(1687,1206838823,5),(1687,1224982823,6),(1687,1238288424,5),(1687,1256432424,6),(1687,1269738024,5),(1687,1288486824,6),(1687,1301187624,5),(1687,1319936424,6),(1687,1332637224,5),(1687,1351386025,6),(1687,1364691625,5),(1687,1382835625,6),(1687,1396141225,5),(1687,1414285225,6),(1687,1427590825,5),(1687,1445734826,6),(1687,1459040426,5),(1687,1477789226,6),(1687,1490490027,5),(1687,1509238827,6),(1687,1521939627,5),(1687,1540688427,6),(1687,1553994027,5),(1687,1572138027,6),(1687,1585443627,5),(1687,1603587627,6),(1687,1616893227,5),(1687,1635642027,6),(1687,1648342827,5),(1687,1667091627,6),(1687,1679792427,5),(1687,1698541227,6),(1687,1711846827,5),(1687,1729990827,6),(1687,1743296427,5),(1687,1761440427,6),(1687,1774746027,5),(1687,1792890027,6),(1687,1806195627,5),(1687,1824944427,6),(1687,1837645227,5),(1687,1856394027,6),(1687,1869094827,5),(1687,1887843627,6),(1687,1901149227,5),(1687,1919293227,6),(1687,1932598827,5),(1687,1950742827,6),(1687,1964048427,5),(1687,1982797227,6),(1687,1995498027,5),(1687,2014246827,6),(1687,2026947627,5),(1687,2045696427,6),(1687,2058397227,5),(1687,2077146027,6),(1687,2090451627,5),(1687,2108595627,6),(1687,2121901227,5),(1687,2140045227,6),(1688,-2147483648,1),(1688,-857257200,2),(1688,-844556400,3),(1688,-828226800,2),(1688,-812502000,3),(1688,-796777200,2),(1688,-788922000,4),(1688,-781048800,1),(1688,291762008,5),(1688,307576808,1),(1688,323816409,5),(1688,339026409,1),(1688,355266009,5),(1688,370393210,1),(1688,386715610,5),(1688,401846411,6),(1688,417571211,7),(1688,433296012,6),(1688,449020812,7),(1688,465350412,6),(1688,481075212,7),(1688,496800013,6),(1688,512524813,7),(1688,528249613,6),(1688,543974413,7),(1688,559699213,6),(1688,575424014,7),(1688,591148814,6),(1688,606873614,7),(1688,622598414,6),(1688,638323215,7),(1688,654652815,6),(1688,662680815,1),(1688,670370416,5),(1688,686091616,1),(1688,701820016,5),(1688,717541217,1),(1688,733269617,5),(1688,748990818,1),(1688,764719218,5),(1688,780440419,1),(1688,796168819,5),(1688,811890019,1),(1688,828223220,5),(1688,846363620,1),(1688,859683620,8),(1688,877827621,9),(1688,891133221,8),(1688,909277221,9),(1688,922582822,8),(1688,941331622,9),(1688,954032422,8),(1688,972781222,9),(1688,985482022,8),(1688,1004230822,9),(1688,1017536422,8),(1688,1035680422,9),(1688,1048986022,8),(1688,1067130022,9),(1688,1080435622,8),(1688,1099184422,9),(1688,1111885222,8),(1688,1130634022,9),(1688,1143334823,8),(1688,1162083623,9),(1688,1174784423,8),(1688,1193533223,9),(1688,1206838823,8),(1688,1224982823,9),(1688,1238288424,8),(1688,1256432424,9),(1688,1269738024,8),(1688,1288486824,9),(1688,1301187624,8),(1688,1319936424,9),(1688,1332637224,8),(1688,1351386025,9),(1688,1364691625,8),(1688,1382835625,9),(1688,1396141225,8),(1688,1414285225,9),(1688,1427590825,8),(1688,1445734826,9),(1688,1459040426,8),(1688,1477789226,9),(1688,1490490027,8),(1688,1509238827,9),(1688,1521939627,8),(1688,1540688427,9),(1688,1553994027,8),(1688,1572138027,9),(1688,1585443627,8),(1688,1603587627,9),(1688,1616893227,8),(1688,1635642027,9),(1688,1648342827,8),(1688,1667091627,9),(1688,1679792427,8),(1688,1698541227,9),(1688,1711846827,8),(1688,1729990827,9),(1688,1743296427,8),(1688,1761440427,9),(1688,1774746027,8),(1688,1792890027,9),(1688,1806195627,8),(1688,1824944427,9),(1688,1837645227,8),(1688,1856394027,9),(1688,1869094827,8),(1688,1887843627,9),(1688,1901149227,8),(1688,1919293227,9),(1688,1932598827,8),(1688,1950742827,9),(1688,1964048427,8),(1688,1982797227,9),(1688,1995498027,8),(1688,2014246827,9),(1688,2026947627,8),(1688,2045696427,9),(1688,2058397227,8),(1688,2077146027,9),(1688,2090451627,8),(1688,2108595627,9),(1688,2121901227,8),(1688,2140045227,9),(1689,-2147483648,1),(1689,-1692496800,2),(1689,-1680483600,1),(1689,323830809,3),(1689,338950809,4),(1689,354675609,3),(1689,370400410,4),(1689,386125210,3),(1689,401850011,4),(1689,417574811,3),(1689,433299612,4),(1689,449024412,3),(1689,465354012,4),(1689,481078812,3),(1689,496803613,4),(1689,512528413,3),(1689,528253213,4),(1689,543978013,3),(1689,559702813,4),(1689,575427614,3),(1689,591152414,4),(1689,606877214,3),(1689,622602014,4),(1689,638326815,3),(1689,654656415,4),(1689,670381216,3),(1689,686106016,4),(1689,701830816,3),(1689,717555617,4),(1689,733280417,3),(1689,749005218,4),(1689,764730018,3),(1689,780454819,4),(1689,796179619,3),(1689,811904419,4),(1689,828234020,3),(1689,846378020,4),(1689,859683620,3),(1689,877827621,4),(1689,891133221,3),(1689,909277221,4),(1689,922582822,3),(1689,941331622,4),(1689,954032422,3),(1689,972781222,4),(1689,985482022,3),(1689,1004230822,4),(1689,1017536422,3),(1689,1035680422,4),(1689,1048986022,3),(1689,1067130022,4),(1689,1080435622,3),(1689,1099184422,4),(1689,1111885222,3),(1689,1130634022,4),(1689,1143334823,3),(1689,1162083623,4),(1689,1174784423,3),(1689,1193533223,4),(1689,1206838823,3),(1689,1224982823,4),(1689,1238288424,3),(1689,1256432424,4),(1689,1269738024,3),(1689,1288486824,4),(1689,1301187624,3),(1689,1319936424,4),(1689,1332637224,3),(1689,1351386025,4),(1689,1364691625,3),(1689,1382835625,4),(1689,1396141225,3),(1689,1414285225,4),(1689,1427590825,3),(1689,1445734826,4),(1689,1459040426,3),(1689,1477789226,4),(1689,1490490027,3),(1689,1509238827,4),(1689,1521939627,3),(1689,1540688427,4),(1689,1553994027,3),(1689,1572138027,4),(1689,1585443627,3),(1689,1603587627,4),(1689,1616893227,3),(1689,1635642027,4),(1689,1648342827,3),(1689,1667091627,4),(1689,1679792427,3),(1689,1698541227,4),(1689,1711846827,3),(1689,1729990827,4),(1689,1743296427,3),(1689,1761440427,4),(1689,1774746027,3),(1689,1792890027,4),(1689,1806195627,3),(1689,1824944427,4),(1689,1837645227,3),(1689,1856394027,4),(1689,1869094827,3),(1689,1887843627,4),(1689,1901149227,3),(1689,1919293227,4),(1689,1932598827,3),(1689,1950742827,4),(1689,1964048427,3),(1689,1982797227,4),(1689,1995498027,3),(1689,2014246827,4),(1689,2026947627,3),(1689,2045696427,4),(1689,2058397227,3),(1689,2077146027,4),(1689,2090451627,3),(1689,2108595627,4),(1689,2121901227,3),(1689,2140045227,4),(1690,-2147483648,1),(1690,-1638322740,4),(1690,-1632006000,2),(1690,-1618700400,3),(1690,-1593824400,1),(1690,-1535938740,5),(1690,-927943200,6),(1690,-892954800,7),(1690,-857257200,3),(1690,-844556400,2),(1690,-828226800,3),(1690,-812502000,2),(1690,-797652000,6),(1690,354920409,8),(1690,370728010,6),(1690,386456410,8),(1690,402264011,6),(1690,417992411,8),(1690,433800012,6),(1690,449614812,8),(1690,465346812,9),(1690,481071612,10),(1690,496796413,9),(1690,512521213,10),(1690,528246013,9),(1690,543970813,10),(1690,559695613,9),(1690,575420414,10),(1690,591145214,9),(1690,606870014,11),(1690,622598414,12),(1690,638323215,11),(1690,654652815,12),(1690,670377616,11),(1690,686102416,12),(1690,701827216,11),(1690,717552017,12),(1690,733276817,11),(1690,749001618,12),(1690,764726418,11),(1690,780451219,12),(1690,796176019,11),(1690,811900819,12),(1690,828230420,11),(1690,846374420,12),(1690,859680020,11),(1690,877824021,12),(1690,891129621,11),(1690,906411621,15),(1690,909277221,13),(1690,922582822,14),(1690,941331622,5),(1690,1017536422,14),(1690,1035680422,13),(1690,1048986022,14),(1690,1067130022,13),(1690,1080435622,14),(1690,1099184422,13),(1690,1111885222,14),(1690,1130634022,13),(1690,1143334823,14),(1690,1162083623,13),(1690,1174784423,14),(1690,1193533223,13),(1690,1206838823,14),(1690,1224982823,13),(1690,1238288424,14),(1690,1256432424,13),(1690,1269738024,14),(1690,1288486824,13),(1690,1301187624,14),(1690,1319936424,13),(1690,1332637224,14),(1690,1351386025,13),(1690,1364691625,14),(1690,1382835625,13),(1690,1396141225,14),(1690,1414285225,13),(1690,1427590825,14),(1690,1445734826,13),(1690,1459040426,14),(1690,1477789226,13),(1690,1490490027,14),(1690,1509238827,13),(1690,1521939627,14),(1690,1540688427,13),(1690,1553994027,14),(1690,1572138027,13),(1690,1585443627,14),(1690,1603587627,13),(1690,1616893227,14),(1690,1635642027,13),(1690,1648342827,14),(1690,1667091627,13),(1690,1679792427,14),(1690,1698541227,13),(1690,1711846827,14),(1690,1729990827,13),(1690,1743296427,14),(1690,1761440427,13),(1690,1774746027,14),(1690,1792890027,13),(1690,1806195627,14),(1690,1824944427,13),(1690,1837645227,14),(1690,1856394027,13),(1690,1869094827,14),(1690,1887843627,13),(1690,1901149227,14),(1690,1919293227,13),(1690,1932598827,14),(1690,1950742827,13),(1690,1964048427,14),(1690,1982797227,13),(1690,1995498027,14),(1690,2014246827,13),(1690,2026947627,14),(1690,2045696427,13),(1690,2058397227,14),(1690,2077146027,13),(1690,2090451627,14),(1690,2108595627,13),(1690,2121901227,14),(1690,2140045227,13),(1691,-2147483648,0),(1691,-1767230360,1),(1691,-932346000,2),(1691,-857257200,1),(1691,-844556400,2),(1691,-843519600,1),(1691,136854003,2),(1691,149896803,1),(1691,168130804,2),(1691,181432804,1),(1691,199839605,2),(1691,213141605,1),(1691,231894006,2),(1691,244591206,1),(1691,263257207,2),(1691,276040807,1),(1691,294706808,2),(1691,307490408,1),(1691,326156409,2),(1691,339458409,1),(1691,357087609,2),(1691,370389610,1),(1691,389142010,2),(1691,402444011,1),(1691,419468411,2),(1691,433807212,1),(1691,449622012,2),(1691,465354012,3),(1691,481078812,4),(1691,496803613,3),(1691,512528413,4),(1691,528253213,3),(1691,543978013,4),(1691,559702813,3),(1691,575427614,4),(1691,591152414,3),(1691,606877214,4),(1691,622602014,3),(1691,638326815,4),(1691,654656415,3),(1691,670381216,4),(1691,686106016,3),(1691,701830816,4),(1691,717555617,3),(1691,733280417,4),(1691,749005218,3),(1691,764730018,4),(1691,780454819,3),(1691,796179619,4),(1691,811904419,3),(1691,828234020,4),(1691,846378020,3),(1691,859683620,4),(1691,877827621,3),(1691,891133221,4),(1691,909277221,3),(1691,922582822,4),(1691,941331622,3),(1691,954032422,4),(1691,972781222,3),(1691,985482022,4),(1691,1004230822,3),(1691,1017536422,4),(1691,1035680422,3),(1691,1048986022,4),(1691,1067130022,3),(1691,1080435622,4),(1691,1099184422,3),(1691,1111885222,4),(1691,1130634022,3),(1691,1143334823,4),(1691,1162083623,3),(1691,1174784423,4),(1691,1193533223,3),(1691,1206838823,4),(1691,1224982823,3),(1691,1238288424,4),(1691,1256432424,3),(1691,1269738024,4),(1691,1288486824,3),(1691,1301187624,4),(1691,1319936424,3),(1691,1332637224,4),(1691,1351386025,3),(1691,1364691625,4),(1691,1382835625,3),(1691,1396141225,4),(1691,1414285225,3),(1691,1427590825,4),(1691,1445734826,3),(1691,1459040426,4),(1691,1477789226,3),(1691,1490490027,4),(1691,1509238827,3),(1691,1521939627,4),(1691,1540688427,3),(1691,1553994027,4),(1691,1572138027,3),(1691,1585443627,4),(1691,1603587627,3),(1691,1616893227,4),(1691,1635642027,3),(1691,1648342827,4),(1691,1667091627,3),(1691,1679792427,4),(1691,1698541227,3),(1691,1711846827,4),(1691,1729990827,3),(1691,1743296427,4),(1691,1761440427,3),(1691,1774746027,4),(1691,1792890027,3),(1691,1806195627,4),(1691,1824944427,3),(1691,1837645227,4),(1691,1856394027,3),(1691,1869094827,4),(1691,1887843627,3),(1691,1901149227,4),(1691,1919293227,3),(1691,1932598827,4),(1691,1950742827,3),(1691,1964048427,4),(1691,1982797227,3),(1691,1995498027,4),(1691,2014246827,3),(1691,2026947627,4),(1691,2045696427,3),(1691,2058397227,4),(1691,2077146027,3),(1691,2090451627,4),(1691,2108595627,3),(1691,2121901227,4),(1691,2140045227,3),(1692,-2147483648,1),(1692,-1637114100,2),(1692,-1213148664,5),(1692,-1187056800,3),(1692,-1175479200,4),(1692,-1159754400,3),(1692,-1144029600,4),(1692,-1127700000,3),(1692,-1111975200,4),(1692,-1096250400,3),(1692,-1080525600,4),(1692,-1064800800,3),(1692,-1049076000,4),(1692,-1033351200,3),(1692,-1017626400,4),(1692,-1001901600,3),(1692,-986176800,4),(1692,-970452000,3),(1692,-954727200,4),(1692,-927165600,6),(1692,-898138800,9),(1692,-857257200,7),(1692,-844556400,8),(1692,-828226800,7),(1692,-812502000,8),(1692,-800157600,11),(1692,354920409,10),(1692,370728010,11),(1692,386456410,10),(1692,402264011,11),(1692,417992411,10),(1692,433800012,11),(1692,449614812,10),(1692,465346812,12),(1692,481071612,13),(1692,496796413,12),(1692,512521213,13),(1692,528246013,12),(1692,543970813,13),(1692,559695613,12),(1692,575420414,13),(1692,591145214,12),(1692,606870014,13),(1692,622594814,12),(1692,638319615,13),(1692,641944815,6),(1692,654652815,4),(1692,670377616,3),(1692,686102416,4),(1692,694216816,5),(1692,701820016,6),(1692,717541217,5),(1692,733269617,6),(1692,748990818,5),(1692,764719218,6),(1692,780440419,5),(1692,796168819,6),(1692,811890019,5),(1692,828223220,6),(1692,846363620,5),(1692,859680020,6),(1692,877824021,5),(1692,891129621,6),(1692,909273621,5),(1692,922579222,6),(1692,941328022,5),(1692,954028822,6),(1692,972777622,5),(1692,985478422,6),(1692,1004227222,5),(1692,1017532822,6),(1692,1035676822,5),(1692,1048982422,6),(1692,1067126422,5),(1692,1080432022,6),(1692,1099180822,5),(1692,1111881622,6),(1692,1130630422,5),(1692,1143331223,6),(1692,1162080023,5),(1692,1174780823,6),(1692,1193529623,5),(1692,1206835223,6),(1692,1224979223,5),(1692,1238284824,6),(1692,1256428824,5),(1692,1269734424,6),(1692,1288483224,5),(1692,1301184024,6),(1692,1319932824,5),(1692,1332633624,6),(1692,1351382425,5),(1692,1364688025,6),(1692,1382832025,5),(1692,1396137625,6),(1692,1414281625,5),(1692,1427587225,6),(1692,1445731226,5),(1692,1459036826,6),(1692,1477785626,5),(1692,1490486427,6),(1692,1509235227,5),(1692,1521936027,6),(1692,1540684827,5),(1692,1553990427,6),(1692,1572134427,5),(1692,1585440027,6),(1692,1603584027,5),(1692,1616889627,6),(1692,1635638427,5),(1692,1648339227,6),(1692,1667088027,5),(1692,1679788827,6),(1692,1698537627,5),(1692,1711843227,6),(1692,1729987227,5),(1692,1743292827,6),(1692,1761436827,5),(1692,1774742427,6),(1692,1792886427,5),(1692,1806192027,6),(1692,1824940827,5),(1692,1837641627,6),(1692,1856390427,5),(1692,1869091227,6),(1692,1887840027,5),(1692,1901145627,6),(1692,1919289627,5),(1692,1932595227,6),(1692,1950739227,5),(1692,1964044827,6),(1692,1982793627,5),(1692,1995494427,6),(1692,2014243227,5),(1692,2026944027,6),(1692,2045692827,5),(1692,2058393627,6),(1692,2077142427,5),(1692,2090448027,6),(1692,2108592027,5),(1692,2121897627,6),(1692,2140041627,5),(1693,-2147483648,0),(1693,-1593820800,1),(1693,-1247540400,3),(1693,354916809,2),(1693,370724410,3),(1693,386452810,2),(1693,402260411,3),(1693,417988811,2),(1693,433796412,3),(1693,449611212,2),(1693,465343212,4),(1693,481068012,5),(1693,496792813,4),(1693,512517613,5),(1693,528242413,4),(1693,543967213,5),(1693,559692013,4),(1693,575416814,5),(1693,591141614,4),(1693,606866414,6),(1693,622594814,7),(1693,638319615,6),(1693,654649215,7),(1693,670374016,8),(1693,686102416,9),(1693,695779216,7),(1693,701823616,6),(1693,717548417,7),(1693,733273217,6),(1693,748998018,7),(1693,764722818,6),(1693,780447619,7),(1693,796172419,6),(1693,811897219,7),(1693,828226820,6),(1693,846370820,7),(1693,859676420,6),(1693,877820421,7),(1693,891126021,6),(1693,909270021,7),(1693,922575622,6),(1693,941324422,7),(1693,954025222,6),(1693,972774022,7),(1693,985474822,6),(1693,1004223622,7),(1693,1017529222,6),(1693,1035673222,7),(1693,1048978822,6),(1693,1067122822,7),(1693,1080428422,6),(1693,1099177222,7),(1693,1111878022,6),(1693,1130626822,7),(1693,1143327623,6),(1693,1162076423,7),(1693,1174777223,6),(1693,1193526023,7),(1693,1206831623,6),(1693,1224975623,7),(1693,1238281224,6),(1693,1256425224,7),(1693,1269730824,6),(1693,1288479624,7),(1693,1301180424,4),(1693,1414274425,7),(1693,1459033226,4),(1694,-2147483648,1),(1694,-938905200,2),(1694,-857257200,3),(1694,-844556400,2),(1694,-828226800,3),(1694,-812502000,2),(1694,-796874400,4),(1694,-794714400,1),(1694,-773456400,6),(1694,354920409,5),(1694,370728010,6),(1694,386456410,5),(1694,402264011,6),(1694,417992411,5),(1694,433800012,6),(1694,449614812,5),(1694,465346812,7),(1694,481071612,8),(1694,496796413,7),(1694,512521213,8),(1694,528246013,7),(1694,543970813,8),(1694,559695613,7),(1694,575420414,8),(1694,591145214,7),(1694,606870014,8),(1694,622594814,7),(1694,631141214,6),(1694,646786815,1),(1694,670384816,9),(1694,701820016,10),(1694,717541217,9),(1694,733269617,10),(1694,748990818,9),(1694,764719218,10),(1694,780440419,9),(1694,796179619,11),(1694,811904419,12),(1694,828234020,11),(1694,846378020,12),(1694,859683620,11),(1694,877827621,12),(1694,891133221,11),(1694,909277221,12),(1694,922582822,11),(1694,941331622,12),(1694,954032422,11),(1694,972781222,12),(1694,985482022,11),(1694,1004230822,12),(1694,1017536422,11),(1694,1035680422,12),(1694,1048986022,11),(1694,1067130022,12),(1694,1080435622,11),(1694,1099184422,12),(1694,1111885222,11),(1694,1130634022,12),(1694,1143334823,11),(1694,1162083623,12),(1694,1174784423,11),(1694,1193533223,12),(1694,1206838823,11),(1694,1224982823,12),(1694,1238288424,11),(1694,1256432424,12),(1694,1269738024,11),(1694,1288486824,12),(1694,1301187624,11),(1694,1319936424,12),(1694,1332637224,11),(1694,1351386025,12),(1694,1364691625,11),(1694,1382835625,12),(1694,1396141225,11),(1694,1414285225,12),(1694,1427590825,11),(1694,1445734826,12),(1694,1459040426,11),(1694,1477789226,12),(1694,1490490027,11),(1694,1509238827,12),(1694,1521939627,11),(1694,1540688427,12),(1694,1553994027,11),(1694,1572138027,12),(1694,1585443627,11),(1694,1603587627,12),(1694,1616893227,11),(1694,1635642027,12),(1694,1648342827,11),(1694,1667091627,12),(1694,1679792427,11),(1694,1698541227,12),(1694,1711846827,11),(1694,1729990827,12),(1694,1743296427,11),(1694,1761440427,12),(1694,1774746027,11),(1694,1792890027,12),(1694,1806195627,11),(1694,1824944427,12),(1694,1837645227,11),(1694,1856394027,12),(1694,1869094827,11),(1694,1887843627,12),(1694,1901149227,11),(1694,1919293227,12),(1694,1932598827,11),(1694,1950742827,12),(1694,1964048427,11),(1694,1982797227,12),(1694,1995498027,11),(1694,2014246827,12),(1694,2026947627,11),(1694,2045696427,12),(1694,2058397227,11),(1694,2077146027,12),(1694,2090451627,11),(1694,2108595627,12),(1694,2121901227,11),(1694,2140045227,12),(1695,-2147483648,2),(1695,-904435200,1),(1695,-891129600,2),(1695,-872985600,1),(1695,-859680000,2),(1695,354675609,3),(1695,370400410,4),(1695,386125210,3),(1695,401850011,4),(1695,417574811,3),(1695,433299612,4),(1695,449024412,3),(1695,465354012,4),(1695,481078812,3),(1695,496803613,4),(1695,512528413,3),(1695,528253213,4),(1695,543978013,3),(1695,559702813,4),(1695,575427614,3),(1695,591152414,4),(1695,606877214,3),(1695,622602014,4),(1695,638326815,3),(1695,654656415,4),(1695,670381216,3),(1695,686106016,4),(1695,701830816,3),(1695,717555617,4),(1695,733280417,3),(1695,749005218,4),(1695,764730018,3),(1695,780454819,4),(1695,796179619,3),(1695,811904419,4),(1695,828234020,3),(1695,846378020,4),(1695,859683620,3),(1695,877827621,4),(1695,891133221,3),(1695,909277221,4),(1695,922582822,3),(1695,941331622,4),(1695,954032422,3),(1695,972781222,4),(1695,985482022,3),(1695,1004230822,4),(1695,1017536422,3),(1695,1035680422,4),(1695,1048986022,3),(1695,1067130022,4),(1695,1080435622,3),(1695,1099184422,4),(1695,1111885222,3),(1695,1130634022,4),(1695,1143334823,3),(1695,1162083623,4),(1695,1174784423,3),(1695,1193533223,4),(1695,1206838823,3),(1695,1224982823,4),(1695,1238288424,3),(1695,1256432424,4),(1695,1269738024,3),(1695,1288486824,4),(1695,1301187624,3),(1695,1319936424,4),(1695,1332637224,3),(1695,1351386025,4),(1695,1364691625,3),(1695,1382835625,4),(1695,1396141225,3),(1695,1414285225,4),(1695,1427590825,3),(1695,1445734826,4),(1695,1459040426,3),(1695,1477789226,4),(1695,1490490027,3),(1695,1509238827,4),(1695,1521939627,3),(1695,1540688427,4),(1695,1553994027,3),(1695,1572138027,4),(1695,1585443627,3),(1695,1603587627,4),(1695,1616893227,3),(1695,1635642027,4),(1695,1648342827,3),(1695,1667091627,4),(1695,1679792427,3),(1695,1698541227,4),(1695,1711846827,3),(1695,1729990827,4),(1695,1743296427,3),(1695,1761440427,4),(1695,1774746027,3),(1695,1792890027,4),(1695,1806195627,3),(1695,1824944427,4),(1695,1837645227,3),(1695,1856394027,4),(1695,1869094827,3),(1695,1887843627,4),(1695,1901149227,3),(1695,1919293227,4),(1695,1932598827,3),(1695,1950742827,4),(1695,1964048427,3),(1695,1982797227,4),(1695,1995498027,3),(1695,2014246827,4),(1695,2026947627,3),(1695,2045696427,4),(1695,2058397227,3),(1695,2077146027,4),(1695,2090451627,3),(1695,2108595627,4),(1695,2121901227,3),(1695,2140045227,4),(1696,-2147483648,2),(1696,-1690765200,1),(1696,-1680487200,2),(1696,-1664758800,1),(1696,-1648951200,2),(1696,-1635123600,1),(1696,-1616896800,2),(1696,-1604278800,1),(1696,-1585533600,2),(1696,-1571014800,1),(1696,-1555293600,2),(1696,-932432400,1),(1696,-857257200,3),(1696,-844556400,4),(1696,-830311200,1),(1696,-828226800,3),(1696,-812502000,4),(1696,-807156000,1),(1696,-798073200,3),(1696,-781052400,1),(1696,-766717200,2),(1696,-750898800,4),(1696,-733359600,3),(1696,-719456400,4),(1696,-701917200,3),(1696,-689209200,4),(1696,-670460400,3),(1696,-114051600,4),(1696,-103168800,2),(1696,-81997200,4),(1696,-71715600,3),(1696,-50547600,4),(1696,-40266000,3),(1696,-18493200,4),(1696,-8211600,3),(1696,12956400,4),(1696,23238000,3),(1696,43801200,4),(1696,54687600,3),(1696,75855600,4),(1696,86742001,3),(1696,107910002,4),(1696,118191602,3),(1696,138754803,4),(1696,149641203,3),(1696,170809204,4),(1696,181090804,3),(1696,202258805,4),(1696,212540405,3),(1696,233103606,4),(1696,243990006,3),(1696,265158007,4),(1696,276044407,3),(1696,296607608,4),(1696,307494008,3),(1696,315529208,2),(1696,323830809,5),(1696,338950809,6),(1696,354675609,5),(1696,370400410,6),(1696,386125210,5),(1696,401850011,6),(1696,417574811,5),(1696,433299612,6),(1696,449024412,5),(1696,465354012,6),(1696,481078812,5),(1696,496803613,6),(1696,512528413,5),(1696,528253213,6),(1696,543978013,5),(1696,559702813,6),(1696,575427614,5),(1696,591152414,6),(1696,606877214,5),(1696,622602014,6),(1696,638326815,5),(1696,654656415,6),(1696,670381216,5),(1696,686106016,6),(1696,701830816,5),(1696,717555617,6),(1696,733280417,5),(1696,749005218,6),(1696,764730018,5),(1696,780454819,6),(1696,796179619,5),(1696,811904419,6),(1696,828234020,5),(1696,846378020,6),(1696,859683620,5),(1696,877827621,6),(1696,891133221,5),(1696,909277221,6),(1696,922582822,5),(1696,941331622,6),(1696,954032422,5),(1696,972781222,6),(1696,985482022,5),(1696,1004230822,6),(1696,1017536422,5),(1696,1035680422,6),(1696,1048986022,5),(1696,1067130022,6),(1696,1080435622,5),(1696,1099184422,6),(1696,1111885222,5),(1696,1130634022,6),(1696,1143334823,5),(1696,1162083623,6),(1696,1174784423,5),(1696,1193533223,6),(1696,1206838823,5),(1696,1224982823,6),(1696,1238288424,5),(1696,1256432424,6),(1696,1269738024,5),(1696,1288486824,6),(1696,1301187624,5),(1696,1319936424,6),(1696,1332637224,5),(1696,1351386025,6),(1696,1364691625,5),(1696,1382835625,6),(1696,1396141225,5),(1696,1414285225,6),(1696,1427590825,5),(1696,1445734826,6),(1696,1459040426,5),(1696,1477789226,6),(1696,1490490027,5),(1696,1509238827,6),(1696,1521939627,5),(1696,1540688427,6),(1696,1553994027,5),(1696,1572138027,6),(1696,1585443627,5),(1696,1603587627,6),(1696,1616893227,5),(1696,1635642027,6),(1696,1648342827,5),(1696,1667091627,6),(1696,1679792427,5),(1696,1698541227,6),(1696,1711846827,5),(1696,1729990827,6),(1696,1743296427,5),(1696,1761440427,6),(1696,1774746027,5),(1696,1792890027,6),(1696,1806195627,5),(1696,1824944427,6),(1696,1837645227,5),(1696,1856394027,6),(1696,1869094827,5),(1696,1887843627,6),(1696,1901149227,5),(1696,1919293227,6),(1696,1932598827,5),(1696,1950742827,6),(1696,1964048427,5),(1696,1982797227,6),(1696,1995498027,5),(1696,2014246827,6),(1696,2026947627,5),(1696,2045696427,6),(1696,2058397227,5),(1696,2077146027,6),(1696,2090451627,5),(1696,2108595627,6),(1696,2121901227,5),(1696,2140045227,6),(1697,-2147483648,2),(1697,-1693706400,1),(1697,-1680483600,2),(1697,-1663455600,3),(1697,-1650150000,4),(1697,-1632006000,3),(1697,-1618700400,4),(1697,-1577926800,2),(1697,-1569711600,3),(1697,-1555801200,4),(1697,-938905200,3),(1697,-857257200,4),(1697,-844556400,3),(1697,-828226800,4),(1697,-812502000,3),(1697,-796777200,4),(1697,-781052400,3),(1697,-780188400,4),(1697,-757386000,2),(1697,-748479600,3),(1697,-733273200,4),(1697,-717634800,3),(1697,-701910000,4),(1697,-684975600,3),(1697,-670460400,4),(1697,323823609,1),(1697,338940009,2),(1697,354675609,5),(1697,370400410,6),(1697,386125210,5),(1697,401850011,6),(1697,417574811,5),(1697,433299612,6),(1697,449024412,5),(1697,465354012,6),(1697,481078812,5),(1697,496803613,6),(1697,512528413,5),(1697,528253213,6),(1697,543978013,5),(1697,559702813,6),(1697,575427614,5),(1697,591152414,6),(1697,606877214,5),(1697,622602014,6),(1697,638326815,5),(1697,654656415,6),(1697,670381216,5),(1697,686106016,6),(1697,701830816,5),(1697,717555617,6),(1697,733280417,5),(1697,749005218,6),(1697,764730018,5),(1697,780454819,6),(1697,796179619,5),(1697,811904419,6),(1697,828234020,5),(1697,846378020,6),(1697,859683620,5),(1697,877827621,6),(1697,891133221,5),(1697,909277221,6),(1697,922582822,5),(1697,941331622,6),(1697,954032422,5),(1697,972781222,6),(1697,985482022,5),(1697,1004230822,6),(1697,1017536422,5),(1697,1035680422,6),(1697,1048986022,5),(1697,1067130022,6),(1697,1080435622,5),(1697,1099184422,6),(1697,1111885222,5),(1697,1130634022,6),(1697,1143334823,5),(1697,1162083623,6),(1697,1174784423,5),(1697,1193533223,6),(1697,1206838823,5),(1697,1224982823,6),(1697,1238288424,5),(1697,1256432424,6),(1697,1269738024,5),(1697,1288486824,6),(1697,1301187624,5),(1697,1319936424,6),(1697,1332637224,5),(1697,1351386025,6),(1697,1364691625,5),(1697,1382835625,6),(1697,1396141225,5),(1697,1414285225,6),(1697,1427590825,5),(1697,1445734826,6),(1697,1459040426,5),(1697,1477789226,6),(1697,1490490027,5),(1697,1509238827,6),(1697,1521939627,5),(1697,1540688427,6),(1697,1553994027,5),(1697,1572138027,6),(1697,1585443627,5),(1697,1603587627,6),(1697,1616893227,5),(1697,1635642027,6),(1697,1648342827,5),(1697,1667091627,6),(1697,1679792427,5),(1697,1698541227,6),(1697,1711846827,5),(1697,1729990827,6),(1697,1743296427,5),(1697,1761440427,6),(1697,1774746027,5),(1697,1792890027,6),(1697,1806195627,5),(1697,1824944427,6),(1697,1837645227,5),(1697,1856394027,6),(1697,1869094827,5),(1697,1887843627,6),(1697,1901149227,5),(1697,1919293227,6),(1697,1932598827,5),(1697,1950742827,6),(1697,1964048427,5),(1697,1982797227,6),(1697,1995498027,5),(1697,2014246827,6),(1697,2026947627,5),(1697,2045696427,6),(1697,2058397227,5),(1697,2077146027,6),(1697,2090451627,5),(1697,2108595627,6),(1697,2121901227,5),(1697,2140045227,6),(1698,-2147483648,1),(1698,-1672536240,2),(1698,-1585100136,3),(1698,-1561251600,4),(1698,-1553565600,3),(1698,-928198800,5),(1698,-900126000,8),(1698,-857257200,6),(1698,-844556400,7),(1698,-828226800,6),(1698,-812502000,7),(1698,-802144800,5),(1698,354920409,9),(1698,370728010,5),(1698,386456410,9),(1698,402264011,5),(1698,417992411,9),(1698,433800012,5),(1698,449614812,9),(1698,465346812,10),(1698,481071612,11),(1698,496796413,10),(1698,512521213,11),(1698,528246013,10),(1698,543970813,11),(1698,559695613,10),(1698,575420414,11),(1698,591145214,10),(1698,606870014,12),(1698,622598414,13),(1698,638323215,12),(1698,654652815,13),(1698,670377616,12),(1698,686102416,13),(1698,701827216,12),(1698,717552017,13),(1698,733276817,12),(1698,749001618,13),(1698,764726418,12),(1698,780451219,13),(1698,796176019,12),(1698,811900819,13),(1698,828230420,12),(1698,846374420,13),(1698,859680020,12),(1698,877824021,13),(1698,883605621,4),(1698,891133221,14),(1698,909277221,15),(1698,922582822,14),(1698,941331622,16),(1698,1041372022,4),(1698,1048986022,17),(1698,1067130022,16),(1698,1080435622,17),(1698,1099184422,16),(1698,1111885222,17),(1698,1130634022,16),(1698,1143334823,17),(1698,1162083623,16),(1698,1174784423,17),(1698,1193533223,16),(1698,1206838823,17),(1698,1224982823,16),(1698,1238288424,17),(1698,1256432424,16),(1698,1269738024,17),(1698,1288486824,16),(1698,1301187624,17),(1698,1319936424,16),(1698,1332637224,17),(1698,1351386025,16),(1698,1364691625,17),(1698,1382835625,16),(1698,1396141225,17),(1698,1414285225,16),(1698,1427590825,17),(1698,1445734826,16),(1698,1459040426,17),(1698,1477789226,16),(1698,1490490027,17),(1698,1509238827,16),(1698,1521939627,17),(1698,1540688427,16),(1698,1553994027,17),(1698,1572138027,16),(1698,1585443627,17),(1698,1603587627,16),(1698,1616893227,17),(1698,1635642027,16),(1698,1648342827,17),(1698,1667091627,16),(1698,1679792427,17),(1698,1698541227,16),(1698,1711846827,17),(1698,1729990827,16),(1698,1743296427,17),(1698,1761440427,16),(1698,1774746027,17),(1698,1792890027,16),(1698,1806195627,17),(1698,1824944427,16),(1698,1837645227,17),(1698,1856394027,16),(1698,1869094827,17),(1698,1887843627,16),(1698,1901149227,17),(1698,1919293227,16),(1698,1932598827,17),(1698,1950742827,16),(1698,1964048427,17),(1698,1982797227,16),(1698,1995498027,17),(1698,2014246827,16),(1698,2026947627,17),(1698,2045696427,16),(1698,2058397227,17),(1698,2077146027,16),(1698,2090451627,17),(1698,2108595627,16),(1698,2121901227,17),(1698,2140045227,16),(1699,-2147483648,0),(1699,-1577761060,1),(1699,-1247540400,2),(1699,354916809,3),(1699,370724410,2),(1699,386452810,3),(1699,402260411,2),(1699,417988811,3),(1699,433796412,2),(1699,449611212,3),(1699,465343212,4),(1699,481068012,5),(1699,496792813,4),(1699,512517613,5),(1699,528242413,4),(1699,543967213,5),(1699,559692013,4),(1699,575416814,6),(1699,591145214,7),(1699,606870014,6),(1699,622594814,7),(1699,638319615,6),(1699,654649215,7),(1699,670374016,4),(1699,701820016,6),(1699,717548417,7),(1699,733273217,6),(1699,748998018,7),(1699,764722818,6),(1699,780447619,7),(1699,796172419,6),(1699,811897219,7),(1699,828226820,6),(1699,846370820,7),(1699,859676420,6),(1699,877820421,7),(1699,891126021,6),(1699,909270021,7),(1699,922575622,6),(1699,941324422,7),(1699,954025222,6),(1699,972774022,7),(1699,985474822,6),(1699,1004223622,7),(1699,1017529222,6),(1699,1035673222,7),(1699,1048978822,6),(1699,1067122822,7),(1699,1080428422,6),(1699,1099177222,7),(1699,1111878022,6),(1699,1130626822,7),(1699,1143327623,6),(1699,1162076423,7),(1699,1174777223,6),(1699,1193526023,7),(1699,1206831623,6),(1699,1224975623,7),(1699,1238281224,6),(1699,1256425224,7),(1699,1269730824,6),(1699,1288479624,7),(1699,1301180424,4),(1699,1414274425,7),(1699,1540681227,4),(1700,-2147483648,1),(1700,-1717032240,3),(1700,-1693706400,2),(1700,-1680483600,3),(1700,-1663455600,4),(1700,-1650150000,5),(1700,-1632006000,4),(1700,-1618700400,8),(1700,-1600473600,6),(1700,-1587168000,7),(1700,-1501725600,3),(1700,-931734000,2),(1700,-857257200,5),(1700,-844556400,4),(1700,-828226800,5),(1700,-812502000,4),(1700,-796874400,2),(1700,-796608000,3),(1700,-778726800,2),(1700,-762660000,3),(1700,-748486800,4),(1700,-733273200,5),(1700,-715215600,4),(1700,-701910000,5),(1700,-684975600,4),(1700,-670460400,5),(1700,-654130800,4),(1700,-639010800,5),(1700,-397094400,4),(1700,-386812800,5),(1700,-371088000,4),(1700,-355363200,5),(1700,-334195200,4),(1700,-323308800,5),(1700,-307584000,4),(1700,-291859200,5),(1700,-271296000,4),(1700,-260409600,5),(1700,-239846400,4),(1700,-228960000,5),(1700,-208396800,4),(1700,-197510400,5),(1700,-176342400,4),(1700,-166060800,5),(1700,220921205,3),(1700,228873606,4),(1700,243993606,5),(1700,260323207,4),(1700,276048007,5),(1700,291772808,4),(1700,307497608,5),(1700,323827209,4),(1700,338947209,5),(1700,354672009,4),(1700,370396810,5),(1700,386121610,4),(1700,401846411,5),(1700,417571211,4),(1700,433296012,5),(1700,449020812,4),(1700,465350412,5),(1700,481075212,4),(1700,496800013,5),(1700,512524813,4),(1700,528249613,5),(1700,543974413,4),(1700,559699213,5),(1700,567990013,3),(1700,575427614,9),(1700,591152414,10),(1700,606877214,9),(1700,622602014,10),(1700,638326815,9),(1700,654656415,10),(1700,670381216,9),(1700,686106016,10),(1700,701830816,9),(1700,717555617,10),(1700,733280417,9),(1700,749005218,10),(1700,764730018,9),(1700,780454819,10),(1700,796179619,9),(1700,811904419,10),(1700,828234020,9),(1700,846378020,10),(1700,859683620,9),(1700,877827621,10),(1700,891133221,9),(1700,909277221,10),(1700,922582822,9),(1700,941331622,10),(1700,954032422,9),(1700,972781222,10),(1700,985482022,9),(1700,1004230822,10),(1700,1017536422,9),(1700,1035680422,10),(1700,1048986022,9),(1700,1067130022,10),(1700,1080435622,9),(1700,1099184422,10),(1700,1111885222,9),(1700,1130634022,10),(1700,1143334823,9),(1700,1162083623,10),(1700,1174784423,9),(1700,1193533223,10),(1700,1206838823,9),(1700,1224982823,10),(1700,1238288424,9),(1700,1256432424,10),(1700,1269738024,9),(1700,1288486824,10),(1700,1301187624,9),(1700,1319936424,10),(1700,1332637224,9),(1700,1351386025,10),(1700,1364691625,9),(1700,1382835625,10),(1700,1396141225,9),(1700,1414285225,10),(1700,1427590825,9),(1700,1445734826,10),(1700,1459040426,9),(1700,1477789226,10),(1700,1490490027,9),(1700,1509238827,10),(1700,1521939627,9),(1700,1540688427,10),(1700,1553994027,9),(1700,1572138027,10),(1700,1585443627,9),(1700,1603587627,10),(1700,1616893227,9),(1700,1635642027,10),(1700,1648342827,9),(1700,1667091627,10),(1700,1679792427,9),(1700,1698541227,10),(1700,1711846827,9),(1700,1729990827,10),(1700,1743296427,9),(1700,1761440427,10),(1700,1774746027,9),(1700,1792890027,10),(1700,1806195627,9),(1700,1824944427,10),(1700,1837645227,9),(1700,1856394027,10),(1700,1869094827,9),(1700,1887843627,10),(1700,1901149227,9),(1700,1919293227,10),(1700,1932598827,9),(1700,1950742827,10),(1700,1964048427,9),(1700,1982797227,10),(1700,1995498027,9),(1700,2014246827,10),(1700,2026947627,9),(1700,2045696427,10),(1700,2058397227,9),(1700,2077146027,10),(1700,2090451627,9),(1700,2108595627,10),(1700,2121901227,9),(1700,2140045227,10),(1701,-2147483648,1),(1701,-905824800,4),(1701,-857257200,2),(1701,-844556400,3),(1701,-828226800,2),(1701,-812502000,3),(1701,-796777200,2),(1701,-788922000,1),(1701,-777942000,3),(1701,-766623600,2),(1701,407199611,1),(1701,417574811,5),(1701,433299612,6),(1701,449024412,5),(1701,465354012,6),(1701,481078812,5),(1701,496803613,6),(1701,512528413,5),(1701,528253213,6),(1701,543978013,5),(1701,559702813,6),(1701,575427614,5),(1701,591152414,6),(1701,606877214,5),(1701,622602014,6),(1701,638326815,5),(1701,654656415,6),(1701,670381216,5),(1701,686106016,6),(1701,701830816,5),(1701,717555617,6),(1701,733280417,5),(1701,749005218,6),(1701,764730018,5),(1701,780454819,6),(1701,796179619,5),(1701,811904419,6),(1701,828234020,5),(1701,846378020,6),(1701,859683620,5),(1701,877827621,6),(1701,891133221,5),(1701,909277221,6),(1701,922582822,5),(1701,941331622,6),(1701,954032422,5),(1701,972781222,6),(1701,985482022,5),(1701,1004230822,6),(1701,1017536422,5),(1701,1035680422,6),(1701,1048986022,5),(1701,1067130022,6),(1701,1080435622,5),(1701,1099184422,6),(1701,1111885222,5),(1701,1130634022,6),(1701,1143334823,5),(1701,1162083623,6),(1701,1174784423,5),(1701,1193533223,6),(1701,1206838823,5),(1701,1224982823,6),(1701,1238288424,5),(1701,1256432424,6),(1701,1269738024,5),(1701,1288486824,6),(1701,1301187624,5),(1701,1319936424,6),(1701,1332637224,5),(1701,1351386025,6),(1701,1364691625,5),(1701,1382835625,6),(1701,1396141225,5),(1701,1414285225,6),(1701,1427590825,5),(1701,1445734826,6),(1701,1459040426,5),(1701,1477789226,6),(1701,1490490027,5),(1701,1509238827,6),(1701,1521939627,5),(1701,1540688427,6),(1701,1553994027,5),(1701,1572138027,6),(1701,1585443627,5),(1701,1603587627,6),(1701,1616893227,5),(1701,1635642027,6),(1701,1648342827,5),(1701,1667091627,6),(1701,1679792427,5),(1701,1698541227,6),(1701,1711846827,5),(1701,1729990827,6),(1701,1743296427,5),(1701,1761440427,6),(1701,1774746027,5),(1701,1792890027,6),(1701,1806195627,5),(1701,1824944427,6),(1701,1837645227,5),(1701,1856394027,6),(1701,1869094827,5),(1701,1887843627,6),(1701,1901149227,5),(1701,1919293227,6),(1701,1932598827,5),(1701,1950742827,6),(1701,1964048427,5),(1701,1982797227,6),(1701,1995498027,5),(1701,2014246827,6),(1701,2026947627,5),(1701,2045696427,6),(1701,2058397227,5),(1701,2077146027,6),(1701,2090451627,5),(1701,2108595627,6),(1701,2121901227,5),(1701,2140045227,6),(1702,-2147483648,1),(1702,-1441160400,2),(1702,-1247536800,3),(1702,-894769200,6),(1702,-857257200,4),(1702,-844556400,5),(1702,-828226800,4),(1702,-826419600,3),(1702,354920409,7),(1702,370728010,3),(1702,386456410,7),(1702,402264011,3),(1702,417992411,7),(1702,433800012,3),(1702,449614812,7),(1702,465346812,8),(1702,481071612,9),(1702,496796413,8),(1702,512521213,9),(1702,528246013,8),(1702,543970813,9),(1702,559695613,8),(1702,575420414,9),(1702,591145214,8),(1702,606870014,9),(1702,622594814,8),(1702,638319615,9),(1702,654649215,8),(1702,670374016,10),(1702,686091616,2),(1702,701820016,10),(1702,717541217,2),(1702,733269617,10),(1702,748990818,2),(1702,764719218,10),(1702,780440419,2),(1702,796179619,11),(1702,811904419,12),(1702,828234020,11),(1702,846378020,12),(1702,859683620,11),(1702,877827621,12),(1702,891133221,11),(1702,909277221,12),(1702,922582822,11),(1702,941331622,12),(1702,954032422,11),(1702,972781222,12),(1702,985482022,11),(1702,1004230822,12),(1702,1017536422,11),(1702,1035680422,12),(1702,1048986022,11),(1702,1067130022,12),(1702,1080435622,11),(1702,1099184422,12),(1702,1111885222,11),(1702,1130634022,12),(1702,1143334823,11),(1702,1162083623,12),(1702,1174784423,11),(1702,1193533223,12),(1702,1206838823,11),(1702,1224982823,12),(1702,1238288424,11),(1702,1256432424,12),(1702,1269738024,11),(1702,1288486824,12),(1702,1301187624,11),(1702,1319936424,12),(1702,1332637224,11),(1702,1351386025,12),(1702,1364691625,11),(1702,1382835625,12),(1702,1396141225,11),(1702,1414285225,12),(1702,1427590825,11),(1702,1445734826,12),(1702,1459040426,11),(1702,1477789226,12),(1702,1490490027,11),(1702,1509238827,12),(1702,1521939627,11),(1702,1540688427,12),(1702,1553994027,11),(1702,1572138027,12),(1702,1585443627,11),(1702,1603587627,12),(1702,1616893227,11),(1702,1635642027,12),(1702,1648342827,11),(1702,1667091627,12),(1702,1679792427,11),(1702,1698541227,12),(1702,1711846827,11),(1702,1729990827,12),(1702,1743296427,11),(1702,1761440427,12),(1702,1774746027,11),(1702,1792890027,12),(1702,1806195627,11),(1702,1824944427,12),(1702,1837645227,11),(1702,1856394027,12),(1702,1869094827,11),(1702,1887843627,12),(1702,1901149227,11),(1702,1919293227,12),(1702,1932598827,11),(1702,1950742827,12),(1702,1964048427,11),(1702,1982797227,12),(1702,1995498027,11),(1702,2014246827,12),(1702,2026947627,11),(1702,2045696427,12),(1702,2058397227,11),(1702,2077146027,12),(1702,2090451627,11),(1702,2108595627,12),(1702,2121901227,11),(1702,2140045227,12),(1703,-2147483648,2),(1703,-904435200,1),(1703,-891129600,2),(1703,-872985600,1),(1703,-859680000,2),(1703,354675609,3),(1703,370400410,4),(1703,386125210,3),(1703,401850011,4),(1703,417574811,3),(1703,433299612,4),(1703,449024412,3),(1703,465354012,4),(1703,481078812,3),(1703,496803613,4),(1703,512528413,3),(1703,528253213,4),(1703,543978013,3),(1703,559702813,4),(1703,575427614,3),(1703,591152414,4),(1703,606877214,3),(1703,622602014,4),(1703,638326815,3),(1703,654656415,4),(1703,670381216,3),(1703,686106016,4),(1703,701830816,3),(1703,717555617,4),(1703,733280417,3),(1703,749005218,4),(1703,764730018,3),(1703,780454819,4),(1703,796179619,3),(1703,811904419,4),(1703,828234020,3),(1703,846378020,4),(1703,859683620,3),(1703,877827621,4),(1703,891133221,3),(1703,909277221,4),(1703,922582822,3),(1703,941331622,4),(1703,954032422,3),(1703,972781222,4),(1703,985482022,3),(1703,1004230822,4),(1703,1017536422,3),(1703,1035680422,4),(1703,1048986022,3),(1703,1067130022,4),(1703,1080435622,3),(1703,1099184422,4),(1703,1111885222,3),(1703,1130634022,4),(1703,1143334823,3),(1703,1162083623,4),(1703,1174784423,3),(1703,1193533223,4),(1703,1206838823,3),(1703,1224982823,4),(1703,1238288424,3),(1703,1256432424,4),(1703,1269738024,3),(1703,1288486824,4),(1703,1301187624,3),(1703,1319936424,4),(1703,1332637224,3),(1703,1351386025,4),(1703,1364691625,3),(1703,1382835625,4),(1703,1396141225,3),(1703,1414285225,4),(1703,1427590825,3),(1703,1445734826,4),(1703,1459040426,3),(1703,1477789226,4),(1703,1490490027,3),(1703,1509238827,4),(1703,1521939627,3),(1703,1540688427,4),(1703,1553994027,3),(1703,1572138027,4),(1703,1585443627,3),(1703,1603587627,4),(1703,1616893227,3),(1703,1635642027,4),(1703,1648342827,3),(1703,1667091627,4),(1703,1679792427,3),(1703,1698541227,4),(1703,1711846827,3),(1703,1729990827,4),(1703,1743296427,3),(1703,1761440427,4),(1703,1774746027,3),(1703,1792890027,4),(1703,1806195627,3),(1703,1824944427,4),(1703,1837645227,3),(1703,1856394027,4),(1703,1869094827,3),(1703,1887843627,4),(1703,1901149227,3),(1703,1919293227,4),(1703,1932598827,3),(1703,1950742827,4),(1703,1964048427,3),(1703,1982797227,4),(1703,1995498027,3),(1703,2014246827,4),(1703,2026947627,3),(1703,2045696427,4),(1703,2058397227,3),(1703,2077146027,4),(1703,2090451627,3),(1703,2108595627,4),(1703,2121901227,3),(1703,2140045227,4),(1705,-2147483648,2),(1705,-1691964000,1),(1705,-1680472800,2),(1705,-1664143200,1),(1705,-1650146400,2),(1705,-1633903200,1),(1705,-1617487200,2),(1705,-1601848800,1),(1705,-1586037600,2),(1705,-1570399200,1),(1705,-1552168800,2),(1705,-1538344800,1),(1705,-1522533600,2),(1705,-1507500000,1),(1705,-1490565600,2),(1705,-1473631200,1),(1705,-1460930400,2),(1705,-1442786400,1),(1705,-1428876000,2),(1705,-1410732000,1),(1705,-1396216800,2),(1705,-1379282400,1),(1705,-1364767200,2),(1705,-1348437600,1),(1705,-1333317600,2),(1705,-1315778400,1),(1705,-1301263200,2),(1705,-1284328800,1),(1705,-1269813600,2),(1705,-1253484000,1),(1705,-1238364000,2),(1705,-1221429600,1),(1705,-1206914400,2),(1705,-1189980000,1),(1705,-1175464800,2),(1705,-1159135200,1),(1705,-1143410400,2),(1705,-1126476000,1),(1705,-1111960800,2),(1705,-1095631200,1),(1705,-1080511200,2),(1705,-1063576800,1),(1705,-1049061600,2),(1705,-1032127200,1),(1705,-1017612000,2),(1705,-1001282400,1),(1705,-986162400,2),(1705,-969228000,1),(1705,-950479200,2),(1705,-942012000,1),(1705,-904518000,3),(1705,-896050800,1),(1705,-875487600,3),(1705,-864601200,1),(1705,-844038000,3),(1705,-832546800,1),(1705,-812588400,3),(1705,-798073200,1),(1705,-781052400,3),(1705,-772066800,1),(1705,-764805600,2),(1705,-748476000,1),(1705,-733356000,2),(1705,-719445600,1),(1705,-717030000,3),(1705,-706748400,1),(1705,-699487200,2),(1705,-687996000,1),(1705,-668037600,2),(1705,-654732000,1),(1705,-636588000,2),(1705,-622072800,1),(1705,-605743200,2),(1705,-590623200,1),(1705,-574293600,2),(1705,-558568800,1),(1705,-542239200,2),(1705,-527119200,1),(1705,-512604000,2),(1705,-496274400,1),(1705,-481154400,2),(1705,-464220000,1),(1705,-449704800,2),(1705,-432165600,1),(1705,-417650400,2),(1705,-401320800,1),(1705,-386200800,2),(1705,-369266400,1),(1705,-354751200,2),(1705,-337816800,1),(1705,-323301600,2),(1705,-306972000,1),(1705,-291852000,2),(1705,-276732000,1),(1705,-257983200,2),(1705,-245282400,1),(1705,-226533600,2),(1705,-213228000,1),(1705,-195084000,2),(1705,-182383200,1),(1705,-163634400,2),(1705,-150933600,1),(1705,-132184800,2),(1705,-119484000,1),(1705,-100735200,2),(1705,-88034400,1),(1705,-68680800,2),(1705,-59004000,1),(1705,-37242000,4),(1705,57722400,6),(1705,69818400,1),(1705,89172001,2),(1705,101268002,1),(1705,120621602,2),(1705,132717603,1),(1705,152071203,2),(1705,164167204,1),(1705,183520804,2),(1705,196221605,1),(1705,214970405,2),(1705,227671206,1),(1705,246420006,2),(1705,259120807,1),(1705,278474407,2),(1705,290570408,1),(1705,309924008,2),(1705,322020009,1),(1705,341373609,2),(1705,354675609,5),(1705,372819610,6),(1705,386125210,5),(1705,404269211,6),(1705,417574811,5),(1705,435718812,6),(1705,449024412,5),(1705,467773212,6),(1705,481078812,5),(1705,499222813,6),(1705,512528413,5),(1705,530672413,6),(1705,543978013,5),(1705,562122013,6),(1705,575427614,5),(1705,593571614,6),(1705,606877214,5),(1705,625626014,6),(1705,638326815,5),(1705,657075615,6),(1705,670381216,5),(1705,688525216,6),(1705,701830816,5),(1705,719974817,6),(1705,733280417,5),(1705,751424418,6),(1705,764730018,5),(1705,782874019,6),(1705,796179619,5),(1705,814323619,6),(1705,820454420,7),(1705,828234020,5),(1705,846378020,6),(1705,859683620,5),(1705,877827621,6),(1705,891133221,5),(1705,909277221,6),(1705,922582822,5),(1705,941331622,6),(1705,954032422,5),(1705,972781222,6),(1705,985482022,5),(1705,1004230822,6),(1705,1017536422,5),(1705,1035680422,6),(1705,1048986022,5),(1705,1067130022,6),(1705,1080435622,5),(1705,1099184422,6),(1705,1111885222,5),(1705,1130634022,6),(1705,1143334823,5),(1705,1162083623,6),(1705,1174784423,5),(1705,1193533223,6),(1705,1206838823,5),(1705,1224982823,6),(1705,1238288424,5),(1705,1256432424,6),(1705,1269738024,5),(1705,1288486824,6),(1705,1301187624,5),(1705,1319936424,6),(1705,1332637224,5),(1705,1351386025,6),(1705,1364691625,5),(1705,1382835625,6),(1705,1396141225,5),(1705,1414285225,6),(1705,1427590825,5),(1705,1445734826,6),(1705,1459040426,5),(1705,1477789226,6),(1705,1490490027,5),(1705,1509238827,6),(1705,1521939627,5),(1705,1540688427,6),(1705,1553994027,5),(1705,1572138027,6),(1705,1585443627,5),(1705,1603587627,6),(1705,1616893227,5),(1705,1635642027,6),(1705,1648342827,5),(1705,1667091627,6),(1705,1679792427,5),(1705,1698541227,6),(1705,1711846827,5),(1705,1729990827,6),(1705,1743296427,5),(1705,1761440427,6),(1705,1774746027,5),(1705,1792890027,6),(1705,1806195627,5),(1705,1824944427,6),(1705,1837645227,5),(1705,1856394027,6),(1705,1869094827,5),(1705,1887843627,6),(1705,1901149227,5),(1705,1919293227,6),(1705,1932598827,5),(1705,1950742827,6),(1705,1964048427,5),(1705,1982797227,6),(1705,1995498027,5),(1705,2014246827,6),(1705,2026947627,5),(1705,2045696427,6),(1705,2058397227,5),(1705,2077146027,6),(1705,2090451627,5),(1705,2108595627,6),(1705,2121901227,5),(1705,2140045227,6),(1706,-2147483648,2),(1706,-1691964000,1),(1706,-1680472800,2),(1706,-1664143200,1),(1706,-1650146400,2),(1706,-1633903200,1),(1706,-1617487200,2),(1706,-1601848800,1),(1706,-1586037600,2),(1706,-1570399200,1),(1706,-1552168800,2),(1706,-1538344800,1),(1706,-1522533600,2),(1706,-1507500000,1),(1706,-1490565600,2),(1706,-1473631200,1),(1706,-1460930400,2),(1706,-1442786400,1),(1706,-1428876000,2),(1706,-1410732000,1),(1706,-1396216800,2),(1706,-1379282400,1),(1706,-1364767200,2),(1706,-1348437600,1),(1706,-1333317600,2),(1706,-1315778400,1),(1706,-1301263200,2),(1706,-1284328800,1),(1706,-1269813600,2),(1706,-1253484000,1),(1706,-1238364000,2),(1706,-1221429600,1),(1706,-1206914400,2),(1706,-1189980000,1),(1706,-1175464800,2),(1706,-1159135200,1),(1706,-1143410400,2),(1706,-1126476000,1),(1706,-1111960800,2),(1706,-1095631200,1),(1706,-1080511200,2),(1706,-1063576800,1),(1706,-1049061600,2),(1706,-1032127200,1),(1706,-1017612000,2),(1706,-1001282400,1),(1706,-986162400,2),(1706,-969228000,1),(1706,-950479200,2),(1706,-942012000,1),(1706,-904518000,3),(1706,-896050800,1),(1706,-875487600,3),(1706,-864601200,1),(1706,-844038000,3),(1706,-832546800,1),(1706,-812588400,3),(1706,-798073200,1),(1706,-781052400,3),(1706,-772066800,1),(1706,-764805600,2),(1706,-748476000,1),(1706,-733356000,2),(1706,-719445600,1),(1706,-717030000,3),(1706,-706748400,1),(1706,-699487200,2),(1706,-687996000,1),(1706,-668037600,2),(1706,-654732000,1),(1706,-636588000,2),(1706,-622072800,1),(1706,-605743200,2),(1706,-590623200,1),(1706,-574293600,2),(1706,-558568800,1),(1706,-542239200,2),(1706,-527119200,1),(1706,-512604000,2),(1706,-496274400,1),(1706,-481154400,2),(1706,-464220000,1),(1706,-449704800,2),(1706,-432165600,1),(1706,-417650400,2),(1706,-401320800,1),(1706,-386200800,2),(1706,-369266400,1),(1706,-354751200,2),(1706,-337816800,1),(1706,-323301600,2),(1706,-306972000,1),(1706,-291852000,2),(1706,-276732000,1),(1706,-257983200,2),(1706,-245282400,1),(1706,-226533600,2),(1706,-213228000,1),(1706,-195084000,2),(1706,-182383200,1),(1706,-163634400,2),(1706,-150933600,1),(1706,-132184800,2),(1706,-119484000,1),(1706,-100735200,2),(1706,-88034400,1),(1706,-68680800,2),(1706,-59004000,1),(1706,-37242000,4),(1706,57722400,6),(1706,69818400,1),(1706,89172001,2),(1706,101268002,1),(1706,120621602,2),(1706,132717603,1),(1706,152071203,2),(1706,164167204,1),(1706,183520804,2),(1706,196221605,1),(1706,214970405,2),(1706,227671206,1),(1706,246420006,2),(1706,259120807,1),(1706,278474407,2),(1706,290570408,1),(1706,309924008,2),(1706,322020009,1),(1706,341373609,2),(1706,354675609,5),(1706,372819610,6),(1706,386125210,5),(1706,404269211,6),(1706,417574811,5),(1706,435718812,6),(1706,449024412,5),(1706,467773212,6),(1706,481078812,5),(1706,499222813,6),(1706,512528413,5),(1706,530672413,6),(1706,543978013,5),(1706,562122013,6),(1706,575427614,5),(1706,593571614,6),(1706,606877214,5),(1706,625626014,6),(1706,638326815,5),(1706,657075615,6),(1706,670381216,5),(1706,688525216,6),(1706,701830816,5),(1706,719974817,6),(1706,733280417,5),(1706,751424418,6),(1706,764730018,5),(1706,782874019,6),(1706,796179619,5),(1706,814323619,6),(1706,820454420,7),(1706,828234020,5),(1706,846378020,6),(1706,859683620,5),(1706,877827621,6),(1706,891133221,5),(1706,909277221,6),(1706,922582822,5),(1706,941331622,6),(1706,954032422,5),(1706,972781222,6),(1706,985482022,5),(1706,1004230822,6),(1706,1017536422,5),(1706,1035680422,6),(1706,1048986022,5),(1706,1067130022,6),(1706,1080435622,5),(1706,1099184422,6),(1706,1111885222,5),(1706,1130634022,6),(1706,1143334823,5),(1706,1162083623,6),(1706,1174784423,5),(1706,1193533223,6),(1706,1206838823,5),(1706,1224982823,6),(1706,1238288424,5),(1706,1256432424,6),(1706,1269738024,5),(1706,1288486824,6),(1706,1301187624,5),(1706,1319936424,6),(1706,1332637224,5),(1706,1351386025,6),(1706,1364691625,5),(1706,1382835625,6),(1706,1396141225,5),(1706,1414285225,6),(1706,1427590825,5),(1706,1445734826,6),(1706,1459040426,5),(1706,1477789226,6),(1706,1490490027,5),(1706,1509238827,6),(1706,1521939627,5),(1706,1540688427,6),(1706,1553994027,5),(1706,1572138027,6),(1706,1585443627,5),(1706,1603587627,6),(1706,1616893227,5),(1706,1635642027,6),(1706,1648342827,5),(1706,1667091627,6),(1706,1679792427,5),(1706,1698541227,6),(1706,1711846827,5),(1706,1729990827,6),(1706,1743296427,5),(1706,1761440427,6),(1706,1774746027,5),(1706,1792890027,6),(1706,1806195627,5),(1706,1824944427,6),(1706,1837645227,5),(1706,1856394027,6),(1706,1869094827,5),(1706,1887843627,6),(1706,1901149227,5),(1706,1919293227,6),(1706,1932598827,5),(1706,1950742827,6),(1706,1964048427,5),(1706,1982797227,6),(1706,1995498027,5),(1706,2014246827,6),(1706,2026947627,5),(1706,2045696427,6),(1706,2058397227,5),(1706,2077146027,6),(1706,2090451627,5),(1706,2108595627,6),(1706,2121901227,5),(1706,2140045227,6),(1713,-2147483648,0),(1713,-2056690800,1),(1713,-900910800,2),(1713,-891579600,3),(1713,-884248200,4),(1713,-761209200,1),(1713,-747907200,2),(1713,-728541000,5),(1713,-717049800,6),(1713,-697091400,5),(1713,-683785800,6),(1713,-668061000,5),(1713,-654755400,2),(1713,-636611400,5),(1713,-623305800,2),(1713,-605161800,5),(1713,-591856200,2),(1713,-573712200,5),(1713,-559801800,2),(1713,-541657800,5),(1713,-528352200,2),(1713,-510211800,1),(1713,-498112200,2),(1713,-478762200,1),(1713,-466662600,2),(1713,-446707800,1),(1713,-435213000,2),(1713,-415258200,1),(1713,-403158600,2),(1713,-383808600,1),(1713,-371709000,2),(1713,-352359000,1),(1713,-340259400,2),(1713,-320909400,1),(1713,-308809800,2),(1713,-288855000,1),(1713,-277360200,2),(1713,-257405400,1),(1713,-245910600,2),(1713,-225955800,1),(1713,-213856200,2),(1713,-194506200,1),(1713,-182406600,2),(1713,-163056600,1),(1713,-148537800,2),(1713,-132816600,1),(1713,-117088200,2),(1713,-101367000,1),(1713,-85638600,2),(1713,-69312600,1),(1713,-53584200,2),(1713,-37863000,1),(1713,-22134600,2),(1713,-6413400,1),(1713,9315000,2),(1713,25036200,1),(1713,40764600,2),(1713,56485800,1),(1713,72214200,2),(1713,88540201,1),(1713,104268602,2),(1713,119989802,1),(1713,126041402,2),(1713,151439403,1),(1713,167167804,2),(1713,182889004,1),(1713,198617405,2),(1713,214338605,1),(1713,295385408,2),(1713,309292208,1),(1714,-2147483648,0),(1714,-1956609120,2),(1714,-1668211200,1),(1714,-1647212400,2),(1714,-1636675200,1),(1714,-1613430000,2),(1714,-1605139200,1),(1714,-1581894000,2),(1714,-1539561600,1),(1714,-1531350000,2),(1714,-968025600,1),(1714,-952293600,2),(1714,-942008400,1),(1714,-920239200,3),(1714,-909957600,4),(1714,-888789600,3),(1714,-877903200,4),(1714,-857944800,3),(1714,-846453600,4),(1714,-826495200,3),(1714,-815004000,4),(1714,-795045600,3),(1714,-783554400,4),(1714,-762991200,3),(1714,-752104800,4),(1714,-731541600,3),(1714,-717631200,4),(1714,-700092000,3),(1714,-686181600,4),(1714,-668642400,3),(1714,-654732000,4),(1714,-636588000,3),(1714,-623282400,4),(1714,-605743200,3),(1714,-591832800,4),(1714,-573688800,3),(1714,-559778400,4),(1714,-542239200,3),(1714,-528328800,4),(1714,-510789600,3),(1714,-496879200,4),(1714,-479340000,3),(1714,-465429600,4),(1714,-447890400,3),(1714,-433980000,4),(1714,-415836000,3),(1714,-401925600,4),(1714,-384386400,3),(1714,-370476000,4),(1714,-352936800,3),(1714,-339026400,4),(1714,-321487200,3),(1714,-307576800,4),(1714,-290037600,3),(1714,-276127200,4),(1714,-258588000,3),(1714,-244677600,4),(1714,-226533600,3),(1714,-212623200,4),(1714,-195084000,3),(1714,-181173600,4),(1714,-163634400,3),(1714,-149724000,4),(1714,-132184800,3),(1714,-118274400,4),(1714,-100735200,3),(1714,-86824800,4),(1714,-68680800,3),(1714,-54770400,5),(1715,-2147483648,0),(1715,-1309746436,1),(1715,-1262314800,2),(1715,-946780200,3),(1715,-315629100,1),(1716,-2147483648,0),(1716,-1988167780,1),(1716,820436419,2),(1719,-2147483648,0),(1719,-1309746436,1),(1719,-1262314800,2),(1719,-946780200,3),(1719,-315629100,1),(1720,-2147483648,0),(1720,-631152000,1),(1721,-2147483648,0),(1721,-2006653308,1),(1722,-2147483648,1),(1722,-315636840,2),(1723,-2147483648,0),(1723,-1988164200,2),(1723,403041611,1),(1723,417034811,2),(1723,1224972023,1),(1723,1238274024,2),(1724,-2147483648,0),(1724,-1309746436,1),(1724,-1262314800,2),(1724,-946780200,3),(1724,-315629100,1),(1725,-2147483648,0),(1725,-1848886912,1),(1726,-2147483648,0),(1726,-1704165944,1),(1726,-757394744,2),(1726,247177806,4),(1726,259272007,3),(1726,277758007,4),(1726,283982407,2),(1726,290809808,5),(1726,306531008,2),(1726,322432209,5),(1726,338499009,2),(1726,673216216,5),(1726,685481416,2),(1726,701209816,5),(1726,717103817,2),(1726,732745817,5),(1726,748639818,2),(1726,764281818,5),(1726,780175819,2),(1726,795817819,5),(1726,811711819,2),(1726,827353820,5),(1726,843247820,2),(1726,858976220,5),(1726,874870221,2),(1726,890512221,5),(1726,906406221,2),(1726,922048222,5),(1726,937942222,2),(1726,953584222,5),(1726,969478222,2),(1726,985206622,5),(1726,1001100622,2),(1726,1016742622,5),(1726,1032636622,2),(1726,1048278622,5),(1726,1064172622,2),(1726,1079814622,5),(1726,1095708622,2),(1726,1111437022,5),(1726,1127331022,2),(1726,1206045023,5),(1726,1221939023,2),(1726,1237667424,5),(1726,1253561424,2),(1726,1269203424,5),(1726,1285097424,2),(1726,1300739424,5),(1726,1316633424,2),(1726,1332275424,5),(1726,1348169425,2),(1726,1363897825,5),(1726,1379791825,2),(1726,1395433825,5),(1726,1411327825,2),(1726,1426969825,5),(1726,1442863826,2),(1726,1458505826,5),(1726,1474399826,2),(1726,1490128227,5),(1726,1506022227,2),(1726,1521664227,5),(1726,1537558227,2),(1726,1553200227,5),(1726,1569094227,2),(1726,1584736227,5),(1726,1600630227,2),(1726,1616358627,5),(1726,1632252627,2),(1726,1647894627,5),(1726,1663788627,2),(1726,1679430627,5),(1726,1695324627,2),(1726,1710966627,5),(1726,1726860627,2),(1726,1742589027,5),(1726,1758483027,2),(1726,1774125027,5),(1726,1790019027,2),(1726,1805661027,5),(1726,1821555027,2),(1726,1837197027,5),(1726,1853091027,2),(1726,1868733027,5),(1726,1884627027,2),(1726,1900355427,5),(1726,1916249427,2),(1726,1931891427,5),(1726,1947785427,2),(1726,1963427427,5),(1726,1979321427,2),(1726,1994963427,5),(1726,2010857427,2),(1726,2026585827,5),(1726,2042479827,2),(1726,2058121827,5),(1726,2074015827,2),(1726,2089657827,5),(1726,2105551827,2),(1726,2121193827,5),(1726,2137087827,2),(1727,-2147483648,1),(1727,-1641003640,3),(1727,-933645600,2),(1727,-857358000,3),(1727,-844300800,2),(1727,-825822000,3),(1727,-812685600,2),(1727,-794199600,3),(1727,-779853600,2),(1727,-762656400,3),(1727,-748310400,2),(1727,-731127600,3),(1727,-681962400,4),(1727,-673243200,2),(1727,-667962000,3),(1727,-652327200,2),(1727,-636426000,3),(1727,-622087200,2),(1727,-608947200,3),(1727,-591847200,2),(1727,-572486400,3),(1727,-558576000,2),(1727,-542851200,3),(1727,-527731200,2),(1727,-514425600,3),(1727,-490845600,2),(1727,-482986800,3),(1727,-459475200,2),(1727,-451537200,3),(1727,-428551200,2),(1727,-418262400,3),(1727,-400032000,2),(1727,-387428400,3),(1727,142380003,2),(1727,150843603,3),(1727,167176804,2),(1727,178664404,3),(1727,334015209,2),(1727,337644009,3),(1727,452556012,2),(1727,462232812,3),(1727,482277612,2),(1727,495579613,3),(1727,516751213,2),(1727,526424413,3),(1727,545436013,2),(1727,558478813,3),(1727,576626414,2),(1727,589323614,3),(1727,609890414,2),(1727,620773214,3),(1727,638316015,2),(1727,651618015,3),(1727,669765616,2),(1727,683672416,3),(1727,701820016,2),(1727,715726817,3),(1727,733701617,2),(1727,747176418,3),(1727,765151218,2),(1727,778021219,3),(1727,796600819,2),(1727,810075619,3),(1727,826840820,2),(1727,842821220,3),(1727,858895220,2),(1727,874184421,3),(1727,890344821,2),(1727,905029221,3),(1727,923011222,2),(1727,936313222,3),(1727,955670422,2),(1727,970783222,3),(1727,986770822,2),(1727,1001282422,3),(1727,1017356422,2),(1727,1033941622,3),(1727,1048806022,2),(1727,1065132022,3),(1727,1081292422,2),(1727,1095804022,3),(1727,1112313622,2),(1727,1128812422,3),(1727,1143763223,2),(1727,1159657223,3),(1727,1175212823,2),(1727,1189897223,3),(1727,1206662423,2),(1727,1223161223,3),(1727,1238112024,2),(1727,1254006024,3),(1727,1269561624,2),(1727,1284246024,3),(1727,1301616024,2),(1727,1317510024,3),(1727,1333065624,2),(1727,1348354825,3),(1727,1364515225,2),(1727,1382828425,3),(1727,1395964825,2),(1727,1414278025,3),(1727,1427414425,2),(1727,1445727626,3),(1727,1458864026,2),(1727,1477782026,3),(1727,1490313627,2),(1727,1509231627,3),(1727,1521763227,2),(1727,1540681227,3),(1727,1553817627,2),(1727,1572130827,3),(1727,1585267227,2),(1727,1603580427,3),(1727,1616716827,2),(1727,1635634827,3),(1727,1648166427,2),(1727,1667084427,3),(1727,1679616027,2),(1727,1698534027,3),(1727,1711670427,2),(1727,1729983627,3),(1727,1743120027,2),(1727,1761433227,3),(1727,1774569627,2),(1727,1792882827,3),(1727,1806019227,2),(1727,1824937227,3),(1727,1837468827,2),(1727,1856386827,3),(1727,1868918427,2),(1727,1887836427,3),(1727,1900972827,2),(1727,1919286027,3),(1727,1932422427,2),(1727,1950735627,3),(1727,1963872027,2),(1727,1982790027,3),(1727,1995321627,2),(1727,2014239627,3),(1727,2026771227,2),(1727,2045689227,3),(1727,2058220827,2),(1727,2077138827,3),(1727,2090275227,2),(1727,2108588427,3),(1727,2121724827,2),(1727,2140038027,3),(1728,-2147483648,1),(1728,-1827687170,2),(1728,126687603,3),(1728,152085603,2),(1728,162370804,3),(1728,183535204,2),(1728,199263605,3),(1728,215589605,2),(1728,230713206,3),(1728,247039206,2),(1728,262767607,3),(1728,278488807,2),(1728,294217208,3),(1728,309938408,2),(1728,325666809,3),(1728,341388009,2),(1728,357116409,3),(1728,372837610,2),(1728,388566010,3),(1728,404892011,2),(1728,420015611,3),(1728,436341612,2),(1729,-2147483648,3),(1729,-683802000,1),(1729,-672310800,2),(1729,-654771600,1),(1729,-640861200,2),(1729,-620298000,1),(1729,-609411600,2),(1729,-588848400,1),(1729,-577962000,2),(1730,-2147483648,1),(1730,-1041418800,2),(1730,-907408800,3),(1730,-817462800,1),(1730,-7988400,4),(1730,745934418,5),(1731,-2147483648,0),(1731,-1577926364,2),(1731,-574902000,1),(1731,-568087200,2),(1731,-512175600,1),(1731,-504928800,2),(1731,-449888400,1),(1731,-441856800,2),(1731,-347158800,3),(1731,378684010,2),(1731,386463610,1),(1731,402271211,2),(1731,417999611,1),(1731,433807212,2),(1731,449622012,1),(1731,465429612,2),(1731,481590012,1),(1731,496965613,2),(1731,512953213,1),(1731,528674413,2),(1731,544230013,1),(1731,560037613,2),(1731,575852414,1),(1731,591660014,2),(1731,607388414,1),(1731,623196014,2),(1731,641775615,3),(1731,844034420,2),(1731,860108420,1),(1731,875916021,3),(1731,1352505625,2),(1731,1364515225,1),(1731,1382659225,3),(1732,-1693706400,0),(1732,-1680483600,1),(1732,-1663455600,2),(1732,-1650150000,3),(1732,-1632006000,2),(1732,-1618700400,3),(1732,-938905200,2),(1732,-857257200,3),(1732,-844556400,2),(1732,-828226800,3),(1732,-812502000,2),(1732,-796777200,3),(1732,-781052400,2),(1732,-766623600,3),(1732,228877206,2),(1732,243997206,3),(1732,260326807,2),(1732,276051607,3),(1732,291776408,2),(1732,307501208,3),(1732,323830809,2),(1732,338950809,3),(1732,354675609,2),(1732,370400410,3),(1732,386125210,2),(1732,401850011,3),(1732,417574811,2),(1732,433299612,3),(1732,449024412,2),(1732,465354012,3),(1732,481078812,2),(1732,496803613,3),(1732,512528413,2),(1732,528253213,3),(1732,543978013,2),(1732,559702813,3),(1732,575427614,2),(1732,591152414,3),(1732,606877214,2),(1732,622602014,3),(1732,638326815,2),(1732,654656415,3),(1732,670381216,2),(1732,686106016,3),(1732,701830816,2),(1732,717555617,3),(1732,733280417,2),(1732,749005218,3),(1732,764730018,2),(1732,780454819,3),(1732,796179619,2),(1732,811904419,3),(1732,828234020,2),(1732,846378020,3),(1732,859683620,2),(1732,877827621,3),(1732,891133221,2),(1732,909277221,3),(1732,922582822,2),(1732,941331622,3),(1732,954032422,2),(1732,972781222,3),(1732,985482022,2),(1732,1004230822,3),(1732,1017536422,2),(1732,1035680422,3),(1732,1048986022,2),(1732,1067130022,3),(1732,1080435622,2),(1732,1099184422,3),(1732,1111885222,2),(1732,1130634022,3),(1732,1143334823,2),(1732,1162083623,3),(1732,1174784423,2),(1732,1193533223,3),(1732,1206838823,2),(1732,1224982823,3),(1732,1238288424,2),(1732,1256432424,3),(1732,1269738024,2),(1732,1288486824,3),(1732,1301187624,2),(1732,1319936424,3),(1732,1332637224,2),(1732,1351386025,3),(1732,1364691625,2),(1732,1382835625,3),(1732,1396141225,2),(1732,1414285225,3),(1732,1427590825,2),(1732,1445734826,3),(1732,1459040426,2),(1732,1477789226,3),(1732,1490490027,2),(1732,1509238827,3),(1732,1521939627,2),(1732,1540688427,3),(1732,1553994027,2),(1732,1572138027,3),(1732,1585443627,2),(1732,1603587627,3),(1732,1616893227,2),(1732,1635642027,3),(1732,1648342827,2),(1732,1667091627,3),(1732,1679792427,2),(1732,1698541227,3),(1732,1711846827,2),(1732,1729990827,3),(1732,1743296427,2),(1732,1761440427,3),(1732,1774746027,2),(1732,1792890027,3),(1732,1806195627,2),(1732,1824944427,3),(1732,1837645227,2),(1732,1856394027,3),(1732,1869094827,2),(1732,1887843627,3),(1732,1901149227,2),(1732,1919293227,3),(1732,1932598827,2),(1732,1950742827,3),(1732,1964048427,2),(1732,1982797227,3),(1732,1995498027,2),(1732,2014246827,3),(1732,2026947627,2),(1732,2045696427,3),(1732,2058397227,2),(1732,2077146027,3),(1732,2090451627,2),(1732,2108595627,3),(1732,2121901227,2),(1732,2140045227,3),(1734,-1633273200,0),(1734,-1615132800,1),(1734,-1601823600,0),(1734,-1583683200,1),(1734,-880210800,2),(1734,-769395600,3),(1734,-765388800,1),(1734,-84380400,0),(1734,-68659200,1),(1734,-52930800,0),(1734,-37209600,1),(1734,-21481200,0),(1734,-5760000,1),(1734,9968400,0),(1734,25689600,1),(1734,41418000,0),(1734,57744000,1),(1734,73472400,0),(1734,89193601,1),(1734,104922002,0),(1734,120643202,1),(1734,126694803,0),(1734,152092803,1),(1734,162378004,0),(1734,183542404,1),(1734,199270805,0),(1734,215596805,1),(1734,230720406,0),(1734,247046406,1),(1734,262774807,0),(1734,278496007,1),(1734,294224408,0),(1734,309945608,1),(1734,325674009,0),(1734,341395209,1),(1734,357123609,0),(1734,372844810,1),(1734,388573210,0),(1734,404899211,1),(1734,420022811,0),(1734,436348812,1),(1734,452077212,0),(1734,467798412,1),(1734,483526812,0),(1734,499248013,1),(1734,514976413,0),(1734,530697613,1),(1734,544611613,0),(1734,562147213,1),(1734,576061214,0),(1734,594201614,1),(1734,607510814,0),(1734,625651214,1),(1734,638960415,0),(1734,657100815,1),(1734,671014816,0),(1734,688550416,1),(1734,702464416,0),(1734,720000017,1),(1734,733914017,0),(1734,752054418,1),(1734,765363618,0),(1734,783504019,1),(1734,796813219,0),(1734,814953619,1),(1734,828867620,0),(1734,846403220,1),(1734,860317220,0),(1734,877852821,1),(1734,891766821,0),(1734,909302421,1),(1734,923216422,0),(1734,941356822,1),(1734,954666022,0),(1734,972806422,1),(1734,986115622,0),(1734,1004256022,1),(1734,1018170022,0),(1734,1035705622,1),(1734,1049619622,0),(1734,1067155222,1),(1734,1081069222,0),(1734,1099209622,1),(1734,1112518822,0),(1734,1130659222,1),(1734,1143968423,0),(1734,1162108823,1),(1734,1173603623,0),(1734,1194163223,1),(1734,1205053223,0),(1734,1225612823,1),(1734,1236502824,0),(1734,1257062424,1),(1734,1268557224,0),(1734,1289116824,1),(1734,1300006824,0),(1734,1320566424,1),(1734,1331456424,0),(1734,1352016025,1),(1734,1362906025,0),(1734,1383465625,1),(1734,1394355625,0),(1734,1414915225,1),(1734,1425805225,0),(1734,1446364826,1),(1734,1457859626,0),(1734,1478419226,1),(1734,1489309227,0),(1734,1509868827,1),(1734,1520758827,0),(1734,1541318427,1),(1734,1552208427,0),(1734,1572768027,1),(1734,1583658027,0),(1734,1604217627,1),(1734,1615712427,0),(1734,1636272027,1),(1734,1647162027,0),(1734,1667721627,1),(1734,1678611627,0),(1734,1699171227,1),(1734,1710061227,0),(1734,1730620827,1),(1734,1741510827,0),(1734,1762070427,1),(1734,1772960427,0),(1734,1793520027,1),(1734,1805014827,0),(1734,1825574427,1),(1734,1836464427,0),(1734,1857024027,1),(1734,1867914027,0),(1734,1888473627,1),(1734,1899363627,0),(1734,1919923227,1),(1734,1930813227,0),(1734,1951372827,1),(1734,1962867627,0),(1734,1983427227,1),(1734,1994317227,0),(1734,2014876827,1),(1734,2025766827,0),(1734,2046326427,1),(1734,2057216427,0),(1734,2077776027,1),(1734,2088666027,0),(1734,2109225627,1),(1734,2120115627,0),(1734,2140675227,1),(1735,-2147483648,0),(1735,-1514736000,1),(1735,-1451667600,2),(1735,-1343062800,1),(1735,-1234803600,2),(1735,-1222963200,3),(1735,-1207242000,2),(1735,-873820800,4),(1735,-769395600,5),(1735,-761677200,2),(1735,-686073600,3),(1735,-661539600,2),(1735,-495039600,3),(1735,-481734000,2),(1735,-463590000,3),(1735,-450284400,2),(1735,-431535600,3),(1735,-418230000,2),(1735,-400086000,3),(1735,-386780400,2),(1735,-368636400,3),(1735,-355330800,2),(1735,-337186800,3),(1735,-323881200,2),(1735,-305737200,3),(1735,-292431600,2),(1735,199274405,3),(1735,215600405,2),(1735,230724006,3),(1735,247050006,2),(1735,262778407,3),(1735,278499607,2),(1735,294228008,3),(1735,309949208,2),(1735,325677609,3),(1735,341398809,2),(1735,357127209,3),(1735,372848410,2),(1735,388576810,3),(1735,404902811,2),(1735,420026411,3),(1735,436352412,2),(1735,452080812,3),(1735,467802012,2),(1735,483530412,3),(1735,499251613,2),(1735,514980013,3),(1735,530701213,2),(1735,544615213,3),(1735,562150813,2),(1735,576064814,3),(1735,594205214,2),(1735,607514414,3),(1735,625654814,2),(1735,638964015,3),(1735,657104415,2),(1735,671018416,3),(1735,688554016,2),(1735,702468016,3),(1735,720003617,2),(1735,733917617,3),(1735,752058018,2),(1735,765367218,3),(1735,783507619,2),(1735,796816819,3),(1735,814957219,2),(1735,828871220,3),(1735,846406820,2),(1735,860320820,3),(1735,877856421,2),(1735,891770421,3),(1735,909306021,2),(1735,923220022,3),(1735,941360422,2),(1735,954669622,3),(1735,972810022,2),(1735,986119222,3),(1735,1004259622,2),(1735,1018173622,3),(1735,1035709222,2),(1735,1049623222,3),(1735,1067158822,2),(1735,1081072822,3),(1735,1099213222,2),(1735,1112522422,3),(1735,1130662822,2),(1735,1143972023,3),(1735,1162112423,2),(1735,1175421623,3),(1735,1193562023,2),(1735,1207476023,3),(1735,1225011623,2),(1735,1238925624,3),(1735,1256461224,2),(1735,1268560824,3),(1735,1289120424,2),(1735,1300010424,3),(1735,1320570024,2),(1735,1331460024,3),(1735,1352019625,2),(1735,1362909625,3),(1735,1383469225,2),(1735,1394359225,3),(1735,1414918825,2),(1735,1425808825,3),(1735,1446368426,2),(1735,1457863226,3),(1735,1478422826,2),(1735,1489312827,3),(1735,1509872427,2),(1735,1520762427,3),(1735,1541322027,2),(1735,1552212027,3),(1735,1572771627,2),(1735,1583661627,3),(1735,1604221227,2),(1735,1615716027,3),(1735,1636275627,2),(1735,1647165627,3),(1735,1667725227,2),(1735,1678615227,3),(1735,1699174827,2),(1735,1710064827,3),(1735,1730624427,2),(1735,1741514427,3),(1735,1762074027,2),(1735,1772964027,3),(1735,1793523627,2),(1735,1805018427,3),(1735,1825578027,2),(1735,1836468027,3),(1735,1857027627,2),(1735,1867917627,3),(1735,1888477227,2),(1735,1899367227,3),(1735,1919926827,2),(1735,1930816827,3),(1735,1951376427,2),(1735,1962871227,3),(1735,1983430827,2),(1735,1994320827,3),(1735,2014880427,2),(1735,2025770427,3),(1735,2046330027,2),(1735,2057220027,3),(1735,2077779627,2),(1735,2088669627,3),(1735,2109229227,2),(1735,2120119227,3),(1735,2140678827,2),(1736,-2147483648,0),(1736,-1514739600,1),(1736,-1343066400,2),(1736,-1234807200,1),(1736,-1220292000,2),(1736,-1207159200,1),(1736,-1191344400,2),(1736,-873828000,1),(1736,-661539600,3),(1736,28800,1),(1736,828867620,4),(1736,846403220,1),(1736,860317220,4),(1736,877852821,1),(1736,891766821,4),(1736,909302421,1),(1736,923216422,4),(1736,941356822,1),(1736,954666022,4),(1736,972806422,1),(1736,989139622,4),(1736,1001836822,1),(1736,1018170022,4),(1736,1035705622,1),(1736,1049619622,4),(1736,1067155222,1),(1736,1081069222,4),(1736,1099209622,1),(1736,1112518822,4),(1736,1130659222,1),(1736,1143968423,4),(1736,1162108823,1),(1736,1175418023,4),(1736,1193558423,1),(1736,1207472423,4),(1736,1225008023,1),(1736,1238922024,4),(1736,1256457624,1),(1736,1270371624,4),(1736,1288512024,1),(1736,1301821224,4),(1736,1319961624,1),(1736,1333270824,4),(1736,1351411225,1),(1736,1365325225,4),(1736,1382860825,1),(1736,1396774825,4),(1736,1414310425,1),(1736,1428224425,4),(1736,1445760026,1),(1736,1459674026,4),(1736,1477814426,1),(1736,1491123627,4),(1736,1509264027,1),(1736,1522573227,4),(1736,1540713627,1),(1736,1554627627,4),(1736,1572163227,1),(1736,1586077227,4),(1736,1603612827,1),(1736,1617526827,4),(1736,1635667227,1),(1736,1648976427,4),(1736,1667116827,1),(1736,1680426027,4),(1736,1698566427,1),(1736,1712480427,4),(1736,1730016027,1),(1736,1743930027,4),(1736,1761465627,1),(1736,1775379627,4),(1736,1792915227,1),(1736,1806829227,4),(1736,1824969627,1),(1736,1838278827,4),(1736,1856419227,1),(1736,1869728427,4),(1736,1887868827,1),(1736,1901782827,4),(1736,1919318427,1),(1736,1933232427,4),(1736,1950768027,1),(1736,1964682027,4),(1736,1982822427,1),(1736,1996131627,4),(1736,2014272027,1),(1736,2027581227,4),(1736,2045721627,1),(1736,2059030827,4),(1736,2077171227,1),(1736,2091085227,4),(1736,2108620827,1),(1736,2122534827,4),(1736,2140070427,1),(1737,-2147483648,0),(1737,-1514739600,1),(1737,-1343066400,2),(1737,-1234807200,1),(1737,-1220292000,2),(1737,-1207159200,1),(1737,-1191344400,2),(1737,-975261600,3),(1737,-963169200,2),(1737,-917114400,3),(1737,-907354800,2),(1737,-821901600,4),(1737,-810068400,2),(1737,-627501600,3),(1737,-612990000,2),(1737,828864020,3),(1737,846399620,2),(1737,860313620,3),(1737,877849221,2),(1737,891763221,3),(1737,909298821,2),(1737,923212822,3),(1737,941353222,2),(1737,954662422,3),(1737,972802822,2),(1737,989136022,3),(1737,1001833222,2),(1737,1018166422,3),(1737,1035702022,2),(1737,1049616022,3),(1737,1067151622,2),(1737,1081065622,3),(1737,1099206022,2),(1737,1112515222,3),(1737,1130655622,2),(1737,1143964823,3),(1737,1162105223,2),(1737,1175414423,3),(1737,1193554823,2),(1737,1207468823,3),(1737,1225004423,2),(1737,1238918424,3),(1737,1256454024,2),(1737,1270368024,3),(1737,1288508424,2),(1737,1301817624,3),(1737,1319958024,2),(1737,1333267224,3),(1737,1351407625,2),(1737,1365321625,3),(1737,1382857225,2),(1737,1396771225,3),(1737,1414306825,2),(1737,1428220825,3),(1737,1445756426,2),(1737,1459670426,3),(1737,1477810826,2),(1737,1491120027,3),(1737,1509260427,2),(1737,1522569627,3),(1737,1540710027,2),(1737,1554624027,3),(1737,1572159627,2),(1737,1586073627,3),(1737,1603609227,2),(1737,1617523227,3),(1737,1635663627,2),(1737,1648972827,3),(1737,1667113227,2),(1737,1680422427,3),(1737,1698562827,2),(1737,1712476827,3),(1737,1730012427,2),(1737,1743926427,3),(1737,1761462027,2),(1737,1775376027,3),(1737,1792911627,2),(1737,1806825627,3),(1737,1824966027,2),(1737,1838275227,3),(1737,1856415627,2),(1737,1869724827,3),(1737,1887865227,2),(1737,1901779227,3),(1737,1919314827,2),(1737,1933228827,3),(1737,1950764427,2),(1737,1964678427,3),(1737,1982818827,2),(1737,1996128027,3),(1737,2014268427,2),(1737,2027577627,3),(1737,2045718027,2),(1737,2059027227,3),(1737,2077167627,2),(1737,2091081627,3),(1737,2108617227,2),(1737,2122531227,3),(1737,2140066827,2),(1738,-2147483648,2),(1738,-1330335000,1),(1738,-1320057000,2),(1738,-1300699800,3),(1738,-1287396000,2),(1738,-1269250200,3),(1738,-1255946400,2),(1738,-1237800600,3),(1738,-1224496800,2),(1738,-1206351000,3),(1738,-1192442400,2),(1738,-1174901400,3),(1738,-1160992800,2),(1738,-1143451800,3),(1738,-1125914400,2),(1738,-1112607000,3),(1738,-1094464800,2),(1738,-1081157400,3),(1738,-1063015200,2),(1738,-1049707800,3),(1738,-1031565600,2),(1738,-1018258200,3),(1738,-1000116000,2),(1738,-986808600,3),(1738,-968061600,2),(1738,-955359000,3),(1738,-936612000,2),(1738,-923304600,3),(1738,-757425600,6),(1738,152632803,4),(1738,162309604,5),(1738,183477604,4),(1738,194968805,5),(1738,215532005,4),(1738,226418406,5),(1738,246981606,4),(1738,257868007,5),(1738,278431207,4),(1738,289317608,5),(1738,309880808,4),(1738,320767209,5),(1738,341330409,4),(1738,352216809,5),(1738,372780010,4),(1738,384271210,5),(1738,404834411,4),(1738,415720811,5),(1738,436284012,4),(1738,447170412,5),(1738,467733612,4),(1738,478620012,5),(1738,499183213,4),(1738,510069613,5),(1738,530632813,4),(1738,541519213,5),(1738,562082413,4),(1738,573573614,5),(1738,594136814,4),(1738,605023214,5),(1738,623772014,4),(1738,637682415,5),(1738,655221615,4),(1738,669132016,5),(1738,686671216,4),(1738,700581616,5),(1738,718120817,4),(1738,732636017,5),(1738,749570418,4),(1738,764085618,5),(1738,781020019,4),(1738,795535219,5),(1738,812469619,4),(1738,826984820,5),(1738,844524020,4),(1738,858434420,5),(1738,875973621,4),(1738,889884021,5),(1738,907423221,4),(1738,921938422,5),(1738,938872822,4),(1738,953388022,5),(1738,970322422,4),(1738,984837622,5),(1738,1002376822,4),(1738,1016287222,5),(1738,1033826422,4),(1738,1047736822,5),(1738,1065276022,4),(1738,1079791222,5),(1738,1096725622,4),(1738,1111240822,5),(1738,1128175222,4),(1738,1142690423,5),(1738,1159624823,4),(1738,1174140023,5),(1738,1191074423,4),(1738,1207404023,5),(1738,1222524023,4),(1738,1238853624,5),(1738,1253973624,4),(1738,1270303224,5),(1738,1285423224,4),(1738,1301752824,5),(1738,1316872824,4),(1738,1333202424,5),(1738,1348927225,4),(1738,1365256825,5),(1738,1380376825,4),(1738,1396706425,5),(1738,1411826425,4),(1738,1428156025,5),(1738,1443276026,4),(1738,1459605626,5),(1738,1474725626,4),(1738,1491055227,5),(1738,1506175227,4),(1738,1522504827,5),(1738,1538229627,4),(1738,1554559227,5),(1738,1569679227,4),(1738,1586008827,5),(1738,1601128827,4),(1738,1617458427,5),(1738,1632578427,4),(1738,1648908027,5),(1738,1664028027,4),(1738,1680357627,5),(1738,1695477627,4),(1738,1712412027,5),(1738,1727532027,4),(1738,1743861627,5),(1738,1758981627,4),(1738,1775311227,5),(1738,1790431227,4),(1738,1806760827,5),(1738,1821880827,4),(1738,1838210427,5),(1738,1853330427,4),(1738,1869660027,5),(1738,1885384827,4),(1738,1901714427,5),(1738,1916834427,4),(1738,1933164027,5),(1738,1948284027,4),(1738,1964613627,5),(1738,1979733627,4),(1738,1996063227,5),(1738,2011183227,4),(1738,2027512827,5),(1738,2042632827,4),(1738,2058962427,5),(1738,2074687227,4),(1738,2091016827,5),(1738,2106136827,4),(1738,2122466427,5),(1738,2137586427,4),(1739,-2147483648,1),(1739,-757426500,4),(1739,152632803,2),(1739,162309604,3),(1739,183477604,2),(1739,194968805,3),(1739,215532005,2),(1739,226418406,3),(1739,246981606,2),(1739,257868007,3),(1739,278431207,2),(1739,289317608,3),(1739,309880808,2),(1739,320767209,3),(1739,341330409,2),(1739,352216809,3),(1739,372780010,2),(1739,384271210,3),(1739,404834411,2),(1739,415720811,3),(1739,436284012,2),(1739,447170412,3),(1739,467733612,2),(1739,478620012,3),(1739,499183213,2),(1739,510069613,3),(1739,530632813,2),(1739,541519213,3),(1739,562082413,2),(1739,573573614,3),(1739,594136814,2),(1739,605023214,3),(1739,623772014,2),(1739,637682415,3),(1739,655221615,2),(1739,669132016,3),(1739,686671216,2),(1739,700581616,3),(1739,718120817,2),(1739,732636017,3),(1739,749570418,2),(1739,764085618,3),(1739,781020019,2),(1739,795535219,3),(1739,812469619,2),(1739,826984820,3),(1739,844524020,2),(1739,858434420,3),(1739,875973621,2),(1739,889884021,3),(1739,907423221,2),(1739,921938422,3),(1739,938872822,2),(1739,953388022,3),(1739,970322422,2),(1739,984837622,3),(1739,1002376822,2),(1739,1016287222,3),(1739,1033826422,2),(1739,1047736822,3),(1739,1065276022,2),(1739,1079791222,3),(1739,1096725622,2),(1739,1111240822,3),(1739,1128175222,2),(1739,1142690423,3),(1739,1159624823,2),(1739,1174140023,3),(1739,1191074423,2),(1739,1207404023,3),(1739,1222524023,2),(1739,1238853624,3),(1739,1253973624,2),(1739,1270303224,3),(1739,1285423224,2),(1739,1301752824,3),(1739,1316872824,2),(1739,1333202424,3),(1739,1348927225,2),(1739,1365256825,3),(1739,1380376825,2),(1739,1396706425,3),(1739,1411826425,2),(1739,1428156025,3),(1739,1443276026,2),(1739,1459605626,3),(1739,1474725626,2),(1739,1491055227,3),(1739,1506175227,2),(1739,1522504827,3),(1739,1538229627,2),(1739,1554559227,3),(1739,1569679227,2),(1739,1586008827,3),(1739,1601128827,2),(1739,1617458427,3),(1739,1632578427,2),(1739,1648908027,3),(1739,1664028027,2),(1739,1680357627,3),(1739,1695477627,2),(1739,1712412027,3),(1739,1727532027,2),(1739,1743861627,3),(1739,1758981627,2),(1739,1775311227,3),(1739,1790431227,2),(1739,1806760827,3),(1739,1821880827,2),(1739,1838210427,3),(1739,1853330427,2),(1739,1869660027,3),(1739,1885384827,2),(1739,1901714427,3),(1739,1916834427,2),(1739,1933164027,3),(1739,1948284027,2),(1739,1964613627,3),(1739,1979733627,2),(1739,1996063227,3),(1739,2011183227,2),(1739,2027512827,3),(1739,2042632827,2),(1739,2058962427,3),(1739,2074687227,2),(1739,2091016827,3),(1739,2106136827,2),(1739,2122466427,3),(1739,2137586427,2),(1740,-2147483648,2),(1740,-1633273200,1),(1740,-1615132800,2),(1740,-1601823600,1),(1740,-1583683200,2),(1740,-1570374000,1),(1740,-1551628800,2),(1740,-1538924400,1),(1740,-1534089600,2),(1740,-880210800,3),(1740,-769395600,4),(1740,-765388800,2),(1740,-147884400,1),(1740,-131558400,2),(1740,-116434800,1),(1740,-100108800,2),(1740,-84380400,1),(1740,-68659200,2),(1740,-52930800,1),(1740,-37209600,2),(1740,-21481200,1),(1740,-5760000,2),(1740,9968400,1),(1740,25689600,2),(1740,41418000,1),(1740,57744000,2),(1740,73472400,1),(1740,89193601,2),(1740,104922002,1),(1740,120643202,2),(1740,126694803,1),(1740,152092803,2),(1740,162378004,1),(1740,183542404,2),(1740,199270805,1),(1740,215596805,2),(1740,230720406,1),(1740,247046406,2),(1740,262774807,1),(1740,278496007,2),(1740,294224408,1),(1740,309945608,2),(1740,325674009,1),(1740,341395209,2),(1740,357123609,1),(1740,372844810,2),(1740,388573210,1),(1740,404899211,2),(1740,420022811,1),(1740,436348812,2),(1740,452077212,1),(1740,467798412,2),(1740,483526812,1),(1740,499248013,2),(1740,514976413,1),(1740,530697613,2),(1740,544611613,1),(1740,562147213,2),(1740,576061214,1),(1740,594201614,2),(1740,607510814,1),(1740,625651214,2),(1740,638960415,1),(1740,657100815,2),(1740,671014816,1),(1740,688550416,2),(1740,702464416,1),(1740,720000017,2),(1740,733914017,1),(1740,752054418,2),(1740,765363618,1),(1740,783504019,2),(1740,796813219,1),(1740,814953619,2),(1740,828867620,1),(1740,846403220,2),(1740,860317220,1),(1740,877852821,2),(1740,891766821,1),(1740,909302421,2),(1740,923216422,1),(1740,941356822,2),(1740,954666022,1),(1740,972806422,2),(1740,986115622,1),(1740,1004256022,2),(1740,1018170022,1),(1740,1035705622,2),(1740,1049619622,1),(1740,1067155222,2),(1740,1081069222,1),(1740,1099209622,2),(1740,1112518822,1),(1740,1130659222,2),(1740,1143968423,1),(1740,1162108823,2),(1740,1173603623,1),(1740,1194163223,2),(1740,1205053223,1),(1740,1225612823,2),(1740,1236502824,1),(1740,1257062424,2),(1740,1268557224,1),(1740,1289116824,2),(1740,1300006824,1),(1740,1320566424,2),(1740,1331456424,1),(1740,1352016025,2),(1740,1362906025,1),(1740,1383465625,2),(1740,1394355625,1),(1740,1414915225,2),(1740,1425805225,1),(1740,1446364826,2),(1740,1457859626,1),(1740,1478419226,2),(1740,1489309227,1),(1740,1509868827,2),(1740,1520758827,1),(1740,1541318427,2),(1740,1552208427,1),(1740,1572768027,2),(1740,1583658027,1),(1740,1604217627,2),(1740,1615712427,1),(1740,1636272027,2),(1740,1647162027,1),(1740,1667721627,2),(1740,1678611627,1),(1740,1699171227,2),(1740,1710061227,1),(1740,1730620827,2),(1740,1741510827,1),(1740,1762070427,2),(1740,1772960427,1),(1740,1793520027,2),(1740,1805014827,1),(1740,1825574427,2),(1740,1836464427,1),(1740,1857024027,2),(1740,1867914027,1),(1740,1888473627,2),(1740,1899363627,1),(1740,1919923227,2),(1740,1930813227,1),(1740,1951372827,2),(1740,1962867627,1),(1740,1983427227,2),(1740,1994317227,1),(1740,2014876827,2),(1740,2025766827,1),(1740,2046326427,2),(1740,2057216427,1),(1740,2077776027,2),(1740,2088666027,1),(1740,2109225627,2),(1740,2120115627,1),(1740,2140675227,2),(1741,-2147483648,2),(1741,-933667200,1),(1741,-922093200,2),(1741,-908870400,1),(1741,-888829200,2),(1741,-881049600,1),(1741,-767869200,2),(1741,-745833600,1),(1741,-733827600,2),(1741,-716889600,1),(1741,-699613200,2),(1741,-683884800,1),(1741,-670669200,2),(1741,-652348800,1),(1741,-650019600,2),(1741,515527213,1),(1741,527014813,2),(1741,545162413,1),(1741,558464413,2),(1741,577216814,1),(1741,589914014,2),(1741,608666414,1),(1741,621968414,2),(1741,640116015,1),(1741,653418015,2),(1741,671565616,1),(1741,684867616,2),(1742,-1633269600,0),(1742,-1615129200,1),(1742,-1601820000,0),(1742,-1583679600,1),(1742,-880207200,2),(1742,-769395600,3),(1742,-765385200,1),(1742,-84376800,0),(1742,-68655600,1),(1742,-52927200,0),(1742,-37206000,1),(1742,-21477600,0),(1742,-5756400,1),(1742,9972000,0),(1742,25693200,1),(1742,41421600,0),(1742,57747600,1),(1742,73476000,0),(1742,89197201,1),(1742,104925602,0),(1742,120646802,1),(1742,126698403,0),(1742,152096403,1),(1742,162381604,0),(1742,183546004,1),(1742,199274405,0),(1742,215600405,1),(1742,230724006,0),(1742,247050006,1),(1742,262778407,0),(1742,278499607,1),(1742,294228008,0),(1742,309949208,1),(1742,325677609,0),(1742,341398809,1),(1742,357127209,0),(1742,372848410,1),(1742,388576810,0),(1742,404902811,1),(1742,420026411,0),(1742,436352412,1),(1742,452080812,0),(1742,467802012,1),(1742,483530412,0),(1742,499251613,1),(1742,514980013,0),(1742,530701213,1),(1742,544615213,0),(1742,562150813,1),(1742,576064814,0),(1742,594205214,1),(1742,607514414,0),(1742,625654814,1),(1742,638964015,0),(1742,657104415,1),(1742,671018416,0),(1742,688554016,1),(1742,702468016,0),(1742,720003617,1),(1742,733917617,0),(1742,752058018,1),(1742,765367218,0),(1742,783507619,1),(1742,796816819,0),(1742,814957219,1),(1742,828871220,0),(1742,846406820,1),(1742,860320820,0),(1742,877856421,1),(1742,891770421,0),(1742,909306021,1),(1742,923220022,0),(1742,941360422,1),(1742,954669622,0),(1742,972810022,1),(1742,986119222,0),(1742,1004259622,1),(1742,1018173622,0),(1742,1035709222,1),(1742,1049623222,0),(1742,1067158822,1),(1742,1081072822,0),(1742,1099213222,1),(1742,1112522422,0),(1742,1130662822,1),(1742,1143972023,0),(1742,1162112423,1),(1742,1173607223,0),(1742,1194166823,1),(1742,1205056823,0),(1742,1225616423,1),(1742,1236506424,0),(1742,1257066024,1),(1742,1268560824,0),(1742,1289120424,1),(1742,1300010424,0),(1742,1320570024,1),(1742,1331460024,0),(1742,1352019625,1),(1742,1362909625,0),(1742,1383469225,1),(1742,1394359225,0),(1742,1414918825,1),(1742,1425808825,0),(1742,1446368426,1),(1742,1457863226,0),(1742,1478422826,1),(1742,1489312827,0),(1742,1509872427,1),(1742,1520762427,0),(1742,1541322027,1),(1742,1552212027,0),(1742,1572771627,1),(1742,1583661627,0),(1742,1604221227,1),(1742,1615716027,0),(1742,1636275627,1),(1742,1647165627,0),(1742,1667725227,1),(1742,1678615227,0),(1742,1699174827,1),(1742,1710064827,0),(1742,1730624427,1),(1742,1741514427,0),(1742,1762074027,1),(1742,1772964027,0),(1742,1793523627,1),(1742,1805018427,0),(1742,1825578027,1),(1742,1836468027,0),(1742,1857027627,1),(1742,1867917627,0),(1742,1888477227,1),(1742,1899367227,0),(1742,1919926827,1),(1742,1930816827,0),(1742,1951376427,1),(1742,1962871227,0),(1742,1983430827,1),(1742,1994320827,0),(1742,2014880427,1),(1742,2025770427,0),(1742,2046330027,1),(1742,2057220027,0),(1742,2077779627,1),(1742,2088669627,0),(1742,2109229227,1),(1742,2120119227,0),(1742,2140678827,1),(1743,-2147483648,1),(1743,-1861878784,2),(1743,-631110600,4),(1743,1285498824,3),(1743,1301752824,4),(1743,1316872824,3),(1743,1325239224,6),(1743,1333202424,5),(1743,1348927225,6),(1743,1365256825,5),(1743,1380376825,6),(1743,1396706425,5),(1743,1411826425,6),(1743,1428156025,5),(1743,1443276026,6),(1743,1459605626,5),(1743,1474725626,6),(1743,1491055227,5),(1743,1506175227,6),(1743,1522504827,5),(1743,1538229627,6),(1743,1554559227,5),(1743,1569679227,6),(1743,1586008827,5),(1743,1601128827,6),(1743,1617458427,5),(1743,1632578427,6),(1743,1648908027,5),(1743,1664028027,6),(1743,1680357627,5),(1743,1695477627,6),(1743,1712412027,5),(1743,1727532027,6),(1743,1743861627,5),(1743,1758981627,6),(1743,1775311227,5),(1743,1790431227,6),(1743,1806760827,5),(1743,1821880827,6),(1743,1838210427,5),(1743,1853330427,6),(1743,1869660027,5),(1743,1885384827,6),(1743,1901714427,5),(1743,1916834427,6),(1743,1933164027,5),(1743,1948284027,6),(1743,1964613627,5),(1743,1979733627,6),(1743,1996063227,5),(1743,2011183227,6),(1743,2027512827,5),(1743,2042632827,6),(1743,2058962427,5),(1743,2074687227,6),(1743,2091016827,5),(1743,2106136827,6),(1743,2122466427,5),(1743,2137586427,6),(1744,-2147483648,2),(1744,-1330335000,1),(1744,-1320057000,2),(1744,-1300699800,3),(1744,-1287396000,2),(1744,-1269250200,3),(1744,-1255946400,2),(1744,-1237800600,3),(1744,-1224496800,2),(1744,-1206351000,3),(1744,-1192442400,2),(1744,-1174901400,3),(1744,-1160992800,2),(1744,-1143451800,3),(1744,-1125914400,2),(1744,-1112607000,3),(1744,-1094464800,2),(1744,-1081157400,3),(1744,-1063015200,2),(1744,-1049707800,3),(1744,-1031565600,2),(1744,-1018258200,3),(1744,-1000116000,2),(1744,-986808600,3),(1744,-968061600,2),(1744,-955359000,3),(1744,-936612000,2),(1744,-923304600,3),(1744,-757425600,6),(1744,152632803,4),(1744,162309604,5),(1744,183477604,4),(1744,194968805,5),(1744,215532005,4),(1744,226418406,5),(1744,246981606,4),(1744,257868007,5),(1744,278431207,4),(1744,289317608,5),(1744,309880808,4),(1744,320767209,5),(1744,341330409,4),(1744,352216809,5),(1744,372780010,4),(1744,384271210,5),(1744,404834411,4),(1744,415720811,5),(1744,436284012,4),(1744,447170412,5),(1744,467733612,4),(1744,478620012,5),(1744,499183213,4),(1744,510069613,5),(1744,530632813,4),(1744,541519213,5),(1744,562082413,4),(1744,573573614,5),(1744,594136814,4),(1744,605023214,5),(1744,623772014,4),(1744,637682415,5),(1744,655221615,4),(1744,669132016,5),(1744,686671216,4),(1744,700581616,5),(1744,718120817,4),(1744,732636017,5),(1744,749570418,4),(1744,764085618,5),(1744,781020019,4),(1744,795535219,5),(1744,812469619,4),(1744,826984820,5),(1744,844524020,4),(1744,858434420,5),(1744,875973621,4),(1744,889884021,5),(1744,907423221,4),(1744,921938422,5),(1744,938872822,4),(1744,953388022,5),(1744,970322422,4),(1744,984837622,5),(1744,1002376822,4),(1744,1016287222,5),(1744,1033826422,4),(1744,1047736822,5),(1744,1065276022,4),(1744,1079791222,5),(1744,1096725622,4),(1744,1111240822,5),(1744,1128175222,4),(1744,1142690423,5),(1744,1159624823,4),(1744,1174140023,5),(1744,1191074423,4),(1744,1207404023,5),(1744,1222524023,4),(1744,1238853624,5),(1744,1253973624,4),(1744,1270303224,5),(1744,1285423224,4),(1744,1301752824,5),(1744,1316872824,4),(1744,1333202424,5),(1744,1348927225,4),(1744,1365256825,5),(1744,1380376825,4),(1744,1396706425,5),(1744,1411826425,4),(1744,1428156025,5),(1744,1443276026,4),(1744,1459605626,5),(1744,1474725626,4),(1744,1491055227,5),(1744,1506175227,4),(1744,1522504827,5),(1744,1538229627,4),(1744,1554559227,5),(1744,1569679227,4),(1744,1586008827,5),(1744,1601128827,4),(1744,1617458427,5),(1744,1632578427,4),(1744,1648908027,5),(1744,1664028027,4),(1744,1680357627,5),(1744,1695477627,4),(1744,1712412027,5),(1744,1727532027,4),(1744,1743861627,5),(1744,1758981627,4),(1744,1775311227,5),(1744,1790431227,4),(1744,1806760827,5),(1744,1821880827,4),(1744,1838210427,5),(1744,1853330427,4),(1744,1869660027,5),(1744,1885384827,4),(1744,1901714427,5),(1744,1916834427,4),(1744,1933164027,5),(1744,1948284027,4),(1744,1964613627,5),(1744,1979733627,4),(1744,1996063227,5),(1744,2011183227,4),(1744,2027512827,5),(1744,2042632827,4),(1744,2058962427,5),(1744,2074687227,4),(1744,2091016827,5),(1744,2106136827,4),(1744,2122466427,5),(1744,2137586427,4),(1745,-2147483648,1),(1745,-868010400,2),(1745,-768906000,1),(1745,1419696025,3),(1746,-2147483648,1),(1746,-757426500,4),(1746,152632803,2),(1746,162309604,3),(1746,183477604,2),(1746,194968805,3),(1746,215532005,2),(1746,226418406,3),(1746,246981606,2),(1746,257868007,3),(1746,278431207,2),(1746,289317608,3),(1746,309880808,2),(1746,320767209,3),(1746,341330409,2),(1746,352216809,3),(1746,372780010,2),(1746,384271210,3),(1746,404834411,2),(1746,415720811,3),(1746,436284012,2),(1746,447170412,3),(1746,467733612,2),(1746,478620012,3),(1746,499183213,2),(1746,510069613,3),(1746,530632813,2),(1746,541519213,3),(1746,562082413,2),(1746,573573614,3),(1746,594136814,2),(1746,605023214,3),(1746,623772014,2),(1746,637682415,3),(1746,655221615,2),(1746,669132016,3),(1746,686671216,2),(1746,700581616,3),(1746,718120817,2),(1746,732636017,3),(1746,749570418,2),(1746,764085618,3),(1746,781020019,2),(1746,795535219,3),(1746,812469619,2),(1746,826984820,3),(1746,844524020,2),(1746,858434420,3),(1746,875973621,2),(1746,889884021,3),(1746,907423221,2),(1746,921938422,3),(1746,938872822,2),(1746,953388022,3),(1746,970322422,2),(1746,984837622,3),(1746,1002376822,2),(1746,1016287222,3),(1746,1033826422,2),(1746,1047736822,3),(1746,1065276022,2),(1746,1079791222,3),(1746,1096725622,2),(1746,1111240822,3),(1746,1128175222,2),(1746,1142690423,3),(1746,1159624823,2),(1746,1174140023,3),(1746,1191074423,2),(1746,1207404023,3),(1746,1222524023,2),(1746,1238853624,3),(1746,1253973624,2),(1746,1270303224,3),(1746,1285423224,2),(1746,1301752824,3),(1746,1316872824,2),(1746,1333202424,3),(1746,1348927225,2),(1746,1365256825,3),(1746,1380376825,2),(1746,1396706425,3),(1746,1411826425,2),(1746,1428156025,3),(1746,1443276026,2),(1746,1459605626,3),(1746,1474725626,2),(1746,1491055227,3),(1746,1506175227,2),(1746,1522504827,3),(1746,1538229627,2),(1746,1554559227,3),(1746,1569679227,2),(1746,1586008827,3),(1746,1601128827,2),(1746,1617458427,3),(1746,1632578427,2),(1746,1648908027,3),(1746,1664028027,2),(1746,1680357627,3),(1746,1695477627,2),(1746,1712412027,3),(1746,1727532027,2),(1746,1743861627,3),(1746,1758981627,2),(1746,1775311227,3),(1746,1790431227,2),(1746,1806760827,3),(1746,1821880827,2),(1746,1838210427,3),(1746,1853330427,2),(1746,1869660027,3),(1746,1885384827,2),(1746,1901714427,3),(1746,1916834427,2),(1746,1933164027,3),(1746,1948284027,2),(1746,1964613627,3),(1746,1979733627,2),(1746,1996063227,3),(1746,2011183227,2),(1746,2027512827,3),(1746,2042632827,2),(1746,2058962427,3),(1746,2074687227,2),(1746,2091016827,3),(1746,2106136827,2),(1746,2122466427,3),(1746,2137586427,2),(1747,-2147483648,1),(1747,-1743674400,2),(1747,-1606813200,1),(1747,-907408800,2),(1747,-770634000,1),(1748,-2147483648,1),(1748,-1178124152,4),(1748,-36619200,2),(1748,-23922000,3),(1748,-3355200,2),(1748,7527600,3),(1748,24465600,2),(1748,37767600,3),(1748,55915200,2),(1748,69217200,3),(1748,87969601,2),(1748,100666802,3),(1748,118209602,2),(1748,132116403,3),(1748,150868803,2),(1748,163566004,3),(1748,182318404,2),(1748,195620405,3),(1748,213768005,2),(1748,227070006,3),(1748,245217606,2),(1748,258519607,3),(1748,277272007,2),(1748,289969208,3),(1748,308721608,2),(1748,321418809,3),(1748,340171209,2),(1748,353473209,3),(1748,371620810,2),(1748,384922810,5),(1748,403070411,6),(1748,416372411,5),(1748,434520012,6),(1748,447822012,5),(1748,466574412,6),(1748,479271612,5),(1748,498024013,6),(1748,510721213,5),(1748,529473613,6),(1748,545194813,5),(1748,560923213,6),(1748,574225214,5),(1748,592372814,6),(1748,605674814,5),(1748,624427214,6),(1748,637124415,5),(1748,653457615,6),(1748,668574016,5),(1748,687326416,6),(1748,700628416,5),(1748,718776017,6),(1748,732078017,5),(1748,750225618,6),(1748,763527618,5),(1748,781675219,6),(1748,794977219,5),(1748,813729619,6),(1748,826426820,5),(1748,845179220,6),(1748,859690820,5),(1748,876628821,6),(1748,889930821,5),(1748,906868821,6),(1748,923194822,5),(1748,939528022,6),(1748,952830022,5),(1748,971582422,6),(1748,984279622,5),(1748,1003032022,6),(1748,1015729222,5),(1748,1034481622,6),(1748,1047178822,5),(1748,1065931222,6),(1748,1079233222,5),(1748,1097380822,6),(1748,1110682822,5),(1748,1128830422,6),(1748,1142132423,5),(1748,1160884823,6),(1748,1173582023,5),(1748,1192334423,6),(1748,1206846023,5),(1748,1223784023,6),(1748,1237086024,5),(1748,1255233624,6),(1748,1270350024,5),(1748,1286683224,6),(1748,1304823624,5),(1748,1313899224,6),(1748,1335668424,5),(1748,1346558425,6),(1748,1367118025,5),(1748,1378612825,6),(1748,1398567625,5),(1748,1410062425,6),(1748,1463281226,5),(1748,1471147226,6),(1748,1494730827,5),(1748,1502596827,6),(1748,1526180427,5),(1748,1534046427,6),(1748,1554606027,5),(1748,1567915227,6),(1748,1586055627,5),(1748,1599364827,6),(1748,1617505227,5),(1748,1630814427,6),(1748,1648954827,5),(1748,1662264027,6),(1748,1680404427,5),(1748,1693713627,6),(1748,1712458827,5),(1748,1725768027,6),(1748,1743908427,5),(1748,1757217627,6),(1748,1775358027,5),(1748,1788667227,6),(1748,1806807627,5),(1748,1820116827,6),(1748,1838257227,5),(1748,1851566427,6),(1748,1870311627,5),(1748,1883016027,6),(1748,1901761227,5),(1748,1915070427,6),(1748,1933210827,5),(1748,1946520027,6),(1748,1964660427,5),(1748,1977969627,6),(1748,1996110027,5),(1748,2009419227,6),(1748,2027559627,5),(1748,2040868827,6),(1748,2059614027,5),(1748,2072318427,6),(1748,2091063627,5),(1748,2104372827,6),(1748,2122513227,5),(1748,2135822427,6),(1749,-2147483648,0),(1749,-1829387596,2),(1749,433256412,1),(1749,448977612,2),(1749,467298012,1),(1749,480427212,2),(1749,496760413,1),(1749,511876813,2),(1749,528210013,1),(1749,543931213,2),(1749,559659613,1),(1749,575380814,2),(1749,591109214,1),(1749,606830414,2),(1749,622558814,1),(1749,638280015,2),(1749,654008415,1),(1749,669729616,2),(1749,686062816,1),(1749,696340816,2),(1749,719931617,1),(1749,727790417,2),(1750,-2147483648,1),(1750,307627208,2),(1750,788871619,3),(1751,-2147483648,1),(1751,1325242824,2),(1752,-2147483648,0),(1752,-1709985344,2),(1752,909842421,1),(1752,920124022,2),(1752,941896822,1),(1752,951573622,2),(1752,1259416824,1),(1752,1269698424,2),(1752,1287842424,1),(1752,1299333624,2),(1752,1319292024,1),(1752,1327154424,2),(1752,1350741625,1),(1752,1358604025,2),(1752,1382796025,1),(1752,1390050025,2),(1752,1414850425,1),(1752,1421503225,2),(1752,1446300026,1),(1752,1452952826,2),(1752,1478354426,1),(1752,1484402427,2),(1752,1509804027,1),(1752,1515852027,2),(1752,1541253627,1),(1752,1547301627,2),(1752,1573308027,1),(1752,1578751227,2),(1752,1604757627,1),(1752,1610805627,2),(1752,1636812027,1),(1752,1642255227,2),(1752,1668261627,1),(1752,1673704827,2),(1752,1699711227,1),(1752,1705154427,2),(1752,1731160827,1),(1752,1736604027,2),(1752,1762610427,1),(1752,1768658427,2),(1752,1794060027,1),(1752,1800108027,2),(1752,1826114427,1),(1752,1831557627,2),(1752,1857564027,1),(1752,1863007227,2),(1752,1889013627,1),(1752,1894456827,2),(1752,1920463227,1),(1752,1925906427,2),(1752,1951912827,1),(1752,1957960827,2),(1752,1983967227,1),(1752,1989410427,2),(1752,2015416827,1),(1752,2020860027,2),(1752,2046866427,1),(1752,2052309627,2),(1752,2078316027,1),(1752,2083759227,2),(1752,2109765627,1),(1752,2115813627,2),(1752,2141215227,1),(1754,-2147483648,0),(1754,-1230746496,1),(1754,504939613,3),(1754,722930417,2),(1754,728888417,3),(1755,-2147483648,0),(1755,-1806678012,1),(1756,-2147483648,0),(1756,-1806748788,1),(1757,-2147483648,1),(1757,-885549600,2),(1757,-802256400,1),(1757,-331891200,3),(1757,-281610000,1),(1757,-73728000,3),(1757,-29415540,1),(1757,-16704000,3),(1757,-10659600,1),(1757,9907200,3),(1757,21394800,1),(1757,41356800,3),(1757,52844400,1),(1757,124819202,3),(1757,130863603,1),(1757,201888005,3),(1757,209487665,1),(1757,230659206,3),(1757,241542006,1),(1757,977493622,4),(1758,-2147483648,1),(1758,-1157283000,2),(1758,-1155436200,1),(1758,-880198200,3),(1758,-769395600,4),(1758,-765376200,1),(1758,-712150200,5),(1759,-2147483648,1),(1759,-1157283000,2),(1759,-1155436200,1),(1759,-880198200,3),(1759,-769395600,4),(1759,-765376200,1),(1759,-712150200,5),(1760,-2147483648,1),(1760,307622408,2),(1760,788868019,3),(1761,-2147483648,1),(1761,-1743678000,2),(1761,-1606813200,1),(1761,-1041418800,3),(1761,-907408800,2),(1761,-770634000,1),(1761,-7988400,4),(1761,915105621,1),(1762,-2147483648,1),(1762,-1041418800,2),(1762,-907408800,3),(1762,-817462800,1),(1762,-7988400,4),(1762,745934418,5),(1763,-2147483648,1),(1763,-1743678000,2),(1763,-1606813200,1),(1763,-1041418800,3),(1763,-907408800,2),(1763,-818067600,1),(1763,-7988400,4),(1764,-2147483648,0),(1764,-1806676920,1),(1765,-2147483648,1),(1765,-1861879032,2),(1766,-2147483648,0),(1766,-1545131260,1),(1766,-862918200,2),(1766,-767350800,1),(1766,287418608,3),(1767,-2147483648,1),(1767,-599575200,2),(1767,276089407,3),(1768,-2147483648,1),(1768,-599656320,2),(1768,152029803,3),(1768,162916204,4),(1768,1443882626,5),(1768,1561899627,7),(1768,1570287627,6),(1768,1586012427,5),(1768,1601737227,6),(1768,1617462027,5),(1768,1633186827,6),(1768,1648911627,5),(1768,1664636427,6),(1768,1680361227,5),(1768,1696086027,6),(1768,1712415627,5),(1768,1728140427,6),(1768,1743865227,5),(1768,1759590027,6),(1768,1775314827,5),(1768,1791039627,6),(1768,1806764427,5),(1768,1822489227,6),(1768,1838214027,5),(1768,1853938827,6),(1768,1869663627,5),(1768,1885993227,6),(1768,1901718027,5),(1768,1917442827,6),(1768,1933167627,5),(1768,1948892427,6),(1768,1964617227,5),(1768,1980342027,6),(1768,1996066827,5),(1768,2011791627,6),(1768,2027516427,5),(1768,2043241227,6),(1768,2058966027,5),(1768,2075295627,6),(1768,2091020427,5),(1768,2106745227,6),(1768,2122470027,5),(1768,2138194827,6),(1769,-2147483648,0),(1769,-1829387148,2),(1769,250002006,1),(1769,257342407,2),(1769,281451607,1),(1769,288878408,2),(1769,849366020,3),(1769,857228420,4),(1770,-2147483648,1),(1770,-1861879032,2),(1772,-2147483648,1),(1772,893665821,2),(1773,-2147483648,1),(1773,-1743678000,2),(1773,-1606813200,1),(1773,-1041418800,3),(1773,-907408800,2),(1773,-770634000,1),(1774,-2147483648,1),(1774,-1743678000,2),(1774,-1606813200,1),(1774,-1041418800,3),(1774,-907408800,2),(1774,-770634000,1),(1776,-2147483648,1),(1776,279714607,3),(1776,289387808,2),(1776,309952808,3),(1776,320837409,2),(1776,341402409,3),(1776,352287009,2),(1776,372852010,3),(1776,384341410,2),(1776,404906411,3),(1776,415791011,2),(1776,436356012,3),(1776,447240612,2),(1776,467805612,3),(1776,478690212,2),(1776,499255213,3),(1776,510139813,2),(1776,530704813,3),(1776,541589413,2),(1776,562154413,3),(1776,573643814,2),(1776,594208814,3),(1776,605093414,2),(1776,625658414,3),(1776,636543015,2),(1776,657108015,3),(1776,667992616,2),(1777,-2147483648,1),(1777,-885549600,2),(1777,-802256400,1),(1777,-331891200,3),(1777,-281610000,1),(1777,-73728000,3),(1777,-29415540,1),(1777,-16704000,3),(1777,-10659600,1),(1777,9907200,3),(1777,21394800,1),(1777,41356800,3),(1777,52844400,1),(1777,124819202,3),(1777,130863603,1),(1777,201888005,3),(1777,209487665,1),(1777,230659206,3),(1777,241542006,1),(1777,977493622,4),(1778,-2147483648,1),(1778,-1861879032,2),(1779,-2147483648,0),(1779,-1806674504,1),(1781,-2147483648,1),(1781,-915193200,2),(1781,939214822,3),(1781,953384422,4),(1781,973342822,5),(1781,980596822,2),(1781,1004792422,5),(1781,1012046422,2),(1781,1478350826,5),(1781,1484398827,2),(1782,-2147483648,1),(1782,-1743674400,2),(1782,-1606813200,1),(1782,-907408800,2),(1782,-770634000,1),(1785,-2147483648,1),(1785,-1743674400,2),(1785,-1606813200,1),(1785,-907408800,2),(1785,-770634000,1),(1786,-2147483648,1),(1786,-1717032240,3),(1786,-1693706400,2),(1786,-1680483600,3),(1786,-1663455600,4),(1786,-1650150000,5),(1786,-1632006000,4),(1786,-1618700400,8),(1786,-1600473600,6),(1786,-1587168000,7),(1786,-1501725600,3),(1786,-931734000,2),(1786,-857257200,5),(1786,-844556400,4),(1786,-828226800,5),(1786,-812502000,4),(1786,-796874400,2),(1786,-796608000,3),(1786,-778726800,2),(1786,-762660000,3),(1786,-748486800,4),(1786,-733273200,5),(1786,-715215600,4),(1786,-701910000,5),(1786,-684975600,4),(1786,-670460400,5),(1786,-654130800,4),(1786,-639010800,5),(1786,-397094400,4),(1786,-386812800,5),(1786,-371088000,4),(1786,-355363200,5),(1786,-334195200,4),(1786,-323308800,5),(1786,-307584000,4),(1786,-291859200,5),(1786,-271296000,4),(1786,-260409600,5),(1786,-239846400,4),(1786,-228960000,5),(1786,-208396800,4),(1786,-197510400,5),(1786,-176342400,4),(1786,-166060800,5),(1786,220921205,3),(1786,228873606,4),(1786,243993606,5),(1786,260323207,4),(1786,276048007,5),(1786,291772808,4),(1786,307497608,5),(1786,323827209,4),(1786,338947209,5),(1786,354672009,4),(1786,370396810,5),(1786,386121610,4),(1786,401846411,5),(1786,417571211,4),(1786,433296012,5),(1786,449020812,4),(1786,465350412,5),(1786,481075212,4),(1786,496800013,5),(1786,512524813,4),(1786,528249613,5),(1786,543974413,4),(1786,559699213,5),(1786,567990013,3),(1786,575427614,9),(1786,591152414,10),(1786,606877214,9),(1786,622602014,10),(1786,638326815,9),(1786,654656415,10),(1786,670381216,9),(1786,686106016,10),(1786,701830816,9),(1786,717555617,10),(1786,733280417,9),(1786,749005218,10),(1786,764730018,9),(1786,780454819,10),(1786,796179619,9),(1786,811904419,10),(1786,828234020,9),(1786,846378020,10),(1786,859683620,9),(1786,877827621,10),(1786,891133221,9),(1786,909277221,10),(1786,922582822,9),(1786,941331622,10),(1786,954032422,9),(1786,972781222,10),(1786,985482022,9),(1786,1004230822,10),(1786,1017536422,9),(1786,1035680422,10),(1786,1048986022,9),(1786,1067130022,10),(1786,1080435622,9),(1786,1099184422,10),(1786,1111885222,9),(1786,1130634022,10),(1786,1143334823,9),(1786,1162083623,10),(1786,1174784423,9),(1786,1193533223,10),(1786,1206838823,9),(1786,1224982823,10),(1786,1238288424,9),(1786,1256432424,10),(1786,1269738024,9),(1786,1288486824,10),(1786,1301187624,9),(1786,1319936424,10),(1786,1332637224,9),(1786,1351386025,10),(1786,1364691625,9),(1786,1382835625,10),(1786,1396141225,9),(1786,1414285225,10),(1786,1427590825,9),(1786,1445734826,10),(1786,1459040426,9),(1786,1477789226,10),(1786,1490490027,9),(1786,1509238827,10),(1786,1521939627,9),(1786,1540688427,10),(1786,1553994027,9),(1786,1572138027,10),(1786,1585443627,9),(1786,1603587627,10),(1786,1616893227,9),(1786,1635642027,10),(1786,1648342827,9),(1786,1667091627,10),(1786,1679792427,9),(1786,1698541227,10),(1786,1711846827,9),(1786,1729990827,10),(1786,1743296427,9),(1786,1761440427,10),(1786,1774746027,9),(1786,1792890027,10),(1786,1806195627,9),(1786,1824944427,10),(1786,1837645227,9),(1786,1856394027,10),(1786,1869094827,9),(1786,1887843627,10),(1786,1901149227,9),(1786,1919293227,10),(1786,1932598827,9),(1786,1950742827,10),(1786,1964048427,9),(1786,1982797227,10),(1786,1995498027,9),(1786,2014246827,10),(1786,2026947627,9),(1786,2045696427,10),(1786,2058397227,9),(1786,2077146027,10),(1786,2090451627,9),(1786,2108595627,10),(1786,2121901227,9),(1786,2140045227,10),(1787,-2147483648,0),(1787,-1830384000,6),(1787,-1689555600,1),(1787,-1677801600,2),(1787,-1667437200,3),(1787,-1647738000,4),(1787,-1635814800,3),(1787,-1616202000,4),(1787,-1604365200,3),(1787,-1584666000,4),(1787,-1572742800,3),(1787,-1553043600,4),(1787,-1541206800,3),(1787,-1521507600,4),(1787,-1442451600,3),(1787,-1426813200,4),(1787,-1379293200,3),(1787,-1364778000,4),(1787,-1348448400,3),(1787,-1333328400,4),(1787,-1316394000,3),(1787,-1301274000,4),(1787,-1284339600,3),(1787,-1269824400,4),(1787,-1221440400,3),(1787,-1206925200,4),(1787,-1191200400,3),(1787,-1175475600,4),(1787,-1127696400,3),(1787,-1111971600,4),(1787,-1096851600,3),(1787,-1080522000,4),(1787,-1063587600,3),(1787,-1049072400,4),(1787,-1033347600,3),(1787,-1017622800,4),(1787,-1002502800,3),(1787,-986173200,4),(1787,-969238800,3),(1787,-950490000,4),(1787,-942022800,3),(1787,-922669200,4),(1787,-906944400,3),(1787,-891133200,4),(1787,-877309200,3),(1787,-873684000,5),(1787,-864007200,3),(1787,-857955600,4),(1787,-845859600,3),(1787,-842839200,5),(1787,-831348000,3),(1787,-825901200,4),(1787,-814410000,3),(1787,-810784800,5),(1787,-799898400,3),(1787,-794451600,4),(1787,-782960400,3),(1787,-779335200,5),(1787,-768448800,3),(1787,-763002000,4),(1787,-749091600,3),(1787,-733366800,4),(1787,-717631200,3),(1787,-701906400,4),(1787,-686181600,3),(1787,-670456800,4),(1787,-654732000,3),(1787,-639007200,4),(1787,-591832800,3),(1787,-575503200,4),(1787,-559778400,3),(1787,-544053600,4),(1787,-528328800,3),(1787,-512604000,4),(1787,-496879200,3),(1787,-481154400,4),(1787,-465429600,3),(1787,-449704800,4),(1787,-433980000,3),(1787,-417650400,4),(1787,-401925600,3),(1787,-386200800,4),(1787,-370476000,3),(1787,-354751200,4),(1787,-339026400,3),(1787,-323301600,4),(1787,-307576800,3),(1787,-291852000,4),(1787,-276127200,3),(1787,-260402400,4),(1787,-244677600,3),(1787,-228348000,4),(1787,-212623200,3),(1787,-196898400,4),(1787,-181173600,3),(1787,-165448800,4),(1787,-149724000,3),(1787,-133999200,4),(1787,-118274400,7),(1787,212544005,2),(1787,228268806,3),(1787,243993606,4),(1787,260323207,3),(1787,276048007,4),(1787,291772808,3),(1787,307501208,4),(1787,323222409,3),(1787,338950809,4),(1787,354675609,3),(1787,370400410,4),(1787,386125210,3),(1787,401850011,4),(1787,417578411,3),(1787,433299612,4),(1787,449024412,3),(1787,465354012,4),(1787,481078812,3),(1787,496803613,4),(1787,512528413,3),(1787,528253213,4),(1787,543978013,3),(1787,559702813,4),(1787,575427614,3),(1787,591152414,4),(1787,606877214,3),(1787,622602014,4),(1787,638326815,3),(1787,654656415,4),(1787,670381216,3),(1787,686106016,4),(1787,701830816,3),(1787,717555617,8),(1787,733280417,9),(1787,749005218,8),(1787,764730018,9),(1787,780454819,8),(1787,796179619,9),(1787,811904419,8),(1787,828234020,10),(1787,846378020,6),(1787,859683620,10),(1787,877827621,6),(1787,891133221,10),(1787,909277221,6),(1787,922582822,10),(1787,941331622,6),(1787,954032422,10),(1787,972781222,6),(1787,985482022,10),(1787,1004230822,6),(1787,1017536422,10),(1787,1035680422,6),(1787,1048986022,10),(1787,1067130022,6),(1787,1080435622,10),(1787,1099184422,6),(1787,1111885222,10),(1787,1130634022,6),(1787,1143334823,10),(1787,1162083623,6),(1787,1174784423,10),(1787,1193533223,6),(1787,1206838823,10),(1787,1224982823,6),(1787,1238288424,10),(1787,1256432424,6),(1787,1269738024,10),(1787,1288486824,6),(1787,1301187624,10),(1787,1319936424,6),(1787,1332637224,10),(1787,1351386025,6),(1787,1364691625,10),(1787,1382835625,6),(1787,1396141225,10),(1787,1414285225,6),(1787,1427590825,10),(1787,1445734826,6),(1787,1459040426,10),(1787,1477789226,6),(1787,1490490027,10),(1787,1509238827,6),(1787,1521939627,10),(1787,1540688427,6),(1787,1553994027,10),(1787,1572138027,6),(1787,1585443627,10),(1787,1603587627,6),(1787,1616893227,10),(1787,1635642027,6),(1787,1648342827,10),(1787,1667091627,6),(1787,1679792427,10),(1787,1698541227,6),(1787,1711846827,10),(1787,1729990827,6),(1787,1743296427,10),(1787,1761440427,6),(1787,1774746027,10),(1787,1792890027,6),(1787,1806195627,10),(1787,1824944427,6),(1787,1837645227,10),(1787,1856394027,6),(1787,1869094827,10),(1787,1887843627,6),(1787,1901149227,10),(1787,1919293227,6),(1787,1932598827,10),(1787,1950742827,6),(1787,1964048427,10),(1787,1982797227,6),(1787,1995498027,10),(1787,2014246827,6),(1787,2026947627,10),(1787,2045696427,6),(1787,2058397227,10),(1787,2077146027,6),(1787,2090451627,10),(1787,2108595627,6),(1787,2121901227,10),(1787,2140045227,6),(1788,-2147483648,1),(1788,-1017820800,2),(1788,-766224000,1),(1788,-745833600,3),(1788,-733827600,1),(1788,-716889600,3),(1788,-699613200,1),(1788,-683884800,3),(1788,-670669200,1),(1788,-652348800,3),(1788,-639133200,1),(1788,-620812800,3),(1788,-607597200,1),(1788,-589276800,3),(1788,-576061200,1),(1788,-562924800,3),(1788,-541760400,1),(1788,-528710400,3),(1788,-510224400,1),(1788,-497174400,3),(1788,-478688400,1),(1788,-465638400,3),(1788,-449830800,1),(1788,-434016000,3),(1788,-418208400,1),(1788,-402480000,3),(1788,-386672400,1),(1788,-370944000,3),(1788,-355136400,1),(1788,-339408000,3),(1788,-323600400,1),(1788,-302515200,3),(1788,-291978000,1),(1788,-270979200,3),(1788,-260442000,1),(1788,133977603,3),(1788,149785203,1),(1788,165513604,3),(1788,181321204,1),(1788,299606408,3),(1788,307551608,1),(1789,-2147483648,0),(1789,-1948782472,1),(1789,-1830414600,2),(1789,-767350800,4),(1789,-681210000,3),(1789,-672228000,4),(1789,-654771600,3),(1789,-640864800,4),(1789,-623408400,3),(1789,-609415200,4),(1789,-588848400,3),(1789,-577965600,4),(1789,-498128400,1),(1789,-462702600,5),(1789,-451733400,1),(1789,-429784200,5),(1789,-418296600,1),(1789,-399544200,5),(1789,-387451800,1),(1789,-368094600,5),(1789,-356002200,1),(1789,-336645000,5),(1789,-324552600,1),(1789,-305195400,5),(1789,-293103000,1),(1789,-264933000,4),(1789,547578013,3),(1789,560883613,4),(1789,579027614,3),(1789,592333214,4),(1790,-2147483648,1),(1790,-2038200925,2),(1790,-1167634800,3),(1790,-1073028000,4),(1790,-894180000,5),(1790,-879665400,6),(1790,-767005200,5),(1790,378664210,7),(1791,-2147483648,1),(1791,-873057600,3),(1791,-769395600,2),(1791,-765399600,1),(1792,-2147483648,0),(1792,-2131645536,2),(1792,-1696276800,1),(1792,-1680469200,2),(1792,-1632074400,1),(1792,-1615143600,2),(1792,-1566763200,1),(1792,-1557090000,2),(1792,-1535486400,1),(1792,-1524949200,2),(1792,-1504468800,1),(1792,-1493413200,2),(1792,-1472414400,1),(1792,-1461963600,2),(1792,-1440964800,1),(1792,-1429390800,2),(1792,-1409515200,1),(1792,-1396731600,2),(1792,-1376856000,1),(1792,-1366491600,2),(1792,-1346616000,1),(1792,-1333832400,2),(1792,-1313956800,1),(1792,-1303678800,2),(1792,-1282507200,1),(1792,-1272661200,2),(1792,-1251057600,1),(1792,-1240088400,2),(1792,-1219608000,1),(1792,-1207429200,2),(1792,-1188763200,1),(1792,-1175979600,2),(1792,-1157313600,1),(1792,-1143925200,2),(1792,-1124049600,1),(1792,-1113771600,2),(1792,-1091390400,1),(1792,-1081026000,2),(1792,-1059854400,1),(1792,-1050786000,2),(1792,-1030910400,1),(1792,-1018126800,2),(1792,-999460800,1),(1792,-986677200,2),(1792,-965592000,1),(1792,-955227600,2),(1792,-935956800,1),(1792,-923173200,2),(1792,-904507200,1),(1792,-891723600,2),(1792,-880221600,3),(1792,-769395600,4),(1792,-765399600,2),(1792,-747252000,1),(1792,-733950000,2),(1792,-715802400,1),(1792,-702500400,2),(1792,-684352800,1),(1792,-671050800,2),(1792,-652903200,1),(1792,-639601200,2),(1792,-589399200,1),(1792,-576097200,2),(1792,-557949600,1),(1792,-544647600,2),(1792,-526500000,1),(1792,-513198000,2),(1792,-495050400,1),(1792,-481748400,2),(1792,-431546400,1),(1792,-418244400,2),(1792,-400096800,1),(1792,-386794800,2),(1792,-368647200,1),(1792,-355345200,2),(1792,-337197600,1),(1792,-323895600,2),(1792,-242244000,1),(1792,-226522800,2),(1792,-210794400,1),(1792,-195073200,2),(1792,-179344800,1),(1792,-163623600,2),(1792,-147895200,1),(1792,-131569200,2),(1792,-116445600,1),(1792,-100119600,2),(1792,-84391200,1),(1792,-68670000,2),(1792,-52941600,1),(1792,-37220400,2),(1792,-21492000,1),(1792,-5770800,2),(1792,9957600,1),(1792,25678800,2),(1792,41407200,1),(1792,57733200,2),(1792,73461600,1),(1792,89182801,2),(1792,104911202,1),(1792,120632402,2),(1792,136360803,1),(1792,152082003,2),(1792,167810404,1),(1792,183531604,2),(1792,199260005,1),(1792,215586005,2),(1792,230709606,1),(1792,247035606,2),(1792,262764007,1),(1792,278485207,2),(1792,294213608,1),(1792,309934808,2),(1792,325663209,1),(1792,341384409,2),(1792,357112809,1),(1792,372834010,2),(1792,388562410,1),(1792,404888411,2),(1792,420012011,1),(1792,436338012,2),(1792,452066412,1),(1792,467787612,2),(1792,483516012,1),(1792,499237213,2),(1792,514965613,1),(1792,530686813,2),(1792,544600813,1),(1792,562136413,2),(1792,576050414,1),(1792,594190814,2),(1792,607500014,1),(1792,625640414,2),(1792,638949615,1),(1792,657090015,2),(1792,671004016,1),(1792,688539616,2),(1792,702453616,1),(1792,719989217,2),(1792,733903217,1),(1792,752043618,2),(1792,765352818,1),(1792,783493219,2),(1792,796802419,1),(1792,814942819,2),(1792,828856820,1),(1792,846392420,2),(1792,860306420,1),(1792,877842021,2),(1792,891756021,1),(1792,909291621,2),(1792,923205622,1),(1792,941346022,2),(1792,954655222,1),(1792,972795622,2),(1792,986104822,1),(1792,1004245222,2),(1792,1018159222,1),(1792,1035694822,2),(1792,1049608822,1),(1792,1067144422,2),(1792,1081058422,1),(1792,1099198822,2),(1792,1112508022,1),(1792,1130648422,2),(1792,1143957623,1),(1792,1162098023,2),(1792,1173592823,1),(1792,1194152423,2),(1792,1205042423,1),(1792,1225602023,2),(1792,1236492024,1),(1792,1257051624,2),(1792,1268546424,1),(1792,1289106024,2),(1792,1299996024,1),(1792,1320555624,2),(1792,1331445624,1),(1792,1352005225,2),(1792,1362895225,1),(1792,1383454825,2),(1792,1394344825,1),(1792,1414904425,2),(1792,1425794425,1),(1792,1446354026,2),(1792,1457848826,1),(1792,1478408426,2),(1792,1489298427,1),(1792,1509858027,2),(1792,1520748027,1),(1792,1541307627,2),(1792,1552197627,1),(1792,1572757227,2),(1792,1583647227,1),(1792,1604206827,2),(1792,1615701627,1),(1792,1636261227,2),(1792,1647151227,1),(1792,1667710827,2),(1792,1678600827,1),(1792,1699160427,2),(1792,1710050427,1),(1792,1730610027,2),(1792,1741500027,1),(1792,1762059627,2),(1792,1772949627,1),(1792,1793509227,2),(1792,1805004027,1),(1792,1825563627,2),(1792,1836453627,1),(1792,1857013227,2),(1792,1867903227,1),(1792,1888462827,2),(1792,1899352827,1),(1792,1919912427,2),(1792,1930802427,1),(1792,1951362027,2),(1792,1962856827,1),(1792,1983416427,2),(1792,1994306427,1),(1792,2014866027,2),(1792,2025756027,1),(1792,2046315627,2),(1792,2057205627,1),(1792,2077765227,2),(1792,2088655227,1),(1792,2109214827,2),(1792,2120104827,1),(1792,2140664427,2),(1793,-2147483648,0),(1793,-2030202084,2),(1793,-1632063600,1),(1793,-1615132800,2),(1793,-1251651600,1),(1793,-1238349600,2),(1793,-1220202000,1),(1793,-1206900000,2),(1793,-1188752400,1),(1793,-1175450400,2),(1793,-1156698000,1),(1793,-1144000800,2),(1793,-1125248400,1),(1793,-1111946400,2),(1793,-1032714000,1),(1793,-1016992800,2),(1793,-1001264400,1),(1793,-986148000,2),(1793,-969814800,1),(1793,-954093600,2),(1793,-937760400,1),(1793,-922039200,2),(1793,-906310800,1),(1793,-890589600,2),(1793,-880210800,3),(1793,-769395600,4),(1793,-765388800,2),(1793,-748450800,1),(1793,-732729600,2),(1793,-715791600,1),(1793,-702489600,2),(1793,-684342000,1),(1793,-671040000,2),(1793,-652892400,1),(1793,-639590400,2),(1793,-620838000,1),(1793,-608140800,2),(1793,-589388400,1),(1793,-576086400,2),(1793,-557938800,1),(1793,-544636800,2),(1793,-526489200,1),(1793,-513187200,2),(1793,-495039600,1),(1793,-481737600,2),(1793,-463590000,1),(1793,-450288000,2),(1793,-431535600,1),(1793,-418233600,2),(1793,-400086000,1),(1793,-386784000,2),(1793,-337186800,1),(1793,-321465600,2),(1793,-305737200,5),(1794,-2147483648,2),(1794,-1633276800,1),(1794,-1615136400,2),(1794,-1601827200,1),(1794,-1583686800,2),(1794,-1563724800,1),(1794,-1551632400,2),(1794,-1538928000,1),(1794,-1520182800,2),(1794,-1504454400,1),(1794,-1491757200,2),(1794,-1473004800,1),(1794,-1459702800,2),(1794,-1441555200,1),(1794,-1428253200,2),(1794,-1410105600,1),(1794,-1396803600,2),(1794,-1378656000,1),(1794,-1365354000,2),(1794,-1347206400,1),(1794,-1333904400,2),(1794,-1315152000,1),(1794,-1301850000,2),(1794,-1283702400,1),(1794,-1270400400,2),(1794,-1252252800,1),(1794,-1238950800,2),(1794,-1220803200,1),(1794,-1207501200,2),(1794,-1189353600,1),(1794,-1176051600,2),(1794,-1157299200,1),(1794,-1144602000,2),(1794,-1125849600,1),(1794,-1112547600,2),(1794,-1094400000,1),(1794,-1081098000,2),(1794,-1067788800,3),(1794,-1045414800,2),(1794,-1031500800,1),(1794,-1018198800,2),(1794,-1000051200,1),(1794,-986749200,2),(1794,-967996800,1),(1794,-955299600,2),(1794,-936547200,1),(1794,-923245200,2),(1794,-905097600,1),(1794,-891795600,2),(1794,-880214400,4),(1794,-769395600,5),(1794,-765392400,2),(1794,-747244800,1),(1794,-733942800,2),(1794,-715795200,1),(1794,-702493200,2),(1794,-684345600,1),(1794,-671043600,2),(1794,-652896000,1),(1794,-639594000,2),(1794,-620841600,1),(1794,-608144400,2),(1794,-589392000,1),(1794,-576090000,2),(1794,-557942400,1),(1794,-544640400,2),(1794,-526492800,1),(1794,-513190800,2),(1794,-495043200,1),(1794,-481741200,2),(1794,-463593600,1),(1794,-447267600,2),(1794,-431539200,1),(1794,-415818000,2),(1794,-400089600,1),(1794,-384368400,2),(1794,-368640000,1),(1794,-352918800,2),(1794,-337190400,1),(1794,-321469200,2),(1794,-305740800,1),(1794,-289414800,2),(1794,-273686400,1),(1794,-257965200,2),(1794,-242236800,1),(1794,-226515600,2),(1794,-210787200,1),(1794,-195066000,2),(1794,-179337600,1),(1794,-163616400,2),(1794,-147888000,1),(1794,-131562000,2),(1794,-116438400,1),(1794,-100112400,2),(1794,-84384000,1),(1794,-68662800,2),(1794,-52934400,1),(1794,-37213200,2),(1794,-21484800,1),(1794,-5763600,2),(1794,9964800,1),(1794,25686000,2),(1794,41414400,1),(1794,57740400,2),(1794,73468800,1),(1794,89190001,2),(1794,104918402,1),(1794,120639602,2),(1794,126691203,1),(1794,152089203,2),(1794,162374404,1),(1794,183538804,2),(1794,199267205,1),(1794,215593205,2),(1794,230716806,1),(1794,247042806,2),(1794,262771207,1),(1794,278492407,2),(1794,294220808,1),(1794,309942008,2),(1794,325670409,1),(1794,341391609,2),(1794,357120009,1),(1794,372841210,2),(1794,388569610,1),(1794,404895611,2),(1794,420019211,1),(1794,436345212,2),(1794,452073612,1),(1794,467794812,2),(1794,483523212,1),(1794,499244413,2),(1794,514972813,1),(1794,530694013,2),(1794,544608013,1),(1794,562143613,2),(1794,576057614,1),(1794,594198014,2),(1794,607507214,1),(1794,625647614,2),(1794,638956815,1),(1794,657097215,2),(1794,671011216,1),(1794,688546816,2),(1794,702460816,1),(1794,719996417,2),(1794,733910417,1),(1794,752050818,2),(1794,765360018,1),(1794,783500419,2),(1794,796809619,1),(1794,814950019,2),(1794,828864020,1),(1794,846399620,2),(1794,860313620,1),(1794,877849221,2),(1794,891763221,1),(1794,909298821,2),(1794,923212822,1),(1794,941353222,2),(1794,954662422,1),(1794,972802822,2),(1794,986112022,1),(1794,1004252422,2),(1794,1018166422,1),(1794,1035702022,2),(1794,1049616022,1),(1794,1067151622,2),(1794,1081065622,1),(1794,1099206022,2),(1794,1112515222,1),(1794,1130655622,2),(1794,1143964823,1),(1794,1162105223,2),(1794,1173600023,1),(1794,1194159623,2),(1794,1205049623,1),(1794,1225609223,2),(1794,1236499224,1),(1794,1257058824,2),(1794,1268553624,1),(1794,1289113224,2),(1794,1300003224,1),(1794,1320562824,2),(1794,1331452824,1),(1794,1352012425,2),(1794,1362902425,1),(1794,1383462025,2),(1794,1394352025,1),(1794,1414911625,2),(1794,1425801625,1),(1794,1446361226,2),(1794,1457856026,1),(1794,1478415626,2),(1794,1489305627,1),(1794,1509865227,2),(1794,1520755227,1),(1794,1541314827,2),(1794,1552204827,1),(1794,1572764427,2),(1794,1583654427,1),(1794,1604214027,2),(1794,1615708827,1),(1794,1636268427,2),(1794,1647158427,1),(1794,1667718027,2),(1794,1678608027,1),(1794,1699167627,2),(1794,1710057627,1),(1794,1730617227,2),(1794,1741507227,1),(1794,1762066827,2),(1794,1772956827,1),(1794,1793516427,2),(1794,1805011227,1),(1794,1825570827,2),(1794,1836460827,1),(1794,1857020427,2),(1794,1867910427,1),(1794,1888470027,2),(1794,1899360027,1),(1794,1919919627,2),(1794,1930809627,1),(1794,1951369227,2),(1794,1962864027,1),(1794,1983423627,2),(1794,1994313627,1),(1794,2014873227,2),(1794,2025763227,1),(1794,2046322827,2),(1794,2057212827,1),(1794,2077772427,2),(1794,2088662427,1),(1794,2109222027,2),(1794,2120112027,1),(1794,2140671627,2),(1795,-2147483648,1),(1795,-1946918424,2),(1796,-2147483648,2),(1796,-1633280400,1),(1796,-1615140000,2),(1796,-1601830800,1),(1796,-1583690400,2),(1796,-1570381200,1),(1796,-1551636000,2),(1796,-1536512400,1),(1796,-1523210400,2),(1796,-1504458000,1),(1796,-1491760800,2),(1796,-1473008400,1),(1796,-1459706400,2),(1796,-1441558800,1),(1796,-1428256800,2),(1796,-1410109200,1),(1796,-1396807200,2),(1796,-1378659600,1),(1796,-1365357600,2),(1796,-1347210000,1),(1796,-1333908000,2),(1796,-1315155600,1),(1796,-1301853600,2),(1796,-1283706000,1),(1796,-1270404000,2),(1796,-1252256400,1),(1796,-1238954400,2),(1796,-1220806800,1),(1796,-1207504800,2),(1796,-1189357200,1),(1796,-1176055200,2),(1796,-1157302800,1),(1796,-1144605600,2),(1796,-1125853200,1),(1796,-1112551200,2),(1796,-1094403600,1),(1796,-1081101600,2),(1796,-1062954000,1),(1796,-1049652000,2),(1796,-1031504400,1),(1796,-1018202400,2),(1796,-1000054800,1),(1796,-986752800,2),(1796,-968000400,1),(1796,-955303200,2),(1796,-936550800,1),(1796,-923248800,2),(1796,-905101200,1),(1796,-891799200,2),(1796,-880218000,3),(1796,-769395600,4),(1796,-765396000,2),(1796,-747248400,1),(1796,-733946400,2),(1796,-715798800,1),(1796,-702496800,2),(1796,-684349200,1),(1796,-671047200,2),(1796,-652899600,1),(1796,-639597600,2),(1796,-620845200,1),(1796,-608148000,2),(1796,-589395600,1),(1796,-576093600,2),(1796,-557946000,1),(1796,-544644000,2),(1796,-526496400,1),(1796,-513194400,2),(1796,-495046800,1),(1796,-481744800,2),(1796,-463597200,1),(1796,-447271200,2),(1796,-431542800,1),(1796,-415821600,2),(1796,-400093200,1),(1796,-384372000,2),(1796,-368643600,1),(1796,-352922400,2),(1796,-337194000,1),(1796,-321472800,2),(1796,-305744400,1),(1796,-289418400,2),(1796,-273690000,1),(1796,-257968800,2),(1796,-242240400,1),(1796,-226519200,2),(1796,-210790800,1),(1796,-195069600,2),(1796,-179341200,1),(1796,-163620000,2),(1796,-147891600,1),(1796,-131565600,2),(1796,-116442000,1),(1796,-100116000,2),(1796,-84387600,1),(1796,-68666400,2),(1796,-52938000,1),(1796,-37216800,2),(1796,-21488400,1),(1796,-5767200,2),(1796,9961200,1),(1796,25682400,2),(1796,41410800,1),(1796,57736800,2),(1796,73465200,1),(1796,89186401,2),(1796,104914802,1),(1796,120636002,2),(1796,126687603,1),(1796,152085603,2),(1796,162370804,1),(1796,183535204,2),(1796,199263605,1),(1796,215589605,2),(1796,230713206,1),(1796,247039206,2),(1796,262767607,1),(1796,278488807,2),(1796,294217208,1),(1796,309938408,2),(1796,325666809,1),(1796,341388009,2),(1796,357116409,1),(1796,372837610,2),(1796,388566010,1),(1796,404892011,2),(1796,420015611,1),(1796,436341612,2),(1796,452070012,1),(1796,467791212,2),(1796,483519612,1),(1796,499240813,2),(1796,514969213,1),(1796,530690413,2),(1796,544604413,1),(1796,562140013,2),(1796,576054014,1),(1796,594194414,2),(1796,607503614,1),(1796,625644014,2),(1796,638953215,1),(1796,657093615,2),(1796,671007616,1),(1796,688543216,2),(1796,702457216,1),(1796,719992817,2),(1796,733906817,1),(1796,752047218,2),(1796,765356418,1),(1796,783496819,2),(1796,796806019,1),(1796,814946419,2),(1796,828860420,1),(1796,846396020,2),(1796,860310020,1),(1796,877845621,2),(1796,891759621,1),(1796,909295221,2),(1796,923209222,1),(1796,941349622,2),(1796,954658822,1),(1796,972799222,2),(1796,986108422,1),(1796,1004248822,2),(1796,1018162822,1),(1796,1035698422,2),(1796,1049612422,1),(1796,1067148022,2),(1796,1081062022,1),(1796,1099202422,2),(1796,1112511622,1),(1796,1130652022,2),(1796,1143961223,1),(1796,1162101623,2),(1796,1173596423,1),(1796,1194156023,2),(1796,1205046023,1),(1796,1225605623,2),(1796,1236495624,1),(1796,1257055224,2),(1796,1268550024,1),(1796,1289109624,2),(1796,1299999624,1),(1796,1320559224,2),(1796,1331449224,1),(1796,1352008825,2),(1796,1362898825,1),(1796,1383458425,2),(1796,1394348425,1),(1796,1414908025,2),(1796,1425798025,1),(1796,1446357626,2),(1796,1457852426,1),(1796,1478412026,2),(1796,1489302027,1),(1796,1509861627,2),(1796,1520751627,1),(1796,1541311227,2),(1796,1552201227,1),(1796,1572760827,2),(1796,1583650827,1),(1796,1604210427,2),(1796,1615705227,1),(1796,1636264827,2),(1796,1647154827,1),(1796,1667714427,2),(1796,1678604427,1),(1796,1699164027,2),(1796,1710054027,1),(1796,1730613627,2),(1796,1741503627,1),(1796,1762063227,2),(1796,1772953227,1),(1796,1793512827,2),(1796,1805007627,1),(1796,1825567227,2),(1796,1836457227,1),(1796,1857016827,2),(1796,1867906827,1),(1796,1888466427,2),(1796,1899356427,1),(1796,1919916027,2),(1796,1930806027,1),(1796,1951365627,2),(1796,1962860427,1),(1796,1983420027,2),(1796,1994310027,1),(1796,2014869627,2),(1796,2025759627,1),(1796,2046319227,2),(1796,2057209227,1),(1796,2077768827,2),(1796,2088658827,1),(1796,2109218427,2),(1796,2120108427,1),(1796,2140668027,2),(1797,-2147483648,1),(1797,-1157283000,2),(1797,-1155436200,1),(1797,-880198200,3),(1797,-769395600,4),(1797,-765376200,1),(1797,-712150200,5),(1798,-2147483648,2),(1798,-1633273200,1),(1798,-1615132800,2),(1798,-1601823600,1),(1798,-1583683200,2),(1798,-880210800,3),(1798,-820519140,2),(1798,-812653140,3),(1798,-796845540,2),(1798,-84380400,1),(1798,-68659200,2),(1799,-2147483648,2),(1799,-1633273200,1),(1799,-1615132800,2),(1799,-1601823600,1),(1799,-1583683200,2),(1799,-1570374000,1),(1799,-1551628800,2),(1799,-1538924400,1),(1799,-1534089600,2),(1799,-880210800,3),(1799,-769395600,4),(1799,-765388800,2),(1799,-147884400,1),(1799,-131558400,2),(1799,-116434800,1),(1799,-100108800,2),(1799,-84380400,1),(1799,-68659200,2),(1799,-52930800,1),(1799,-37209600,2),(1799,-21481200,1),(1799,-5760000,2),(1799,9968400,1),(1799,25689600,2),(1799,41418000,1),(1799,57744000,2),(1799,73472400,1),(1799,89193601,2),(1799,104922002,1),(1799,120643202,2),(1799,126694803,1),(1799,152092803,2),(1799,162378004,1),(1799,183542404,2),(1799,199270805,1),(1799,215596805,2),(1799,230720406,1),(1799,247046406,2),(1799,262774807,1),(1799,278496007,2),(1799,294224408,1),(1799,309945608,2),(1799,325674009,1),(1799,341395209,2),(1799,357123609,1),(1799,372844810,2),(1799,388573210,1),(1799,404899211,2),(1799,420022811,1),(1799,436348812,2),(1799,452077212,1),(1799,467798412,2),(1799,483526812,1),(1799,499248013,2),(1799,514976413,1),(1799,530697613,2),(1799,544611613,1),(1799,562147213,2),(1799,576061214,1),(1799,594201614,2),(1799,607510814,1),(1799,625651214,2),(1799,638960415,1),(1799,657100815,2),(1799,671014816,1),(1799,688550416,2),(1799,702464416,1),(1799,720000017,2),(1799,733914017,1),(1799,752054418,2),(1799,765363618,1),(1799,783504019,2),(1799,796813219,1),(1799,814953619,2),(1799,828867620,1),(1799,846403220,2),(1799,860317220,1),(1799,877852821,2),(1799,891766821,1),(1799,909302421,2),(1799,923216422,1),(1799,941356822,2),(1799,954666022,1),(1799,972806422,2),(1799,986115622,1),(1799,1004256022,2),(1799,1018170022,1),(1799,1035705622,2),(1799,1049619622,1),(1799,1067155222,2),(1799,1081069222,1),(1799,1099209622,2),(1799,1112518822,1),(1799,1130659222,2),(1799,1143968423,1),(1799,1162108823,2),(1799,1173603623,1),(1799,1194163223,2),(1799,1205053223,1),(1799,1225612823,2),(1799,1236502824,1),(1799,1257062424,2),(1799,1268557224,1),(1799,1289116824,2),(1799,1300006824,1),(1799,1320566424,2),(1799,1331456424,1),(1799,1352016025,2),(1799,1362906025,1),(1799,1383465625,2),(1799,1394355625,1),(1799,1414915225,2),(1799,1425805225,1),(1799,1446364826,2),(1799,1457859626,1),(1799,1478419226,2),(1799,1489309227,1),(1799,1509868827,2),(1799,1520758827,1),(1799,1541318427,2),(1799,1552208427,1),(1799,1572768027,2),(1799,1583658027,1),(1799,1604217627,2),(1799,1615712427,1),(1799,1636272027,2),(1799,1647162027,1),(1799,1667721627,2),(1799,1678611627,1),(1799,1699171227,2),(1799,1710061227,1),(1799,1730620827,2),(1799,1741510827,1),(1799,1762070427,2),(1799,1772960427,1),(1799,1793520027,2),(1799,1805014827,1),(1799,1825574427,2),(1799,1836464427,1),(1799,1857024027,2),(1799,1867914027,1),(1799,1888473627,2),(1799,1899363627,1),(1799,1919923227,2),(1799,1930813227,1),(1799,1951372827,2),(1799,1962867627,1),(1799,1983427227,2),(1799,1994317227,1),(1799,2014876827,2),(1799,2025766827,1),(1799,2046326427,2),(1799,2057216427,1),(1799,2077776027,2),(1799,2088666027,1),(1799,2109225627,2),(1799,2120115627,1),(1799,2140675227,2),(1800,-2147483648,1),(1800,893665821,2),(1801,-2147483648,2),(1801,-1633269600,1),(1801,-1615129200,2),(1801,-1601820000,1),(1801,-1583679600,2),(1801,-880207200,3),(1801,-769395600,4),(1801,-765385200,2),(1801,-687967140,1),(1801,-662655600,2),(1801,-620838000,1),(1801,-608137200,2),(1801,-589388400,1),(1801,-576082800,2),(1801,-557938800,1),(1801,-544633200,2),(1801,-526489200,1),(1801,-513183600,2),(1801,-495039600,1),(1801,-481734000,2),(1801,-463590000,1),(1801,-450284400,2),(1801,-431535600,1),(1801,-418230000,2),(1801,-400086000,1),(1801,-386780400,2),(1801,-368636400,1),(1801,-355330800,2),(1801,-337186800,1),(1801,-323881200,2),(1801,-305737200,1),(1801,-292431600,2),(1801,-273682800,1),(1801,-260982000,2),(1801,-242233200,1),(1801,-226508400,2),(1801,-210783600,1),(1801,-195058800,2),(1801,-179334000,1),(1801,-163609200,2),(1801,-147884400,1),(1801,-131554800,2),(1801,-116434800,1),(1801,-100105200,2),(1801,-84376800,1),(1801,-68655600,2),(1801,-52927200,1),(1801,-37206000,2),(1801,-21477600,1),(1801,-5756400,2),(1801,9972000,1),(1801,25693200,2),(1801,41421600,1),(1801,57747600,2),(1801,73476000,1),(1801,89197201,2),(1801,104925602,1),(1801,120646802,2),(1801,126698403,1),(1801,152096403,2),(1801,162381604,1),(1801,183546004,2),(1801,199274405,1),(1801,215600405,2),(1801,230724006,1),(1801,247050006,2),(1801,262778407,1),(1801,278499607,2),(1801,294228008,1),(1801,309949208,2),(1801,325677609,1),(1801,341398809,2),(1801,357127209,1),(1801,372848410,2),(1801,388576810,1),(1801,404902811,2),(1801,420026411,1),(1801,436352412,2),(1801,452080812,1),(1801,467802012,2),(1801,483530412,1),(1801,499251613,2),(1801,514980013,1),(1801,530701213,2),(1801,544615213,1),(1801,562150813,2),(1801,576064814,1),(1801,594205214,2),(1801,607514414,1),(1801,625654814,2),(1801,638964015,1),(1801,657104415,2),(1801,671018416,1),(1801,688554016,2),(1801,702468016,1),(1801,720003617,2),(1801,733917617,1),(1801,752058018,2),(1801,765367218,1),(1801,783507619,2),(1801,796816819,1),(1801,814957219,2),(1801,828871220,1),(1801,846406820,2),(1801,860320820,1),(1801,877856421,2),(1801,891770421,1),(1801,909306021,2),(1801,923220022,1),(1801,941360422,2),(1801,954669622,1),(1801,972810022,2),(1801,986119222,1),(1801,1004259622,2),(1801,1018173622,1),(1801,1035709222,2),(1801,1049623222,1),(1801,1067158822,2),(1801,1081072822,1),(1801,1099213222,2),(1801,1112522422,1),(1801,1130662822,2),(1801,1143972023,1),(1801,1162112423,2),(1801,1173607223,1),(1801,1194166823,2),(1801,1205056823,1),(1801,1225616423,2),(1801,1236506424,1),(1801,1257066024,2),(1801,1268560824,1),(1801,1289120424,2),(1801,1300010424,1),(1801,1320570024,2),(1801,1331460024,1),(1801,1352019625,2),(1801,1362909625,1),(1801,1383469225,2),(1801,1394359225,1),(1801,1414918825,2),(1801,1425808825,1),(1801,1446368426,2),(1801,1457863226,1),(1801,1478422826,2),(1801,1489312827,1),(1801,1509872427,2),(1801,1520762427,1),(1801,1541322027,2),(1801,1552212027,1),(1801,1572771627,2),(1801,1583661627,1),(1801,1604221227,2),(1801,1615716027,1),(1801,1636275627,2),(1801,1647165627,1),(1801,1667725227,2),(1801,1678615227,1),(1801,1699174827,2),(1801,1710064827,1),(1801,1730624427,2),(1801,1741514427,1),(1801,1762074027,2),(1801,1772964027,1),(1801,1793523627,2),(1801,1805018427,1),(1801,1825578027,2),(1801,1836468027,1),(1801,1857027627,2),(1801,1867917627,1),(1801,1888477227,2),(1801,1899367227,1),(1801,1919926827,2),(1801,1930816827,1),(1801,1951376427,2),(1801,1962871227,1),(1801,1983430827,2),(1801,1994320827,1),(1801,2014880427,2),(1801,2025770427,1),(1801,2046330027,2),(1801,2057220027,1),(1801,2077779627,2),(1801,2088669627,1),(1801,2109229227,2),(1801,2120119227,1),(1801,2140678827,2),(1802,-2147483648,0),(1802,-1806678012,1),(1803,-2147483648,1),(1803,-880200000,2),(1803,-769395600,3),(1803,-765378000,1),(1803,-86882400,4),(1803,-21470400,5),(1803,-5749200,4),(1803,9979200,5),(1803,25700400,4),(1803,41428800,5),(1803,57754800,4),(1803,73483200,5),(1803,89204401,4),(1803,104932802,5),(1803,120654002,4),(1803,126705603,5),(1803,152103603,4),(1803,162388804,5),(1803,183553204,4),(1803,199281605,5),(1803,215607605,4),(1803,230731206,5),(1803,247057206,4),(1803,262785607,5),(1803,278506807,4),(1803,294235208,5),(1803,309956408,4),(1803,325684809,5),(1803,341406009,4),(1803,357134409,5),(1803,372855610,4),(1803,388584010,5),(1803,404910011,4),(1803,420033611,5),(1803,436359612,6),(1803,439030812,8),(1803,452084412,7),(1803,467805612,8),(1803,483534012,7),(1803,499255213,8),(1803,514983613,7),(1803,530704813,8),(1803,544618813,7),(1803,562154413,8),(1803,576068414,7),(1803,594208814,8),(1803,607518014,7),(1803,625658414,8),(1803,638967615,7),(1803,657108015,8),(1803,671022016,7),(1803,688557616,8),(1803,702471616,7),(1803,720007217,8),(1803,733921217,7),(1803,752061618,8),(1803,765370818,7),(1803,783511219,8),(1803,796820419,7),(1803,814960819,8),(1803,828874820,7),(1803,846410420,8),(1803,860324420,7),(1803,877860021,8),(1803,891774021,7),(1803,909309621,8),(1803,923223622,7),(1803,941364022,8),(1803,954673222,7),(1803,972813622,8),(1803,986122822,7),(1803,1004263222,8),(1803,1018177222,7),(1803,1035712822,8),(1803,1049626822,7),(1803,1067162422,8),(1803,1081076422,7),(1803,1099216822,8),(1803,1112526022,7),(1803,1130666422,8),(1803,1143975623,7),(1803,1162116023,8),(1803,1173610823,7),(1803,1194170423,8),(1803,1205060423,7),(1803,1225620023,8),(1803,1236510024,7),(1803,1257069624,8),(1803,1268564424,7),(1803,1289124024,8),(1803,1300014024,7),(1803,1320573624,8),(1803,1331463624,7),(1803,1352023225,8),(1803,1362913225,7),(1803,1383472825,8),(1803,1394362825,7),(1803,1414922425,8),(1803,1425812425,7),(1803,1446372026,8),(1803,1457866826,7),(1803,1478426426,8),(1803,1489316427,7),(1803,1509876027,8),(1803,1520766027,7),(1803,1541325627,8),(1803,1552215627,7),(1803,1572775227,8),(1803,1583665227,7),(1803,1604224827,8),(1803,1615719627,7),(1803,1636279227,8),(1803,1647169227,7),(1803,1667728827,8),(1803,1678618827,7),(1803,1699178427,8),(1803,1710068427,7),(1803,1730628027,8),(1803,1741518027,7),(1803,1762077627,8),(1803,1772967627,7),(1803,1793527227,8),(1803,1805022027,7),(1803,1825581627,8),(1803,1836471627,7),(1803,1857031227,8),(1803,1867921227,7),(1803,1888480827,8),(1803,1899370827,7),(1803,1919930427,8),(1803,1930820427,7),(1803,1951380027,8),(1803,1962874827,7),(1803,1983434427,8),(1803,1994324427,7),(1803,2014884027,8),(1803,2025774027,7),(1803,2046333627,8),(1803,2057223627,7),(1803,2077783227,8),(1803,2088673227,7),(1803,2109232827,8),(1803,2120122827,7),(1803,2140682427,8),(1804,-2147483648,1),(1804,-1869875816,3),(1804,-1693706400,2),(1804,-1680490800,3),(1804,-1570413600,2),(1804,-1552186800,3),(1804,-1538359200,2),(1804,-1522551600,3),(1804,-1507514400,2),(1804,-1490583600,3),(1804,-1440208800,2),(1804,-1428030000,3),(1804,-1409709600,2),(1804,-1396494000,3),(1804,-931053600,2),(1804,-922676400,3),(1804,-917834400,2),(1804,-892436400,3),(1804,-875844000,2),(1804,-764737200,3),(1804,-744343200,2),(1804,-733806000,3),(1804,-716436000,2),(1804,-701924400,3),(1804,-684986400,2),(1804,-670474800,3),(1804,-654141600,2),(1804,-639025200,3),(1804,-622087200,2),(1804,-606970800,3),(1804,-590032800,2),(1804,-575521200,3),(1804,-235620000,2),(1804,-194842800,3),(1804,-177732000,2),(1804,-165726000,3),(1804,107910002,2),(1804,121215602,3),(1804,133920003,2),(1804,152665203,3),(1804,164678404,2),(1804,184114804,3),(1804,196214405,2),(1804,215564405,3),(1804,228873606,2),(1804,245804406,3),(1804,260323207,2),(1804,267915607,4),(1804,428454012,5),(1804,433893612,4),(1804,468111612,3),(1804,482799612,6),(1804,496710013,7),(1804,512521213,6),(1804,528246013,7),(1804,543970813,6),(1804,559695613,7),(1804,575420414,6),(1804,591145214,7),(1804,606870014,6),(1804,622594814,7),(1804,638319615,6),(1804,654649215,7),(1804,670374016,6),(1804,686098816,7),(1804,701823616,6),(1804,717548417,7),(1804,733273217,6),(1804,748998018,7),(1804,764118018,6),(1804,780447619,7),(1804,796172419,6),(1804,811897219,7),(1804,828226820,6),(1804,846370820,7),(1804,859676420,6),(1804,877820421,7),(1804,891126021,6),(1804,909270021,7),(1804,922575622,6),(1804,941324422,7),(1804,954025222,6),(1804,972774022,7),(1804,985474822,6),(1804,1004223622,7),(1804,1017529222,6),(1804,1035673222,7),(1804,1048978822,6),(1804,1067122822,7),(1804,1080428422,6),(1804,1099177222,7),(1804,1111878022,6),(1804,1130626822,7),(1804,1143327623,6),(1804,1162076423,7),(1804,1167602423,3),(1804,1174784423,8),(1804,1193533223,9),(1804,1206838823,8),(1804,1224982823,9),(1804,1238288424,8),(1804,1256432424,9),(1804,1269738024,8),(1804,1288486824,9),(1804,1301274024,8),(1804,1319936424,9),(1804,1332637224,8),(1804,1351386025,9),(1804,1364691625,8),(1804,1382835625,9),(1804,1396227625,8),(1804,1414285225,9),(1804,1427590825,8),(1804,1446944426,9),(1804,1459040426,8),(1804,1473195626,4),(1806,-2147483648,1),(1806,-880200000,2),(1806,-769395600,3),(1806,-765378000,1),(1806,-86882400,4),(1806,-21470400,5),(1806,-5749200,4),(1806,9979200,5),(1806,25700400,4),(1806,41428800,5),(1806,57754800,4),(1806,73483200,5),(1806,89204401,4),(1806,104932802,5),(1806,120654002,4),(1806,126705603,5),(1806,152103603,4),(1806,162388804,5),(1806,183553204,4),(1806,199281605,5),(1806,215607605,4),(1806,230731206,5),(1806,247057206,4),(1806,262785607,5),(1806,278506807,4),(1806,294235208,5),(1806,309956408,4),(1806,325684809,5),(1806,341406009,4),(1806,357134409,5),(1806,372855610,4),(1806,388584010,5),(1806,404910011,4),(1806,420033611,5),(1806,436359612,6),(1806,439030812,8),(1806,452084412,7),(1806,467805612,8),(1806,483534012,7),(1806,499255213,8),(1806,514983613,7),(1806,530704813,8),(1806,544618813,7),(1806,562154413,8),(1806,576068414,7),(1806,594208814,8),(1806,607518014,7),(1806,625658414,8),(1806,638967615,7),(1806,657108015,8),(1806,671022016,7),(1806,688557616,8),(1806,702471616,7),(1806,720007217,8),(1806,733921217,7),(1806,752061618,8),(1806,765370818,7),(1806,783511219,8),(1806,796820419,7),(1806,814960819,8),(1806,828874820,7),(1806,846410420,8),(1806,860324420,7),(1806,877860021,8),(1806,891774021,7),(1806,909309621,8),(1806,923223622,7),(1806,941364022,8),(1806,954673222,7),(1806,972813622,8),(1806,986122822,7),(1806,1004263222,8),(1806,1018177222,7),(1806,1035712822,8),(1806,1049626822,7),(1806,1067162422,8),(1806,1081076422,7),(1806,1099216822,8),(1806,1112526022,7),(1806,1130666422,8),(1806,1143975623,7),(1806,1162116023,8),(1806,1173610823,7),(1806,1194170423,8),(1806,1205060423,7),(1806,1225620023,8),(1806,1236510024,7),(1806,1257069624,8),(1806,1268564424,7),(1806,1289124024,8),(1806,1300014024,7),(1806,1320573624,8),(1806,1331463624,7),(1806,1352023225,8),(1806,1362913225,7),(1806,1383472825,8),(1806,1394362825,7),(1806,1414922425,8),(1806,1425812425,7),(1806,1446372026,8),(1806,1457866826,7),(1806,1478426426,8),(1806,1489316427,7),(1806,1509876027,8),(1806,1520766027,7),(1806,1541325627,8),(1806,1552215627,7),(1806,1572775227,8),(1806,1583665227,7),(1806,1604224827,8),(1806,1615719627,7),(1806,1636279227,8),(1806,1647169227,7),(1806,1667728827,8),(1806,1678618827,7),(1806,1699178427,8),(1806,1710068427,7),(1806,1730628027,8),(1806,1741518027,7),(1806,1762077627,8),(1806,1772967627,7),(1806,1793527227,8),(1806,1805022027,7),(1806,1825581627,8),(1806,1836471627,7),(1806,1857031227,8),(1806,1867921227,7),(1806,1888480827,8),(1806,1899370827,7),(1806,1919930427,8),(1806,1930820427,7),(1806,1951380027,8),(1806,1962874827,7),(1806,1983434427,8),(1806,1994324427,7),(1806,2014884027,8),(1806,2025774027,7),(1806,2046333627,8),(1806,2057223627,7),(1806,2077783227,8),(1806,2088673227,7),(1806,2109232827,8),(1806,2120122827,7),(1806,2140682427,8),(1807,-2147483648,1),(1807,-880196400,2),(1807,-769395600,3),(1807,-765374400,1),(1807,-86878800,4),(1807,-21466800,5),(1807,-5745600,4),(1807,9982800,5),(1807,25704000,4),(1807,41432400,5),(1807,57758400,4),(1807,73486800,5),(1807,89208001,4),(1807,104936402,5),(1807,120657602,4),(1807,126709203,5),(1807,152107203,4),(1807,162392404,5),(1807,183556804,4),(1807,199285205,5),(1807,215611205,4),(1807,230734806,5),(1807,247060806,4),(1807,262789207,5),(1807,278510407,4),(1807,294238808,5),(1807,309960008,4),(1807,325688409,5),(1807,341409609,4),(1807,357138009,5),(1807,372859210,4),(1807,388587610,5),(1807,404913611,4),(1807,420037211,5),(1807,436363212,6),(1807,439034412,8),(1807,452088012,7),(1807,467809212,8),(1807,483537612,7),(1807,499258813,8),(1807,514987213,7),(1807,530708413,8),(1807,544622413,7),(1807,562158013,8),(1807,576072014,7),(1807,594212414,8),(1807,607521614,7),(1807,625662014,8),(1807,638971215,7),(1807,657111615,8),(1807,671025616,7),(1807,688561216,8),(1807,702475216,7),(1807,720010817,8),(1807,733924817,7),(1807,752065218,8),(1807,765374418,7),(1807,783514819,8),(1807,796824019,7),(1807,814964419,8),(1807,828878420,7),(1807,846414020,8),(1807,860328020,7),(1807,877863621,8),(1807,891777621,7),(1807,909313221,8),(1807,923227222,7),(1807,941367622,8),(1807,954676822,7),(1807,972817222,8),(1807,986126422,7),(1807,1004266822,8),(1807,1018180822,7),(1807,1035716422,8),(1807,1049630422,7),(1807,1067166022,8),(1807,1081080022,7),(1807,1099220422,8),(1807,1112529622,7),(1807,1130670022,8),(1807,1143979223,7),(1807,1162119623,8),(1807,1173614423,7),(1807,1194174023,8),(1807,1205064023,7),(1807,1225623623,8),(1807,1236513624,7),(1807,1257073224,8),(1807,1268568024,7),(1807,1289127624,8),(1807,1300017624,7),(1807,1320577224,8),(1807,1331467224,7),(1807,1352026825,8),(1807,1362916825,7),(1807,1383476425,8),(1807,1394366425,7),(1807,1414926025,8),(1807,1425816025,7),(1807,1446375626,8),(1807,1457870426,7),(1807,1478430026,8),(1807,1489320027,7),(1807,1509879627,8),(1807,1520769627,7),(1807,1541329227,8),(1807,1552219227,7),(1807,1572778827,8),(1807,1583668827,7),(1807,1604228427,8),(1807,1615723227,7),(1807,1636282827,8),(1807,1647172827,7),(1807,1667732427,8),(1807,1678622427,7),(1807,1699182027,8),(1807,1710072027,7),(1807,1730631627,8),(1807,1741521627,7),(1807,1762081227,8),(1807,1772971227,7),(1807,1793530827,8),(1807,1805025627,7),(1807,1825585227,8),(1807,1836475227,7),(1807,1857034827,8),(1807,1867924827,7),(1807,1888484427,8),(1807,1899374427,7),(1807,1919934027,8),(1807,1930824027,7),(1807,1951383627,8),(1807,1962878427,7),(1807,1983438027,8),(1807,1994328027,7),(1807,2014887627,8),(1807,2025777627,7),(1807,2046337227,8),(1807,2057227227,7),(1807,2077786827,8),(1807,2088676827,7),(1807,2109236427,8),(1807,2120126427,7),(1807,2140686027,8),(1808,-2147483648,2),(1808,-1633273200,1),(1808,-1615132800,2),(1808,-1601823600,1),(1808,-1583683200,2),(1808,-880210800,3),(1808,-820519140,2),(1808,-812653140,3),(1808,-796845540,2),(1808,-84380400,1),(1808,-68659200,2),(1809,-2147483648,2),(1809,-1633276800,1),(1809,-1615136400,2),(1809,-1601827200,1),(1809,-1583686800,2),(1809,-1563724800,1),(1809,-1551632400,2),(1809,-1538928000,1),(1809,-1520182800,2),(1809,-1504454400,1),(1809,-1491757200,2),(1809,-1473004800,1),(1809,-1459702800,2),(1809,-1441555200,1),(1809,-1428253200,2),(1809,-1410105600,1),(1809,-1396803600,2),(1809,-1378656000,1),(1809,-1365354000,2),(1809,-1347206400,1),(1809,-1333904400,2),(1809,-1315152000,1),(1809,-1301850000,2),(1809,-1283702400,1),(1809,-1270400400,2),(1809,-1252252800,1),(1809,-1238950800,2),(1809,-1220803200,1),(1809,-1207501200,2),(1809,-1189353600,1),(1809,-1176051600,2),(1809,-1157299200,1),(1809,-1144602000,2),(1809,-1125849600,1),(1809,-1112547600,2),(1809,-1094400000,1),(1809,-1081098000,2),(1809,-1067788800,3),(1809,-1045414800,2),(1809,-1031500800,1),(1809,-1018198800,2),(1809,-1000051200,1),(1809,-986749200,2),(1809,-967996800,1),(1809,-955299600,2),(1809,-936547200,1),(1809,-923245200,2),(1809,-905097600,1),(1809,-891795600,2),(1809,-880214400,4),(1809,-769395600,5),(1809,-765392400,2),(1809,-747244800,1),(1809,-733942800,2),(1809,-715795200,1),(1809,-702493200,2),(1809,-684345600,1),(1809,-671043600,2),(1809,-652896000,1),(1809,-639594000,2),(1809,-620841600,1),(1809,-608144400,2),(1809,-589392000,1),(1809,-576090000,2),(1809,-557942400,1),(1809,-544640400,2),(1809,-526492800,1),(1809,-513190800,2),(1809,-495043200,1),(1809,-481741200,2),(1809,-463593600,1),(1809,-447267600,2),(1809,-431539200,1),(1809,-415818000,2),(1809,-400089600,1),(1809,-384368400,2),(1809,-368640000,1),(1809,-352918800,2),(1809,-337190400,1),(1809,-321469200,2),(1809,-305740800,1),(1809,-289414800,2),(1809,-273686400,1),(1809,-257965200,2),(1809,-242236800,1),(1809,-226515600,2),(1809,-210787200,1),(1809,-195066000,2),(1809,-179337600,1),(1809,-163616400,2),(1809,-147888000,1),(1809,-131562000,2),(1809,-116438400,1),(1809,-100112400,2),(1809,-84384000,1),(1809,-68662800,2),(1809,-52934400,1),(1809,-37213200,2),(1809,-21484800,1),(1809,-5763600,2),(1809,9964800,1),(1809,25686000,2),(1809,41414400,1),(1809,57740400,2),(1809,73468800,1),(1809,89190001,2),(1809,104918402,1),(1809,120639602,2),(1809,126691203,1),(1809,152089203,2),(1809,162374404,1),(1809,183538804,2),(1809,199267205,1),(1809,215593205,2),(1809,230716806,1),(1809,247042806,2),(1809,262771207,1),(1809,278492407,2),(1809,294220808,1),(1809,309942008,2),(1809,325670409,1),(1809,341391609,2),(1809,357120009,1),(1809,372841210,2),(1809,388569610,1),(1809,404895611,2),(1809,420019211,1),(1809,436345212,2),(1809,452073612,1),(1809,467794812,2),(1809,483523212,1),(1809,499244413,2),(1809,514972813,1),(1809,530694013,2),(1809,544608013,1),(1809,562143613,2),(1809,576057614,1),(1809,594198014,2),(1809,607507214,1),(1809,625647614,2),(1809,638956815,1),(1809,657097215,2),(1809,671011216,1),(1809,688546816,2),(1809,702460816,1),(1809,719996417,2),(1809,733910417,1),(1809,752050818,2),(1809,765360018,1),(1809,783500419,2),(1809,796809619,1),(1809,814950019,2),(1809,828864020,1),(1809,846399620,2),(1809,860313620,1),(1809,877849221,2),(1809,891763221,1),(1809,909298821,2),(1809,923212822,1),(1809,941353222,2),(1809,954662422,1),(1809,972802822,2),(1809,986112022,1),(1809,1004252422,2),(1809,1018166422,1),(1809,1035702022,2),(1809,1049616022,1),(1809,1067151622,2),(1809,1081065622,1),(1809,1099206022,2),(1809,1112515222,1),(1809,1130655622,2),(1809,1143964823,1),(1809,1162105223,2),(1809,1173600023,1),(1809,1194159623,2),(1809,1205049623,1),(1809,1225609223,2),(1809,1236499224,1),(1809,1257058824,2),(1809,1268553624,1),(1809,1289113224,2),(1809,1300003224,1),(1809,1320562824,2),(1809,1331452824,1),(1809,1352012425,2),(1809,1362902425,1),(1809,1383462025,2),(1809,1394352025,1),(1809,1414911625,2),(1809,1425801625,1),(1809,1446361226,2),(1809,1457856026,1),(1809,1478415626,2),(1809,1489305627,1),(1809,1509865227,2),(1809,1520755227,1),(1809,1541314827,2),(1809,1552204827,1),(1809,1572764427,2),(1809,1583654427,1),(1809,1604214027,2),(1809,1615708827,1),(1809,1636268427,2),(1809,1647158427,1),(1809,1667718027,2),(1809,1678608027,1),(1809,1699167627,2),(1809,1710057627,1),(1809,1730617227,2),(1809,1741507227,1),(1809,1762066827,2),(1809,1772956827,1),(1809,1793516427,2),(1809,1805011227,1),(1809,1825570827,2),(1809,1836460827,1),(1809,1857020427,2),(1809,1867910427,1),(1809,1888470027,2),(1809,1899360027,1),(1809,1919919627,2),(1809,1930809627,1),(1809,1951369227,2),(1809,1962864027,1),(1809,1983423627,2),(1809,1994313627,1),(1809,2014873227,2),(1809,2025763227,1),(1809,2046322827,2),(1809,2057212827,1),(1809,2077772427,2),(1809,2088662427,1),(1809,2109222027,2),(1809,2120112027,1),(1809,2140671627,2),(1810,-2147483648,2),(1810,-1633276800,1),(1810,-1615136400,2),(1810,-1601827200,1),(1810,-1583686800,2),(1810,-900259200,1),(1810,-891795600,2),(1810,-880214400,3),(1810,-769395600,4),(1810,-765392400,2),(1810,-747244800,1),(1810,-733942800,2),(1810,-715795200,1),(1810,-702493200,2),(1810,-684345600,1),(1810,-671043600,2),(1810,-652896000,1),(1810,-639594000,2),(1810,-620841600,1),(1810,-608144400,2),(1810,-589392000,1),(1810,-576090000,2),(1810,-557942400,1),(1810,-544640400,2),(1810,-526492800,1),(1810,-513190800,2),(1810,-495043200,1),(1810,-481741200,2),(1810,-463593600,5),(1810,-386787600,2),(1810,-368640000,5),(1810,-21488400,6),(1810,-5767200,5),(1810,9961200,6),(1810,25682400,5),(1810,1143961223,6),(1810,1162101623,5),(1810,1173596423,6),(1810,1194156023,5),(1810,1205046023,6),(1810,1225605623,5),(1810,1236495624,6),(1810,1257055224,5),(1810,1268550024,6),(1810,1289109624,5),(1810,1299999624,6),(1810,1320559224,5),(1810,1331449224,6),(1810,1352008825,5),(1810,1362898825,6),(1810,1383458425,5),(1810,1394348425,6),(1810,1414908025,5),(1810,1425798025,6),(1810,1446357626,5),(1810,1457852426,6),(1810,1478412026,5),(1810,1489302027,6),(1810,1509861627,5),(1810,1520751627,6),(1810,1541311227,5),(1810,1552201227,6),(1810,1572760827,5),(1810,1583650827,6),(1810,1604210427,5),(1810,1615705227,6),(1810,1636264827,5),(1810,1647154827,6),(1810,1667714427,5),(1810,1678604427,6),(1810,1699164027,5),(1810,1710054027,6),(1810,1730613627,5),(1810,1741503627,6),(1810,1762063227,5),(1810,1772953227,6),(1810,1793512827,5),(1810,1805007627,6),(1810,1825567227,5),(1810,1836457227,6),(1810,1857016827,5),(1810,1867906827,6),(1810,1888466427,5),(1810,1899356427,6),(1810,1919916027,5),(1810,1930806027,6),(1810,1951365627,5),(1810,1962860427,6),(1810,1983420027,5),(1810,1994310027,6),(1810,2014869627,5),(1810,2025759627,6),(1810,2046319227,5),(1810,2057209227,6),(1810,2077768827,5),(1810,2088658827,6),(1810,2109218427,5),(1810,2120108427,6),(1810,2140668027,5),(1811,-2147483648,2),(1811,-1633280400,1),(1811,-1615140000,2),(1811,-1601830800,1),(1811,-1583690400,2),(1811,-1570381200,1),(1811,-1551636000,2),(1811,-1536512400,1),(1811,-1523210400,2),(1811,-1504458000,1),(1811,-1491760800,2),(1811,-1473008400,1),(1811,-1459706400,2),(1811,-1441558800,1),(1811,-1428256800,2),(1811,-1410109200,1),(1811,-1396807200,2),(1811,-1378659600,1),(1811,-1365357600,2),(1811,-1347210000,1),(1811,-1333908000,2),(1811,-1315155600,1),(1811,-1301853600,2),(1811,-1283706000,1),(1811,-1270404000,2),(1811,-1252256400,1),(1811,-1238954400,2),(1811,-1220806800,1),(1811,-1207504800,2),(1811,-1189357200,1),(1811,-1176055200,2),(1811,-1157302800,1),(1811,-1144605600,2),(1811,-1125853200,1),(1811,-1112551200,2),(1811,-1094403600,1),(1811,-1081101600,2),(1811,-1062954000,1),(1811,-1049652000,2),(1811,-1031504400,1),(1811,-1018202400,2),(1811,-1000054800,1),(1811,-986752800,2),(1811,-968000400,1),(1811,-955303200,2),(1811,-936550800,1),(1811,-923248800,2),(1811,-905101200,1),(1811,-891799200,2),(1811,-880218000,3),(1811,-769395600,4),(1811,-765396000,2),(1811,-747248400,1),(1811,-733946400,2),(1811,-715798800,1),(1811,-702496800,2),(1811,-684349200,1),(1811,-671047200,2),(1811,-652899600,1),(1811,-639597600,2),(1811,-620845200,1),(1811,-608148000,2),(1811,-589395600,1),(1811,-576093600,2),(1811,-557946000,1),(1811,-544644000,2),(1811,-526496400,1),(1811,-513194400,2),(1811,-495046800,1),(1811,-481744800,2),(1811,-463597200,1),(1811,-447271200,2),(1811,-431542800,1),(1811,-415821600,2),(1811,-400093200,1),(1811,-384372000,2),(1811,-368643600,1),(1811,-352922400,2),(1811,-337194000,1),(1811,-321472800,2),(1811,-305744400,1),(1811,-289418400,2),(1811,-273690000,1),(1811,-257968800,2),(1811,-242240400,1),(1811,-226519200,2),(1811,-210790800,1),(1811,-195069600,2),(1811,-179341200,1),(1811,-163620000,2),(1811,-147891600,1),(1811,-131565600,2),(1811,-116442000,1),(1811,-100116000,2),(1811,-84387600,1),(1811,-68666400,2),(1811,-52938000,1),(1811,-37216800,2),(1811,-21488400,1),(1811,-5767200,2),(1811,9961200,1),(1811,25682400,2),(1811,41410800,1),(1811,57736800,2),(1811,73465200,1),(1811,89186401,2),(1811,104914802,1),(1811,120636002,2),(1811,126687603,1),(1811,152085603,2),(1811,162370804,1),(1811,183535204,2),(1811,199263605,1),(1811,215589605,2),(1811,230713206,1),(1811,247039206,2),(1811,262767607,1),(1811,278488807,2),(1811,294217208,1),(1811,309938408,2),(1811,325666809,1),(1811,341388009,2),(1811,357116409,1),(1811,372837610,2),(1811,388566010,1),(1811,404892011,2),(1811,420015611,1),(1811,436341612,2),(1811,452070012,1),(1811,467791212,2),(1811,483519612,1),(1811,499240813,2),(1811,514969213,1),(1811,530690413,2),(1811,544604413,1),(1811,562140013,2),(1811,576054014,1),(1811,594194414,2),(1811,607503614,1),(1811,625644014,2),(1811,638953215,1),(1811,657093615,2),(1811,671007616,1),(1811,688543216,2),(1811,702457216,1),(1811,719992817,2),(1811,733906817,1),(1811,752047218,2),(1811,765356418,1),(1811,783496819,2),(1811,796806019,1),(1811,814946419,2),(1811,828860420,1),(1811,846396020,2),(1811,860310020,1),(1811,877845621,2),(1811,891759621,1),(1811,909295221,2),(1811,923209222,1),(1811,941349622,2),(1811,954658822,1),(1811,972799222,2),(1811,986108422,1),(1811,1004248822,2),(1811,1018162822,1),(1811,1035698422,2),(1811,1049612422,1),(1811,1067148022,2),(1811,1081062022,1),(1811,1099202422,2),(1811,1112511622,1),(1811,1130652022,2),(1811,1143961223,1),(1811,1162101623,2),(1811,1173596423,1),(1811,1194156023,2),(1811,1205046023,1),(1811,1225605623,2),(1811,1236495624,1),(1811,1257055224,2),(1811,1268550024,1),(1811,1289109624,2),(1811,1299999624,1),(1811,1320559224,2),(1811,1331449224,1),(1811,1352008825,2),(1811,1362898825,1),(1811,1383458425,2),(1811,1394348425,1),(1811,1414908025,2),(1811,1425798025,1),(1811,1446357626,2),(1811,1457852426,1),(1811,1478412026,2),(1811,1489302027,1),(1811,1509861627,2),(1811,1520751627,1),(1811,1541311227,2),(1811,1552201227,1),(1811,1572760827,2),(1811,1583650827,1),(1811,1604210427,2),(1811,1615705227,1),(1811,1636264827,2),(1811,1647154827,1),(1811,1667714427,2),(1811,1678604427,1),(1811,1699164027,2),(1811,1710054027,1),(1811,1730613627,2),(1811,1741503627,1),(1811,1762063227,2),(1811,1772953227,1),(1811,1793512827,2),(1811,1805007627,1),(1811,1825567227,2),(1811,1836457227,1),(1811,1857016827,2),(1811,1867906827,1),(1811,1888466427,2),(1811,1899356427,1),(1811,1919916027,2),(1811,1930806027,1),(1811,1951365627,2),(1811,1962860427,1),(1811,1983420027,2),(1811,1994310027,1),(1811,2014869627,2),(1811,2025759627,1),(1811,2046319227,2),(1811,2057209227,1),(1811,2077768827,2),(1811,2088658827,1),(1811,2109218427,2),(1811,2120108427,1),(1811,2140668027,2),(1812,-2147483648,1),(1812,-1157283000,2),(1812,-1155436200,1),(1812,-880198200,3),(1812,-769395600,4),(1812,-765376200,1),(1812,-712150200,5),(1813,-2147483648,2),(1813,-1633276800,1),(1813,-1615136400,2),(1813,-1601827200,1),(1813,-1583686800,2),(1813,-880214400,3),(1813,-769395600,4),(1813,-765392400,2),(1813,-715795200,1),(1813,-702493200,2),(1813,-684345600,1),(1813,-671043600,2),(1813,-652896000,1),(1813,-639594000,2),(1813,-620841600,1),(1813,-608144400,2),(1813,-589392000,1),(1813,-576090000,2),(1813,-557942400,1),(1813,-544640400,2),(1813,-526492800,1),(1813,-513190800,2),(1813,-495043200,1),(1813,-481741200,2),(1813,-463593600,1),(1813,-447267600,2),(1813,-431539200,1),(1813,-415818000,2),(1813,-400089600,1),(1813,-386787600,2),(1813,-368640000,1),(1813,-355338000,2),(1813,-337190400,1),(1813,-321469200,2),(1813,-305740800,1),(1813,-289414800,2),(1813,-273686400,1),(1813,-257965200,2),(1813,-242236800,5),(1813,-195066000,2),(1813,-84384000,1),(1813,-68662800,2),(1813,-52934400,1),(1813,-37213200,2),(1813,-21484800,1),(1813,-5763600,2),(1813,9964800,1),(1813,25686000,2),(1813,41414400,1),(1813,57740400,2),(1813,73468800,1),(1813,89190001,2),(1813,104918402,1),(1813,120639602,2),(1813,126691203,1),(1813,152089203,2),(1813,162374404,1),(1813,183538804,2),(1813,199267205,1),(1813,215593205,2),(1813,230716806,1),(1813,247042806,2),(1813,262771207,1),(1813,278492407,2),(1813,294220808,1),(1813,309942008,2),(1813,325670409,1),(1813,341391609,2),(1813,357120009,1),(1813,372841210,2),(1813,388569610,1),(1813,404895611,2),(1813,420019211,1),(1813,436345212,2),(1813,452073612,1),(1813,467794812,2),(1813,483523212,1),(1813,499244413,2),(1813,514972813,1),(1813,530694013,2),(1813,544608013,1),(1813,562143613,2),(1813,576057614,1),(1813,594198014,2),(1813,607507214,1),(1813,625647614,2),(1813,638956815,1),(1813,657097215,2),(1813,671011216,1),(1813,688546816,5),(1813,1143961223,1),(1813,1162105223,2),(1813,1173600023,1),(1813,1194159623,2),(1813,1205049623,1),(1813,1225609223,2),(1813,1236499224,1),(1813,1257058824,2),(1813,1268553624,1),(1813,1289113224,2),(1813,1300003224,1),(1813,1320562824,2),(1813,1331452824,1),(1813,1352012425,2),(1813,1362902425,1),(1813,1383462025,2),(1813,1394352025,1),(1813,1414911625,2),(1813,1425801625,1),(1813,1446361226,2),(1813,1457856026,1),(1813,1478415626,2),(1813,1489305627,1),(1813,1509865227,2),(1813,1520755227,1),(1813,1541314827,2),(1813,1552204827,1),(1813,1572764427,2),(1813,1583654427,1),(1813,1604214027,2),(1813,1615708827,1),(1813,1636268427,2),(1813,1647158427,1),(1813,1667718027,2),(1813,1678608027,1),(1813,1699167627,2),(1813,1710057627,1),(1813,1730617227,2),(1813,1741507227,1),(1813,1762066827,2),(1813,1772956827,1),(1813,1793516427,2),(1813,1805011227,1),(1813,1825570827,2),(1813,1836460827,1),(1813,1857020427,2),(1813,1867910427,1),(1813,1888470027,2),(1813,1899360027,1),(1813,1919919627,2),(1813,1930809627,1),(1813,1951369227,2),(1813,1962864027,1),(1813,1983423627,2),(1813,1994313627,1),(1813,2014873227,2),(1813,2025763227,1),(1813,2046322827,2),(1813,2057212827,1),(1813,2077772427,2),(1813,2088662427,1),(1813,2109222027,2),(1813,2120112027,1),(1813,2140671627,2),(1814,-2147483648,0),(1814,-2051202469,1),(1814,-1724083200,2),(1814,-880218000,3),(1814,-769395600,4),(1814,-765396000,2),(1814,-684349200,5),(1814,-671047200,2),(1814,-80506740,5),(1814,-68666400,2),(1814,-52938000,5),(1814,-37216800,2),(1814,104914802,5),(1814,120636002,2),(1814,126687603,5),(1814,152085603,2),(1814,167814004,5),(1814,183535204,2),(1814,199263605,5),(1814,215589605,2),(1814,230713206,5),(1814,247039206,2),(1814,262767607,5),(1814,278488807,2),(1814,294217208,5),(1814,309938408,2),(1814,325666809,5),(1814,341388009,2),(1814,357116409,5),(1814,372837610,2),(1814,388566010,5),(1814,404892011,2),(1814,420015611,5),(1814,436341612,2),(1814,452070012,5),(1814,467791212,2),(1814,483519612,5),(1814,499240813,2),(1814,514969213,5),(1814,530690413,2),(1814,544604413,5),(1814,562140013,2),(1814,576054014,5),(1814,594194414,2),(1814,607503614,5),(1814,625644014,2),(1814,638953215,5),(1814,657093615,2),(1814,671007616,5),(1814,688543216,2),(1814,702457216,5),(1814,719992817,2),(1814,733906817,5),(1814,752047218,2),(1814,765356418,5),(1814,783496819,2),(1814,796806019,5),(1814,814946419,2),(1814,828860420,5),(1814,846396020,2),(1814,860310020,5),(1814,877845621,2),(1814,891759621,5),(1814,909295221,2),(1814,923209222,5),(1814,941349622,2),(1814,954658822,5),(1814,972799222,2),(1814,986108422,5),(1814,1004248822,2),(1814,1018162822,5),(1814,1035698422,2),(1814,1049612422,5),(1814,1067148022,2),(1814,1081062022,5),(1814,1099202422,2),(1814,1112511622,5),(1814,1130652022,2),(1814,1143961223,5),(1814,1162101623,2),(1814,1173596423,5),(1814,1194156023,2),(1814,1205046023,5),(1814,1225605623,2),(1814,1236495624,5),(1814,1257055224,2),(1814,1268550024,5),(1814,1289109624,2),(1814,1299999624,5),(1814,1320559224,2),(1814,1331449224,5),(1814,1352008825,2),(1814,1362898825,5),(1814,1383458425,2),(1814,1394348425,5),(1814,1414908025,2),(1814,1425798025,5),(1814,1446357626,2),(1814,1457852426,5),(1814,1478412026,2),(1814,1489302027,5),(1814,1509861627,2),(1814,1520751627,5),(1814,1541311227,2),(1814,1552201227,5),(1814,1572760827,2),(1814,1583650827,5),(1814,1604210427,2),(1814,1615705227,5),(1814,1636264827,2),(1814,1647154827,5),(1814,1667714427,2),(1814,1678604427,5),(1814,1699164027,2),(1814,1710054027,5),(1814,1730613627,2),(1814,1741503627,5),(1814,1762063227,2),(1814,1772953227,5),(1814,1793512827,2),(1814,1805007627,5),(1814,1825567227,2),(1814,1836457227,5),(1814,1857016827,2),(1814,1867906827,5),(1814,1888466427,2),(1814,1899356427,5),(1814,1919916027,2),(1814,1930806027,5),(1814,1951365627,2),(1814,1962860427,5),(1814,1983420027,2),(1814,1994310027,5),(1814,2014869627,2),(1814,2025759627,5),(1814,2046319227,2),(1814,2057209227,5),(1814,2077768827,2),(1814,2088658827,5),(1814,2109218427,2),(1814,2120108427,5),(1814,2140668027,2),(1815,-2147483648,2),(1815,-1633273200,1),(1815,-1615132800,2),(1815,-1601823600,1),(1815,-1583683200,2),(1815,-1570374000,1),(1815,-1551628800,2),(1815,-1538924400,1),(1815,-1534089600,2),(1815,-880210800,3),(1815,-769395600,4),(1815,-765388800,2),(1815,-147884400,1),(1815,-131558400,2),(1815,-116434800,1),(1815,-100108800,2),(1815,-84380400,1),(1815,-68659200,2),(1815,-52930800,1),(1815,-37209600,2),(1815,-21481200,1),(1815,-5760000,2),(1815,9968400,1),(1815,25689600,2),(1815,41418000,1),(1815,57744000,2),(1815,73472400,1),(1815,89193601,2),(1815,104922002,1),(1815,120643202,2),(1815,126694803,1),(1815,152092803,2),(1815,162378004,1),(1815,183542404,2),(1815,199270805,1),(1815,215596805,2),(1815,230720406,1),(1815,247046406,2),(1815,262774807,1),(1815,278496007,2),(1815,294224408,1),(1815,309945608,2),(1815,325674009,1),(1815,341395209,2),(1815,357123609,1),(1815,372844810,2),(1815,388573210,1),(1815,404899211,2),(1815,420022811,1),(1815,436348812,2),(1815,452077212,1),(1815,467798412,2),(1815,483526812,1),(1815,499248013,2),(1815,514976413,1),(1815,530697613,2),(1815,544611613,1),(1815,562147213,2),(1815,576061214,1),(1815,594201614,2),(1815,607510814,1),(1815,625651214,2),(1815,638960415,1),(1815,657100815,2),(1815,671014816,1),(1815,688550416,2),(1815,702464416,1),(1815,720000017,2),(1815,733914017,1),(1815,752054418,2),(1815,765363618,1),(1815,783504019,2),(1815,796813219,1),(1815,814953619,2),(1815,828867620,1),(1815,846403220,2),(1815,860317220,1),(1815,877852821,2),(1815,891766821,1),(1815,909302421,2),(1815,923216422,1),(1815,941356822,2),(1815,954666022,1),(1815,972806422,2),(1815,986115622,1),(1815,1004256022,2),(1815,1018170022,1),(1815,1035705622,2),(1815,1049619622,1),(1815,1067155222,2),(1815,1081069222,1),(1815,1099209622,2),(1815,1112518822,1),(1815,1130659222,2),(1815,1143968423,1),(1815,1162108823,2),(1815,1173603623,1),(1815,1194163223,2),(1815,1205053223,1),(1815,1225612823,2),(1815,1236502824,1),(1815,1257062424,2),(1815,1268557224,1),(1815,1289116824,2),(1815,1300006824,1),(1815,1320566424,2),(1815,1331456424,1),(1815,1352016025,2),(1815,1362906025,1),(1815,1383465625,2),(1815,1394355625,1),(1815,1414915225,2),(1815,1425805225,1),(1815,1446364826,2),(1815,1457859626,1),(1815,1478419226,2),(1815,1489309227,1),(1815,1509868827,2),(1815,1520758827,1),(1815,1541318427,2),(1815,1552208427,1),(1815,1572768027,2),(1815,1583658027,1),(1815,1604217627,2),(1815,1615712427,1),(1815,1636272027,2),(1815,1647162027,1),(1815,1667721627,2),(1815,1678611627,1),(1815,1699171227,2),(1815,1710061227,1),(1815,1730620827,2),(1815,1741510827,1),(1815,1762070427,2),(1815,1772960427,1),(1815,1793520027,2),(1815,1805014827,1),(1815,1825574427,2),(1815,1836464427,1),(1815,1857024027,2),(1815,1867914027,1),(1815,1888473627,2),(1815,1899363627,1),(1815,1919923227,2),(1815,1930813227,1),(1815,1951372827,2),(1815,1962867627,1),(1815,1983427227,2),(1815,1994317227,1),(1815,2014876827,2),(1815,2025766827,1),(1815,2046326427,2),(1815,2057216427,1),(1815,2077776027,2),(1815,2088666027,1),(1815,2109225627,2),(1815,2120115627,1),(1815,2140675227,2),(1816,-2147483648,2),(1816,-1633269600,1),(1816,-1615129200,2),(1816,-1601820000,1),(1816,-1583679600,2),(1816,-880207200,3),(1816,-769395600,4),(1816,-765385200,2),(1816,-687967140,1),(1816,-662655600,2),(1816,-620838000,1),(1816,-608137200,2),(1816,-589388400,1),(1816,-576082800,2),(1816,-557938800,1),(1816,-544633200,2),(1816,-526489200,1),(1816,-513183600,2),(1816,-495039600,1),(1816,-481734000,2),(1816,-463590000,1),(1816,-450284400,2),(1816,-431535600,1),(1816,-418230000,2),(1816,-400086000,1),(1816,-386780400,2),(1816,-368636400,1),(1816,-355330800,2),(1816,-337186800,1),(1816,-323881200,2),(1816,-305737200,1),(1816,-292431600,2),(1816,-273682800,1),(1816,-260982000,2),(1816,-242233200,1),(1816,-226508400,2),(1816,-210783600,1),(1816,-195058800,2),(1816,-179334000,1),(1816,-163609200,2),(1816,-147884400,1),(1816,-131554800,2),(1816,-116434800,1),(1816,-100105200,2),(1816,-84376800,1),(1816,-68655600,2),(1816,-52927200,1),(1816,-37206000,2),(1816,-21477600,1),(1816,-5756400,2),(1816,9972000,1),(1816,25693200,2),(1816,41421600,1),(1816,57747600,2),(1816,73476000,1),(1816,89197201,2),(1816,104925602,1),(1816,120646802,2),(1816,126698403,1),(1816,152096403,2),(1816,162381604,1),(1816,183546004,2),(1816,199274405,1),(1816,215600405,2),(1816,230724006,1),(1816,247050006,2),(1816,262778407,1),(1816,278499607,2),(1816,294228008,1),(1816,309949208,2),(1816,325677609,1),(1816,341398809,2),(1816,357127209,1),(1816,372848410,2),(1816,388576810,1),(1816,404902811,2),(1816,420026411,1),(1816,436352412,2),(1816,452080812,1),(1816,467802012,2),(1816,483530412,1),(1816,499251613,2),(1816,514980013,1),(1816,530701213,2),(1816,544615213,1),(1816,562150813,2),(1816,576064814,1),(1816,594205214,2),(1816,607514414,1),(1816,625654814,2),(1816,638964015,1),(1816,657104415,2),(1816,671018416,1),(1816,688554016,2),(1816,702468016,1),(1816,720003617,2),(1816,733917617,1),(1816,752058018,2),(1816,765367218,1),(1816,783507619,2),(1816,796816819,1),(1816,814957219,2),(1816,828871220,1),(1816,846406820,2),(1816,860320820,1),(1816,877856421,2),(1816,891770421,1),(1816,909306021,2),(1816,923220022,1),(1816,941360422,2),(1816,954669622,1),(1816,972810022,2),(1816,986119222,1),(1816,1004259622,2),(1816,1018173622,1),(1816,1035709222,2),(1816,1049623222,1),(1816,1067158822,2),(1816,1081072822,1),(1816,1099213222,2),(1816,1112522422,1),(1816,1130662822,2),(1816,1143972023,1),(1816,1162112423,2),(1816,1173607223,1),(1816,1194166823,2),(1816,1205056823,1),(1816,1225616423,2),(1816,1236506424,1),(1816,1257066024,2),(1816,1268560824,1),(1816,1289120424,2),(1816,1300010424,1),(1816,1320570024,2),(1816,1331460024,1),(1816,1352019625,2),(1816,1362909625,1),(1816,1383469225,2),(1816,1394359225,1),(1816,1414918825,2),(1816,1425808825,1),(1816,1446368426,2),(1816,1457863226,1),(1816,1478422826,2),(1816,1489312827,1),(1816,1509872427,2),(1816,1520762427,1),(1816,1541322027,2),(1816,1552212027,1),(1816,1572771627,2),(1816,1583661627,1),(1816,1604221227,2),(1816,1615716027,1),(1816,1636275627,2),(1816,1647165627,1),(1816,1667725227,2),(1816,1678615227,1),(1816,1699174827,2),(1816,1710064827,1),(1816,1730624427,2),(1816,1741514427,1),(1816,1762074027,2),(1816,1772964027,1),(1816,1793523627,2),(1816,1805018427,1),(1816,1825578027,2),(1816,1836468027,1),(1816,1857027627,2),(1816,1867917627,1),(1816,1888477227,2),(1816,1899367227,1),(1816,1919926827,2),(1816,1930816827,1),(1816,1951376427,2),(1816,1962871227,1),(1816,1983430827,2),(1816,1994320827,1),(1816,2014880427,2),(1816,2025770427,1),(1816,2046330027,2),(1816,2057220027,1),(1816,2077779627,2),(1816,2088669627,1),(1816,2109229227,2),(1816,2120119227,1),(1816,2140678827,2),(1817,-2147483648,2),(1817,-1633269600,1),(1817,-1615129200,2),(1817,-1601820000,1),(1817,-1583679600,2),(1817,-880207200,3),(1817,-769395600,4),(1817,-765385200,2),(1817,-687967140,1),(1817,-662655600,2),(1817,-620838000,1),(1817,-608137200,2),(1817,-589388400,1),(1817,-576082800,2),(1817,-557938800,1),(1817,-544633200,2),(1817,-526489200,1),(1817,-513183600,2),(1817,-495039600,1),(1817,-481734000,2),(1817,-463590000,1),(1817,-450284400,2),(1817,-431535600,1),(1817,-418230000,2),(1817,-400086000,1),(1817,-386780400,2),(1817,-368636400,1),(1817,-355330800,2),(1817,-337186800,1),(1817,-323881200,2),(1817,-305737200,1),(1817,-292431600,2),(1817,-273682800,1),(1817,-260982000,2),(1817,-242233200,1),(1817,-226508400,2),(1817,-210783600,1),(1817,-195058800,2),(1817,-179334000,1),(1817,-163609200,2),(1817,-147884400,1),(1817,-131554800,2),(1817,-116434800,1),(1817,-100105200,2),(1817,-84376800,1),(1817,-68655600,2),(1817,-52927200,1),(1817,-37206000,2),(1817,-21477600,1),(1817,-5756400,2),(1817,9972000,1),(1817,25693200,2),(1817,41421600,1),(1817,57747600,2),(1817,73476000,1),(1817,89197201,2),(1817,104925602,1),(1817,120646802,2),(1817,126698403,1),(1817,152096403,2),(1817,162381604,1),(1817,183546004,2),(1817,199274405,1),(1817,215600405,2),(1817,230724006,1),(1817,247050006,2),(1817,262778407,1),(1817,278499607,2),(1817,294228008,1),(1817,309949208,2),(1817,325677609,1),(1817,341398809,2),(1817,357127209,1),(1817,372848410,2),(1817,388576810,1),(1817,404902811,2),(1817,420026411,1),(1817,436352412,2),(1817,452080812,1),(1817,467802012,2),(1817,483530412,1),(1817,499251613,2),(1817,514980013,1),(1817,530701213,2),(1817,544615213,1),(1817,562150813,2),(1817,576064814,1),(1817,594205214,2),(1817,607514414,1),(1817,625654814,2),(1817,638964015,1),(1817,657104415,2),(1817,671018416,1),(1817,688554016,2),(1817,702468016,1),(1817,720003617,2),(1817,733917617,1),(1817,752058018,2),(1817,765367218,1),(1817,783507619,2),(1817,796816819,1),(1817,814957219,2),(1817,828871220,1),(1817,846406820,2),(1817,860320820,1),(1817,877856421,2),(1817,891770421,1),(1817,909306021,2),(1817,923220022,1),(1817,941360422,2),(1817,954669622,1),(1817,972810022,2),(1817,986119222,1),(1817,1004259622,2),(1817,1018173622,1),(1817,1035709222,2),(1817,1049623222,1),(1817,1067158822,2),(1817,1081072822,1),(1817,1099213222,2),(1817,1112522422,1),(1817,1130662822,2),(1817,1143972023,1),(1817,1162112423,2),(1817,1173607223,1),(1817,1194166823,2),(1817,1205056823,1),(1817,1225616423,2),(1817,1236506424,1),(1817,1257066024,2),(1817,1268560824,1),(1817,1289120424,2),(1817,1300010424,1),(1817,1320570024,2),(1817,1331460024,1),(1817,1352019625,2),(1817,1362909625,1),(1817,1383469225,2),(1817,1394359225,1),(1817,1414918825,2),(1817,1425808825,1),(1817,1446368426,2),(1817,1457863226,1),(1817,1478422826,2),(1817,1489312827,1),(1817,1509872427,2),(1817,1520762427,1),(1817,1541322027,2),(1817,1552212027,1),(1817,1572771627,2),(1817,1583661627,1),(1817,1604221227,2),(1817,1615716027,1),(1817,1636275627,2),(1817,1647165627,1),(1817,1667725227,2),(1817,1678615227,1),(1817,1699174827,2),(1817,1710064827,1),(1817,1730624427,2),(1817,1741514427,1),(1817,1762074027,2),(1817,1772964027,1),(1817,1793523627,2),(1817,1805018427,1),(1817,1825578027,2),(1817,1836468027,1),(1817,1857027627,2),(1817,1867917627,1),(1817,1888477227,2),(1817,1899367227,1),(1817,1919926827,2),(1817,1930816827,1),(1817,1951376427,2),(1817,1962871227,1),(1817,1983430827,2),(1817,1994320827,1),(1817,2014880427,2),(1817,2025770427,1),(1817,2046330027,2),(1817,2057220027,1),(1817,2077779627,2),(1817,2088669627,1),(1817,2109229227,2),(1817,2120119227,1),(1817,2140678827,2),(1818,-2147483648,1),(1818,-1861879032,2),(1821,-2147483648,1),(1821,-1688265017,3),(1821,-1656819079,2),(1821,-1641353479,3),(1821,-1627965079,4),(1821,-1618716679,2),(1821,-1596429079,4),(1821,-1593820800,5),(1821,-1589860800,6),(1821,-1542427200,7),(1821,-1539493200,8),(1821,-1525323600,7),(1821,-1522728000,6),(1821,-1491188400,9),(1821,-1247536800,6),(1821,354920409,7),(1821,370728010,6),(1821,386456410,7),(1821,402264011,6),(1821,417992411,7),(1821,433800012,6),(1821,449614812,7),(1821,465346812,10),(1821,481071612,11),(1821,496796413,10),(1821,512521213,11),(1821,528246013,10),(1821,543970813,11),(1821,559695613,10),(1821,575420414,11),(1821,591145214,10),(1821,606870014,11),(1821,622594814,10),(1821,638319615,11),(1821,654649215,10),(1821,670374016,12),(1821,686102416,13),(1821,695779216,10),(1821,701823616,11),(1821,717548417,10),(1821,733273217,11),(1821,748998018,10),(1821,764722818,11),(1821,780447619,10),(1821,796172419,11),(1821,811897219,10),(1821,828226820,11),(1821,846370820,10),(1821,859676420,11),(1821,877820421,10),(1821,891126021,11),(1821,909270021,10),(1821,922575622,11),(1821,941324422,10),(1821,954025222,11),(1821,972774022,10),(1821,985474822,11),(1821,1004223622,10),(1821,1017529222,11),(1821,1035673222,10),(1821,1048978822,11),(1821,1067122822,10),(1821,1080428422,11),(1821,1099177222,10),(1821,1111878022,11),(1821,1130626822,10),(1821,1143327623,11),(1821,1162076423,10),(1821,1174777223,11),(1821,1193526023,10),(1821,1206831623,11),(1821,1224975623,10),(1821,1238281224,11),(1821,1256425224,10),(1821,1269730824,11),(1821,1288479624,10),(1821,1301180424,14),(1821,1414274425,10),(1822,228877206,0),(1822,243997206,1),(1822,260326807,0),(1822,276051607,1),(1822,291776408,0),(1822,307501208,1),(1822,323830809,0),(1822,338950809,1),(1822,354675609,0),(1822,370400410,1),(1822,386125210,0),(1822,401850011,1),(1822,417574811,0),(1822,433299612,1),(1822,449024412,0),(1822,465354012,1),(1822,481078812,0),(1822,496803613,1),(1822,512528413,0),(1822,528253213,1),(1822,543978013,0),(1822,559702813,1),(1822,575427614,0),(1822,591152414,1),(1822,606877214,0),(1822,622602014,1),(1822,638326815,0),(1822,654656415,1),(1822,670381216,0),(1822,686106016,1),(1822,701830816,0),(1822,717555617,1),(1822,733280417,0),(1822,749005218,1),(1822,764730018,0),(1822,780454819,1),(1822,796179619,0),(1822,811904419,1),(1822,828234020,0),(1822,846378020,1),(1822,859683620,0),(1822,877827621,1),(1822,891133221,0),(1822,909277221,1),(1822,922582822,0),(1822,941331622,1),(1822,954032422,0),(1822,972781222,1),(1822,985482022,0),(1822,1004230822,1),(1822,1017536422,0),(1822,1035680422,1),(1822,1048986022,0),(1822,1067130022,1),(1822,1080435622,0),(1822,1099184422,1),(1822,1111885222,0),(1822,1130634022,1),(1822,1143334823,0),(1822,1162083623,1),(1822,1174784423,0),(1822,1193533223,1),(1822,1206838823,0),(1822,1224982823,1),(1822,1238288424,0),(1822,1256432424,1),(1822,1269738024,0),(1822,1288486824,1),(1822,1301187624,0),(1822,1319936424,1),(1822,1332637224,0),(1822,1351386025,1),(1822,1364691625,0),(1822,1382835625,1),(1822,1396141225,0),(1822,1414285225,1),(1822,1427590825,0),(1822,1445734826,1),(1822,1459040426,0),(1822,1477789226,1),(1822,1490490027,0),(1822,1509238827,1),(1822,1521939627,0),(1822,1540688427,1),(1822,1553994027,0),(1822,1572138027,1),(1822,1585443627,0),(1822,1603587627,1),(1822,1616893227,0),(1822,1635642027,1),(1822,1648342827,0),(1822,1667091627,1),(1822,1679792427,0),(1822,1698541227,1),(1822,1711846827,0),(1822,1729990827,1),(1822,1743296427,0),(1822,1761440427,1),(1822,1774746027,0),(1822,1792890027,1),(1822,1806195627,0),(1822,1824944427,1),(1822,1837645227,0),(1822,1856394027,1),(1822,1869094827,0),(1822,1887843627,1),(1822,1901149227,0),(1822,1919293227,1),(1822,1932598827,0),(1822,1950742827,1),(1822,1964048427,0),(1822,1982797227,1),(1822,1995498027,0),(1822,2014246827,1),(1822,2026947627,0),(1822,2045696427,1),(1822,2058397227,0),(1822,2077146027,1),(1822,2090451627,0),(1822,2108595627,1),(1822,2121901227,0),(1822,2140045227,1); +/*!40000 ALTER TABLE `time_zone_transition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `time_zone_transition_type` +-- + +DROP TABLE IF EXISTS `time_zone_transition_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `time_zone_transition_type` ( + `Time_zone_id` int(10) unsigned NOT NULL, + `Transition_type_id` int(10) unsigned NOT NULL, + `Offset` int(11) NOT NULL DEFAULT '0', + `Is_DST` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Abbreviation` char(8) NOT NULL DEFAULT '', + PRIMARY KEY (`Time_zone_id`,`Transition_type_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Time zone transition types'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `time_zone_transition_type` +-- + +LOCK TABLES `time_zone_transition_type` WRITE; +/*!40000 ALTER TABLE `time_zone_transition_type` DISABLE KEYS */; +INSERT INTO `time_zone_transition_type` VALUES (1,0,-968,0,'LMT'),(1,1,0,0,'GMT'),(2,0,-52,0,'LMT'),(2,1,1200,1,'+0020'),(2,2,0,0,'GMT'),(3,0,8836,0,'LMT'),(3,1,10800,0,'EAT'),(3,2,9000,0,'+0230'),(3,3,9900,0,'+0245'),(3,4,10800,0,'EAT'),(4,0,732,0,'LMT'),(4,1,561,0,'PMT'),(4,2,3600,1,'WEST'),(4,3,0,0,'WET'),(4,4,0,0,'WET'),(4,5,7200,1,'CEST'),(4,6,3600,0,'CET'),(4,7,3600,1,'WEST'),(5,0,8836,0,'LMT'),(5,1,10800,0,'EAT'),(5,2,9000,0,'+0230'),(5,3,9900,0,'+0245'),(5,4,10800,0,'EAT'),(6,0,8836,0,'LMT'),(6,1,10800,0,'EAT'),(6,2,9000,0,'+0230'),(6,3,9900,0,'+0245'),(6,4,10800,0,'EAT'),(7,0,-968,0,'LMT'),(7,1,0,0,'GMT'),(8,0,816,0,'LMT'),(8,1,3600,0,'WAT'),(9,0,-968,0,'LMT'),(9,1,0,0,'GMT'),(10,0,-3740,0,'LMT'),(10,1,-3600,0,'-01'),(10,2,0,0,'GMT'),(11,0,7820,0,'LMT'),(11,1,7200,0,'CAT'),(12,0,816,0,'LMT'),(12,1,3600,0,'WAT'),(13,0,7820,0,'LMT'),(13,1,7200,0,'CAT'),(14,0,7509,0,'LMT'),(14,1,10800,1,'EEST'),(14,2,7200,0,'EET'),(14,3,10800,1,'EEST'),(15,0,-1820,0,'LMT'),(15,1,3600,1,'+01'),(15,2,0,0,'+00'),(15,3,3600,0,'+01'),(15,4,0,1,'+00'),(16,0,-1276,0,'LMT'),(16,1,0,0,'WET'),(16,2,3600,1,'WEST'),(16,3,0,0,'WET'),(16,4,3600,0,'CET'),(16,5,7200,1,'CEST'),(16,6,3600,0,'CET'),(17,0,-968,0,'LMT'),(17,1,0,0,'GMT'),(18,0,-968,0,'LMT'),(18,1,0,0,'GMT'),(19,0,8836,0,'LMT'),(19,1,10800,0,'EAT'),(19,2,9000,0,'+0230'),(19,3,9900,0,'+0245'),(19,4,10800,0,'EAT'),(20,0,8836,0,'LMT'),(20,1,10800,0,'EAT'),(20,2,9000,0,'+0230'),(20,3,9900,0,'+0245'),(20,4,10800,0,'EAT'),(21,0,816,0,'LMT'),(21,1,3600,0,'WAT'),(22,0,-3168,0,'LMT'),(22,1,-3600,0,'-01'),(22,2,3600,1,'+01'),(22,3,0,0,'+00'),(22,4,0,1,'+00'),(22,5,3600,0,'+01'),(23,0,-968,0,'LMT'),(23,1,0,0,'GMT'),(24,0,7820,0,'LMT'),(24,1,7200,0,'CAT'),(25,0,7820,0,'LMT'),(25,1,7200,0,'CAT'),(26,0,6720,0,'LMT'),(26,1,5400,0,'SAST'),(26,2,10800,1,'SAST'),(26,3,7200,0,'SAST'),(27,0,7588,0,'LMT'),(27,1,10800,1,'CAST'),(27,2,7200,0,'CAT'),(27,3,10800,0,'EAT'),(28,0,8836,0,'LMT'),(28,1,10800,0,'EAT'),(28,2,9000,0,'+0230'),(28,3,9900,0,'+0245'),(28,4,10800,0,'EAT'),(29,0,7808,0,'LMT'),(29,1,10800,1,'CAST'),(29,2,7200,0,'CAT'),(29,3,10800,0,'EAT'),(29,4,7200,0,'CAT'),(30,0,7820,0,'LMT'),(30,1,7200,0,'CAT'),(31,0,816,0,'LMT'),(31,1,3600,0,'WAT'),(32,0,816,0,'LMT'),(32,1,3600,0,'WAT'),(33,0,816,0,'LMT'),(33,1,3600,0,'WAT'),(34,0,-968,0,'LMT'),(34,1,0,0,'GMT'),(35,0,816,0,'LMT'),(35,1,3600,0,'WAT'),(36,0,7820,0,'LMT'),(36,1,7200,0,'CAT'),(37,0,7820,0,'LMT'),(37,1,7200,0,'CAT'),(38,0,816,0,'LMT'),(38,1,3600,0,'WAT'),(39,0,7820,0,'LMT'),(39,1,7200,0,'CAT'),(40,0,6720,0,'LMT'),(40,1,5400,0,'SAST'),(40,2,10800,1,'SAST'),(40,3,7200,0,'SAST'),(41,0,6720,0,'LMT'),(41,1,5400,0,'SAST'),(41,2,10800,1,'SAST'),(41,3,7200,0,'SAST'),(42,0,8836,0,'LMT'),(42,1,10800,0,'EAT'),(42,2,9000,0,'+0230'),(42,3,9900,0,'+0245'),(42,4,10800,0,'EAT'),(43,0,-2588,0,'LMT'),(43,1,-2588,0,'MMT'),(43,2,-2670,0,'MMT'),(43,3,0,0,'GMT'),(44,0,8836,0,'LMT'),(44,1,10800,0,'EAT'),(44,2,9000,0,'+0230'),(44,3,9900,0,'+0245'),(44,4,10800,0,'EAT'),(45,0,3612,0,'LMT'),(45,1,3600,0,'WAT'),(45,2,7200,1,'WAST'),(46,0,816,0,'LMT'),(46,1,3600,0,'WAT'),(47,0,-968,0,'LMT'),(47,1,0,0,'GMT'),(48,0,-968,0,'LMT'),(48,1,0,0,'GMT'),(49,0,816,0,'LMT'),(49,1,3600,0,'WAT'),(50,0,1616,0,'LMT'),(50,1,-2205,0,'LMT'),(50,2,0,0,'GMT'),(50,3,3600,0,'WAT'),(50,4,0,0,'GMT'),(51,0,-968,0,'LMT'),(51,1,0,0,'GMT'),(52,0,3164,0,'LMT'),(52,1,7200,1,'CEST'),(52,2,3600,0,'CET'),(52,3,7200,0,'EET'),(53,0,2444,0,'LMT'),(53,1,561,0,'PMT'),(53,2,7200,1,'CEST'),(53,3,3600,0,'CET'),(53,4,3600,0,'CET'),(53,5,7200,1,'CEST'),(54,0,4104,0,'LMT'),(54,1,5400,0,'+0130'),(54,2,7200,0,'SAST'),(54,3,10800,1,'SAST'),(54,4,3600,1,'WAT'),(54,5,7200,0,'CAT'),(55,0,-42398,0,'LMT'),(55,1,-39600,0,'NST'),(55,2,-36000,1,'NWT'),(55,3,-36000,1,'NPT'),(55,4,-39600,0,'BST'),(55,5,-36000,1,'BDT'),(55,6,-36000,0,'AHST'),(55,7,-32400,1,'HDT'),(55,8,-36000,0,'HST'),(56,0,-35976,0,'LMT'),(56,1,-36000,0,'AST'),(56,2,-32400,1,'AWT'),(56,3,-32400,1,'APT'),(56,4,-36000,0,'AHST'),(56,5,-32400,1,'AHDT'),(56,6,-32400,0,'YST'),(56,7,-28800,1,'AKDT'),(56,8,-32400,0,'AKST'),(57,0,-14764,0,'LMT'),(57,1,-14400,0,'AST'),(58,0,-14764,0,'LMT'),(58,1,-14400,0,'AST'),(59,0,-11568,0,'LMT'),(59,1,-7200,1,'-02'),(59,2,-10800,0,'-03'),(60,0,-14028,0,'LMT'),(60,1,-15408,0,'CMT'),(60,2,-14400,0,'-04'),(60,3,-10800,1,'-03'),(60,4,-7200,1,'-02'),(60,5,-10800,0,'-03'),(61,0,-15788,0,'LMT'),(61,1,-15408,0,'CMT'),(61,2,-14400,0,'-04'),(61,3,-10800,1,'-03'),(61,4,-7200,1,'-02'),(61,5,-10800,0,'-03'),(62,0,-15788,0,'LMT'),(62,1,-15408,0,'CMT'),(62,2,-14400,0,'-04'),(62,3,-10800,1,'-03'),(62,4,-7200,1,'-02'),(62,5,-10800,0,'-03'),(63,0,-15408,0,'LMT'),(63,1,-15408,0,'CMT'),(63,2,-14400,0,'-04'),(63,3,-10800,1,'-03'),(63,4,-7200,1,'-02'),(63,5,-10800,0,'-03'),(64,0,-15672,0,'LMT'),(64,1,-15408,0,'CMT'),(64,2,-14400,0,'-04'),(64,3,-10800,1,'-03'),(64,4,-7200,1,'-02'),(64,5,-10800,0,'-03'),(65,0,-16044,0,'LMT'),(65,1,-15408,0,'CMT'),(65,2,-14400,0,'-04'),(65,3,-10800,1,'-03'),(65,4,-7200,1,'-02'),(65,5,-10800,0,'-03'),(66,0,-16516,0,'LMT'),(66,1,-15408,0,'CMT'),(66,2,-14400,0,'-04'),(66,3,-10800,1,'-03'),(66,4,-7200,1,'-02'),(66,5,-10800,0,'-03'),(67,0,-16612,0,'LMT'),(67,1,-15408,0,'CMT'),(67,2,-14400,0,'-04'),(67,3,-10800,1,'-03'),(67,4,-7200,1,'-02'),(67,5,-10800,0,'-03'),(68,0,-15700,0,'LMT'),(68,1,-15408,0,'CMT'),(68,2,-14400,0,'-04'),(68,3,-10800,1,'-03'),(68,4,-7200,1,'-02'),(68,5,-10800,0,'-03'),(69,0,-16444,0,'LMT'),(69,1,-15408,0,'CMT'),(69,2,-14400,0,'-04'),(69,3,-10800,1,'-03'),(69,4,-7200,1,'-02'),(69,5,-10800,0,'-03'),(70,0,-15924,0,'LMT'),(70,1,-15408,0,'CMT'),(70,2,-14400,0,'-04'),(70,3,-10800,1,'-03'),(70,4,-7200,1,'-02'),(70,5,-10800,0,'-03'),(70,6,-10800,1,'-03'),(71,0,-15652,0,'LMT'),(71,1,-15408,0,'CMT'),(71,2,-14400,0,'-04'),(71,3,-10800,1,'-03'),(71,4,-7200,1,'-02'),(71,5,-10800,0,'-03'),(72,0,-16392,0,'LMT'),(72,1,-15408,0,'CMT'),(72,2,-14400,0,'-04'),(72,3,-10800,1,'-03'),(72,4,-7200,1,'-02'),(72,5,-10800,0,'-03'),(73,0,-16547,0,'LMT'),(73,1,-16200,0,'-0430'),(73,2,-14400,0,'AST'),(74,0,-13840,0,'LMT'),(74,1,-13840,0,'AMT'),(74,2,-14400,0,'-04'),(74,3,-10800,0,'-03'),(74,4,-10800,1,'-03'),(74,5,-14400,0,'-04'),(75,0,-21988,0,'LMT'),(75,1,-18000,1,'CDT'),(75,2,-21600,0,'CST'),(75,3,-18000,1,'CWT'),(75,4,-18000,1,'CPT'),(75,5,-18000,0,'EST'),(76,0,-42398,0,'LMT'),(76,1,-39600,0,'NST'),(76,2,-36000,1,'NWT'),(76,3,-36000,1,'NPT'),(76,4,-39600,0,'BST'),(76,5,-36000,1,'BDT'),(76,6,-36000,0,'AHST'),(76,7,-32400,1,'HDT'),(76,8,-36000,0,'HST'),(77,0,-9244,0,'LMT'),(77,1,-7200,1,'-02'),(77,2,-10800,0,'-03'),(78,0,-25260,0,'LMT'),(78,1,-25200,0,'MST'),(78,2,-21600,0,'CST'),(78,3,-28800,0,'PST'),(78,4,-21600,1,'MDT'),(78,5,-18000,1,'CDT'),(78,6,-21600,0,'CST'),(79,0,-14309,0,'LMT'),(79,1,-14309,0,'BMT'),(79,2,-10800,1,'ADT'),(79,3,-14400,0,'AST'),(80,0,-11636,0,'LMT'),(80,1,-7200,1,'-02'),(80,2,-10800,0,'-03'),(81,0,-21168,0,'LMT'),(81,1,-19800,1,'-0530'),(81,2,-21600,0,'CST'),(81,3,-18000,1,'CDT'),(82,0,-13708,0,'LMT'),(82,1,-10800,1,'ADT'),(82,2,-14400,0,'AST'),(82,3,-10800,1,'AWT'),(82,4,-10800,1,'APT'),(83,0,-14560,0,'LMT'),(83,1,-10800,1,'-03'),(83,2,-14400,0,'-04'),(84,0,-17776,0,'LMT'),(84,1,-17776,0,'BMT'),(84,2,-14400,1,'-04'),(84,3,-18000,0,'-05'),(85,0,-27889,0,'LMT'),(85,1,-25200,1,'PDT'),(85,2,-28800,0,'PST'),(85,3,-21600,1,'MWT'),(85,4,-21600,1,'MPT'),(85,5,-25200,0,'MST'),(85,6,-21600,1,'MDT'),(86,0,-14028,0,'LMT'),(86,1,-15408,0,'CMT'),(86,2,-14400,0,'-04'),(86,3,-10800,1,'-03'),(86,4,-7200,1,'-02'),(86,5,-10800,0,'-03'),(87,0,0,0,'-00'),(87,1,-21600,1,'MWT'),(87,2,-21600,1,'MPT'),(87,3,-25200,0,'MST'),(87,4,-18000,1,'MDDT'),(87,5,-21600,1,'MDT'),(87,6,-18000,1,'CDT'),(87,7,-21600,0,'CST'),(87,8,-18000,0,'EST'),(87,9,-21600,1,'MDT'),(87,10,-25200,0,'MST'),(88,0,-13108,0,'LMT'),(88,1,-10800,1,'-03'),(88,2,-14400,0,'-04'),(89,0,-20824,0,'LMT'),(89,1,-21600,0,'CST'),(89,2,-14400,1,'EDT'),(89,3,-18000,0,'EST'),(89,4,-18000,1,'CDT'),(90,0,-16064,0,'LMT'),(90,1,-16060,0,'CMT'),(90,2,-16200,0,'-0430'),(90,3,-14400,0,'-04'),(91,0,-15788,0,'LMT'),(91,1,-15408,0,'CMT'),(91,2,-14400,0,'-04'),(91,3,-10800,1,'-03'),(91,4,-7200,1,'-02'),(91,5,-10800,0,'-03'),(92,0,-12560,0,'LMT'),(92,1,-14400,0,'-04'),(92,2,-10800,0,'-03'),(93,0,-19088,0,'LMT'),(93,1,-19176,0,'CMT'),(93,2,-18000,0,'EST'),(94,0,-21036,0,'LMT'),(94,1,-18000,1,'CDT'),(94,2,-21600,0,'CST'),(94,3,-18000,0,'EST'),(94,4,-18000,1,'CWT'),(94,5,-18000,1,'CPT'),(94,6,-21600,0,'CST'),(95,0,-25460,0,'LMT'),(95,1,-25200,0,'MST'),(95,2,-21600,0,'CST'),(95,3,-18000,1,'CDT'),(95,4,-21600,1,'MDT'),(95,5,-25200,0,'MST'),(96,0,-21988,0,'LMT'),(96,1,-18000,1,'CDT'),(96,2,-21600,0,'CST'),(96,3,-18000,1,'CWT'),(96,4,-18000,1,'CPT'),(96,5,-18000,0,'EST'),(97,0,-15408,0,'LMT'),(97,1,-15408,0,'CMT'),(97,2,-14400,0,'-04'),(97,3,-10800,1,'-03'),(97,4,-7200,1,'-02'),(97,5,-10800,0,'-03'),(98,0,-20173,0,'LMT'),(98,1,-20173,0,'SJMT'),(98,2,-18000,1,'CDT'),(98,3,-21600,0,'CST'),(99,0,-27964,0,'LMT'),(99,1,-25200,0,'MST'),(99,2,-28800,0,'PST'),(99,3,-25200,0,'MST'),(100,0,-13460,0,'LMT'),(100,1,-10800,1,'-03'),(100,2,-14400,0,'-04'),(101,0,-16547,0,'LMT'),(101,1,-16200,0,'-0430'),(101,2,-14400,0,'AST'),(102,0,-4480,0,'LMT'),(102,1,-10800,0,'-03'),(102,2,-10800,0,'-03'),(102,3,-7200,1,'-02'),(102,4,-7200,1,'-02'),(102,5,0,0,'GMT'),(103,0,-33460,0,'LMT'),(103,1,-28800,1,'YDT'),(103,2,-32400,0,'YST'),(103,3,-28800,1,'YWT'),(103,4,-28800,1,'YPT'),(103,5,-25200,1,'YDDT'),(103,6,-28800,0,'PST'),(103,7,-25200,1,'PDT'),(104,0,-28856,0,'LMT'),(104,1,-25200,1,'PDT'),(104,2,-28800,0,'PST'),(104,3,-25200,1,'PWT'),(104,4,-25200,1,'PPT'),(104,5,-25200,0,'MST'),(105,0,-25196,0,'LMT'),(105,1,-21600,1,'MDT'),(105,2,-25200,0,'MST'),(105,3,-21600,1,'MWT'),(105,4,-21600,1,'MPT'),(106,0,-19931,0,'LMT'),(106,1,-21600,0,'CST'),(106,2,-18000,0,'EST'),(106,3,-14400,1,'EWT'),(106,4,-14400,1,'EPT'),(106,5,-14400,1,'EDT'),(107,0,-14764,0,'LMT'),(107,1,-14400,0,'AST'),(108,0,-27232,0,'LMT'),(108,1,-21600,1,'MDT'),(108,2,-25200,0,'MST'),(108,3,-21600,1,'MWT'),(108,4,-21600,1,'MPT'),(109,0,-16768,0,'LMT'),(109,1,-14400,1,'-04'),(109,2,-18000,0,'-05'),(109,3,-14400,0,'-04'),(109,4,-18000,0,'-05'),(110,0,-21408,0,'LMT'),(110,1,-18000,1,'CDT'),(110,2,-21600,0,'CST'),(111,0,-28084,0,'LMT'),(111,1,-25200,0,'MST'),(111,2,-28800,0,'PST'),(111,3,-25200,1,'PDT'),(111,4,-25200,1,'PWT'),(111,5,-25200,1,'PPT'),(112,0,-29447,0,'LMT'),(112,1,-25200,1,'PDT'),(112,2,-28800,0,'PST'),(112,3,-25200,1,'PWT'),(112,4,-25200,1,'PPT'),(112,5,-25200,0,'MST'),(113,0,-20678,0,'LMT'),(113,1,-18000,1,'CDT'),(113,2,-21600,0,'CST'),(113,3,-18000,1,'CWT'),(113,4,-18000,1,'CPT'),(113,5,-18000,0,'EST'),(113,6,-14400,1,'EDT'),(114,0,-9240,0,'LMT'),(114,1,-7200,1,'-02'),(114,2,-10800,0,'-03'),(115,0,-14388,0,'LMT'),(115,1,-10800,1,'ADT'),(115,2,-14400,0,'AST'),(115,3,-10800,1,'AWT'),(115,4,-10800,1,'APT'),(116,0,-12416,0,'LMT'),(116,1,-10800,0,'-03'),(116,2,-10800,0,'-03'),(116,3,-7200,1,'-02'),(116,4,-7200,1,'-02'),(117,0,-14500,0,'LMT'),(117,1,-12652,0,'NST'),(117,2,-9052,1,'NDT'),(117,3,-12600,0,'NST'),(117,4,-9000,1,'NDT'),(117,5,-9000,1,'NPT'),(117,6,-9000,1,'NWT'),(117,7,-10800,1,'ADT'),(117,8,-14400,0,'AST'),(117,9,-7200,1,'ADDT'),(117,10,-10800,1,'ADT'),(118,0,-17072,0,'LMT'),(118,1,-18430,0,'KMT'),(118,2,-18000,0,'EST'),(118,3,-14400,1,'EDT'),(118,4,-14400,0,'AST'),(118,5,-18000,0,'EST'),(119,0,-14764,0,'LMT'),(119,1,-14400,0,'AST'),(120,0,-14764,0,'LMT'),(120,1,-14400,0,'AST'),(121,0,-21724,0,'LMT'),(121,1,-18000,1,'CDT'),(121,2,-21600,0,'CST'),(122,0,-19160,0,'LMT'),(122,1,-18840,0,'QMT'),(122,2,-14400,1,'-04'),(122,3,-18000,0,'-05'),(123,0,-13960,0,'LMT'),(123,1,-13500,0,'-0345'),(123,2,-10800,0,'-03'),(123,3,-14400,0,'-04'),(124,0,-15264,0,'LMT'),(124,1,-10800,1,'ADT'),(124,2,-14400,0,'AST'),(124,3,-10800,1,'AWT'),(124,4,-10800,1,'APT'),(125,0,-19768,0,'LMT'),(125,1,-19776,0,'HMT'),(125,2,-14400,1,'CDT'),(125,3,-18000,0,'CST'),(125,4,-18000,0,'CST'),(125,5,-14400,1,'CDT'),(126,0,-26632,0,'LMT'),(126,1,-25200,0,'MST'),(126,2,-21600,0,'CST'),(126,3,-28800,0,'PST'),(126,4,-21600,1,'MDT'),(126,5,-25200,0,'MST'),(127,0,-20678,0,'LMT'),(127,1,-18000,1,'CDT'),(127,2,-21600,0,'CST'),(127,3,-18000,1,'CWT'),(127,4,-18000,1,'CPT'),(127,5,-18000,0,'EST'),(127,6,-14400,1,'EDT'),(128,0,-20790,0,'LMT'),(128,1,-18000,1,'CDT'),(128,2,-21600,0,'CST'),(128,3,-18000,1,'CWT'),(128,4,-18000,1,'CPT'),(128,5,-18000,0,'EST'),(128,6,-21600,0,'CST'),(129,0,-20723,0,'LMT'),(129,1,-18000,1,'CDT'),(129,2,-21600,0,'CST'),(129,3,-18000,1,'CWT'),(129,4,-18000,1,'CPT'),(129,5,-18000,0,'EST'),(129,6,-14400,1,'EDT'),(130,0,-20947,0,'LMT'),(130,1,-18000,1,'CDT'),(130,2,-21600,0,'CST'),(130,3,-18000,1,'CWT'),(130,4,-18000,1,'CPT'),(130,5,-18000,0,'EST'),(130,6,-14400,1,'EDT'),(131,0,-20823,0,'LMT'),(131,1,-18000,1,'CDT'),(131,2,-21600,0,'CST'),(131,3,-18000,1,'CWT'),(131,4,-18000,1,'CPT'),(131,5,-18000,0,'EST'),(131,6,-14400,1,'EDT'),(131,7,-18000,1,'CDT'),(131,8,-21600,0,'CST'),(132,0,-20416,0,'LMT'),(132,1,-18000,1,'CDT'),(132,2,-21600,0,'CST'),(132,3,-18000,1,'CWT'),(132,4,-18000,1,'CPT'),(132,5,-18000,0,'EST'),(132,6,-14400,1,'EDT'),(133,0,-21007,0,'LMT'),(133,1,-18000,1,'CDT'),(133,2,-21600,0,'CST'),(133,3,-18000,1,'CWT'),(133,4,-18000,1,'CPT'),(133,5,-18000,0,'EST'),(133,6,-14400,1,'EDT'),(134,0,-20785,0,'LMT'),(134,1,-18000,1,'CDT'),(134,2,-21600,0,'CST'),(134,3,-18000,1,'CWT'),(134,4,-18000,1,'CPT'),(134,5,-18000,0,'EST'),(134,6,-14400,1,'EDT'),(135,0,-20678,0,'LMT'),(135,1,-18000,1,'CDT'),(135,2,-21600,0,'CST'),(135,3,-18000,1,'CWT'),(135,4,-18000,1,'CPT'),(135,5,-18000,0,'EST'),(135,6,-14400,1,'EDT'),(136,0,0,0,'-00'),(136,1,-21600,1,'PDDT'),(136,2,-28800,0,'PST'),(136,3,-25200,0,'MST'),(136,4,-21600,1,'MDT'),(137,0,0,0,'-00'),(137,1,-14400,1,'EPT'),(137,2,-18000,0,'EST'),(137,3,-10800,1,'EDDT'),(137,4,-14400,1,'EDT'),(137,5,-14400,1,'EWT'),(137,6,-21600,0,'CST'),(137,7,-18000,1,'CDT'),(137,8,-14400,1,'EDT'),(137,9,-18000,0,'EST'),(138,0,-18430,0,'LMT'),(138,1,-18430,0,'KMT'),(138,2,-18000,0,'EST'),(138,3,-14400,1,'EDT'),(139,0,-15672,0,'LMT'),(139,1,-15408,0,'CMT'),(139,2,-14400,0,'-04'),(139,3,-10800,1,'-03'),(139,4,-7200,1,'-02'),(139,5,-10800,0,'-03'),(140,0,-32261,0,'LMT'),(140,1,-28800,0,'PST'),(140,2,-25200,1,'PWT'),(140,3,-25200,1,'PPT'),(140,4,-25200,1,'PDT'),(140,5,-28800,1,'YDT'),(140,6,-32400,0,'YST'),(140,7,-28800,1,'AKDT'),(140,8,-32400,0,'AKST'),(141,0,-20582,0,'LMT'),(141,1,-18000,1,'CDT'),(141,2,-21600,0,'CST'),(141,3,-18000,1,'CWT'),(141,4,-18000,1,'CPT'),(141,5,-18000,0,'EST'),(141,6,-14400,1,'EDT'),(142,0,-20364,0,'LMT'),(142,1,-18000,1,'CDT'),(142,2,-21600,0,'CST'),(142,3,-18000,1,'CWT'),(142,4,-18000,1,'CPT'),(142,5,-14400,1,'EDT'),(142,6,-18000,0,'EST'),(143,0,-20790,0,'LMT'),(143,1,-18000,1,'CDT'),(143,2,-21600,0,'CST'),(143,3,-18000,1,'CWT'),(143,4,-18000,1,'CPT'),(143,5,-18000,0,'EST'),(143,6,-21600,0,'CST'),(144,0,-16547,0,'LMT'),(144,1,-16200,0,'-0430'),(144,2,-14400,0,'AST'),(145,0,-16356,0,'LMT'),(145,1,-16356,0,'CMT'),(145,2,-12756,1,'BST'),(145,3,-14400,0,'-04'),(146,0,-18492,0,'LMT'),(146,1,-18516,0,'LMT'),(146,2,-14400,1,'-04'),(146,3,-18000,0,'-05'),(147,0,-28378,0,'LMT'),(147,1,-25200,1,'PDT'),(147,2,-28800,0,'PST'),(147,3,-25200,1,'PWT'),(147,4,-25200,1,'PPT'),(148,0,-20582,0,'LMT'),(148,1,-18000,1,'CDT'),(148,2,-21600,0,'CST'),(148,3,-18000,1,'CWT'),(148,4,-18000,1,'CPT'),(148,5,-18000,0,'EST'),(148,6,-14400,1,'EDT'),(149,0,-16547,0,'LMT'),(149,1,-16200,0,'-0430'),(149,2,-14400,0,'AST'),(150,0,-8572,0,'LMT'),(150,1,-7200,1,'-02'),(150,2,-10800,0,'-03'),(151,0,-20708,0,'LMT'),(151,1,-20712,0,'MMT'),(151,2,-21600,0,'CST'),(151,3,-18000,0,'EST'),(151,4,-18000,1,'CDT'),(151,5,-21600,0,'CST'),(152,0,-14404,0,'LMT'),(152,1,-10800,1,'-03'),(152,2,-14400,0,'-04'),(153,0,-14764,0,'LMT'),(153,1,-14400,0,'AST'),(154,0,-14660,0,'LMT'),(154,1,-14660,0,'FFMT'),(154,2,-14400,0,'AST'),(154,3,-10800,1,'ADT'),(155,0,-24000,0,'LMT'),(155,1,-21600,0,'CST'),(155,2,-18000,1,'CDT'),(156,0,-25540,0,'LMT'),(156,1,-25200,0,'MST'),(156,2,-21600,0,'CST'),(156,3,-28800,0,'PST'),(156,4,-21600,1,'MDT'),(156,5,-25200,0,'MST'),(157,0,-16516,0,'LMT'),(157,1,-15408,0,'CMT'),(157,2,-14400,0,'-04'),(157,3,-10800,1,'-03'),(157,4,-7200,1,'-02'),(157,5,-10800,0,'-03'),(158,0,-21027,0,'LMT'),(158,1,-18000,1,'CDT'),(158,2,-21600,0,'CST'),(158,3,-18000,1,'CWT'),(158,4,-18000,1,'CPT'),(158,5,-18000,0,'EST'),(158,6,-21600,0,'CST'),(159,0,-21508,0,'LMT'),(159,1,-21600,0,'CST'),(159,2,-18000,0,'EST'),(159,3,-18000,1,'CDT'),(159,4,-21600,0,'CST'),(160,0,-31578,0,'LMT'),(160,1,-28800,0,'PST'),(160,2,-25200,1,'PWT'),(160,3,-25200,1,'PPT'),(160,4,-25200,1,'PDT'),(160,5,-32400,0,'AKST'),(160,6,-28800,1,'AKDT'),(161,0,-23796,0,'LMT'),(161,1,-25200,0,'MST'),(161,2,-21600,0,'CST'),(161,3,-18000,1,'CDT'),(161,4,-18000,1,'CWT'),(162,0,-13480,0,'LMT'),(162,1,-14400,0,'AST'),(162,2,-10800,0,'-03'),(162,3,-7200,1,'-02'),(163,0,-15548,0,'LMT'),(163,1,-18000,0,'EST'),(163,2,-10800,1,'ADT'),(163,3,-14400,0,'AST'),(163,4,-10800,1,'AWT'),(163,5,-10800,1,'APT'),(164,0,-24076,0,'LMT'),(164,1,-21600,0,'CST'),(164,2,-18000,1,'CDT'),(165,0,-13491,0,'LMT'),(165,1,-13491,0,'MMT'),(165,2,-14400,0,'-04'),(165,3,-12600,0,'-0330'),(165,4,-10800,1,'-03'),(165,5,-10800,0,'-03'),(165,6,-9000,1,'-0230'),(165,7,-7200,1,'-02'),(165,8,-5400,1,'-0130'),(165,9,-7200,1,'-02'),(166,0,-19052,0,'LMT'),(166,1,-14400,1,'EDT'),(166,2,-18000,0,'EST'),(166,3,-14400,1,'EWT'),(166,4,-14400,1,'EPT'),(167,0,-14764,0,'LMT'),(167,1,-14400,0,'AST'),(168,0,-18570,0,'LMT'),(168,1,-14400,1,'EDT'),(168,2,-18000,0,'EST'),(169,0,-17762,0,'LMT'),(169,1,-14400,1,'EDT'),(169,2,-18000,0,'EST'),(169,3,-14400,1,'EWT'),(169,4,-14400,1,'EPT'),(170,0,-21184,0,'LMT'),(170,1,-14400,1,'EDT'),(170,2,-18000,0,'EST'),(170,3,-14400,1,'EWT'),(170,4,-14400,1,'EPT'),(171,0,-39698,0,'LMT'),(171,1,-39600,0,'NST'),(171,2,-36000,1,'NWT'),(171,3,-36000,1,'NPT'),(171,4,-39600,0,'BST'),(171,5,-36000,1,'BDT'),(171,6,-32400,0,'YST'),(171,7,-28800,1,'AKDT'),(171,8,-32400,0,'AKST'),(172,0,-7780,0,'LMT'),(172,1,-3600,1,'-01'),(172,2,-7200,0,'-02'),(173,0,-24427,0,'LMT'),(173,1,-21600,1,'MDT'),(173,2,-25200,0,'MST'),(173,3,-21600,1,'MWT'),(173,4,-21600,1,'MPT'),(173,5,-18000,1,'CDT'),(173,6,-21600,0,'CST'),(174,0,-24312,0,'LMT'),(174,1,-21600,1,'MDT'),(174,2,-25200,0,'MST'),(174,3,-21600,1,'MWT'),(174,4,-21600,1,'MPT'),(174,5,-18000,1,'CDT'),(174,6,-21600,0,'CST'),(175,0,-24339,0,'LMT'),(175,1,-21600,1,'MDT'),(175,2,-25200,0,'MST'),(175,3,-21600,1,'MWT'),(175,4,-21600,1,'MPT'),(175,5,-18000,1,'CDT'),(175,6,-21600,0,'CST'),(176,0,-25060,0,'LMT'),(176,1,-25200,0,'MST'),(176,2,-21600,0,'CST'),(176,3,-18000,1,'CDT'),(176,4,-21600,1,'MDT'),(176,5,-25200,0,'MST'),(177,0,-19088,0,'LMT'),(177,1,-19176,0,'CMT'),(177,2,-18000,0,'EST'),(178,0,0,0,'-00'),(178,1,-10800,1,'AWT'),(178,2,-10800,1,'APT'),(178,3,-14400,0,'AST'),(178,4,-7200,1,'ADDT'),(178,5,-10800,1,'ADT'),(178,6,-14400,1,'EDT'),(178,7,-18000,0,'EST'),(178,8,-21600,0,'CST'),(178,9,-18000,1,'CDT'),(178,10,-14400,1,'EDT'),(178,11,-18000,0,'EST'),(179,0,-13240,0,'LMT'),(179,1,-13252,0,'PMT'),(179,2,-13236,0,'PMT'),(179,3,-12600,0,'-0330'),(179,4,-10800,0,'-03'),(180,0,-26898,0,'LMT'),(180,1,-21600,1,'MDT'),(180,2,-25200,0,'MST'),(180,3,-21600,1,'MWT'),(181,0,-17360,0,'LMT'),(181,1,-17340,0,'PPMT'),(181,2,-14400,1,'EDT'),(181,3,-18000,0,'EST'),(181,4,-14400,1,'EDT'),(181,5,-18000,0,'EST'),(182,0,-14764,0,'LMT'),(182,1,-14400,0,'AST'),(183,0,-16272,0,'LMT'),(183,1,-14400,1,'-04'),(183,2,-18000,0,'-05'),(183,3,-14400,0,'-04'),(183,4,-18000,0,'-05'),(184,0,-15336,0,'LMT'),(184,1,-10800,1,'-03'),(184,2,-14400,0,'-04'),(185,0,-15865,0,'LMT'),(185,1,-14400,0,'AST'),(185,2,-10800,1,'APT'),(185,3,-10800,1,'AWT'),(186,0,-17020,0,'LMT'),(186,1,-16966,0,'SMT'),(186,2,-18000,0,'-05'),(186,3,-14400,0,'-04'),(186,4,-14400,1,'-04'),(186,5,-10800,1,'-03'),(186,6,-14400,0,'-04'),(186,7,-10800,0,'-03'),(187,0,-22696,0,'LMT'),(187,1,-18000,1,'CDT'),(187,2,-21600,0,'CST'),(187,3,-18000,1,'CWT'),(187,4,-18000,1,'CPT'),(188,0,0,0,'-00'),(188,1,-14400,1,'CDDT'),(188,2,-21600,0,'CST'),(188,3,-18000,1,'CDT'),(188,4,-18000,0,'EST'),(188,5,-21600,0,'CST'),(189,0,-8376,0,'LMT'),(189,1,-7200,1,'-02'),(189,2,-10800,0,'-03'),(190,0,-25116,0,'LMT'),(190,1,-21600,1,'MDT'),(190,2,-25200,0,'MST'),(190,3,-21600,1,'MWT'),(190,4,-21600,1,'MPT'),(190,5,-21600,0,'CST'),(191,0,0,0,'-00'),(191,1,-14400,1,'CDDT'),(191,2,-21600,0,'CST'),(191,3,-18000,1,'CDT'),(191,4,-18000,0,'EST'),(191,5,-21600,0,'CST'),(192,0,-16272,0,'LMT'),(192,1,-14400,1,'-04'),(192,2,-18000,0,'-05'),(192,3,-14400,0,'-04'),(192,4,-18000,0,'-05'),(193,0,-15408,0,'LMT'),(193,1,-15408,0,'CMT'),(193,2,-14400,0,'-04'),(193,3,-10800,1,'-03'),(193,4,-7200,1,'-02'),(193,5,-10800,0,'-03'),(194,0,-28084,0,'LMT'),(194,1,-25200,0,'MST'),(194,2,-28800,0,'PST'),(194,3,-25200,1,'PDT'),(194,4,-25200,1,'PWT'),(194,5,-25200,1,'PPT'),(195,0,-13128,0,'LMT'),(195,1,-10800,1,'-03'),(195,2,-14400,0,'-04'),(195,3,-10800,0,'-03'),(196,0,-16966,0,'LMT'),(196,1,-16966,0,'SMT'),(196,2,-18000,0,'-05'),(196,3,-14400,0,'-04'),(196,4,-14400,1,'-04'),(196,5,-10800,1,'-03'),(196,6,-10800,1,'-03'),(196,7,-14400,0,'-04'),(197,0,-16776,0,'LMT'),(197,1,-16800,0,'SDMT'),(197,2,-14400,1,'EDT'),(197,3,-18000,0,'EST'),(197,4,-16200,1,'-0430'),(197,5,-14400,0,'AST'),(198,0,-11188,0,'LMT'),(198,1,-7200,1,'-02'),(198,2,-10800,0,'-03'),(199,0,-5272,0,'LMT'),(199,1,-7200,0,'-02'),(199,2,-3600,1,'-01'),(199,3,-7200,0,'-02'),(199,4,-3600,0,'-01'),(199,5,0,1,'+00'),(199,6,0,1,'+00'),(200,0,-25196,0,'LMT'),(200,1,-21600,1,'MDT'),(200,2,-25200,0,'MST'),(200,3,-21600,1,'MWT'),(200,4,-21600,1,'MPT'),(201,0,-32473,0,'LMT'),(201,1,-28800,0,'PST'),(201,2,-25200,1,'PWT'),(201,3,-25200,1,'PPT'),(201,4,-25200,1,'PDT'),(201,5,-32400,0,'YST'),(201,6,-28800,1,'AKDT'),(201,7,-32400,0,'AKST'),(202,0,-14764,0,'LMT'),(202,1,-14400,0,'AST'),(203,0,-12652,0,'LMT'),(203,1,-9052,1,'NDT'),(203,2,-12652,0,'NST'),(203,3,-9000,1,'NDT'),(203,4,-12600,0,'NST'),(203,5,-9000,1,'NPT'),(203,6,-9000,1,'NWT'),(203,7,-5400,1,'NDDT'),(203,8,-9000,1,'NDT'),(204,0,-14764,0,'LMT'),(204,1,-14400,0,'AST'),(205,0,-14764,0,'LMT'),(205,1,-14400,0,'AST'),(206,0,-14764,0,'LMT'),(206,1,-14400,0,'AST'),(207,0,-14764,0,'LMT'),(207,1,-14400,0,'AST'),(208,0,-25880,0,'LMT'),(208,1,-21600,1,'MDT'),(208,2,-25200,0,'MST'),(208,3,-21600,1,'MWT'),(208,4,-21600,1,'MPT'),(208,5,-21600,0,'CST'),(209,0,-20932,0,'LMT'),(209,1,-18000,1,'CDT'),(209,2,-21600,0,'CST'),(210,0,-16508,0,'LMT'),(210,1,-10800,1,'ADT'),(210,2,-14400,0,'AST'),(211,0,-21420,0,'LMT'),(211,1,-21600,0,'CST'),(211,2,-18000,0,'EST'),(211,3,-14400,1,'EWT'),(211,4,-14400,1,'EPT'),(211,5,-14400,1,'EDT'),(212,0,-28084,0,'LMT'),(212,1,-25200,0,'MST'),(212,2,-28800,0,'PST'),(212,3,-25200,1,'PDT'),(212,4,-25200,1,'PWT'),(212,5,-25200,1,'PPT'),(213,0,-19052,0,'LMT'),(213,1,-14400,1,'EDT'),(213,2,-18000,0,'EST'),(213,3,-14400,1,'EWT'),(213,4,-14400,1,'EPT'),(214,0,-14764,0,'LMT'),(214,1,-14400,0,'AST'),(215,0,-29548,0,'LMT'),(215,1,-25200,1,'PDT'),(215,2,-28800,0,'PST'),(215,3,-25200,1,'PWT'),(215,4,-25200,1,'PPT'),(216,0,-14764,0,'LMT'),(216,1,-14400,0,'AST'),(217,0,-32412,0,'LMT'),(217,1,-28800,1,'YDT'),(217,2,-32400,0,'YST'),(217,3,-28800,1,'YWT'),(217,4,-28800,1,'YPT'),(217,5,-25200,1,'YDDT'),(217,6,-28800,0,'PST'),(217,7,-25200,1,'PDT'),(218,0,-23316,0,'LMT'),(218,1,-18000,1,'CDT'),(218,2,-21600,0,'CST'),(218,3,-18000,1,'CWT'),(218,4,-18000,1,'CPT'),(218,5,-18000,1,'CDT'),(218,6,-21600,0,'CST'),(219,0,-33535,0,'LMT'),(219,1,-32400,0,'YST'),(219,2,-28800,1,'YWT'),(219,3,-28800,1,'YPT'),(219,4,-28800,1,'YDT'),(219,5,-28800,1,'AKDT'),(219,6,-32400,0,'AKST'),(220,0,0,0,'-00'),(220,1,-21600,1,'MWT'),(220,2,-21600,1,'MPT'),(220,3,-25200,0,'MST'),(220,4,-18000,1,'MDDT'),(220,5,-21600,1,'MDT'),(221,0,0,0,'-00'),(221,1,28800,0,'+08'),(221,2,39600,0,'+11'),(221,3,28800,0,'+08'),(222,0,0,0,'-00'),(222,1,25200,0,'+07'),(222,2,18000,0,'+05'),(222,3,25200,0,'+07'),(223,0,0,0,'-00'),(223,1,36000,0,'+10'),(224,0,0,0,'-00'),(224,1,36000,0,'AEST'),(224,2,39600,1,'AEDT'),(224,3,0,0,'-00'),(224,4,39600,1,'AEDT'),(224,5,36000,0,'AEST'),(224,6,39600,0,'+11'),(225,0,0,0,'-00'),(225,1,21600,0,'+06'),(225,2,18000,0,'+05'),(226,0,41944,0,'LMT'),(226,1,45000,1,'NZST'),(226,2,41400,0,'NZMT'),(226,3,43200,1,'NZST'),(226,4,46800,1,'NZDT'),(226,5,43200,0,'NZST'),(226,6,43200,0,'NZST'),(227,0,0,0,'-00'),(227,1,-14400,0,'-04'),(227,2,-10800,1,'-03'),(227,3,-7200,1,'-02'),(227,4,-10800,0,'-03'),(227,5,-10800,1,'-03'),(227,6,-14400,0,'-04'),(227,7,-10800,0,'-03'),(228,0,0,0,'-00'),(228,1,-10800,0,'-03'),(229,0,41944,0,'LMT'),(229,1,45000,1,'NZST'),(229,2,41400,0,'NZMT'),(229,3,43200,1,'NZST'),(229,4,46800,1,'NZDT'),(229,5,43200,0,'NZST'),(229,6,43200,0,'NZST'),(230,0,0,0,'-00'),(230,1,10800,0,'+03'),(231,0,0,0,'-00'),(231,1,7200,1,'+02'),(231,2,0,0,'+00'),(231,3,0,0,'+00'),(232,0,0,0,'-00'),(232,1,21600,0,'+06'),(233,0,2580,0,'LMT'),(233,1,7200,1,'CEST'),(233,2,3600,0,'CET'),(233,3,3600,0,'CET'),(233,4,7200,1,'CEST'),(233,5,7200,1,'CEST'),(233,6,3600,0,'CET'),(234,0,11212,0,'LMT'),(234,1,10800,0,'+03'),(235,0,18468,0,'LMT'),(235,1,18000,0,'+05'),(235,2,25200,1,'+07'),(235,3,21600,0,'+06'),(235,4,21600,0,'+06'),(235,5,25200,1,'+07'),(235,6,21600,1,'+06'),(235,7,18000,0,'+05'),(235,8,25200,1,'+07'),(235,9,21600,0,'+06'),(236,0,8624,0,'LMT'),(236,1,10800,1,'EEST'),(236,2,7200,0,'EET'),(236,3,7200,0,'EET'),(236,4,10800,1,'EEST'),(237,0,42596,0,'LMT'),(237,1,43200,0,'+12'),(237,2,50400,1,'+14'),(237,3,46800,0,'+13'),(237,4,46800,1,'+13'),(237,5,43200,0,'+12'),(237,6,46800,1,'+13'),(237,7,43200,1,'+12'),(237,8,39600,0,'+11'),(237,9,43200,0,'+12'),(238,0,12064,0,'LMT'),(238,1,14400,0,'+04'),(238,2,18000,0,'+05'),(238,3,21600,0,'+06'),(238,4,21600,1,'+06'),(238,5,18000,0,'+05'),(238,6,21600,1,'+06'),(238,7,18000,1,'+05'),(238,8,14400,0,'+04'),(238,9,18000,0,'+05'),(239,0,13720,0,'LMT'),(239,1,14400,0,'+04'),(239,2,18000,0,'+05'),(239,3,21600,1,'+06'),(239,4,21600,0,'+06'),(239,5,18000,0,'+05'),(239,6,21600,1,'+06'),(239,7,18000,1,'+05'),(239,8,14400,0,'+04'),(239,9,21600,1,'+06'),(239,10,18000,0,'+05'),(240,0,14012,0,'LMT'),(240,1,14400,0,'+04'),(240,2,21600,1,'+06'),(240,3,18000,0,'+05'),(240,4,18000,0,'+05'),(240,5,21600,1,'+06'),(240,6,18000,1,'+05'),(240,7,14400,0,'+04'),(240,8,18000,0,'+05'),(241,0,14012,0,'LMT'),(241,1,14400,0,'+04'),(241,2,21600,1,'+06'),(241,3,18000,0,'+05'),(241,4,18000,0,'+05'),(241,5,21600,1,'+06'),(241,6,18000,1,'+05'),(241,7,14400,0,'+04'),(241,8,18000,0,'+05'),(242,0,12464,0,'LMT'),(242,1,10800,0,'+03'),(242,2,18000,0,'+05'),(242,3,21600,0,'+06'),(242,4,21600,1,'+06'),(242,5,18000,0,'+05'),(242,6,21600,1,'+06'),(242,7,18000,1,'+05'),(242,8,14400,0,'+04'),(242,9,18000,0,'+05'),(243,0,10660,0,'LMT'),(243,1,10656,0,'BMT'),(243,2,10800,0,'+03'),(243,3,14400,1,'+04'),(243,4,10800,0,'+03'),(243,5,14400,1,'+04'),(244,0,12368,0,'LMT'),(244,1,14400,0,'+04'),(244,2,10800,0,'+03'),(245,0,11964,0,'LMT'),(245,1,10800,0,'+03'),(245,2,18000,1,'+05'),(245,3,14400,0,'+04'),(245,4,14400,0,'+04'),(245,5,18000,1,'+05'),(245,6,14400,1,'+04'),(245,7,10800,0,'+03'),(245,8,18000,1,'+05'),(245,9,14400,0,'+04'),(246,0,24124,0,'LMT'),(246,1,24124,0,'BMT'),(246,2,25200,0,'+07'),(247,0,20100,0,'LMT'),(247,1,21600,0,'+06'),(247,2,28800,1,'+08'),(247,3,25200,0,'+07'),(247,4,25200,0,'+07'),(247,5,28800,1,'+08'),(247,6,25200,1,'+07'),(247,7,21600,0,'+06'),(247,8,25200,1,'+07'),(247,9,25200,0,'+07'),(248,0,8520,0,'LMT'),(248,1,10800,1,'EEST'),(248,2,7200,0,'EET'),(249,0,17904,0,'LMT'),(249,1,18000,0,'+05'),(249,2,25200,1,'+07'),(249,3,21600,0,'+06'),(249,4,21600,0,'+06'),(249,5,25200,1,'+07'),(249,6,21600,1,'+06'),(249,7,18000,0,'+05'),(249,8,21600,1,'+06'),(249,9,21600,0,'+06'),(250,0,27580,0,'LMT'),(250,1,27000,0,'+0730'),(250,2,28800,0,'+08'),(251,0,21200,0,'HMT'),(251,1,19270,0,'MMT'),(251,2,19800,0,'IST'),(251,3,23400,1,'+0630'),(252,0,27232,0,'LMT'),(252,1,28800,0,'+08'),(252,2,36000,1,'+10'),(252,3,32400,0,'+09'),(252,4,32400,0,'+09'),(252,5,36000,1,'+10'),(252,6,32400,1,'+09'),(252,7,28800,0,'+08'),(252,8,36000,0,'+10'),(252,9,36000,1,'+10'),(252,10,32400,0,'+09'),(253,0,27480,0,'LMT'),(253,1,25200,0,'+07'),(253,2,28800,0,'+08'),(253,3,32400,0,'+09'),(253,4,36000,1,'+10'),(253,5,32400,1,'+09'),(253,6,28800,0,'+08'),(254,0,29143,0,'LMT'),(254,1,32400,1,'CDT'),(254,2,28800,0,'CST'),(255,0,29143,0,'LMT'),(255,1,32400,1,'CDT'),(255,2,28800,0,'CST'),(256,0,19164,0,'LMT'),(256,1,19172,0,'MMT'),(256,2,19800,0,'+0530'),(256,3,21600,1,'+06'),(256,4,23400,1,'+0630'),(256,5,23400,0,'+0630'),(256,6,21600,0,'+06'),(256,7,19800,0,'+0530'),(257,0,21700,0,'LMT'),(257,1,21200,0,'HMT'),(257,2,23400,0,'+0630'),(257,3,19800,0,'+0530'),(257,4,21600,0,'+06'),(257,5,25200,1,'+07'),(258,0,8712,0,'LMT'),(258,1,10800,1,'EEST'),(258,2,7200,0,'EET'),(259,0,21700,0,'LMT'),(259,1,21200,0,'HMT'),(259,2,23400,0,'+0630'),(259,3,19800,0,'+0530'),(259,4,21600,0,'+06'),(259,5,25200,1,'+07'),(260,0,30140,0,'LMT'),(260,1,28800,0,'+08'),(260,2,32400,0,'+09'),(261,0,13272,0,'LMT'),(261,1,14400,0,'+04'),(262,0,16512,0,'LMT'),(262,1,18000,0,'+05'),(262,2,25200,1,'+07'),(262,3,21600,0,'+06'),(262,4,21600,0,'+06'),(262,5,25200,1,'+07'),(262,6,21600,1,'+06'),(262,7,18000,0,'+05'),(263,0,8148,0,'LMT'),(263,1,10800,1,'EEST'),(263,2,7200,0,'EET'),(263,3,7200,0,'EET'),(263,4,10800,1,'EEST'),(263,5,10800,0,'+03'),(263,6,7200,0,'EET'),(264,0,8272,0,'LMT'),(264,1,10800,1,'EEST'),(264,2,7200,0,'EET'),(264,3,10800,1,'IDT'),(264,4,7200,0,'IST'),(264,5,7200,0,'EET'),(265,0,29143,0,'LMT'),(265,1,32400,1,'CDT'),(265,2,28800,0,'CST'),(266,0,8423,0,'LMT'),(266,1,10800,1,'EEST'),(266,2,7200,0,'EET'),(266,3,10800,1,'IDT'),(266,4,7200,0,'IST'),(266,5,7200,0,'EET'),(267,0,25600,0,'LMT'),(267,1,25590,0,'PLMT'),(267,2,25200,0,'+07'),(267,3,28800,0,'+08'),(267,4,32400,0,'+09'),(267,5,25200,0,'+07'),(268,0,27402,0,'LMT'),(268,1,28800,0,'HKT'),(268,2,32400,1,'HKST'),(268,3,30600,1,'HKWT'),(268,4,32400,0,'JST'),(268,5,28800,0,'HKT'),(268,6,32400,1,'HKST'),(269,0,21996,0,'LMT'),(269,1,21600,0,'+06'),(269,2,28800,1,'+08'),(269,3,25200,0,'+07'),(270,0,25025,0,'LMT'),(270,1,25025,0,'IMT'),(270,2,25200,0,'+07'),(270,3,32400,1,'+09'),(270,4,28800,0,'+08'),(270,5,28800,0,'+08'),(270,6,32400,1,'+09'),(270,7,28800,1,'+08'),(270,8,25200,0,'+07'),(270,9,32400,0,'+09'),(270,10,32400,1,'+09'),(270,11,28800,0,'+08'),(271,0,6952,0,'LMT'),(271,1,7016,0,'IMT'),(271,2,10800,1,'EEST'),(271,3,7200,0,'EET'),(271,4,10800,0,'+03'),(271,5,14400,1,'+04'),(271,6,10800,1,'EEST'),(271,7,7200,0,'EET'),(271,8,10800,1,'EEST'),(271,9,7200,0,'EET'),(271,10,10800,0,'+03'),(272,0,25632,0,'LMT'),(272,1,25632,0,'BMT'),(272,2,26400,0,'+0720'),(272,3,27000,0,'+0730'),(272,4,32400,0,'+09'),(272,5,28800,0,'+08'),(272,6,25200,0,'WIB'),(273,0,33768,0,'LMT'),(273,1,32400,0,'+09'),(273,2,34200,0,'+0930'),(273,3,32400,0,'WIT'),(274,0,8454,0,'LMT'),(274,1,8440,0,'JMT'),(274,2,10800,1,'IDT'),(274,3,7200,0,'IST'),(274,4,14400,1,'IDDT'),(274,5,10800,1,'IDT'),(275,0,16608,0,'LMT'),(275,1,14400,0,'+04'),(275,2,16200,0,'+0430'),(276,0,38076,0,'LMT'),(276,1,39600,0,'+11'),(276,2,46800,1,'+13'),(276,3,43200,0,'+12'),(276,4,43200,0,'+12'),(276,5,46800,1,'+13'),(276,6,43200,1,'+12'),(276,7,39600,0,'+11'),(276,8,43200,0,'+12'),(277,0,16092,0,'LMT'),(277,1,19800,0,'+0530'),(277,2,23400,1,'+0630'),(277,3,18000,0,'+05'),(277,4,21600,1,'PKST'),(277,5,18000,0,'PKT'),(278,0,21020,0,'LMT'),(278,1,21600,0,'+06'),(279,0,20476,0,'LMT'),(279,1,19800,0,'+0530'),(279,2,20700,0,'+0545'),(280,0,20476,0,'LMT'),(280,1,19800,0,'+0530'),(280,2,20700,0,'+0545'),(281,0,32533,0,'LMT'),(281,1,28800,0,'+08'),(281,2,36000,1,'+10'),(281,3,32400,0,'+09'),(281,4,32400,0,'+09'),(281,5,36000,1,'+10'),(281,6,32400,1,'+09'),(281,7,28800,0,'+08'),(281,8,39600,1,'+11'),(281,9,36000,0,'+10'),(281,10,36000,0,'+10'),(281,11,39600,0,'+11'),(281,12,32400,0,'+09'),(282,0,21200,0,'HMT'),(282,1,19270,0,'MMT'),(282,2,19800,0,'IST'),(282,3,23400,1,'+0630'),(283,0,22286,0,'LMT'),(283,1,21600,0,'+06'),(283,2,28800,1,'+08'),(283,3,25200,0,'+07'),(283,4,25200,0,'+07'),(283,5,28800,1,'+08'),(283,6,25200,1,'+07'),(283,7,21600,0,'+06'),(283,8,28800,0,'+08'),(283,9,28800,1,'+08'),(283,10,25200,0,'+07'),(284,0,24406,0,'LMT'),(284,1,24925,0,'SMT'),(284,2,25200,0,'+07'),(284,3,26400,1,'+0720'),(284,4,26400,0,'+0720'),(284,5,27000,0,'+0730'),(284,6,32400,0,'+09'),(284,7,28800,0,'+08'),(285,0,26480,0,'LMT'),(285,1,27000,0,'+0730'),(285,2,30000,1,'+0820'),(285,3,28800,0,'+08'),(285,4,32400,0,'+09'),(285,5,28800,0,'+08'),(286,0,11212,0,'LMT'),(286,1,10800,0,'+03'),(287,0,27250,0,'LMT'),(287,1,28800,0,'CST'),(287,2,36000,1,'+10'),(287,3,32400,0,'+09'),(287,4,32400,1,'CDT'),(287,5,28800,0,'CST'),(287,6,32400,1,'CDT'),(288,0,27250,0,'LMT'),(288,1,28800,0,'CST'),(288,2,36000,1,'+10'),(288,3,32400,0,'+09'),(288,4,32400,1,'CDT'),(288,5,28800,0,'CST'),(288,6,32400,1,'CDT'),(289,0,36192,0,'LMT'),(289,1,36000,0,'+10'),(289,2,43200,1,'+12'),(289,3,39600,0,'+11'),(289,4,39600,0,'+11'),(289,5,43200,1,'+12'),(289,6,39600,1,'+11'),(289,7,36000,0,'+10'),(289,8,43200,0,'+12'),(289,9,43200,1,'+12'),(289,10,39600,0,'+11'),(290,0,28656,0,'LMT'),(290,1,28656,0,'MMT'),(290,2,28800,0,'+08'),(290,3,32400,0,'+09'),(290,4,28800,0,'WITA'),(291,0,29040,0,'LMT'),(291,1,32400,1,'PDT'),(291,2,28800,0,'PST'),(291,3,32400,0,'JST'),(291,4,28800,0,'PST'),(292,0,13272,0,'LMT'),(292,1,14400,0,'+04'),(293,0,8008,0,'LMT'),(293,1,10800,1,'EEST'),(293,2,7200,0,'EET'),(293,3,7200,0,'EET'),(293,4,10800,1,'EEST'),(294,0,20928,0,'LMT'),(294,1,21600,0,'+06'),(294,2,28800,1,'+08'),(294,3,25200,0,'+07'),(294,4,25200,0,'+07'),(294,5,28800,1,'+08'),(294,6,25200,1,'+07'),(294,7,21600,0,'+06'),(294,8,25200,0,'+07'),(295,0,19900,0,'LMT'),(295,1,21600,0,'+06'),(295,2,28800,1,'+08'),(295,3,25200,0,'+07'),(295,4,25200,0,'+07'),(295,5,28800,1,'+08'),(295,6,25200,1,'+07'),(295,7,21600,0,'+06'),(295,8,25200,1,'+07'),(295,9,25200,0,'+07'),(296,0,17610,0,'LMT'),(296,1,18000,0,'+05'),(296,2,25200,1,'+07'),(296,3,21600,0,'+06'),(296,4,21600,0,'+06'),(296,5,25200,1,'+07'),(296,6,21600,1,'+06'),(296,7,18000,0,'+05'),(296,8,25200,0,'+07'),(296,9,25200,1,'+07'),(296,10,21600,0,'+06'),(297,0,12324,0,'LMT'),(297,1,10800,0,'+03'),(297,2,18000,0,'+05'),(297,3,21600,1,'+06'),(297,4,21600,0,'+06'),(297,5,18000,0,'+05'),(297,6,21600,1,'+06'),(297,7,18000,1,'+05'),(297,8,14400,0,'+04'),(297,9,18000,0,'+05'),(298,0,24124,0,'LMT'),(298,1,24124,0,'BMT'),(298,2,25200,0,'+07'),(299,0,26240,0,'LMT'),(299,1,26240,0,'PMT'),(299,2,27000,0,'+0730'),(299,3,32400,0,'+09'),(299,4,28800,0,'+08'),(299,5,28800,0,'WITA'),(299,6,25200,0,'WIB'),(300,0,30180,0,'LMT'),(300,1,30600,0,'KST'),(300,2,32400,0,'JST'),(300,3,32400,0,'KST'),(301,0,12368,0,'LMT'),(301,1,14400,0,'+04'),(301,2,10800,0,'+03'),(302,0,15268,0,'LMT'),(302,1,14400,0,'+04'),(302,2,18000,0,'+05'),(302,3,21600,1,'+06'),(302,4,21600,0,'+06'),(302,5,18000,0,'+05'),(302,6,21600,1,'+06'),(302,7,18000,1,'+05'),(302,8,14400,0,'+04'),(302,9,21600,0,'+06'),(302,10,21600,1,'+06'),(303,0,15712,0,'LMT'),(303,1,14400,0,'+04'),(303,2,18000,0,'+05'),(303,3,21600,1,'+06'),(303,4,21600,0,'+06'),(303,5,18000,0,'+05'),(303,6,21600,1,'+06'),(303,7,18000,1,'+05'),(303,8,14400,0,'+04'),(303,9,21600,0,'+06'),(303,10,21600,1,'+06'),(303,11,18000,0,'+05'),(304,0,23087,0,'LMT'),(304,1,23087,0,'RMT'),(304,2,23400,0,'+0630'),(304,3,32400,0,'+09'),(304,4,23400,0,'+0630'),(305,0,11212,0,'LMT'),(305,1,10800,0,'+03'),(306,0,25600,0,'LMT'),(306,1,25590,0,'PLMT'),(306,2,25200,0,'+07'),(306,3,28800,0,'+08'),(306,4,32400,0,'+09'),(306,5,25200,0,'+07'),(307,0,34248,0,'LMT'),(307,1,32400,0,'+09'),(307,2,43200,1,'+12'),(307,3,39600,0,'+11'),(307,4,39600,0,'+11'),(307,5,43200,1,'+12'),(307,6,39600,1,'+11'),(307,7,36000,0,'+10'),(307,8,39600,0,'+11'),(308,0,16073,0,'LMT'),(308,1,14400,0,'+04'),(308,2,18000,0,'+05'),(308,3,21600,1,'+06'),(308,4,21600,0,'+06'),(308,5,18000,0,'+05'),(308,6,21600,1,'+06'),(309,0,30472,0,'LMT'),(309,1,30600,0,'KST'),(309,2,32400,0,'JST'),(309,3,36000,1,'KDT'),(309,4,32400,0,'KST'),(309,5,34200,1,'KDT'),(309,6,36000,1,'KDT'),(310,0,29143,0,'LMT'),(310,1,32400,1,'CDT'),(310,2,28800,0,'CST'),(311,0,24925,0,'LMT'),(311,1,24925,0,'SMT'),(311,2,25200,0,'+07'),(311,3,26400,1,'+0720'),(311,4,26400,0,'+0720'),(311,5,27000,0,'+0730'),(311,6,32400,0,'+09'),(311,7,28800,0,'+08'),(312,0,36892,0,'LMT'),(312,1,36000,0,'+10'),(312,2,43200,1,'+12'),(312,3,39600,0,'+11'),(312,4,39600,0,'+11'),(312,5,43200,1,'+12'),(312,6,39600,1,'+11'),(312,7,36000,0,'+10'),(312,8,43200,0,'+12'),(312,9,43200,1,'+12'),(312,10,39600,0,'+11'),(313,0,29160,0,'LMT'),(313,1,28800,0,'CST'),(313,2,32400,0,'JST'),(313,3,32400,1,'CDT'),(313,4,28800,0,'CST'),(314,0,16631,0,'LMT'),(314,1,18000,0,'+05'),(314,2,25200,1,'+07'),(314,3,21600,0,'+06'),(314,4,21600,0,'+06'),(314,5,25200,1,'+07'),(314,6,21600,1,'+06'),(314,7,18000,0,'+05'),(315,0,10751,0,'LMT'),(315,1,10751,0,'TBMT'),(315,2,10800,0,'+03'),(315,3,18000,1,'+05'),(315,4,14400,0,'+04'),(315,5,14400,0,'+04'),(315,6,18000,1,'+05'),(315,7,14400,1,'+04'),(315,8,10800,0,'+03'),(315,9,14400,1,'+04'),(315,10,14400,0,'+04'),(316,0,12344,0,'LMT'),(316,1,12344,0,'TMT'),(316,2,12600,0,'+0330'),(316,3,18000,1,'+05'),(316,4,14400,0,'+04'),(316,5,16200,1,'+0430'),(316,6,12600,0,'+0330'),(317,0,8454,0,'LMT'),(317,1,8440,0,'JMT'),(317,2,10800,1,'IDT'),(317,3,7200,0,'IST'),(317,4,14400,1,'IDDT'),(317,5,10800,1,'IDT'),(318,0,21516,0,'LMT'),(318,1,19800,0,'+0530'),(318,2,21600,0,'+06'),(319,0,21516,0,'LMT'),(319,1,19800,0,'+0530'),(319,2,21600,0,'+06'),(320,0,33539,0,'LMT'),(320,1,36000,1,'JDT'),(320,2,32400,0,'JST'),(320,3,32400,0,'JST'),(321,0,20391,0,'LMT'),(321,1,21600,0,'+06'),(321,2,28800,1,'+08'),(321,3,25200,0,'+07'),(321,4,25200,0,'+07'),(321,5,28800,1,'+08'),(321,6,25200,1,'+07'),(321,7,21600,0,'+06'),(321,8,25200,1,'+07'),(321,9,25200,0,'+07'),(322,0,28656,0,'LMT'),(322,1,28656,0,'MMT'),(322,2,28800,0,'+08'),(322,3,32400,0,'+09'),(322,4,28800,0,'WITA'),(323,0,25652,0,'LMT'),(323,1,25200,0,'+07'),(323,2,32400,1,'+09'),(323,3,28800,0,'+08'),(324,0,25652,0,'LMT'),(324,1,25200,0,'+07'),(324,2,32400,1,'+09'),(324,3,28800,0,'+08'),(325,0,21020,0,'LMT'),(325,1,21600,0,'+06'),(326,0,34374,0,'LMT'),(326,1,28800,0,'+08'),(326,2,32400,0,'+09'),(326,3,39600,0,'+11'),(326,4,43200,1,'+12'),(326,5,39600,0,'+11'),(326,6,43200,1,'+12'),(326,7,39600,1,'+11'),(326,8,36000,0,'+10'),(326,9,43200,0,'+12'),(326,10,43200,1,'+12'),(326,11,36000,0,'+10'),(327,0,24124,0,'LMT'),(327,1,24124,0,'BMT'),(327,2,25200,0,'+07'),(328,0,31651,0,'LMT'),(328,1,32400,0,'+09'),(328,2,39600,1,'+11'),(328,3,36000,0,'+10'),(328,4,36000,0,'+10'),(328,5,39600,1,'+11'),(328,6,36000,1,'+10'),(328,7,32400,0,'+09'),(328,8,39600,0,'+11'),(328,9,39600,1,'+11'),(328,10,36000,0,'+10'),(329,0,31138,0,'LMT'),(329,1,28800,0,'+08'),(329,2,36000,1,'+10'),(329,3,32400,0,'+09'),(329,4,32400,0,'+09'),(329,5,36000,1,'+10'),(329,6,32400,1,'+09'),(329,7,28800,0,'+08'),(329,8,36000,0,'+10'),(329,9,36000,1,'+10'),(329,10,32400,0,'+09'),(330,0,23087,0,'LMT'),(330,1,23087,0,'RMT'),(330,2,23400,0,'+0630'),(330,3,32400,0,'+09'),(330,4,23400,0,'+0630'),(331,0,14553,0,'LMT'),(331,1,13505,0,'PMT'),(331,2,14400,0,'+04'),(331,3,21600,1,'+06'),(331,4,18000,0,'+05'),(331,5,18000,0,'+05'),(331,6,21600,1,'+06'),(331,7,18000,1,'+05'),(331,8,14400,0,'+04'),(331,9,21600,0,'+06'),(331,10,21600,1,'+06'),(331,11,18000,0,'+05'),(332,0,10680,0,'LMT'),(332,1,10800,0,'+03'),(332,2,18000,1,'+05'),(332,3,14400,0,'+04'),(332,4,14400,0,'+04'),(332,5,18000,1,'+05'),(332,6,14400,1,'+04'),(332,7,10800,0,'+03'),(332,8,18000,1,'+05'),(332,9,14400,0,'+04'),(333,0,-6160,0,'LMT'),(333,1,-6872,0,'HMT'),(333,2,-3600,1,'-01'),(333,3,-7200,0,'-02'),(333,4,-3600,1,'-01'),(333,5,-7200,0,'-02'),(333,6,-7200,0,'-02'),(333,7,0,1,'+00'),(333,8,-3600,0,'-01'),(333,9,-3600,0,'-01'),(333,10,0,0,'WET'),(333,11,0,1,'+00'),(333,12,-3600,0,'-01'),(334,0,-15558,0,'LMT'),(334,1,-14400,0,'AST'),(334,2,-10800,1,'ADT'),(335,0,-3696,0,'LMT'),(335,1,-3600,0,'-01'),(335,2,0,0,'WET'),(335,3,3600,1,'WEST'),(335,4,0,0,'WET'),(335,5,3600,1,'WEST'),(336,0,-5644,0,'LMT'),(336,1,-7200,0,'-02'),(336,2,-3600,1,'-01'),(336,3,-7200,0,'-02'),(336,4,-3600,0,'-01'),(337,0,-1624,0,'LMT'),(337,1,0,0,'WET'),(337,2,3600,1,'WEST'),(337,3,0,0,'WET'),(338,0,-1624,0,'LMT'),(338,1,0,0,'WET'),(338,2,3600,1,'WEST'),(338,3,0,0,'WET'),(339,0,2580,0,'LMT'),(339,1,7200,1,'CEST'),(339,2,3600,0,'CET'),(339,3,3600,0,'CET'),(339,4,7200,1,'CEST'),(339,5,7200,1,'CEST'),(339,6,3600,0,'CET'),(340,0,-4056,0,'LMT'),(340,1,-4056,0,'FMT'),(340,2,0,1,'+00'),(340,3,-3600,0,'-01'),(340,4,0,1,'+00'),(340,5,-3600,0,'-01'),(340,6,-3600,0,'-01'),(340,7,3600,1,'+01'),(340,8,3600,1,'WEST'),(340,9,0,0,'WET'),(340,10,0,0,'WET'),(340,11,0,0,'WET'),(340,12,3600,1,'WEST'),(341,0,-5280,0,'LMT'),(341,1,0,1,'+00'),(341,2,-3600,0,'-01'),(341,3,-3600,0,'-01'),(341,4,0,1,'+00'),(341,5,0,0,'GMT'),(342,0,-7200,0,'-02'),(343,0,-968,0,'LMT'),(343,1,0,0,'GMT'),(344,0,-13884,0,'LMT'),(344,1,-13884,0,'SMT'),(344,2,-10800,1,'-03'),(344,3,-14400,0,'-04'),(344,4,-7200,1,'-02'),(344,5,-10800,0,'-03'),(344,6,-10800,1,'-03'),(345,0,36292,0,'LMT'),(345,1,39600,1,'AEDT'),(345,2,36000,0,'AEST'),(345,3,39600,1,'AEDT'),(345,4,36000,0,'AEST'),(346,0,32400,0,'ACST'),(346,1,37800,1,'ACDT'),(346,2,34200,0,'ACST'),(346,3,37800,1,'ACDT'),(346,4,34200,0,'ACST'),(347,0,36728,0,'LMT'),(347,1,39600,1,'AEDT'),(347,2,36000,0,'AEST'),(347,3,39600,1,'AEDT'),(347,4,36000,0,'AEST'),(348,0,32400,0,'ACST'),(348,1,37800,1,'ACDT'),(348,2,34200,0,'ACST'),(348,3,37800,1,'ACDT'),(348,4,34200,0,'ACST'),(349,0,36292,0,'LMT'),(349,1,39600,1,'AEDT'),(349,2,36000,0,'AEST'),(349,3,39600,1,'AEDT'),(349,4,36000,0,'AEST'),(350,0,34528,0,'LMT'),(350,1,36000,0,'AEST'),(350,2,39600,1,'AEDT'),(350,3,39600,1,'AEDT'),(350,4,36000,0,'AEST'),(351,0,32400,0,'ACST'),(351,1,37800,1,'ACDT'),(351,2,34200,0,'ACST'),(352,0,30928,0,'LMT'),(352,1,35100,1,'+0945'),(352,2,31500,0,'+0845'),(352,3,35100,1,'+0945'),(352,4,31500,0,'+0845'),(353,0,35356,0,'LMT'),(353,1,36000,0,'AEST'),(353,2,39600,1,'AEDT'),(353,3,39600,1,'AEDT'),(353,4,36000,0,'AEST'),(354,0,38180,0,'LMT'),(354,1,36000,0,'AEST'),(354,2,41400,1,'+1130'),(354,3,37800,0,'+1030'),(354,4,39600,1,'+11'),(355,0,35756,0,'LMT'),(355,1,39600,1,'AEDT'),(355,2,36000,0,'AEST'),(355,3,39600,1,'AEDT'),(355,4,36000,0,'AEST'),(356,0,38180,0,'LMT'),(356,1,36000,0,'AEST'),(356,2,41400,1,'+1130'),(356,3,37800,0,'+1030'),(356,4,39600,1,'+11'),(357,0,34792,0,'LMT'),(357,1,39600,1,'AEDT'),(357,2,36000,0,'AEST'),(357,3,39600,1,'AEDT'),(357,4,36000,0,'AEST'),(358,0,36292,0,'LMT'),(358,1,39600,1,'AEDT'),(358,2,36000,0,'AEST'),(358,3,39600,1,'AEDT'),(358,4,36000,0,'AEST'),(359,0,32400,0,'ACST'),(359,1,37800,1,'ACDT'),(359,2,34200,0,'ACST'),(360,0,27804,0,'LMT'),(360,1,32400,1,'AWDT'),(360,2,28800,0,'AWST'),(360,3,32400,1,'AWDT'),(360,4,28800,0,'AWST'),(361,0,36728,0,'LMT'),(361,1,39600,1,'AEDT'),(361,2,36000,0,'AEST'),(361,3,39600,1,'AEDT'),(361,4,36000,0,'AEST'),(362,0,32400,0,'ACST'),(362,1,37800,1,'ACDT'),(362,2,34200,0,'ACST'),(362,3,37800,1,'ACDT'),(362,4,34200,0,'ACST'),(363,0,36292,0,'LMT'),(363,1,39600,1,'AEDT'),(363,2,36000,0,'AEST'),(363,3,39600,1,'AEDT'),(363,4,36000,0,'AEST'),(364,0,35356,0,'LMT'),(364,1,36000,0,'AEST'),(364,2,39600,1,'AEDT'),(364,3,39600,1,'AEDT'),(364,4,36000,0,'AEST'),(365,0,34792,0,'LMT'),(365,1,39600,1,'AEDT'),(365,2,36000,0,'AEST'),(365,3,39600,1,'AEDT'),(365,4,36000,0,'AEST'),(366,0,27804,0,'LMT'),(366,1,32400,1,'AWDT'),(366,2,28800,0,'AWST'),(366,3,32400,1,'AWDT'),(366,4,28800,0,'AWST'),(367,0,32400,0,'ACST'),(367,1,37800,1,'ACDT'),(367,2,34200,0,'ACST'),(367,3,37800,1,'ACDT'),(367,4,34200,0,'ACST'),(368,0,-16272,0,'LMT'),(368,1,-14400,1,'-04'),(368,2,-18000,0,'-05'),(368,3,-14400,0,'-04'),(368,4,-18000,0,'-05'),(369,0,-7780,0,'LMT'),(369,1,-3600,1,'-01'),(369,2,-7200,0,'-02'),(370,0,-11188,0,'LMT'),(370,1,-7200,1,'-02'),(370,2,-10800,0,'-03'),(371,0,-14404,0,'LMT'),(371,1,-10800,1,'-03'),(371,2,-14400,0,'-04'),(372,0,7200,1,'CEST'),(372,1,3600,0,'CET'),(372,2,7200,1,'CEST'),(372,3,3600,0,'CET'),(373,0,-18000,1,'CDT'),(373,1,-21600,0,'CST'),(373,2,-18000,1,'CWT'),(373,3,-18000,1,'CPT'),(374,0,-15264,0,'LMT'),(374,1,-10800,1,'ADT'),(374,2,-14400,0,'AST'),(374,3,-10800,1,'AWT'),(374,4,-10800,1,'APT'),(375,0,-23316,0,'LMT'),(375,1,-18000,1,'CDT'),(375,2,-21600,0,'CST'),(375,3,-18000,1,'CWT'),(375,4,-18000,1,'CPT'),(375,5,-18000,1,'CDT'),(375,6,-21600,0,'CST'),(376,0,-19052,0,'LMT'),(376,1,-14400,1,'EDT'),(376,2,-18000,0,'EST'),(376,3,-14400,1,'EWT'),(376,4,-14400,1,'EPT'),(377,0,-27232,0,'LMT'),(377,1,-21600,1,'MDT'),(377,2,-25200,0,'MST'),(377,3,-21600,1,'MWT'),(377,4,-21600,1,'MPT'),(378,0,-12652,0,'LMT'),(378,1,-9052,1,'NDT'),(378,2,-12652,0,'NST'),(378,3,-9000,1,'NDT'),(378,4,-12600,0,'NST'),(378,5,-9000,1,'NPT'),(378,6,-9000,1,'NWT'),(378,7,-5400,1,'NDDT'),(378,8,-9000,1,'NDT'),(379,0,-29548,0,'LMT'),(379,1,-25200,1,'PDT'),(379,2,-28800,0,'PST'),(379,3,-25200,1,'PWT'),(379,4,-25200,1,'PPT'),(380,0,-25116,0,'LMT'),(380,1,-21600,1,'MDT'),(380,2,-25200,0,'MST'),(380,3,-21600,1,'MWT'),(380,4,-21600,1,'MPT'),(380,5,-21600,0,'CST'),(381,0,-32412,0,'LMT'),(381,1,-28800,1,'YDT'),(381,2,-32400,0,'YST'),(381,3,-28800,1,'YWT'),(381,4,-28800,1,'YPT'),(381,5,-25200,1,'YDDT'),(381,6,-28800,0,'PST'),(381,7,-25200,1,'PDT'),(382,0,-16966,0,'LMT'),(382,1,-16966,0,'SMT'),(382,2,-18000,0,'-05'),(382,3,-14400,0,'-04'),(382,4,-14400,1,'-04'),(382,5,-10800,1,'-03'),(382,6,-10800,1,'-03'),(382,7,-14400,0,'-04'),(383,0,-26248,0,'LMT'),(383,1,-26248,0,'EMT'),(383,2,-21600,1,'-06'),(383,3,-25200,0,'-07'),(383,4,-25200,0,'-07'),(383,5,-21600,0,'-06'),(383,6,-18000,1,'-05'),(384,0,-19768,0,'LMT'),(384,1,-19776,0,'HMT'),(384,2,-14400,1,'CDT'),(384,3,-18000,0,'CST'),(384,4,-18000,0,'CST'),(384,5,-14400,1,'CDT'),(385,0,10800,1,'EEST'),(385,1,7200,0,'EET'),(386,0,-18000,0,'EST'),(387,0,-14400,1,'EDT'),(387,1,-18000,0,'EST'),(387,2,-14400,1,'EWT'),(387,3,-14400,1,'EPT'),(388,0,7509,0,'LMT'),(388,1,10800,1,'EEST'),(388,2,7200,0,'EET'),(388,3,10800,1,'EEST'),(389,0,-1500,0,'LMT'),(389,1,-1521,0,'DMT'),(389,2,2079,1,'IST'),(389,3,3600,1,'BST'),(389,4,0,0,'GMT'),(389,5,3600,1,'IST'),(389,6,0,0,'GMT'),(389,7,0,1,'GMT'),(389,8,3600,0,'IST'),(389,9,3600,0,'IST'),(390,0,0,0,'GMT'),(391,0,0,0,'GMT'),(392,0,-3600,0,'-01'),(393,0,-36000,0,'-10'),(394,0,-39600,0,'-11'),(395,0,-43200,0,'-12'),(396,0,-7200,0,'-02'),(397,0,-10800,0,'-03'),(398,0,-14400,0,'-04'),(399,0,-18000,0,'-05'),(400,0,-21600,0,'-06'),(401,0,-25200,0,'-07'),(402,0,-28800,0,'-08'),(403,0,-32400,0,'-09'),(404,0,0,0,'GMT'),(405,0,3600,0,'+01'),(406,0,36000,0,'+10'),(407,0,39600,0,'+11'),(408,0,43200,0,'+12'),(409,0,46800,0,'+13'),(410,0,50400,0,'+14'),(411,0,7200,0,'+02'),(412,0,10800,0,'+03'),(413,0,14400,0,'+04'),(414,0,18000,0,'+05'),(415,0,21600,0,'+06'),(416,0,25200,0,'+07'),(417,0,28800,0,'+08'),(418,0,32400,0,'+09'),(419,0,0,0,'GMT'),(420,0,0,0,'GMT'),(421,0,0,0,'UTC'),(422,0,0,0,'UTC'),(423,0,0,0,'UTC'),(424,0,0,0,'UTC'),(425,0,1172,0,'LMT'),(425,1,4772,1,'NST'),(425,2,1172,0,'AMT'),(425,3,4772,1,'NST'),(425,4,1172,0,'AMT'),(425,5,1200,0,'+0020'),(425,6,4800,1,'+0120'),(425,7,4800,1,'+0120'),(425,8,3600,0,'CET'),(425,9,7200,1,'CEST'),(425,10,7200,1,'CEST'),(425,11,7200,1,'CEST'),(425,12,3600,0,'CET'),(425,13,3600,0,'CET'),(426,0,364,0,'LMT'),(426,1,0,0,'WET'),(426,2,3600,0,'CET'),(426,3,7200,1,'CEST'),(426,4,3600,0,'CET'),(427,0,11532,0,'LMT'),(427,1,10800,0,'+03'),(427,2,18000,1,'+05'),(427,3,14400,0,'+04'),(427,4,14400,0,'+04'),(427,5,18000,1,'+05'),(427,6,14400,1,'+04'),(427,7,10800,0,'+03'),(427,8,14400,0,'+04'),(428,0,5692,0,'LMT'),(428,1,5692,0,'AMT'),(428,2,10800,1,'EEST'),(428,3,7200,0,'EET'),(428,4,3600,0,'CET'),(428,5,7200,1,'CEST'),(428,6,10800,1,'EEST'),(428,7,7200,0,'EET'),(428,8,10800,1,'EEST'),(428,9,7200,0,'EET'),(429,0,-75,0,'LMT'),(429,1,3600,1,'BST'),(429,2,0,0,'GMT'),(429,3,7200,1,'BDST'),(429,4,3600,0,'BST'),(429,5,3600,1,'BST'),(429,6,0,0,'GMT'),(429,7,0,0,'GMT'),(430,0,4920,0,'LMT'),(430,1,3600,0,'CET'),(430,2,3600,0,'CET'),(430,3,7200,1,'CEST'),(430,4,7200,1,'CEST'),(430,5,7200,1,'CEST'),(430,6,3600,0,'CET'),(431,0,3208,0,'LMT'),(431,1,7200,1,'CEST'),(431,2,3600,0,'CET'),(431,3,7200,1,'CEST'),(431,4,3600,0,'CET'),(431,5,10800,1,'CEMT'),(431,6,10800,1,'CEMT'),(431,7,7200,1,'CEST'),(431,8,3600,0,'CET'),(432,0,3464,0,'PMT'),(432,1,7200,1,'CEST'),(432,2,3600,0,'CET'),(432,3,7200,1,'CEST'),(432,4,3600,0,'CET'),(432,5,0,1,'GMT'),(432,6,7200,1,'CEST'),(432,7,3600,0,'CET'),(433,0,1050,0,'BMT'),(433,1,0,0,'WET'),(433,2,3600,0,'CET'),(433,3,7200,1,'CEST'),(433,4,3600,0,'CET'),(433,5,7200,1,'CEST'),(433,6,3600,1,'WEST'),(433,7,0,0,'WET'),(433,8,0,0,'WET'),(433,9,7200,1,'CEST'),(433,10,3600,0,'CET'),(434,0,6264,0,'LMT'),(434,1,6264,0,'BMT'),(434,2,10800,1,'EEST'),(434,3,7200,0,'EET'),(434,4,10800,1,'EEST'),(434,5,7200,0,'EET'),(434,6,10800,1,'EEST'),(434,7,7200,0,'EET'),(435,0,4580,0,'LMT'),(435,1,7200,1,'CEST'),(435,2,3600,0,'CET'),(435,3,7200,1,'CEST'),(435,4,3600,0,'CET'),(435,5,3600,0,'CET'),(435,6,7200,1,'CEST'),(436,0,1786,0,'BMT'),(436,1,7200,1,'CEST'),(436,2,3600,0,'CET'),(436,3,7200,1,'CEST'),(436,4,3600,0,'CET'),(437,0,6920,0,'LMT'),(437,1,6900,0,'CMT'),(437,2,6264,0,'BMT'),(437,3,10800,1,'EEST'),(437,4,7200,0,'EET'),(437,5,7200,0,'EET'),(437,6,10800,1,'EEST'),(437,7,3600,0,'CET'),(437,8,7200,1,'CEST'),(437,9,7200,1,'CEST'),(437,10,14400,1,'MSD'),(437,11,10800,0,'MSK'),(437,12,10800,0,'MSK'),(437,13,14400,1,'MSD'),(437,14,10800,1,'EEST'),(437,15,7200,0,'EET'),(438,0,3020,0,'CMT'),(438,1,7200,1,'CEST'),(438,2,3600,0,'CET'),(438,3,3600,0,'CET'),(438,4,7200,1,'CEST'),(438,5,7200,1,'CEST'),(438,6,3600,0,'CET'),(439,0,-1500,0,'LMT'),(439,1,-1521,0,'DMT'),(439,2,2079,1,'IST'),(439,3,3600,1,'BST'),(439,4,0,0,'GMT'),(439,5,3600,1,'IST'),(439,6,0,0,'GMT'),(439,7,0,1,'GMT'),(439,8,3600,0,'IST'),(439,9,3600,0,'IST'),(440,0,-1284,0,'LMT'),(440,1,3600,1,'BST'),(440,2,0,0,'GMT'),(440,3,7200,1,'BDST'),(440,4,3600,0,'CET'),(440,5,7200,1,'CEST'),(440,6,3600,0,'CET'),(441,0,-75,0,'LMT'),(441,1,3600,1,'BST'),(441,2,0,0,'GMT'),(441,3,7200,1,'BDST'),(441,4,3600,0,'BST'),(441,5,3600,1,'BST'),(441,6,0,0,'GMT'),(441,7,0,0,'GMT'),(442,0,5989,0,'LMT'),(442,1,5989,0,'HMT'),(442,2,10800,1,'EEST'),(442,3,7200,0,'EET'),(442,4,10800,1,'EEST'),(442,5,7200,0,'EET'),(443,0,-75,0,'LMT'),(443,1,3600,1,'BST'),(443,2,0,0,'GMT'),(443,3,7200,1,'BDST'),(443,4,3600,0,'BST'),(443,5,3600,1,'BST'),(443,6,0,0,'GMT'),(443,7,0,0,'GMT'),(444,0,6952,0,'LMT'),(444,1,7016,0,'IMT'),(444,2,10800,1,'EEST'),(444,3,7200,0,'EET'),(444,4,10800,0,'+03'),(444,5,14400,1,'+04'),(444,6,10800,1,'EEST'),(444,7,7200,0,'EET'),(444,8,10800,1,'EEST'),(444,9,7200,0,'EET'),(444,10,10800,0,'+03'),(445,0,-75,0,'LMT'),(445,1,3600,1,'BST'),(445,2,0,0,'GMT'),(445,3,7200,1,'BDST'),(445,4,3600,0,'BST'),(445,5,3600,1,'BST'),(445,6,0,0,'GMT'),(445,7,0,0,'GMT'),(446,0,4920,0,'LMT'),(446,1,7200,1,'CEST'),(446,2,3600,0,'CET'),(446,3,7200,1,'CEST'),(446,4,3600,0,'CET'),(446,5,10800,1,'EEST'),(446,6,7200,0,'EET'),(446,7,14400,1,'MSD'),(446,8,10800,0,'MSK'),(446,9,10800,0,'MSK'),(446,10,14400,1,'MSD'),(446,11,10800,1,'EEST'),(446,12,7200,0,'EET'),(446,13,10800,0,'+03'),(446,14,7200,0,'EET'),(447,0,7324,0,'LMT'),(447,1,7324,0,'KMT'),(447,2,7200,0,'EET'),(447,3,10800,0,'MSK'),(447,4,3600,0,'CET'),(447,5,7200,1,'CEST'),(447,6,7200,1,'CEST'),(447,7,14400,1,'MSD'),(447,8,10800,0,'MSK'),(447,9,14400,1,'MSD'),(447,10,10800,1,'EEST'),(447,11,10800,1,'EEST'),(447,12,7200,0,'EET'),(448,0,11928,0,'LMT'),(448,1,10800,0,'+03'),(448,2,18000,1,'+05'),(448,3,14400,0,'+04'),(448,4,14400,0,'+04'),(448,5,18000,1,'+05'),(448,6,14400,1,'+04'),(448,7,10800,0,'+03'),(449,0,-2205,0,'LMT'),(449,1,3600,1,'WEST'),(449,2,0,0,'WET'),(449,3,3600,1,'WEST'),(449,4,0,0,'WET'),(449,5,7200,1,'WEMT'),(449,6,0,0,'WET'),(449,7,3600,0,'CET'),(449,8,3600,0,'CET'),(449,9,7200,1,'CEST'),(449,10,3600,1,'WEST'),(449,11,0,0,'WET'),(450,0,4920,0,'LMT'),(450,1,3600,0,'CET'),(450,2,3600,0,'CET'),(450,3,7200,1,'CEST'),(450,4,7200,1,'CEST'),(450,5,7200,1,'CEST'),(450,6,3600,0,'CET'),(451,0,-75,0,'LMT'),(451,1,3600,1,'BST'),(451,2,0,0,'GMT'),(451,3,7200,1,'BDST'),(451,4,3600,0,'BST'),(451,5,3600,1,'BST'),(451,6,0,0,'GMT'),(451,7,0,0,'GMT'),(452,0,1476,0,'LMT'),(452,1,7200,1,'CEST'),(452,2,3600,0,'CET'),(452,3,7200,1,'CEST'),(452,4,3600,0,'CET'),(452,5,3600,1,'WEST'),(452,6,0,0,'WET'),(452,7,0,0,'WET'),(452,8,3600,1,'WEST'),(452,9,3600,0,'WET'),(452,10,7200,1,'WEST'),(452,11,7200,1,'WEST'),(452,12,7200,1,'CEST'),(452,13,3600,0,'CET'),(453,0,-884,0,'LMT'),(453,1,3600,1,'WEST'),(453,2,0,0,'WET'),(453,3,7200,1,'WEMT'),(453,4,0,0,'WET'),(453,5,7200,1,'CEST'),(453,6,3600,0,'CET'),(453,7,7200,1,'CEST'),(453,8,3600,0,'CET'),(453,9,7200,1,'CEST'),(453,10,3600,0,'CET'),(454,0,3484,0,'LMT'),(454,1,7200,1,'CEST'),(454,2,3600,0,'CET'),(454,3,3600,0,'CET'),(454,4,7200,1,'CEST'),(454,5,7200,1,'CEST'),(454,6,3600,0,'CET'),(455,0,5989,0,'LMT'),(455,1,5989,0,'HMT'),(455,2,10800,1,'EEST'),(455,3,7200,0,'EET'),(455,4,10800,1,'EEST'),(455,5,7200,0,'EET'),(456,0,6616,0,'LMT'),(456,1,6600,0,'MMT'),(456,2,7200,0,'EET'),(456,3,10800,0,'MSK'),(456,4,3600,0,'CET'),(456,5,7200,1,'CEST'),(456,6,7200,1,'CEST'),(456,7,14400,1,'MSD'),(456,8,10800,0,'MSK'),(456,9,14400,1,'MSD'),(456,10,10800,1,'EEST'),(456,11,7200,0,'EET'),(456,12,10800,0,'+03'),(457,0,1772,0,'LMT'),(457,1,561,0,'PMT'),(457,2,3600,1,'WEST'),(457,3,0,0,'WET'),(457,4,3600,1,'WEST'),(457,5,7200,1,'WEMT'),(457,6,0,0,'WET'),(457,7,7200,1,'CEST'),(457,8,3600,0,'CET'),(457,9,7200,1,'CEST'),(457,10,3600,0,'CET'),(458,0,9017,0,'LMT'),(458,1,9017,0,'MMT'),(458,2,12679,1,'MST'),(458,3,9079,0,'MMT'),(458,4,16279,1,'MDST'),(458,5,14400,1,'MSD'),(458,6,10800,0,'MSK'),(458,7,14400,1,'MSD'),(458,8,18000,1,'+05'),(458,9,7200,0,'EET'),(458,10,10800,0,'MSK'),(458,11,14400,1,'MSD'),(458,12,10800,1,'EEST'),(458,13,7200,0,'EET'),(458,14,14400,0,'MSK'),(458,15,14400,1,'MSD'),(458,16,10800,0,'MSK'),(459,0,8008,0,'LMT'),(459,1,10800,1,'EEST'),(459,2,7200,0,'EET'),(459,3,7200,0,'EET'),(459,4,10800,1,'EEST'),(460,0,2580,0,'LMT'),(460,1,7200,1,'CEST'),(460,2,3600,0,'CET'),(460,3,3600,0,'CET'),(460,4,7200,1,'CEST'),(460,5,7200,1,'CEST'),(460,6,3600,0,'CET'),(461,0,561,0,'LMT'),(461,1,561,0,'PMT'),(461,2,3600,1,'WEST'),(461,3,0,0,'WET'),(461,4,3600,1,'WEST'),(461,5,0,0,'WET'),(461,6,3600,0,'CET'),(461,7,7200,1,'CEST'),(461,8,7200,1,'CEST'),(461,9,7200,1,'WEMT'),(461,10,3600,0,'CET'),(461,11,7200,1,'CEST'),(461,12,3600,0,'CET'),(462,0,4920,0,'LMT'),(462,1,3600,0,'CET'),(462,2,3600,0,'CET'),(462,3,7200,1,'CEST'),(462,4,7200,1,'CEST'),(462,5,7200,1,'CEST'),(462,6,3600,0,'CET'),(463,0,3464,0,'PMT'),(463,1,7200,1,'CEST'),(463,2,3600,0,'CET'),(463,3,7200,1,'CEST'),(463,4,3600,0,'CET'),(463,5,0,1,'GMT'),(463,6,7200,1,'CEST'),(463,7,3600,0,'CET'),(464,0,5794,0,'LMT'),(464,1,5794,0,'RMT'),(464,2,9394,1,'LST'),(464,3,7200,0,'EET'),(464,4,10800,0,'MSK'),(464,5,3600,0,'CET'),(464,6,7200,1,'CEST'),(464,7,7200,1,'CEST'),(464,8,14400,1,'MSD'),(464,9,10800,0,'MSK'),(464,10,14400,1,'MSD'),(464,11,10800,1,'EEST'),(464,12,7200,0,'EET'),(464,13,10800,1,'EEST'),(464,14,7200,0,'EET'),(465,0,2996,0,'RMT'),(465,1,7200,1,'CEST'),(465,2,3600,0,'CET'),(465,3,3600,0,'CET'),(465,4,7200,1,'CEST'),(465,5,7200,1,'CEST'),(465,6,3600,0,'CET'),(466,0,12020,0,'LMT'),(466,1,10800,0,'+03'),(466,2,14400,0,'+04'),(466,3,18000,1,'+05'),(466,4,14400,0,'+04'),(466,5,18000,1,'+05'),(466,6,14400,1,'+04'),(466,7,10800,0,'+03'),(466,8,10800,1,'+03'),(466,9,7200,0,'+02'),(466,10,14400,1,'+04'),(466,11,14400,0,'+04'),(467,0,2996,0,'RMT'),(467,1,7200,1,'CEST'),(467,2,3600,0,'CET'),(467,3,3600,0,'CET'),(467,4,7200,1,'CEST'),(467,5,7200,1,'CEST'),(467,6,3600,0,'CET'),(468,0,4920,0,'LMT'),(468,1,3600,0,'CET'),(468,2,3600,0,'CET'),(468,3,7200,1,'CEST'),(468,4,7200,1,'CEST'),(468,5,7200,1,'CEST'),(468,6,3600,0,'CET'),(469,0,11058,0,'LMT'),(469,1,10800,0,'+03'),(469,2,18000,1,'+05'),(469,3,14400,0,'+04'),(469,4,14400,0,'+04'),(469,5,18000,1,'+05'),(469,6,14400,1,'+04'),(469,7,10800,0,'+03'),(469,8,14400,0,'+04'),(470,0,8184,0,'LMT'),(470,1,8160,0,'SMT'),(470,2,7200,0,'EET'),(470,3,10800,0,'MSK'),(470,4,3600,0,'CET'),(470,5,7200,1,'CEST'),(470,6,7200,1,'CEST'),(470,7,14400,1,'MSD'),(470,8,10800,0,'MSK'),(470,9,14400,1,'MSD'),(470,10,10800,1,'EEST'),(470,11,10800,1,'EEST'),(470,12,7200,0,'EET'),(470,13,14400,0,'MSK'),(470,14,10800,0,'MSK'),(471,0,4920,0,'LMT'),(471,1,3600,0,'CET'),(471,2,3600,0,'CET'),(471,3,7200,1,'CEST'),(471,4,7200,1,'CEST'),(471,5,7200,1,'CEST'),(471,6,3600,0,'CET'),(472,0,7016,0,'IMT'),(472,1,7200,0,'EET'),(472,2,3600,0,'CET'),(472,3,7200,1,'CEST'),(472,4,3600,0,'CET'),(472,5,10800,1,'EEST'),(472,6,7200,0,'EET'),(472,7,10800,1,'EEST'),(472,8,10800,1,'EEST'),(472,9,7200,0,'EET'),(473,0,3614,0,'SET'),(473,1,3600,0,'CET'),(473,2,7200,1,'CEST'),(473,3,7200,1,'CEST'),(473,4,3600,0,'CET'),(474,0,5940,0,'LMT'),(474,1,5940,0,'TMT'),(474,2,7200,1,'CEST'),(474,3,3600,0,'CET'),(474,4,3600,0,'CET'),(474,5,7200,0,'EET'),(474,6,10800,0,'MSK'),(474,7,7200,1,'CEST'),(474,8,14400,1,'MSD'),(474,9,10800,0,'MSK'),(474,10,14400,1,'MSD'),(474,11,10800,1,'EEST'),(474,12,7200,0,'EET'),(474,13,7200,0,'EET'),(474,14,10800,1,'EEST'),(474,15,10800,1,'EEST'),(475,0,4760,0,'LMT'),(475,1,3600,0,'CET'),(475,2,7200,1,'CEST'),(475,3,3600,0,'CET'),(475,4,7200,1,'CEST'),(476,0,6920,0,'LMT'),(476,1,6900,0,'CMT'),(476,2,6264,0,'BMT'),(476,3,10800,1,'EEST'),(476,4,7200,0,'EET'),(476,5,7200,0,'EET'),(476,6,10800,1,'EEST'),(476,7,3600,0,'CET'),(476,8,7200,1,'CEST'),(476,9,7200,1,'CEST'),(476,10,14400,1,'MSD'),(476,11,10800,0,'MSK'),(476,12,10800,0,'MSK'),(476,13,14400,1,'MSD'),(476,14,10800,1,'EEST'),(476,15,7200,0,'EET'),(477,0,11616,0,'LMT'),(477,1,10800,0,'+03'),(477,2,18000,1,'+05'),(477,3,14400,0,'+04'),(477,4,14400,0,'+04'),(477,5,18000,1,'+05'),(477,6,14400,1,'+04'),(477,7,10800,0,'+03'),(477,8,10800,1,'+03'),(477,9,7200,0,'+02'),(477,10,14400,1,'+04'),(477,11,14400,0,'+04'),(478,0,5352,0,'LMT'),(478,1,3600,0,'CET'),(478,2,7200,1,'CEST'),(478,3,3600,0,'CET'),(478,4,7200,1,'CEST'),(478,5,14400,1,'MSD'),(478,6,10800,0,'MSK'),(478,7,10800,0,'MSK'),(478,8,14400,1,'MSD'),(478,9,7200,0,'EET'),(478,10,10800,1,'EEST'),(478,11,10800,1,'EEST'),(478,12,7200,0,'EET'),(479,0,1786,0,'BMT'),(479,1,7200,1,'CEST'),(479,2,3600,0,'CET'),(479,3,7200,1,'CEST'),(479,4,3600,0,'CET'),(480,0,2996,0,'RMT'),(480,1,7200,1,'CEST'),(480,2,3600,0,'CET'),(480,3,3600,0,'CET'),(480,4,7200,1,'CEST'),(480,5,7200,1,'CEST'),(480,6,3600,0,'CET'),(481,0,3921,0,'LMT'),(481,1,7200,1,'CEST'),(481,2,3600,0,'CET'),(481,3,7200,1,'CEST'),(481,4,3600,0,'CET'),(481,5,7200,1,'CEST'),(481,6,3600,0,'CET'),(482,0,6076,0,'LMT'),(482,1,5040,0,'WMT'),(482,2,5736,0,'KMT'),(482,3,3600,0,'CET'),(482,4,7200,0,'EET'),(482,5,10800,0,'MSK'),(482,6,3600,0,'CET'),(482,7,7200,1,'CEST'),(482,8,7200,1,'CEST'),(482,9,14400,1,'MSD'),(482,10,10800,0,'MSK'),(482,11,14400,1,'MSD'),(482,12,10800,1,'EEST'),(482,13,7200,0,'EET'),(482,14,7200,1,'CEST'),(482,15,3600,0,'CET'),(482,16,7200,0,'EET'),(482,17,10800,1,'EEST'),(483,0,10660,0,'LMT'),(483,1,10800,0,'+03'),(483,2,14400,0,'+04'),(483,3,18000,1,'+05'),(483,4,14400,0,'+04'),(483,5,18000,1,'+05'),(483,6,14400,1,'+04'),(483,7,10800,0,'+03'),(483,8,14400,0,'+04'),(484,0,5040,0,'LMT'),(484,1,5040,0,'WMT'),(484,2,7200,1,'CEST'),(484,3,3600,0,'CET'),(484,4,7200,1,'CEST'),(484,5,3600,0,'CET'),(484,6,10800,1,'EEST'),(484,7,7200,0,'EET'),(484,8,7200,0,'EET'),(484,9,7200,1,'CEST'),(484,10,3600,0,'CET'),(485,0,4920,0,'LMT'),(485,1,3600,0,'CET'),(485,2,3600,0,'CET'),(485,3,7200,1,'CEST'),(485,4,7200,1,'CEST'),(485,5,7200,1,'CEST'),(485,6,3600,0,'CET'),(486,0,8440,0,'LMT'),(486,1,8400,0,'+0220'),(486,2,7200,0,'EET'),(486,3,10800,0,'MSK'),(486,4,3600,0,'CET'),(486,5,7200,1,'CEST'),(486,6,7200,1,'CEST'),(486,7,14400,1,'MSD'),(486,8,10800,0,'MSK'),(486,9,14400,1,'MSD'),(486,10,10800,1,'EEST'),(486,11,10800,1,'EEST'),(486,12,7200,0,'EET'),(487,0,1786,0,'BMT'),(487,1,7200,1,'CEST'),(487,2,3600,0,'CET'),(487,3,7200,1,'CEST'),(487,4,3600,0,'CET'),(488,0,0,0,'-00'),(489,0,-75,0,'LMT'),(489,1,3600,1,'BST'),(489,2,0,0,'GMT'),(489,3,7200,1,'BDST'),(489,4,3600,0,'BST'),(489,5,3600,1,'BST'),(489,6,0,0,'GMT'),(489,7,0,0,'GMT'),(490,0,-75,0,'LMT'),(490,1,3600,1,'BST'),(490,2,0,0,'GMT'),(490,3,7200,1,'BDST'),(490,4,3600,0,'BST'),(490,5,3600,1,'BST'),(490,6,0,0,'GMT'),(490,7,0,0,'GMT'),(491,0,0,0,'GMT'),(492,0,0,0,'GMT'),(493,0,0,0,'GMT'),(494,0,0,0,'GMT'),(495,0,0,0,'GMT'),(496,0,-36000,0,'HST'),(497,0,27402,0,'LMT'),(497,1,28800,0,'HKT'),(497,2,32400,1,'HKST'),(497,3,30600,1,'HKWT'),(497,4,32400,0,'JST'),(497,5,28800,0,'HKT'),(497,6,32400,1,'HKST'),(498,0,-5280,0,'LMT'),(498,1,0,1,'+00'),(498,2,-3600,0,'-01'),(498,3,-3600,0,'-01'),(498,4,0,1,'+00'),(498,5,0,0,'GMT'),(499,0,8836,0,'LMT'),(499,1,10800,0,'EAT'),(499,2,9000,0,'+0230'),(499,3,9900,0,'+0245'),(499,4,10800,0,'EAT'),(500,0,17380,0,'LMT'),(500,1,18000,0,'+05'),(500,2,21600,0,'+06'),(501,0,25200,0,'+07'),(502,0,23400,0,'+0630'),(503,0,8836,0,'LMT'),(503,1,10800,0,'EAT'),(503,2,9000,0,'+0230'),(503,3,9900,0,'+0245'),(503,4,10800,0,'EAT'),(504,0,0,0,'-00'),(504,1,18000,0,'+05'),(505,0,13308,0,'LMT'),(505,1,14400,0,'+04'),(506,0,17640,0,'LMT'),(506,1,17640,0,'MMT'),(506,2,18000,0,'+05'),(507,0,13800,0,'LMT'),(507,1,18000,1,'+05'),(507,2,14400,0,'+04'),(508,0,8836,0,'LMT'),(508,1,10800,0,'EAT'),(508,2,9000,0,'+0230'),(508,3,9900,0,'+0245'),(508,4,10800,0,'EAT'),(509,0,13312,0,'LMT'),(509,1,14400,0,'+04'),(510,0,12344,0,'LMT'),(510,1,12344,0,'TMT'),(510,2,12600,0,'+0330'),(510,3,18000,1,'+05'),(510,4,14400,0,'+04'),(510,5,16200,1,'+0430'),(510,6,12600,0,'+0330'),(511,0,8454,0,'LMT'),(511,1,8440,0,'JMT'),(511,2,10800,1,'IDT'),(511,3,7200,0,'IST'),(511,4,14400,1,'IDDT'),(511,5,10800,1,'IDT'),(512,0,-18430,0,'LMT'),(512,1,-18430,0,'KMT'),(512,2,-18000,0,'EST'),(512,3,-14400,1,'EDT'),(513,0,33539,0,'LMT'),(513,1,36000,1,'JDT'),(513,2,32400,0,'JST'),(513,3,32400,0,'JST'),(514,0,40160,0,'LMT'),(514,1,39600,0,'+11'),(514,2,36000,0,'+10'),(514,3,32400,0,'+09'),(514,4,-43200,0,'-12'),(514,5,43200,0,'+12'),(515,0,3164,0,'LMT'),(515,1,7200,1,'CEST'),(515,2,3600,0,'CET'),(515,3,7200,0,'EET'),(516,0,7200,1,'MEST'),(516,1,3600,0,'MET'),(516,2,7200,1,'MEST'),(516,3,3600,0,'MET'),(517,0,-25200,0,'MST'),(518,0,-21600,1,'MDT'),(518,1,-25200,0,'MST'),(518,2,-21600,1,'MWT'),(518,3,-21600,1,'MPT'),(519,0,-28084,0,'LMT'),(519,1,-25200,0,'MST'),(519,2,-28800,0,'PST'),(519,3,-25200,1,'PDT'),(519,4,-25200,1,'PWT'),(519,5,-25200,1,'PPT'),(520,0,-25540,0,'LMT'),(520,1,-25200,0,'MST'),(520,2,-21600,0,'CST'),(520,3,-28800,0,'PST'),(520,4,-21600,1,'MDT'),(520,5,-25200,0,'MST'),(521,0,-23796,0,'LMT'),(521,1,-25200,0,'MST'),(521,2,-21600,0,'CST'),(521,3,-18000,1,'CDT'),(521,4,-18000,1,'CWT'),(522,0,41944,0,'LMT'),(522,1,45000,1,'NZST'),(522,2,41400,0,'NZMT'),(522,3,43200,1,'NZST'),(522,4,46800,1,'NZDT'),(522,5,43200,0,'NZST'),(522,6,43200,0,'NZST'),(523,0,44028,0,'LMT'),(523,1,44100,0,'+1215'),(523,2,49500,1,'+1345'),(523,3,45900,0,'+1245'),(523,4,45900,0,'+1245'),(524,0,-25196,0,'LMT'),(524,1,-21600,1,'MDT'),(524,2,-25200,0,'MST'),(524,3,-21600,1,'MWT'),(524,4,-21600,1,'MPT'),(525,0,29143,0,'LMT'),(525,1,32400,1,'CDT'),(525,2,28800,0,'CST'),(526,0,-25200,1,'PDT'),(526,1,-28800,0,'PST'),(526,2,-25200,1,'PWT'),(526,3,-25200,1,'PPT'),(527,0,45184,0,'LMT'),(527,1,-41216,0,'LMT'),(527,2,-41400,0,'-1130'),(527,3,-36000,1,'-10'),(527,4,-39600,0,'-11'),(527,5,46800,0,'+13'),(527,6,50400,1,'+14'),(528,0,41944,0,'LMT'),(528,1,45000,1,'NZST'),(528,2,41400,0,'NZMT'),(528,3,43200,1,'NZST'),(528,4,46800,1,'NZDT'),(528,5,43200,0,'NZST'),(528,6,43200,0,'NZST'),(529,0,35312,0,'PMMT'),(529,1,36000,0,'+10'),(529,2,32400,0,'+09'),(529,3,39600,0,'+11'),(530,0,44028,0,'LMT'),(530,1,44100,0,'+1215'),(530,2,49500,1,'+1345'),(530,3,45900,0,'+1245'),(530,4,45900,0,'+1245'),(531,0,36428,0,'LMT'),(531,1,36000,0,'+10'),(531,2,32400,0,'+09'),(531,3,36000,0,'+10'),(532,0,-26248,0,'LMT'),(532,1,-26248,0,'EMT'),(532,2,-21600,1,'-06'),(532,3,-25200,0,'-07'),(532,4,-25200,0,'-07'),(532,5,-21600,0,'-06'),(532,6,-18000,1,'-05'),(533,0,40396,0,'LMT'),(533,1,43200,1,'+12'),(533,2,39600,0,'+11'),(534,0,-41060,0,'LMT'),(534,1,-43200,0,'-12'),(534,2,-39600,0,'-11'),(534,3,46800,0,'+13'),(535,0,-41096,0,'LMT'),(535,1,-39600,0,'-11'),(535,2,46800,0,'+13'),(536,0,42944,0,'LMT'),(536,1,46800,1,'+13'),(536,2,43200,0,'+12'),(537,0,43200,0,'+12'),(538,0,-21504,0,'LMT'),(538,1,-18000,0,'-05'),(538,2,-18000,1,'-05'),(538,3,-21600,0,'-06'),(539,0,-32388,0,'LMT'),(539,1,-32400,0,'-09'),(540,0,38388,0,'LMT'),(540,1,39600,0,'+11'),(541,0,34740,0,'LMT'),(541,1,36000,0,'GST'),(541,2,32400,0,'+09'),(541,3,39600,1,'GDT'),(541,4,36000,0,'ChST'),(542,0,-37886,0,'LMT'),(542,1,-37800,0,'HST'),(542,2,-34200,1,'HDT'),(542,3,-34200,1,'HWT'),(542,4,-34200,1,'HPT'),(542,5,-36000,0,'HST'),(543,0,-37886,0,'LMT'),(543,1,-37800,0,'HST'),(543,2,-34200,1,'HDT'),(543,3,-34200,1,'HWT'),(543,4,-34200,1,'HPT'),(543,5,-36000,0,'HST'),(544,0,-37760,0,'LMT'),(544,1,-38400,0,'-1040'),(544,2,-36000,0,'-10'),(544,3,50400,0,'+14'),(545,0,39116,0,'LMT'),(545,1,39600,0,'+11'),(545,2,32400,0,'+09'),(545,3,36000,0,'+10'),(545,4,43200,0,'+12'),(545,5,39600,0,'+11'),(546,0,40160,0,'LMT'),(546,1,39600,0,'+11'),(546,2,36000,0,'+10'),(546,3,32400,0,'+09'),(546,4,-43200,0,'-12'),(546,5,43200,0,'+12'),(547,0,41088,0,'LMT'),(547,1,39600,0,'+11'),(547,2,32400,0,'+09'),(547,3,36000,0,'+10'),(547,4,43200,0,'+12'),(548,0,-33480,0,'LMT'),(548,1,-34200,0,'-0930'),(549,0,45432,0,'LMT'),(549,1,-40968,0,'LMT'),(549,2,-39600,0,'SST'),(550,0,40060,0,'LMT'),(550,1,41400,0,'+1130'),(550,2,32400,0,'+09'),(550,3,43200,0,'+12'),(551,0,-40780,0,'LMT'),(551,1,-40800,0,'-1120'),(551,2,-41400,0,'-1130'),(551,3,-39600,0,'-11'),(552,0,40312,0,'LMT'),(552,1,40320,0,'+1112'),(552,2,41400,0,'+1130'),(552,3,45000,1,'+1230'),(552,4,41400,0,'+1130'),(552,5,39600,0,'+11'),(552,6,43200,1,'+12'),(552,7,39600,0,'+11'),(553,0,39948,0,'LMT'),(553,1,43200,1,'+12'),(553,2,39600,0,'+11'),(553,3,43200,1,'+12'),(553,4,39600,0,'+11'),(554,0,45432,0,'LMT'),(554,1,-40968,0,'LMT'),(554,2,-39600,0,'SST'),(555,0,32400,0,'+09'),(556,0,-31220,0,'LMT'),(556,1,-30600,0,'-0830'),(556,2,-28800,0,'-08'),(557,0,37972,0,'LMT'),(557,1,39600,0,'+11'),(557,2,32400,0,'+09'),(557,3,36000,0,'+10'),(557,4,39600,0,'+11'),(558,0,37972,0,'LMT'),(558,1,39600,0,'+11'),(558,2,32400,0,'+09'),(558,3,36000,0,'+10'),(558,4,39600,0,'+11'),(559,0,36000,0,'+10'),(560,0,-38344,0,'LMT'),(560,1,-37800,0,'-1030'),(560,2,-36000,0,'-10'),(560,3,-34200,1,'-0930'),(561,0,34740,0,'LMT'),(561,1,36000,0,'GST'),(561,2,32400,0,'+09'),(561,3,39600,1,'GDT'),(561,4,36000,0,'ChST'),(562,0,45432,0,'LMT'),(562,1,-40968,0,'LMT'),(562,2,-39600,0,'SST'),(563,0,-35896,0,'LMT'),(563,1,-36000,0,'-10'),(564,0,43200,0,'+12'),(565,0,44360,0,'LMT'),(565,1,44400,0,'+1220'),(565,2,46800,0,'+13'),(565,3,50400,1,'+14'),(565,4,46800,0,'+13'),(565,5,50400,1,'+14'),(566,0,36428,0,'LMT'),(566,1,36000,0,'+10'),(566,2,32400,0,'+09'),(566,3,36000,0,'+10'),(567,0,43200,0,'+12'),(568,0,43200,0,'+12'),(569,0,36428,0,'LMT'),(569,1,36000,0,'+10'),(569,2,32400,0,'+09'),(569,3,36000,0,'+10'),(570,0,5040,0,'LMT'),(570,1,5040,0,'WMT'),(570,2,7200,1,'CEST'),(570,3,3600,0,'CET'),(570,4,7200,1,'CEST'),(570,5,3600,0,'CET'),(570,6,10800,1,'EEST'),(570,7,7200,0,'EET'),(570,8,7200,0,'EET'),(570,9,7200,1,'CEST'),(570,10,3600,0,'CET'),(571,0,-2205,0,'LMT'),(571,1,3600,1,'WEST'),(571,2,0,0,'WET'),(571,3,3600,1,'WEST'),(571,4,0,0,'WET'),(571,5,7200,1,'WEMT'),(571,6,0,0,'WET'),(571,7,3600,0,'CET'),(571,8,3600,0,'CET'),(571,9,7200,1,'CEST'),(571,10,3600,1,'WEST'),(571,11,0,0,'WET'),(572,0,29160,0,'LMT'),(572,1,28800,0,'CST'),(572,2,32400,0,'JST'),(572,3,32400,1,'CDT'),(572,4,28800,0,'CST'),(573,0,30472,0,'LMT'),(573,1,30600,0,'KST'),(573,2,32400,0,'JST'),(573,3,36000,1,'KDT'),(573,4,32400,0,'KST'),(573,5,34200,1,'KDT'),(573,6,36000,1,'KDT'),(574,0,24925,0,'LMT'),(574,1,24925,0,'SMT'),(574,2,25200,0,'+07'),(574,3,26400,1,'+0720'),(574,4,26400,0,'+0720'),(574,5,27000,0,'+0730'),(574,6,32400,0,'+09'),(574,7,28800,0,'+08'),(575,0,-15865,0,'LMT'),(575,1,-14400,0,'AST'),(575,2,-10800,1,'APT'),(575,3,-10800,1,'AWT'),(576,0,-15264,0,'LMT'),(576,1,-10800,1,'ADT'),(576,2,-14400,0,'AST'),(576,3,-10800,1,'AWT'),(576,4,-10800,1,'APT'),(577,0,-25116,0,'LMT'),(577,1,-21600,1,'MDT'),(577,2,-25200,0,'MST'),(577,3,-21600,1,'MWT'),(577,4,-21600,1,'MPT'),(577,5,-21600,0,'CST'),(578,0,-21036,0,'LMT'),(578,1,-18000,1,'CDT'),(578,2,-21600,0,'CST'),(578,3,-18000,0,'EST'),(578,4,-18000,1,'CWT'),(578,5,-18000,1,'CPT'),(578,6,-21600,0,'CST'),(579,0,-19088,0,'LMT'),(579,1,-19176,0,'CMT'),(579,2,-18000,0,'EST'),(580,0,-17762,0,'LMT'),(580,1,-14400,1,'EDT'),(580,2,-18000,0,'EST'),(580,3,-14400,1,'EWT'),(580,4,-14400,1,'EPT'),(581,0,-37886,0,'LMT'),(581,1,-37800,0,'HST'),(581,2,-34200,1,'HDT'),(581,3,-34200,1,'HWT'),(581,4,-34200,1,'HPT'),(581,5,-36000,0,'HST'),(582,0,-26898,0,'LMT'),(582,1,-21600,1,'MDT'),(582,2,-25200,0,'MST'),(582,3,-21600,1,'MWT'),(583,0,-25196,0,'LMT'),(583,1,-21600,1,'MDT'),(583,2,-25200,0,'MST'),(583,3,-21600,1,'MWT'),(583,4,-21600,1,'MPT'),(584,0,-31220,0,'LMT'),(584,1,-30600,0,'-0830'),(584,2,-28800,0,'-08'),(585,0,-28378,0,'LMT'),(585,1,-25200,1,'PDT'),(585,2,-28800,0,'PST'),(585,3,-25200,1,'PWT'),(585,4,-25200,1,'PPT'),(586,0,-32388,0,'LMT'),(586,1,-32400,0,'-09'),(587,0,-35976,0,'LMT'),(587,1,-36000,0,'AST'),(587,2,-32400,1,'AWT'),(587,3,-32400,1,'APT'),(587,4,-36000,0,'AHST'),(587,5,-32400,1,'AHDT'),(587,6,-32400,0,'YST'),(587,7,-28800,1,'AKDT'),(587,8,-32400,0,'AKST'),(588,0,6952,0,'LMT'),(588,1,7016,0,'IMT'),(588,2,10800,1,'EEST'),(588,3,7200,0,'EET'),(588,4,10800,0,'+03'),(588,5,14400,1,'+04'),(588,6,10800,1,'EEST'),(588,7,7200,0,'EET'),(588,8,10800,1,'EEST'),(588,9,7200,0,'EET'),(588,10,10800,0,'+03'),(589,0,0,0,'UTC'),(590,0,-35976,0,'LMT'),(590,1,-36000,0,'AST'),(590,2,-32400,1,'AWT'),(590,3,-32400,1,'APT'),(590,4,-36000,0,'AHST'),(590,5,-32400,1,'AHDT'),(590,6,-32400,0,'YST'),(590,7,-28800,1,'AKDT'),(590,8,-32400,0,'AKST'),(591,0,-42398,0,'LMT'),(591,1,-39600,0,'NST'),(591,2,-36000,1,'NWT'),(591,3,-36000,1,'NPT'),(591,4,-39600,0,'BST'),(591,5,-36000,1,'BDT'),(591,6,-36000,0,'AHST'),(591,7,-32400,1,'HDT'),(591,8,-36000,0,'HST'),(592,0,-26898,0,'LMT'),(592,1,-21600,1,'MDT'),(592,2,-25200,0,'MST'),(592,3,-21600,1,'MWT'),(593,0,-21036,0,'LMT'),(593,1,-18000,1,'CDT'),(593,2,-21600,0,'CST'),(593,3,-18000,0,'EST'),(593,4,-18000,1,'CWT'),(593,5,-18000,1,'CPT'),(593,6,-21600,0,'CST'),(594,0,-20678,0,'LMT'),(594,1,-18000,1,'CDT'),(594,2,-21600,0,'CST'),(594,3,-18000,1,'CWT'),(594,4,-18000,1,'CPT'),(594,5,-18000,0,'EST'),(594,6,-14400,1,'EDT'),(595,0,-17762,0,'LMT'),(595,1,-14400,1,'EDT'),(595,2,-18000,0,'EST'),(595,3,-14400,1,'EWT'),(595,4,-14400,1,'EPT'),(596,0,-37886,0,'LMT'),(596,1,-37800,0,'HST'),(596,2,-34200,1,'HDT'),(596,3,-34200,1,'HWT'),(596,4,-34200,1,'HPT'),(596,5,-36000,0,'HST'),(597,0,-20790,0,'LMT'),(597,1,-18000,1,'CDT'),(597,2,-21600,0,'CST'),(597,3,-18000,1,'CWT'),(597,4,-18000,1,'CPT'),(597,5,-18000,0,'EST'),(597,6,-21600,0,'CST'),(598,0,-19931,0,'LMT'),(598,1,-21600,0,'CST'),(598,2,-18000,0,'EST'),(598,3,-14400,1,'EWT'),(598,4,-14400,1,'EPT'),(598,5,-14400,1,'EDT'),(599,0,-25196,0,'LMT'),(599,1,-21600,1,'MDT'),(599,2,-25200,0,'MST'),(599,3,-21600,1,'MWT'),(599,4,-21600,1,'MPT'),(600,0,-28378,0,'LMT'),(600,1,-25200,1,'PDT'),(600,2,-28800,0,'PST'),(600,3,-25200,1,'PWT'),(600,4,-25200,1,'PPT'),(601,0,-28378,0,'LMT'),(601,1,-25200,1,'PDT'),(601,2,-28800,0,'PST'),(601,3,-25200,1,'PWT'),(601,4,-25200,1,'PPT'),(602,0,45432,0,'LMT'),(602,1,-40968,0,'LMT'),(602,2,-39600,0,'SST'),(603,0,0,0,'UTC'),(604,0,0,0,'UTC'),(605,0,9017,0,'LMT'),(605,1,9017,0,'MMT'),(605,2,12679,1,'MST'),(605,3,9079,0,'MMT'),(605,4,16279,1,'MDST'),(605,5,14400,1,'MSD'),(605,6,10800,0,'MSK'),(605,7,14400,1,'MSD'),(605,8,18000,1,'+05'),(605,9,7200,0,'EET'),(605,10,10800,0,'MSK'),(605,11,14400,1,'MSD'),(605,12,10800,1,'EEST'),(605,13,7200,0,'EET'),(605,14,14400,0,'MSK'),(605,15,14400,1,'MSD'),(605,16,10800,0,'MSK'),(606,0,3600,1,'WEST'),(606,1,0,0,'WET'),(607,0,0,0,'UTC'),(608,0,0,0,'UTC'),(609,0,-968,0,'LMT'),(609,1,0,0,'GMT'),(610,0,-52,0,'LMT'),(610,1,1200,1,'+0020'),(610,2,0,0,'GMT'),(611,0,8836,0,'LMT'),(611,1,10800,0,'EAT'),(611,2,9000,0,'+0230'),(611,3,9900,0,'+0245'),(611,4,10800,0,'EAT'),(612,0,732,0,'LMT'),(612,1,561,0,'PMT'),(612,2,3600,1,'WEST'),(612,3,0,0,'WET'),(612,4,0,0,'WET'),(612,5,7200,1,'CEST'),(612,6,3600,0,'CET'),(612,7,3600,1,'WEST'),(613,0,8836,0,'LMT'),(613,1,10800,0,'EAT'),(613,2,9000,0,'+0230'),(613,3,9900,0,'+0245'),(613,4,10800,0,'EAT'),(614,0,8836,0,'LMT'),(614,1,10800,0,'EAT'),(614,2,9000,0,'+0230'),(614,3,9900,0,'+0245'),(614,4,10800,0,'EAT'),(615,0,-968,0,'LMT'),(615,1,0,0,'GMT'),(616,0,816,0,'LMT'),(616,1,3600,0,'WAT'),(617,0,-968,0,'LMT'),(617,1,0,0,'GMT'),(618,0,-3740,0,'LMT'),(618,1,-3600,0,'-01'),(618,2,0,0,'GMT'),(619,0,7820,0,'LMT'),(619,1,7200,0,'CAT'),(620,0,816,0,'LMT'),(620,1,3600,0,'WAT'),(621,0,7820,0,'LMT'),(621,1,7200,0,'CAT'),(622,0,7509,0,'LMT'),(622,1,10800,1,'EEST'),(622,2,7200,0,'EET'),(622,3,10800,1,'EEST'),(623,0,-1820,0,'LMT'),(623,1,3600,1,'+01'),(623,2,0,0,'+00'),(623,3,3600,0,'+01'),(623,4,0,1,'+00'),(624,0,-1276,0,'LMT'),(624,1,0,0,'WET'),(624,2,3600,1,'WEST'),(624,3,0,0,'WET'),(624,4,3600,0,'CET'),(624,5,7200,1,'CEST'),(624,6,3600,0,'CET'),(625,0,-968,0,'LMT'),(625,1,0,0,'GMT'),(626,0,-968,0,'LMT'),(626,1,0,0,'GMT'),(627,0,8836,0,'LMT'),(627,1,10800,0,'EAT'),(627,2,9000,0,'+0230'),(627,3,9900,0,'+0245'),(627,4,10800,0,'EAT'),(628,0,8836,0,'LMT'),(628,1,10800,0,'EAT'),(628,2,9000,0,'+0230'),(628,3,9900,0,'+0245'),(628,4,10800,0,'EAT'),(629,0,816,0,'LMT'),(629,1,3600,0,'WAT'),(630,0,-3168,0,'LMT'),(630,1,-3600,0,'-01'),(630,2,3600,1,'+01'),(630,3,0,0,'+00'),(630,4,0,1,'+00'),(630,5,3600,0,'+01'),(631,0,-968,0,'LMT'),(631,1,0,0,'GMT'),(632,0,7820,0,'LMT'),(632,1,7200,0,'CAT'),(633,0,7820,0,'LMT'),(633,1,7200,0,'CAT'),(634,0,6720,0,'LMT'),(634,1,5400,0,'SAST'),(634,2,10800,1,'SAST'),(634,3,7200,0,'SAST'),(635,0,7588,0,'LMT'),(635,1,10800,1,'CAST'),(635,2,7200,0,'CAT'),(635,3,10800,0,'EAT'),(636,0,8836,0,'LMT'),(636,1,10800,0,'EAT'),(636,2,9000,0,'+0230'),(636,3,9900,0,'+0245'),(636,4,10800,0,'EAT'),(637,0,7808,0,'LMT'),(637,1,10800,1,'CAST'),(637,2,7200,0,'CAT'),(637,3,10800,0,'EAT'),(637,4,7200,0,'CAT'),(638,0,7820,0,'LMT'),(638,1,7200,0,'CAT'),(639,0,816,0,'LMT'),(639,1,3600,0,'WAT'),(640,0,816,0,'LMT'),(640,1,3600,0,'WAT'),(641,0,816,0,'LMT'),(641,1,3600,0,'WAT'),(642,0,-968,0,'LMT'),(642,1,0,0,'GMT'),(643,0,816,0,'LMT'),(643,1,3600,0,'WAT'),(644,0,7820,0,'LMT'),(644,1,7200,0,'CAT'),(645,0,7820,0,'LMT'),(645,1,7200,0,'CAT'),(646,0,816,0,'LMT'),(646,1,3600,0,'WAT'),(647,0,7820,0,'LMT'),(647,1,7200,0,'CAT'),(648,0,6720,0,'LMT'),(648,1,5400,0,'SAST'),(648,2,10800,1,'SAST'),(648,3,7200,0,'SAST'),(649,0,6720,0,'LMT'),(649,1,5400,0,'SAST'),(649,2,10800,1,'SAST'),(649,3,7200,0,'SAST'),(650,0,8836,0,'LMT'),(650,1,10800,0,'EAT'),(650,2,9000,0,'+0230'),(650,3,9900,0,'+0245'),(650,4,10800,0,'EAT'),(651,0,-2588,0,'LMT'),(651,1,-2588,0,'MMT'),(651,2,-2670,0,'MMT'),(651,3,0,0,'GMT'),(652,0,8836,0,'LMT'),(652,1,10800,0,'EAT'),(652,2,9000,0,'+0230'),(652,3,9900,0,'+0245'),(652,4,10800,0,'EAT'),(653,0,3612,0,'LMT'),(653,1,3600,0,'WAT'),(653,2,7200,1,'WAST'),(654,0,816,0,'LMT'),(654,1,3600,0,'WAT'),(655,0,-968,0,'LMT'),(655,1,0,0,'GMT'),(656,0,-968,0,'LMT'),(656,1,0,0,'GMT'),(657,0,816,0,'LMT'),(657,1,3600,0,'WAT'),(658,0,1616,0,'LMT'),(658,1,-2205,0,'LMT'),(658,2,0,0,'GMT'),(658,3,3600,0,'WAT'),(658,4,0,0,'GMT'),(659,0,-968,0,'LMT'),(659,1,0,0,'GMT'),(660,0,3164,0,'LMT'),(660,1,7200,1,'CEST'),(660,2,3600,0,'CET'),(660,3,7200,0,'EET'),(661,0,2444,0,'LMT'),(661,1,561,0,'PMT'),(661,2,7200,1,'CEST'),(661,3,3600,0,'CET'),(661,4,3600,0,'CET'),(661,5,7200,1,'CEST'),(662,0,4104,0,'LMT'),(662,1,5400,0,'+0130'),(662,2,7200,0,'SAST'),(662,3,10800,1,'SAST'),(662,4,3600,1,'WAT'),(662,5,7200,0,'CAT'),(663,0,-42398,0,'LMT'),(663,1,-39600,0,'NST'),(663,2,-36000,1,'NWT'),(663,3,-36000,1,'NPT'),(663,4,-39600,0,'BST'),(663,5,-36000,1,'BDT'),(663,6,-36000,0,'AHST'),(663,7,-32400,1,'HDT'),(663,8,-36000,0,'HST'),(664,0,-35976,0,'LMT'),(664,1,-36000,0,'AST'),(664,2,-32400,1,'AWT'),(664,3,-32400,1,'APT'),(664,4,-36000,0,'AHST'),(664,5,-32400,1,'AHDT'),(664,6,-32400,0,'YST'),(664,7,-28800,1,'AKDT'),(664,8,-32400,0,'AKST'),(665,0,-14764,0,'LMT'),(665,1,-14400,0,'AST'),(666,0,-14764,0,'LMT'),(666,1,-14400,0,'AST'),(667,0,-11568,0,'LMT'),(667,1,-7200,1,'-02'),(667,2,-10800,0,'-03'),(668,0,-14028,0,'LMT'),(668,1,-15408,0,'CMT'),(668,2,-14400,0,'-04'),(668,3,-10800,1,'-03'),(668,4,-7200,1,'-02'),(668,5,-10800,0,'-03'),(669,0,-15788,0,'LMT'),(669,1,-15408,0,'CMT'),(669,2,-14400,0,'-04'),(669,3,-10800,1,'-03'),(669,4,-7200,1,'-02'),(669,5,-10800,0,'-03'),(670,0,-15788,0,'LMT'),(670,1,-15408,0,'CMT'),(670,2,-14400,0,'-04'),(670,3,-10800,1,'-03'),(670,4,-7200,1,'-02'),(670,5,-10800,0,'-03'),(671,0,-15408,0,'LMT'),(671,1,-15408,0,'CMT'),(671,2,-14400,0,'-04'),(671,3,-10800,1,'-03'),(671,4,-7200,1,'-02'),(671,5,-10800,0,'-03'),(672,0,-15672,0,'LMT'),(672,1,-15408,0,'CMT'),(672,2,-14400,0,'-04'),(672,3,-10800,1,'-03'),(672,4,-7200,1,'-02'),(672,5,-10800,0,'-03'),(673,0,-16044,0,'LMT'),(673,1,-15408,0,'CMT'),(673,2,-14400,0,'-04'),(673,3,-10800,1,'-03'),(673,4,-7200,1,'-02'),(673,5,-10800,0,'-03'),(674,0,-16516,0,'LMT'),(674,1,-15408,0,'CMT'),(674,2,-14400,0,'-04'),(674,3,-10800,1,'-03'),(674,4,-7200,1,'-02'),(674,5,-10800,0,'-03'),(675,0,-16612,0,'LMT'),(675,1,-15408,0,'CMT'),(675,2,-14400,0,'-04'),(675,3,-10800,1,'-03'),(675,4,-7200,1,'-02'),(675,5,-10800,0,'-03'),(676,0,-15700,0,'LMT'),(676,1,-15408,0,'CMT'),(676,2,-14400,0,'-04'),(676,3,-10800,1,'-03'),(676,4,-7200,1,'-02'),(676,5,-10800,0,'-03'),(677,0,-16444,0,'LMT'),(677,1,-15408,0,'CMT'),(677,2,-14400,0,'-04'),(677,3,-10800,1,'-03'),(677,4,-7200,1,'-02'),(677,5,-10800,0,'-03'),(678,0,-15924,0,'LMT'),(678,1,-15408,0,'CMT'),(678,2,-14400,0,'-04'),(678,3,-10800,1,'-03'),(678,4,-7200,1,'-02'),(678,5,-10800,0,'-03'),(678,6,-10800,1,'-03'),(679,0,-15652,0,'LMT'),(679,1,-15408,0,'CMT'),(679,2,-14400,0,'-04'),(679,3,-10800,1,'-03'),(679,4,-7200,1,'-02'),(679,5,-10800,0,'-03'),(680,0,-16392,0,'LMT'),(680,1,-15408,0,'CMT'),(680,2,-14400,0,'-04'),(680,3,-10800,1,'-03'),(680,4,-7200,1,'-02'),(680,5,-10800,0,'-03'),(681,0,-16547,0,'LMT'),(681,1,-16200,0,'-0430'),(681,2,-14400,0,'AST'),(682,0,-13840,0,'LMT'),(682,1,-13840,0,'AMT'),(682,2,-14400,0,'-04'),(682,3,-10800,0,'-03'),(682,4,-10800,1,'-03'),(682,5,-14400,0,'-04'),(683,0,-21988,0,'LMT'),(683,1,-18000,1,'CDT'),(683,2,-21600,0,'CST'),(683,3,-18000,1,'CWT'),(683,4,-18000,1,'CPT'),(683,5,-18000,0,'EST'),(684,0,-42398,0,'LMT'),(684,1,-39600,0,'NST'),(684,2,-36000,1,'NWT'),(684,3,-36000,1,'NPT'),(684,4,-39600,0,'BST'),(684,5,-36000,1,'BDT'),(684,6,-36000,0,'AHST'),(684,7,-32400,1,'HDT'),(684,8,-36000,0,'HST'),(685,0,-9244,0,'LMT'),(685,1,-7200,1,'-02'),(685,2,-10800,0,'-03'),(686,0,-25260,0,'LMT'),(686,1,-25200,0,'MST'),(686,2,-21600,0,'CST'),(686,3,-28800,0,'PST'),(686,4,-21600,1,'MDT'),(686,5,-18000,1,'CDT'),(686,6,-21600,0,'CST'),(687,0,-14309,0,'LMT'),(687,1,-14309,0,'BMT'),(687,2,-10800,1,'ADT'),(687,3,-14400,0,'AST'),(688,0,-11636,0,'LMT'),(688,1,-7200,1,'-02'),(688,2,-10800,0,'-03'),(689,0,-21168,0,'LMT'),(689,1,-19800,1,'-0530'),(689,2,-21600,0,'CST'),(689,3,-18000,1,'CDT'),(690,0,-13708,0,'LMT'),(690,1,-10800,1,'ADT'),(690,2,-14400,0,'AST'),(690,3,-10800,1,'AWT'),(690,4,-10800,1,'APT'),(691,0,-14560,0,'LMT'),(691,1,-10800,1,'-03'),(691,2,-14400,0,'-04'),(692,0,-17776,0,'LMT'),(692,1,-17776,0,'BMT'),(692,2,-14400,1,'-04'),(692,3,-18000,0,'-05'),(693,0,-27889,0,'LMT'),(693,1,-25200,1,'PDT'),(693,2,-28800,0,'PST'),(693,3,-21600,1,'MWT'),(693,4,-21600,1,'MPT'),(693,5,-25200,0,'MST'),(693,6,-21600,1,'MDT'),(694,0,-14028,0,'LMT'),(694,1,-15408,0,'CMT'),(694,2,-14400,0,'-04'),(694,3,-10800,1,'-03'),(694,4,-7200,1,'-02'),(694,5,-10800,0,'-03'),(695,0,0,0,'-00'),(695,1,-21600,1,'MWT'),(695,2,-21600,1,'MPT'),(695,3,-25200,0,'MST'),(695,4,-18000,1,'MDDT'),(695,5,-21600,1,'MDT'),(695,6,-18000,1,'CDT'),(695,7,-21600,0,'CST'),(695,8,-18000,0,'EST'),(695,9,-21600,1,'MDT'),(695,10,-25200,0,'MST'),(696,0,-13108,0,'LMT'),(696,1,-10800,1,'-03'),(696,2,-14400,0,'-04'),(697,0,-20824,0,'LMT'),(697,1,-21600,0,'CST'),(697,2,-14400,1,'EDT'),(697,3,-18000,0,'EST'),(697,4,-18000,1,'CDT'),(698,0,-16064,0,'LMT'),(698,1,-16060,0,'CMT'),(698,2,-16200,0,'-0430'),(698,3,-14400,0,'-04'),(699,0,-15788,0,'LMT'),(699,1,-15408,0,'CMT'),(699,2,-14400,0,'-04'),(699,3,-10800,1,'-03'),(699,4,-7200,1,'-02'),(699,5,-10800,0,'-03'),(700,0,-12560,0,'LMT'),(700,1,-14400,0,'-04'),(700,2,-10800,0,'-03'),(701,0,-19088,0,'LMT'),(701,1,-19176,0,'CMT'),(701,2,-18000,0,'EST'),(702,0,-21036,0,'LMT'),(702,1,-18000,1,'CDT'),(702,2,-21600,0,'CST'),(702,3,-18000,0,'EST'),(702,4,-18000,1,'CWT'),(702,5,-18000,1,'CPT'),(702,6,-21600,0,'CST'),(703,0,-25460,0,'LMT'),(703,1,-25200,0,'MST'),(703,2,-21600,0,'CST'),(703,3,-18000,1,'CDT'),(703,4,-21600,1,'MDT'),(703,5,-25200,0,'MST'),(704,0,-21988,0,'LMT'),(704,1,-18000,1,'CDT'),(704,2,-21600,0,'CST'),(704,3,-18000,1,'CWT'),(704,4,-18000,1,'CPT'),(704,5,-18000,0,'EST'),(705,0,-15408,0,'LMT'),(705,1,-15408,0,'CMT'),(705,2,-14400,0,'-04'),(705,3,-10800,1,'-03'),(705,4,-7200,1,'-02'),(705,5,-10800,0,'-03'),(706,0,-20173,0,'LMT'),(706,1,-20173,0,'SJMT'),(706,2,-18000,1,'CDT'),(706,3,-21600,0,'CST'),(707,0,-27964,0,'LMT'),(707,1,-25200,0,'MST'),(707,2,-28800,0,'PST'),(707,3,-25200,0,'MST'),(708,0,-13460,0,'LMT'),(708,1,-10800,1,'-03'),(708,2,-14400,0,'-04'),(709,0,-16547,0,'LMT'),(709,1,-16200,0,'-0430'),(709,2,-14400,0,'AST'),(710,0,-4480,0,'LMT'),(710,1,-10800,0,'-03'),(710,2,-10800,0,'-03'),(710,3,-7200,1,'-02'),(710,4,-7200,1,'-02'),(710,5,0,0,'GMT'),(711,0,-33460,0,'LMT'),(711,1,-28800,1,'YDT'),(711,2,-32400,0,'YST'),(711,3,-28800,1,'YWT'),(711,4,-28800,1,'YPT'),(711,5,-25200,1,'YDDT'),(711,6,-28800,0,'PST'),(711,7,-25200,1,'PDT'),(712,0,-28856,0,'LMT'),(712,1,-25200,1,'PDT'),(712,2,-28800,0,'PST'),(712,3,-25200,1,'PWT'),(712,4,-25200,1,'PPT'),(712,5,-25200,0,'MST'),(713,0,-25196,0,'LMT'),(713,1,-21600,1,'MDT'),(713,2,-25200,0,'MST'),(713,3,-21600,1,'MWT'),(713,4,-21600,1,'MPT'),(714,0,-19931,0,'LMT'),(714,1,-21600,0,'CST'),(714,2,-18000,0,'EST'),(714,3,-14400,1,'EWT'),(714,4,-14400,1,'EPT'),(714,5,-14400,1,'EDT'),(715,0,-14764,0,'LMT'),(715,1,-14400,0,'AST'),(716,0,-27232,0,'LMT'),(716,1,-21600,1,'MDT'),(716,2,-25200,0,'MST'),(716,3,-21600,1,'MWT'),(716,4,-21600,1,'MPT'),(717,0,-16768,0,'LMT'),(717,1,-14400,1,'-04'),(717,2,-18000,0,'-05'),(717,3,-14400,0,'-04'),(717,4,-18000,0,'-05'),(718,0,-21408,0,'LMT'),(718,1,-18000,1,'CDT'),(718,2,-21600,0,'CST'),(719,0,-28084,0,'LMT'),(719,1,-25200,0,'MST'),(719,2,-28800,0,'PST'),(719,3,-25200,1,'PDT'),(719,4,-25200,1,'PWT'),(719,5,-25200,1,'PPT'),(720,0,-29447,0,'LMT'),(720,1,-25200,1,'PDT'),(720,2,-28800,0,'PST'),(720,3,-25200,1,'PWT'),(720,4,-25200,1,'PPT'),(720,5,-25200,0,'MST'),(721,0,-20678,0,'LMT'),(721,1,-18000,1,'CDT'),(721,2,-21600,0,'CST'),(721,3,-18000,1,'CWT'),(721,4,-18000,1,'CPT'),(721,5,-18000,0,'EST'),(721,6,-14400,1,'EDT'),(722,0,-9240,0,'LMT'),(722,1,-7200,1,'-02'),(722,2,-10800,0,'-03'),(723,0,-14388,0,'LMT'),(723,1,-10800,1,'ADT'),(723,2,-14400,0,'AST'),(723,3,-10800,1,'AWT'),(723,4,-10800,1,'APT'),(724,0,-12416,0,'LMT'),(724,1,-10800,0,'-03'),(724,2,-10800,0,'-03'),(724,3,-7200,1,'-02'),(724,4,-7200,1,'-02'),(725,0,-14500,0,'LMT'),(725,1,-12652,0,'NST'),(725,2,-9052,1,'NDT'),(725,3,-12600,0,'NST'),(725,4,-9000,1,'NDT'),(725,5,-9000,1,'NPT'),(725,6,-9000,1,'NWT'),(725,7,-10800,1,'ADT'),(725,8,-14400,0,'AST'),(725,9,-7200,1,'ADDT'),(725,10,-10800,1,'ADT'),(726,0,-17072,0,'LMT'),(726,1,-18430,0,'KMT'),(726,2,-18000,0,'EST'),(726,3,-14400,1,'EDT'),(726,4,-14400,0,'AST'),(726,5,-18000,0,'EST'),(727,0,-14764,0,'LMT'),(727,1,-14400,0,'AST'),(728,0,-14764,0,'LMT'),(728,1,-14400,0,'AST'),(729,0,-21724,0,'LMT'),(729,1,-18000,1,'CDT'),(729,2,-21600,0,'CST'),(730,0,-19160,0,'LMT'),(730,1,-18840,0,'QMT'),(730,2,-14400,1,'-04'),(730,3,-18000,0,'-05'),(731,0,-13960,0,'LMT'),(731,1,-13500,0,'-0345'),(731,2,-10800,0,'-03'),(731,3,-14400,0,'-04'),(732,0,-15264,0,'LMT'),(732,1,-10800,1,'ADT'),(732,2,-14400,0,'AST'),(732,3,-10800,1,'AWT'),(732,4,-10800,1,'APT'),(733,0,-19768,0,'LMT'),(733,1,-19776,0,'HMT'),(733,2,-14400,1,'CDT'),(733,3,-18000,0,'CST'),(733,4,-18000,0,'CST'),(733,5,-14400,1,'CDT'),(734,0,-26632,0,'LMT'),(734,1,-25200,0,'MST'),(734,2,-21600,0,'CST'),(734,3,-28800,0,'PST'),(734,4,-21600,1,'MDT'),(734,5,-25200,0,'MST'),(735,0,-20678,0,'LMT'),(735,1,-18000,1,'CDT'),(735,2,-21600,0,'CST'),(735,3,-18000,1,'CWT'),(735,4,-18000,1,'CPT'),(735,5,-18000,0,'EST'),(735,6,-14400,1,'EDT'),(736,0,-20790,0,'LMT'),(736,1,-18000,1,'CDT'),(736,2,-21600,0,'CST'),(736,3,-18000,1,'CWT'),(736,4,-18000,1,'CPT'),(736,5,-18000,0,'EST'),(736,6,-21600,0,'CST'),(737,0,-20723,0,'LMT'),(737,1,-18000,1,'CDT'),(737,2,-21600,0,'CST'),(737,3,-18000,1,'CWT'),(737,4,-18000,1,'CPT'),(737,5,-18000,0,'EST'),(737,6,-14400,1,'EDT'),(738,0,-20947,0,'LMT'),(738,1,-18000,1,'CDT'),(738,2,-21600,0,'CST'),(738,3,-18000,1,'CWT'),(738,4,-18000,1,'CPT'),(738,5,-18000,0,'EST'),(738,6,-14400,1,'EDT'),(739,0,-20823,0,'LMT'),(739,1,-18000,1,'CDT'),(739,2,-21600,0,'CST'),(739,3,-18000,1,'CWT'),(739,4,-18000,1,'CPT'),(739,5,-18000,0,'EST'),(739,6,-14400,1,'EDT'),(739,7,-18000,1,'CDT'),(739,8,-21600,0,'CST'),(740,0,-20416,0,'LMT'),(740,1,-18000,1,'CDT'),(740,2,-21600,0,'CST'),(740,3,-18000,1,'CWT'),(740,4,-18000,1,'CPT'),(740,5,-18000,0,'EST'),(740,6,-14400,1,'EDT'),(741,0,-21007,0,'LMT'),(741,1,-18000,1,'CDT'),(741,2,-21600,0,'CST'),(741,3,-18000,1,'CWT'),(741,4,-18000,1,'CPT'),(741,5,-18000,0,'EST'),(741,6,-14400,1,'EDT'),(742,0,-20785,0,'LMT'),(742,1,-18000,1,'CDT'),(742,2,-21600,0,'CST'),(742,3,-18000,1,'CWT'),(742,4,-18000,1,'CPT'),(742,5,-18000,0,'EST'),(742,6,-14400,1,'EDT'),(743,0,-20678,0,'LMT'),(743,1,-18000,1,'CDT'),(743,2,-21600,0,'CST'),(743,3,-18000,1,'CWT'),(743,4,-18000,1,'CPT'),(743,5,-18000,0,'EST'),(743,6,-14400,1,'EDT'),(744,0,0,0,'-00'),(744,1,-21600,1,'PDDT'),(744,2,-28800,0,'PST'),(744,3,-25200,0,'MST'),(744,4,-21600,1,'MDT'),(745,0,0,0,'-00'),(745,1,-14400,1,'EPT'),(745,2,-18000,0,'EST'),(745,3,-10800,1,'EDDT'),(745,4,-14400,1,'EDT'),(745,5,-14400,1,'EWT'),(745,6,-21600,0,'CST'),(745,7,-18000,1,'CDT'),(745,8,-14400,1,'EDT'),(745,9,-18000,0,'EST'),(746,0,-18430,0,'LMT'),(746,1,-18430,0,'KMT'),(746,2,-18000,0,'EST'),(746,3,-14400,1,'EDT'),(747,0,-15672,0,'LMT'),(747,1,-15408,0,'CMT'),(747,2,-14400,0,'-04'),(747,3,-10800,1,'-03'),(747,4,-7200,1,'-02'),(747,5,-10800,0,'-03'),(748,0,-32261,0,'LMT'),(748,1,-28800,0,'PST'),(748,2,-25200,1,'PWT'),(748,3,-25200,1,'PPT'),(748,4,-25200,1,'PDT'),(748,5,-28800,1,'YDT'),(748,6,-32400,0,'YST'),(748,7,-28800,1,'AKDT'),(748,8,-32400,0,'AKST'),(749,0,-20582,0,'LMT'),(749,1,-18000,1,'CDT'),(749,2,-21600,0,'CST'),(749,3,-18000,1,'CWT'),(749,4,-18000,1,'CPT'),(749,5,-18000,0,'EST'),(749,6,-14400,1,'EDT'),(750,0,-20364,0,'LMT'),(750,1,-18000,1,'CDT'),(750,2,-21600,0,'CST'),(750,3,-18000,1,'CWT'),(750,4,-18000,1,'CPT'),(750,5,-14400,1,'EDT'),(750,6,-18000,0,'EST'),(751,0,-20790,0,'LMT'),(751,1,-18000,1,'CDT'),(751,2,-21600,0,'CST'),(751,3,-18000,1,'CWT'),(751,4,-18000,1,'CPT'),(751,5,-18000,0,'EST'),(751,6,-21600,0,'CST'),(752,0,-16547,0,'LMT'),(752,1,-16200,0,'-0430'),(752,2,-14400,0,'AST'),(753,0,-16356,0,'LMT'),(753,1,-16356,0,'CMT'),(753,2,-12756,1,'BST'),(753,3,-14400,0,'-04'),(754,0,-18492,0,'LMT'),(754,1,-18516,0,'LMT'),(754,2,-14400,1,'-04'),(754,3,-18000,0,'-05'),(755,0,-28378,0,'LMT'),(755,1,-25200,1,'PDT'),(755,2,-28800,0,'PST'),(755,3,-25200,1,'PWT'),(755,4,-25200,1,'PPT'),(756,0,-20582,0,'LMT'),(756,1,-18000,1,'CDT'),(756,2,-21600,0,'CST'),(756,3,-18000,1,'CWT'),(756,4,-18000,1,'CPT'),(756,5,-18000,0,'EST'),(756,6,-14400,1,'EDT'),(757,0,-16547,0,'LMT'),(757,1,-16200,0,'-0430'),(757,2,-14400,0,'AST'),(758,0,-8572,0,'LMT'),(758,1,-7200,1,'-02'),(758,2,-10800,0,'-03'),(759,0,-20708,0,'LMT'),(759,1,-20712,0,'MMT'),(759,2,-21600,0,'CST'),(759,3,-18000,0,'EST'),(759,4,-18000,1,'CDT'),(759,5,-21600,0,'CST'),(760,0,-14404,0,'LMT'),(760,1,-10800,1,'-03'),(760,2,-14400,0,'-04'),(761,0,-14764,0,'LMT'),(761,1,-14400,0,'AST'),(762,0,-14660,0,'LMT'),(762,1,-14660,0,'FFMT'),(762,2,-14400,0,'AST'),(762,3,-10800,1,'ADT'),(763,0,-24000,0,'LMT'),(763,1,-21600,0,'CST'),(763,2,-18000,1,'CDT'),(764,0,-25540,0,'LMT'),(764,1,-25200,0,'MST'),(764,2,-21600,0,'CST'),(764,3,-28800,0,'PST'),(764,4,-21600,1,'MDT'),(764,5,-25200,0,'MST'),(765,0,-16516,0,'LMT'),(765,1,-15408,0,'CMT'),(765,2,-14400,0,'-04'),(765,3,-10800,1,'-03'),(765,4,-7200,1,'-02'),(765,5,-10800,0,'-03'),(766,0,-21027,0,'LMT'),(766,1,-18000,1,'CDT'),(766,2,-21600,0,'CST'),(766,3,-18000,1,'CWT'),(766,4,-18000,1,'CPT'),(766,5,-18000,0,'EST'),(766,6,-21600,0,'CST'),(767,0,-21508,0,'LMT'),(767,1,-21600,0,'CST'),(767,2,-18000,0,'EST'),(767,3,-18000,1,'CDT'),(767,4,-21600,0,'CST'),(768,0,-31578,0,'LMT'),(768,1,-28800,0,'PST'),(768,2,-25200,1,'PWT'),(768,3,-25200,1,'PPT'),(768,4,-25200,1,'PDT'),(768,5,-32400,0,'AKST'),(768,6,-28800,1,'AKDT'),(769,0,-23796,0,'LMT'),(769,1,-25200,0,'MST'),(769,2,-21600,0,'CST'),(769,3,-18000,1,'CDT'),(769,4,-18000,1,'CWT'),(770,0,-13480,0,'LMT'),(770,1,-14400,0,'AST'),(770,2,-10800,0,'-03'),(770,3,-7200,1,'-02'),(771,0,-15548,0,'LMT'),(771,1,-18000,0,'EST'),(771,2,-10800,1,'ADT'),(771,3,-14400,0,'AST'),(771,4,-10800,1,'AWT'),(771,5,-10800,1,'APT'),(772,0,-24076,0,'LMT'),(772,1,-21600,0,'CST'),(772,2,-18000,1,'CDT'),(773,0,-13491,0,'LMT'),(773,1,-13491,0,'MMT'),(773,2,-14400,0,'-04'),(773,3,-12600,0,'-0330'),(773,4,-10800,1,'-03'),(773,5,-10800,0,'-03'),(773,6,-9000,1,'-0230'),(773,7,-7200,1,'-02'),(773,8,-5400,1,'-0130'),(773,9,-7200,1,'-02'),(774,0,-19052,0,'LMT'),(774,1,-14400,1,'EDT'),(774,2,-18000,0,'EST'),(774,3,-14400,1,'EWT'),(774,4,-14400,1,'EPT'),(775,0,-14764,0,'LMT'),(775,1,-14400,0,'AST'),(776,0,-18570,0,'LMT'),(776,1,-14400,1,'EDT'),(776,2,-18000,0,'EST'),(777,0,-17762,0,'LMT'),(777,1,-14400,1,'EDT'),(777,2,-18000,0,'EST'),(777,3,-14400,1,'EWT'),(777,4,-14400,1,'EPT'),(778,0,-21184,0,'LMT'),(778,1,-14400,1,'EDT'),(778,2,-18000,0,'EST'),(778,3,-14400,1,'EWT'),(778,4,-14400,1,'EPT'),(779,0,-39698,0,'LMT'),(779,1,-39600,0,'NST'),(779,2,-36000,1,'NWT'),(779,3,-36000,1,'NPT'),(779,4,-39600,0,'BST'),(779,5,-36000,1,'BDT'),(779,6,-32400,0,'YST'),(779,7,-28800,1,'AKDT'),(779,8,-32400,0,'AKST'),(780,0,-7780,0,'LMT'),(780,1,-3600,1,'-01'),(780,2,-7200,0,'-02'),(781,0,-24427,0,'LMT'),(781,1,-21600,1,'MDT'),(781,2,-25200,0,'MST'),(781,3,-21600,1,'MWT'),(781,4,-21600,1,'MPT'),(781,5,-18000,1,'CDT'),(781,6,-21600,0,'CST'),(782,0,-24312,0,'LMT'),(782,1,-21600,1,'MDT'),(782,2,-25200,0,'MST'),(782,3,-21600,1,'MWT'),(782,4,-21600,1,'MPT'),(782,5,-18000,1,'CDT'),(782,6,-21600,0,'CST'),(783,0,-24339,0,'LMT'),(783,1,-21600,1,'MDT'),(783,2,-25200,0,'MST'),(783,3,-21600,1,'MWT'),(783,4,-21600,1,'MPT'),(783,5,-18000,1,'CDT'),(783,6,-21600,0,'CST'),(784,0,-25060,0,'LMT'),(784,1,-25200,0,'MST'),(784,2,-21600,0,'CST'),(784,3,-18000,1,'CDT'),(784,4,-21600,1,'MDT'),(784,5,-25200,0,'MST'),(785,0,-19088,0,'LMT'),(785,1,-19176,0,'CMT'),(785,2,-18000,0,'EST'),(786,0,0,0,'-00'),(786,1,-10800,1,'AWT'),(786,2,-10800,1,'APT'),(786,3,-14400,0,'AST'),(786,4,-7200,1,'ADDT'),(786,5,-10800,1,'ADT'),(786,6,-14400,1,'EDT'),(786,7,-18000,0,'EST'),(786,8,-21600,0,'CST'),(786,9,-18000,1,'CDT'),(786,10,-14400,1,'EDT'),(786,11,-18000,0,'EST'),(787,0,-13240,0,'LMT'),(787,1,-13252,0,'PMT'),(787,2,-13236,0,'PMT'),(787,3,-12600,0,'-0330'),(787,4,-10800,0,'-03'),(788,0,-26898,0,'LMT'),(788,1,-21600,1,'MDT'),(788,2,-25200,0,'MST'),(788,3,-21600,1,'MWT'),(789,0,-17360,0,'LMT'),(789,1,-17340,0,'PPMT'),(789,2,-14400,1,'EDT'),(789,3,-18000,0,'EST'),(789,4,-14400,1,'EDT'),(789,5,-18000,0,'EST'),(790,0,-14764,0,'LMT'),(790,1,-14400,0,'AST'),(791,0,-16272,0,'LMT'),(791,1,-14400,1,'-04'),(791,2,-18000,0,'-05'),(791,3,-14400,0,'-04'),(791,4,-18000,0,'-05'),(792,0,-15336,0,'LMT'),(792,1,-10800,1,'-03'),(792,2,-14400,0,'-04'),(793,0,-15865,0,'LMT'),(793,1,-14400,0,'AST'),(793,2,-10800,1,'APT'),(793,3,-10800,1,'AWT'),(794,0,-17020,0,'LMT'),(794,1,-16966,0,'SMT'),(794,2,-18000,0,'-05'),(794,3,-14400,0,'-04'),(794,4,-14400,1,'-04'),(794,5,-10800,1,'-03'),(794,6,-14400,0,'-04'),(794,7,-10800,0,'-03'),(795,0,-22696,0,'LMT'),(795,1,-18000,1,'CDT'),(795,2,-21600,0,'CST'),(795,3,-18000,1,'CWT'),(795,4,-18000,1,'CPT'),(796,0,0,0,'-00'),(796,1,-14400,1,'CDDT'),(796,2,-21600,0,'CST'),(796,3,-18000,1,'CDT'),(796,4,-18000,0,'EST'),(796,5,-21600,0,'CST'),(797,0,-8376,0,'LMT'),(797,1,-7200,1,'-02'),(797,2,-10800,0,'-03'),(798,0,-25116,0,'LMT'),(798,1,-21600,1,'MDT'),(798,2,-25200,0,'MST'),(798,3,-21600,1,'MWT'),(798,4,-21600,1,'MPT'),(798,5,-21600,0,'CST'),(799,0,0,0,'-00'),(799,1,-14400,1,'CDDT'),(799,2,-21600,0,'CST'),(799,3,-18000,1,'CDT'),(799,4,-18000,0,'EST'),(799,5,-21600,0,'CST'),(800,0,-16272,0,'LMT'),(800,1,-14400,1,'-04'),(800,2,-18000,0,'-05'),(800,3,-14400,0,'-04'),(800,4,-18000,0,'-05'),(801,0,-15408,0,'LMT'),(801,1,-15408,0,'CMT'),(801,2,-14400,0,'-04'),(801,3,-10800,1,'-03'),(801,4,-7200,1,'-02'),(801,5,-10800,0,'-03'),(802,0,-28084,0,'LMT'),(802,1,-25200,0,'MST'),(802,2,-28800,0,'PST'),(802,3,-25200,1,'PDT'),(802,4,-25200,1,'PWT'),(802,5,-25200,1,'PPT'),(803,0,-13128,0,'LMT'),(803,1,-10800,1,'-03'),(803,2,-14400,0,'-04'),(803,3,-10800,0,'-03'),(804,0,-16966,0,'LMT'),(804,1,-16966,0,'SMT'),(804,2,-18000,0,'-05'),(804,3,-14400,0,'-04'),(804,4,-14400,1,'-04'),(804,5,-10800,1,'-03'),(804,6,-10800,1,'-03'),(804,7,-14400,0,'-04'),(805,0,-16776,0,'LMT'),(805,1,-16800,0,'SDMT'),(805,2,-14400,1,'EDT'),(805,3,-18000,0,'EST'),(805,4,-16200,1,'-0430'),(805,5,-14400,0,'AST'),(806,0,-11188,0,'LMT'),(806,1,-7200,1,'-02'),(806,2,-10800,0,'-03'),(807,0,-5272,0,'LMT'),(807,1,-7200,0,'-02'),(807,2,-3600,1,'-01'),(807,3,-7200,0,'-02'),(807,4,-3600,0,'-01'),(807,5,0,1,'+00'),(807,6,0,1,'+00'),(808,0,-25196,0,'LMT'),(808,1,-21600,1,'MDT'),(808,2,-25200,0,'MST'),(808,3,-21600,1,'MWT'),(808,4,-21600,1,'MPT'),(809,0,-32473,0,'LMT'),(809,1,-28800,0,'PST'),(809,2,-25200,1,'PWT'),(809,3,-25200,1,'PPT'),(809,4,-25200,1,'PDT'),(809,5,-32400,0,'YST'),(809,6,-28800,1,'AKDT'),(809,7,-32400,0,'AKST'),(810,0,-14764,0,'LMT'),(810,1,-14400,0,'AST'),(811,0,-12652,0,'LMT'),(811,1,-9052,1,'NDT'),(811,2,-12652,0,'NST'),(811,3,-9000,1,'NDT'),(811,4,-12600,0,'NST'),(811,5,-9000,1,'NPT'),(811,6,-9000,1,'NWT'),(811,7,-5400,1,'NDDT'),(811,8,-9000,1,'NDT'),(812,0,-14764,0,'LMT'),(812,1,-14400,0,'AST'),(813,0,-14764,0,'LMT'),(813,1,-14400,0,'AST'),(814,0,-14764,0,'LMT'),(814,1,-14400,0,'AST'),(815,0,-14764,0,'LMT'),(815,1,-14400,0,'AST'),(816,0,-25880,0,'LMT'),(816,1,-21600,1,'MDT'),(816,2,-25200,0,'MST'),(816,3,-21600,1,'MWT'),(816,4,-21600,1,'MPT'),(816,5,-21600,0,'CST'),(817,0,-20932,0,'LMT'),(817,1,-18000,1,'CDT'),(817,2,-21600,0,'CST'),(818,0,-16508,0,'LMT'),(818,1,-10800,1,'ADT'),(818,2,-14400,0,'AST'),(819,0,-21420,0,'LMT'),(819,1,-21600,0,'CST'),(819,2,-18000,0,'EST'),(819,3,-14400,1,'EWT'),(819,4,-14400,1,'EPT'),(819,5,-14400,1,'EDT'),(820,0,-28084,0,'LMT'),(820,1,-25200,0,'MST'),(820,2,-28800,0,'PST'),(820,3,-25200,1,'PDT'),(820,4,-25200,1,'PWT'),(820,5,-25200,1,'PPT'),(821,0,-19052,0,'LMT'),(821,1,-14400,1,'EDT'),(821,2,-18000,0,'EST'),(821,3,-14400,1,'EWT'),(821,4,-14400,1,'EPT'),(822,0,-14764,0,'LMT'),(822,1,-14400,0,'AST'),(823,0,-29548,0,'LMT'),(823,1,-25200,1,'PDT'),(823,2,-28800,0,'PST'),(823,3,-25200,1,'PWT'),(823,4,-25200,1,'PPT'),(824,0,-14764,0,'LMT'),(824,1,-14400,0,'AST'),(825,0,-32412,0,'LMT'),(825,1,-28800,1,'YDT'),(825,2,-32400,0,'YST'),(825,3,-28800,1,'YWT'),(825,4,-28800,1,'YPT'),(825,5,-25200,1,'YDDT'),(825,6,-28800,0,'PST'),(825,7,-25200,1,'PDT'),(826,0,-23316,0,'LMT'),(826,1,-18000,1,'CDT'),(826,2,-21600,0,'CST'),(826,3,-18000,1,'CWT'),(826,4,-18000,1,'CPT'),(826,5,-18000,1,'CDT'),(826,6,-21600,0,'CST'),(827,0,-33535,0,'LMT'),(827,1,-32400,0,'YST'),(827,2,-28800,1,'YWT'),(827,3,-28800,1,'YPT'),(827,4,-28800,1,'YDT'),(827,5,-28800,1,'AKDT'),(827,6,-32400,0,'AKST'),(828,0,0,0,'-00'),(828,1,-21600,1,'MWT'),(828,2,-21600,1,'MPT'),(828,3,-25200,0,'MST'),(828,4,-18000,1,'MDDT'),(828,5,-21600,1,'MDT'),(829,0,0,0,'-00'),(829,1,28800,0,'+08'),(829,2,39600,0,'+11'),(829,3,28800,0,'+08'),(830,0,0,0,'-00'),(830,1,25200,0,'+07'),(830,2,18000,0,'+05'),(830,3,25200,0,'+07'),(831,0,0,0,'-00'),(831,1,36000,0,'+10'),(832,0,0,0,'-00'),(832,1,36000,0,'AEST'),(832,2,39600,1,'AEDT'),(832,3,0,0,'-00'),(832,4,39600,1,'AEDT'),(832,5,36000,0,'AEST'),(832,6,39600,0,'+11'),(833,0,0,0,'-00'),(833,1,21600,0,'+06'),(833,2,18000,0,'+05'),(834,0,41944,0,'LMT'),(834,1,45000,1,'NZST'),(834,2,41400,0,'NZMT'),(834,3,43200,1,'NZST'),(834,4,46800,1,'NZDT'),(834,5,43200,0,'NZST'),(834,6,43200,0,'NZST'),(835,0,0,0,'-00'),(835,1,-14400,0,'-04'),(835,2,-10800,1,'-03'),(835,3,-7200,1,'-02'),(835,4,-10800,0,'-03'),(835,5,-10800,1,'-03'),(835,6,-14400,0,'-04'),(835,7,-10800,0,'-03'),(836,0,0,0,'-00'),(836,1,-10800,0,'-03'),(837,0,41944,0,'LMT'),(837,1,45000,1,'NZST'),(837,2,41400,0,'NZMT'),(837,3,43200,1,'NZST'),(837,4,46800,1,'NZDT'),(837,5,43200,0,'NZST'),(837,6,43200,0,'NZST'),(838,0,0,0,'-00'),(838,1,10800,0,'+03'),(839,0,0,0,'-00'),(839,1,7200,1,'+02'),(839,2,0,0,'+00'),(839,3,0,0,'+00'),(840,0,0,0,'-00'),(840,1,21600,0,'+06'),(841,0,2580,0,'LMT'),(841,1,7200,1,'CEST'),(841,2,3600,0,'CET'),(841,3,3600,0,'CET'),(841,4,7200,1,'CEST'),(841,5,7200,1,'CEST'),(841,6,3600,0,'CET'),(842,0,11212,0,'LMT'),(842,1,10800,0,'+03'),(843,0,18468,0,'LMT'),(843,1,18000,0,'+05'),(843,2,25200,1,'+07'),(843,3,21600,0,'+06'),(843,4,21600,0,'+06'),(843,5,25200,1,'+07'),(843,6,21600,1,'+06'),(843,7,18000,0,'+05'),(843,8,25200,1,'+07'),(843,9,21600,0,'+06'),(844,0,8624,0,'LMT'),(844,1,10800,1,'EEST'),(844,2,7200,0,'EET'),(844,3,7200,0,'EET'),(844,4,10800,1,'EEST'),(845,0,42596,0,'LMT'),(845,1,43200,0,'+12'),(845,2,50400,1,'+14'),(845,3,46800,0,'+13'),(845,4,46800,1,'+13'),(845,5,43200,0,'+12'),(845,6,46800,1,'+13'),(845,7,43200,1,'+12'),(845,8,39600,0,'+11'),(845,9,43200,0,'+12'),(846,0,12064,0,'LMT'),(846,1,14400,0,'+04'),(846,2,18000,0,'+05'),(846,3,21600,0,'+06'),(846,4,21600,1,'+06'),(846,5,18000,0,'+05'),(846,6,21600,1,'+06'),(846,7,18000,1,'+05'),(846,8,14400,0,'+04'),(846,9,18000,0,'+05'),(847,0,13720,0,'LMT'),(847,1,14400,0,'+04'),(847,2,18000,0,'+05'),(847,3,21600,1,'+06'),(847,4,21600,0,'+06'),(847,5,18000,0,'+05'),(847,6,21600,1,'+06'),(847,7,18000,1,'+05'),(847,8,14400,0,'+04'),(847,9,21600,1,'+06'),(847,10,18000,0,'+05'),(848,0,14012,0,'LMT'),(848,1,14400,0,'+04'),(848,2,21600,1,'+06'),(848,3,18000,0,'+05'),(848,4,18000,0,'+05'),(848,5,21600,1,'+06'),(848,6,18000,1,'+05'),(848,7,14400,0,'+04'),(848,8,18000,0,'+05'),(849,0,14012,0,'LMT'),(849,1,14400,0,'+04'),(849,2,21600,1,'+06'),(849,3,18000,0,'+05'),(849,4,18000,0,'+05'),(849,5,21600,1,'+06'),(849,6,18000,1,'+05'),(849,7,14400,0,'+04'),(849,8,18000,0,'+05'),(850,0,12464,0,'LMT'),(850,1,10800,0,'+03'),(850,2,18000,0,'+05'),(850,3,21600,0,'+06'),(850,4,21600,1,'+06'),(850,5,18000,0,'+05'),(850,6,21600,1,'+06'),(850,7,18000,1,'+05'),(850,8,14400,0,'+04'),(850,9,18000,0,'+05'),(851,0,10660,0,'LMT'),(851,1,10656,0,'BMT'),(851,2,10800,0,'+03'),(851,3,14400,1,'+04'),(851,4,10800,0,'+03'),(851,5,14400,1,'+04'),(852,0,12368,0,'LMT'),(852,1,14400,0,'+04'),(852,2,10800,0,'+03'),(853,0,11964,0,'LMT'),(853,1,10800,0,'+03'),(853,2,18000,1,'+05'),(853,3,14400,0,'+04'),(853,4,14400,0,'+04'),(853,5,18000,1,'+05'),(853,6,14400,1,'+04'),(853,7,10800,0,'+03'),(853,8,18000,1,'+05'),(853,9,14400,0,'+04'),(854,0,24124,0,'LMT'),(854,1,24124,0,'BMT'),(854,2,25200,0,'+07'),(855,0,20100,0,'LMT'),(855,1,21600,0,'+06'),(855,2,28800,1,'+08'),(855,3,25200,0,'+07'),(855,4,25200,0,'+07'),(855,5,28800,1,'+08'),(855,6,25200,1,'+07'),(855,7,21600,0,'+06'),(855,8,25200,1,'+07'),(855,9,25200,0,'+07'),(856,0,8520,0,'LMT'),(856,1,10800,1,'EEST'),(856,2,7200,0,'EET'),(857,0,17904,0,'LMT'),(857,1,18000,0,'+05'),(857,2,25200,1,'+07'),(857,3,21600,0,'+06'),(857,4,21600,0,'+06'),(857,5,25200,1,'+07'),(857,6,21600,1,'+06'),(857,7,18000,0,'+05'),(857,8,21600,1,'+06'),(857,9,21600,0,'+06'),(858,0,27580,0,'LMT'),(858,1,27000,0,'+0730'),(858,2,28800,0,'+08'),(859,0,21200,0,'HMT'),(859,1,19270,0,'MMT'),(859,2,19800,0,'IST'),(859,3,23400,1,'+0630'),(860,0,27232,0,'LMT'),(860,1,28800,0,'+08'),(860,2,36000,1,'+10'),(860,3,32400,0,'+09'),(860,4,32400,0,'+09'),(860,5,36000,1,'+10'),(860,6,32400,1,'+09'),(860,7,28800,0,'+08'),(860,8,36000,0,'+10'),(860,9,36000,1,'+10'),(860,10,32400,0,'+09'),(861,0,27480,0,'LMT'),(861,1,25200,0,'+07'),(861,2,28800,0,'+08'),(861,3,32400,0,'+09'),(861,4,36000,1,'+10'),(861,5,32400,1,'+09'),(861,6,28800,0,'+08'),(862,0,29143,0,'LMT'),(862,1,32400,1,'CDT'),(862,2,28800,0,'CST'),(863,0,29143,0,'LMT'),(863,1,32400,1,'CDT'),(863,2,28800,0,'CST'),(864,0,19164,0,'LMT'),(864,1,19172,0,'MMT'),(864,2,19800,0,'+0530'),(864,3,21600,1,'+06'),(864,4,23400,1,'+0630'),(864,5,23400,0,'+0630'),(864,6,21600,0,'+06'),(864,7,19800,0,'+0530'),(865,0,21700,0,'LMT'),(865,1,21200,0,'HMT'),(865,2,23400,0,'+0630'),(865,3,19800,0,'+0530'),(865,4,21600,0,'+06'),(865,5,25200,1,'+07'),(866,0,8712,0,'LMT'),(866,1,10800,1,'EEST'),(866,2,7200,0,'EET'),(867,0,21700,0,'LMT'),(867,1,21200,0,'HMT'),(867,2,23400,0,'+0630'),(867,3,19800,0,'+0530'),(867,4,21600,0,'+06'),(867,5,25200,1,'+07'),(868,0,30140,0,'LMT'),(868,1,28800,0,'+08'),(868,2,32400,0,'+09'),(869,0,13272,0,'LMT'),(869,1,14400,0,'+04'),(870,0,16512,0,'LMT'),(870,1,18000,0,'+05'),(870,2,25200,1,'+07'),(870,3,21600,0,'+06'),(870,4,21600,0,'+06'),(870,5,25200,1,'+07'),(870,6,21600,1,'+06'),(870,7,18000,0,'+05'),(871,0,8148,0,'LMT'),(871,1,10800,1,'EEST'),(871,2,7200,0,'EET'),(871,3,7200,0,'EET'),(871,4,10800,1,'EEST'),(871,5,10800,0,'+03'),(871,6,7200,0,'EET'),(872,0,8272,0,'LMT'),(872,1,10800,1,'EEST'),(872,2,7200,0,'EET'),(872,3,10800,1,'IDT'),(872,4,7200,0,'IST'),(872,5,7200,0,'EET'),(873,0,29143,0,'LMT'),(873,1,32400,1,'CDT'),(873,2,28800,0,'CST'),(874,0,8423,0,'LMT'),(874,1,10800,1,'EEST'),(874,2,7200,0,'EET'),(874,3,10800,1,'IDT'),(874,4,7200,0,'IST'),(874,5,7200,0,'EET'),(875,0,25600,0,'LMT'),(875,1,25590,0,'PLMT'),(875,2,25200,0,'+07'),(875,3,28800,0,'+08'),(875,4,32400,0,'+09'),(875,5,25200,0,'+07'),(876,0,27402,0,'LMT'),(876,1,28800,0,'HKT'),(876,2,32400,1,'HKST'),(876,3,30600,1,'HKWT'),(876,4,32400,0,'JST'),(876,5,28800,0,'HKT'),(876,6,32400,1,'HKST'),(877,0,21996,0,'LMT'),(877,1,21600,0,'+06'),(877,2,28800,1,'+08'),(877,3,25200,0,'+07'),(878,0,25025,0,'LMT'),(878,1,25025,0,'IMT'),(878,2,25200,0,'+07'),(878,3,32400,1,'+09'),(878,4,28800,0,'+08'),(878,5,28800,0,'+08'),(878,6,32400,1,'+09'),(878,7,28800,1,'+08'),(878,8,25200,0,'+07'),(878,9,32400,0,'+09'),(878,10,32400,1,'+09'),(878,11,28800,0,'+08'),(879,0,6952,0,'LMT'),(879,1,7016,0,'IMT'),(879,2,10800,1,'EEST'),(879,3,7200,0,'EET'),(879,4,10800,0,'+03'),(879,5,14400,1,'+04'),(879,6,10800,1,'EEST'),(879,7,7200,0,'EET'),(879,8,10800,1,'EEST'),(879,9,7200,0,'EET'),(879,10,10800,0,'+03'),(880,0,25632,0,'LMT'),(880,1,25632,0,'BMT'),(880,2,26400,0,'+0720'),(880,3,27000,0,'+0730'),(880,4,32400,0,'+09'),(880,5,28800,0,'+08'),(880,6,25200,0,'WIB'),(881,0,33768,0,'LMT'),(881,1,32400,0,'+09'),(881,2,34200,0,'+0930'),(881,3,32400,0,'WIT'),(882,0,8454,0,'LMT'),(882,1,8440,0,'JMT'),(882,2,10800,1,'IDT'),(882,3,7200,0,'IST'),(882,4,14400,1,'IDDT'),(882,5,10800,1,'IDT'),(883,0,16608,0,'LMT'),(883,1,14400,0,'+04'),(883,2,16200,0,'+0430'),(884,0,38076,0,'LMT'),(884,1,39600,0,'+11'),(884,2,46800,1,'+13'),(884,3,43200,0,'+12'),(884,4,43200,0,'+12'),(884,5,46800,1,'+13'),(884,6,43200,1,'+12'),(884,7,39600,0,'+11'),(884,8,43200,0,'+12'),(885,0,16092,0,'LMT'),(885,1,19800,0,'+0530'),(885,2,23400,1,'+0630'),(885,3,18000,0,'+05'),(885,4,21600,1,'PKST'),(885,5,18000,0,'PKT'),(886,0,21020,0,'LMT'),(886,1,21600,0,'+06'),(887,0,20476,0,'LMT'),(887,1,19800,0,'+0530'),(887,2,20700,0,'+0545'),(888,0,20476,0,'LMT'),(888,1,19800,0,'+0530'),(888,2,20700,0,'+0545'),(889,0,32533,0,'LMT'),(889,1,28800,0,'+08'),(889,2,36000,1,'+10'),(889,3,32400,0,'+09'),(889,4,32400,0,'+09'),(889,5,36000,1,'+10'),(889,6,32400,1,'+09'),(889,7,28800,0,'+08'),(889,8,39600,1,'+11'),(889,9,36000,0,'+10'),(889,10,36000,0,'+10'),(889,11,39600,0,'+11'),(889,12,32400,0,'+09'),(890,0,21200,0,'HMT'),(890,1,19270,0,'MMT'),(890,2,19800,0,'IST'),(890,3,23400,1,'+0630'),(891,0,22286,0,'LMT'),(891,1,21600,0,'+06'),(891,2,28800,1,'+08'),(891,3,25200,0,'+07'),(891,4,25200,0,'+07'),(891,5,28800,1,'+08'),(891,6,25200,1,'+07'),(891,7,21600,0,'+06'),(891,8,28800,0,'+08'),(891,9,28800,1,'+08'),(891,10,25200,0,'+07'),(892,0,24406,0,'LMT'),(892,1,24925,0,'SMT'),(892,2,25200,0,'+07'),(892,3,26400,1,'+0720'),(892,4,26400,0,'+0720'),(892,5,27000,0,'+0730'),(892,6,32400,0,'+09'),(892,7,28800,0,'+08'),(893,0,26480,0,'LMT'),(893,1,27000,0,'+0730'),(893,2,30000,1,'+0820'),(893,3,28800,0,'+08'),(893,4,32400,0,'+09'),(893,5,28800,0,'+08'),(894,0,11212,0,'LMT'),(894,1,10800,0,'+03'),(895,0,27250,0,'LMT'),(895,1,28800,0,'CST'),(895,2,36000,1,'+10'),(895,3,32400,0,'+09'),(895,4,32400,1,'CDT'),(895,5,28800,0,'CST'),(895,6,32400,1,'CDT'),(896,0,27250,0,'LMT'),(896,1,28800,0,'CST'),(896,2,36000,1,'+10'),(896,3,32400,0,'+09'),(896,4,32400,1,'CDT'),(896,5,28800,0,'CST'),(896,6,32400,1,'CDT'),(897,0,36192,0,'LMT'),(897,1,36000,0,'+10'),(897,2,43200,1,'+12'),(897,3,39600,0,'+11'),(897,4,39600,0,'+11'),(897,5,43200,1,'+12'),(897,6,39600,1,'+11'),(897,7,36000,0,'+10'),(897,8,43200,0,'+12'),(897,9,43200,1,'+12'),(897,10,39600,0,'+11'),(898,0,28656,0,'LMT'),(898,1,28656,0,'MMT'),(898,2,28800,0,'+08'),(898,3,32400,0,'+09'),(898,4,28800,0,'WITA'),(899,0,29040,0,'LMT'),(899,1,32400,1,'PDT'),(899,2,28800,0,'PST'),(899,3,32400,0,'JST'),(899,4,28800,0,'PST'),(900,0,13272,0,'LMT'),(900,1,14400,0,'+04'),(901,0,8008,0,'LMT'),(901,1,10800,1,'EEST'),(901,2,7200,0,'EET'),(901,3,7200,0,'EET'),(901,4,10800,1,'EEST'),(902,0,20928,0,'LMT'),(902,1,21600,0,'+06'),(902,2,28800,1,'+08'),(902,3,25200,0,'+07'),(902,4,25200,0,'+07'),(902,5,28800,1,'+08'),(902,6,25200,1,'+07'),(902,7,21600,0,'+06'),(902,8,25200,0,'+07'),(903,0,19900,0,'LMT'),(903,1,21600,0,'+06'),(903,2,28800,1,'+08'),(903,3,25200,0,'+07'),(903,4,25200,0,'+07'),(903,5,28800,1,'+08'),(903,6,25200,1,'+07'),(903,7,21600,0,'+06'),(903,8,25200,1,'+07'),(903,9,25200,0,'+07'),(904,0,17610,0,'LMT'),(904,1,18000,0,'+05'),(904,2,25200,1,'+07'),(904,3,21600,0,'+06'),(904,4,21600,0,'+06'),(904,5,25200,1,'+07'),(904,6,21600,1,'+06'),(904,7,18000,0,'+05'),(904,8,25200,0,'+07'),(904,9,25200,1,'+07'),(904,10,21600,0,'+06'),(905,0,12324,0,'LMT'),(905,1,10800,0,'+03'),(905,2,18000,0,'+05'),(905,3,21600,1,'+06'),(905,4,21600,0,'+06'),(905,5,18000,0,'+05'),(905,6,21600,1,'+06'),(905,7,18000,1,'+05'),(905,8,14400,0,'+04'),(905,9,18000,0,'+05'),(906,0,24124,0,'LMT'),(906,1,24124,0,'BMT'),(906,2,25200,0,'+07'),(907,0,26240,0,'LMT'),(907,1,26240,0,'PMT'),(907,2,27000,0,'+0730'),(907,3,32400,0,'+09'),(907,4,28800,0,'+08'),(907,5,28800,0,'WITA'),(907,6,25200,0,'WIB'),(908,0,30180,0,'LMT'),(908,1,30600,0,'KST'),(908,2,32400,0,'JST'),(908,3,32400,0,'KST'),(909,0,12368,0,'LMT'),(909,1,14400,0,'+04'),(909,2,10800,0,'+03'),(910,0,15268,0,'LMT'),(910,1,14400,0,'+04'),(910,2,18000,0,'+05'),(910,3,21600,1,'+06'),(910,4,21600,0,'+06'),(910,5,18000,0,'+05'),(910,6,21600,1,'+06'),(910,7,18000,1,'+05'),(910,8,14400,0,'+04'),(910,9,21600,0,'+06'),(910,10,21600,1,'+06'),(911,0,15712,0,'LMT'),(911,1,14400,0,'+04'),(911,2,18000,0,'+05'),(911,3,21600,1,'+06'),(911,4,21600,0,'+06'),(911,5,18000,0,'+05'),(911,6,21600,1,'+06'),(911,7,18000,1,'+05'),(911,8,14400,0,'+04'),(911,9,21600,0,'+06'),(911,10,21600,1,'+06'),(911,11,18000,0,'+05'),(912,0,23087,0,'LMT'),(912,1,23087,0,'RMT'),(912,2,23400,0,'+0630'),(912,3,32400,0,'+09'),(912,4,23400,0,'+0630'),(913,0,11212,0,'LMT'),(913,1,10800,0,'+03'),(914,0,25600,0,'LMT'),(914,1,25590,0,'PLMT'),(914,2,25200,0,'+07'),(914,3,28800,0,'+08'),(914,4,32400,0,'+09'),(914,5,25200,0,'+07'),(915,0,34248,0,'LMT'),(915,1,32400,0,'+09'),(915,2,43200,1,'+12'),(915,3,39600,0,'+11'),(915,4,39600,0,'+11'),(915,5,43200,1,'+12'),(915,6,39600,1,'+11'),(915,7,36000,0,'+10'),(915,8,39600,0,'+11'),(916,0,16073,0,'LMT'),(916,1,14400,0,'+04'),(916,2,18000,0,'+05'),(916,3,21600,1,'+06'),(916,4,21600,0,'+06'),(916,5,18000,0,'+05'),(916,6,21600,1,'+06'),(917,0,30472,0,'LMT'),(917,1,30600,0,'KST'),(917,2,32400,0,'JST'),(917,3,36000,1,'KDT'),(917,4,32400,0,'KST'),(917,5,34200,1,'KDT'),(917,6,36000,1,'KDT'),(918,0,29143,0,'LMT'),(918,1,32400,1,'CDT'),(918,2,28800,0,'CST'),(919,0,24925,0,'LMT'),(919,1,24925,0,'SMT'),(919,2,25200,0,'+07'),(919,3,26400,1,'+0720'),(919,4,26400,0,'+0720'),(919,5,27000,0,'+0730'),(919,6,32400,0,'+09'),(919,7,28800,0,'+08'),(920,0,36892,0,'LMT'),(920,1,36000,0,'+10'),(920,2,43200,1,'+12'),(920,3,39600,0,'+11'),(920,4,39600,0,'+11'),(920,5,43200,1,'+12'),(920,6,39600,1,'+11'),(920,7,36000,0,'+10'),(920,8,43200,0,'+12'),(920,9,43200,1,'+12'),(920,10,39600,0,'+11'),(921,0,29160,0,'LMT'),(921,1,28800,0,'CST'),(921,2,32400,0,'JST'),(921,3,32400,1,'CDT'),(921,4,28800,0,'CST'),(922,0,16631,0,'LMT'),(922,1,18000,0,'+05'),(922,2,25200,1,'+07'),(922,3,21600,0,'+06'),(922,4,21600,0,'+06'),(922,5,25200,1,'+07'),(922,6,21600,1,'+06'),(922,7,18000,0,'+05'),(923,0,10751,0,'LMT'),(923,1,10751,0,'TBMT'),(923,2,10800,0,'+03'),(923,3,18000,1,'+05'),(923,4,14400,0,'+04'),(923,5,14400,0,'+04'),(923,6,18000,1,'+05'),(923,7,14400,1,'+04'),(923,8,10800,0,'+03'),(923,9,14400,1,'+04'),(923,10,14400,0,'+04'),(924,0,12344,0,'LMT'),(924,1,12344,0,'TMT'),(924,2,12600,0,'+0330'),(924,3,18000,1,'+05'),(924,4,14400,0,'+04'),(924,5,16200,1,'+0430'),(924,6,12600,0,'+0330'),(925,0,8454,0,'LMT'),(925,1,8440,0,'JMT'),(925,2,10800,1,'IDT'),(925,3,7200,0,'IST'),(925,4,14400,1,'IDDT'),(925,5,10800,1,'IDT'),(926,0,21516,0,'LMT'),(926,1,19800,0,'+0530'),(926,2,21600,0,'+06'),(927,0,21516,0,'LMT'),(927,1,19800,0,'+0530'),(927,2,21600,0,'+06'),(928,0,33539,0,'LMT'),(928,1,36000,1,'JDT'),(928,2,32400,0,'JST'),(928,3,32400,0,'JST'),(929,0,20391,0,'LMT'),(929,1,21600,0,'+06'),(929,2,28800,1,'+08'),(929,3,25200,0,'+07'),(929,4,25200,0,'+07'),(929,5,28800,1,'+08'),(929,6,25200,1,'+07'),(929,7,21600,0,'+06'),(929,8,25200,1,'+07'),(929,9,25200,0,'+07'),(930,0,28656,0,'LMT'),(930,1,28656,0,'MMT'),(930,2,28800,0,'+08'),(930,3,32400,0,'+09'),(930,4,28800,0,'WITA'),(931,0,25652,0,'LMT'),(931,1,25200,0,'+07'),(931,2,32400,1,'+09'),(931,3,28800,0,'+08'),(932,0,25652,0,'LMT'),(932,1,25200,0,'+07'),(932,2,32400,1,'+09'),(932,3,28800,0,'+08'),(933,0,21020,0,'LMT'),(933,1,21600,0,'+06'),(934,0,34374,0,'LMT'),(934,1,28800,0,'+08'),(934,2,32400,0,'+09'),(934,3,39600,0,'+11'),(934,4,43200,1,'+12'),(934,5,39600,0,'+11'),(934,6,43200,1,'+12'),(934,7,39600,1,'+11'),(934,8,36000,0,'+10'),(934,9,43200,0,'+12'),(934,10,43200,1,'+12'),(934,11,36000,0,'+10'),(935,0,24124,0,'LMT'),(935,1,24124,0,'BMT'),(935,2,25200,0,'+07'),(936,0,31651,0,'LMT'),(936,1,32400,0,'+09'),(936,2,39600,1,'+11'),(936,3,36000,0,'+10'),(936,4,36000,0,'+10'),(936,5,39600,1,'+11'),(936,6,36000,1,'+10'),(936,7,32400,0,'+09'),(936,8,39600,0,'+11'),(936,9,39600,1,'+11'),(936,10,36000,0,'+10'),(937,0,31138,0,'LMT'),(937,1,28800,0,'+08'),(937,2,36000,1,'+10'),(937,3,32400,0,'+09'),(937,4,32400,0,'+09'),(937,5,36000,1,'+10'),(937,6,32400,1,'+09'),(937,7,28800,0,'+08'),(937,8,36000,0,'+10'),(937,9,36000,1,'+10'),(937,10,32400,0,'+09'),(938,0,23087,0,'LMT'),(938,1,23087,0,'RMT'),(938,2,23400,0,'+0630'),(938,3,32400,0,'+09'),(938,4,23400,0,'+0630'),(939,0,14553,0,'LMT'),(939,1,13505,0,'PMT'),(939,2,14400,0,'+04'),(939,3,21600,1,'+06'),(939,4,18000,0,'+05'),(939,5,18000,0,'+05'),(939,6,21600,1,'+06'),(939,7,18000,1,'+05'),(939,8,14400,0,'+04'),(939,9,21600,0,'+06'),(939,10,21600,1,'+06'),(939,11,18000,0,'+05'),(940,0,10680,0,'LMT'),(940,1,10800,0,'+03'),(940,2,18000,1,'+05'),(940,3,14400,0,'+04'),(940,4,14400,0,'+04'),(940,5,18000,1,'+05'),(940,6,14400,1,'+04'),(940,7,10800,0,'+03'),(940,8,18000,1,'+05'),(940,9,14400,0,'+04'),(941,0,-6160,0,'LMT'),(941,1,-6872,0,'HMT'),(941,2,-3600,1,'-01'),(941,3,-7200,0,'-02'),(941,4,-3600,1,'-01'),(941,5,-7200,0,'-02'),(941,6,-7200,0,'-02'),(941,7,0,1,'+00'),(941,8,-3600,0,'-01'),(941,9,-3600,0,'-01'),(941,10,0,0,'WET'),(941,11,0,1,'+00'),(941,12,-3600,0,'-01'),(942,0,-15558,0,'LMT'),(942,1,-14400,0,'AST'),(942,2,-10800,1,'ADT'),(943,0,-3696,0,'LMT'),(943,1,-3600,0,'-01'),(943,2,0,0,'WET'),(943,3,3600,1,'WEST'),(943,4,0,0,'WET'),(943,5,3600,1,'WEST'),(944,0,-5644,0,'LMT'),(944,1,-7200,0,'-02'),(944,2,-3600,1,'-01'),(944,3,-7200,0,'-02'),(944,4,-3600,0,'-01'),(945,0,-1624,0,'LMT'),(945,1,0,0,'WET'),(945,2,3600,1,'WEST'),(945,3,0,0,'WET'),(946,0,-1624,0,'LMT'),(946,1,0,0,'WET'),(946,2,3600,1,'WEST'),(946,3,0,0,'WET'),(947,0,2580,0,'LMT'),(947,1,7200,1,'CEST'),(947,2,3600,0,'CET'),(947,3,3600,0,'CET'),(947,4,7200,1,'CEST'),(947,5,7200,1,'CEST'),(947,6,3600,0,'CET'),(948,0,-4056,0,'LMT'),(948,1,-4056,0,'FMT'),(948,2,0,1,'+00'),(948,3,-3600,0,'-01'),(948,4,0,1,'+00'),(948,5,-3600,0,'-01'),(948,6,-3600,0,'-01'),(948,7,3600,1,'+01'),(948,8,3600,1,'WEST'),(948,9,0,0,'WET'),(948,10,0,0,'WET'),(948,11,0,0,'WET'),(948,12,3600,1,'WEST'),(949,0,-5280,0,'LMT'),(949,1,0,1,'+00'),(949,2,-3600,0,'-01'),(949,3,-3600,0,'-01'),(949,4,0,1,'+00'),(949,5,0,0,'GMT'),(950,0,-7200,0,'-02'),(951,0,-968,0,'LMT'),(951,1,0,0,'GMT'),(952,0,-13884,0,'LMT'),(952,1,-13884,0,'SMT'),(952,2,-10800,1,'-03'),(952,3,-14400,0,'-04'),(952,4,-7200,1,'-02'),(952,5,-10800,0,'-03'),(952,6,-10800,1,'-03'),(953,0,36292,0,'LMT'),(953,1,39600,1,'AEDT'),(953,2,36000,0,'AEST'),(953,3,39600,1,'AEDT'),(953,4,36000,0,'AEST'),(954,0,32400,0,'ACST'),(954,1,37800,1,'ACDT'),(954,2,34200,0,'ACST'),(954,3,37800,1,'ACDT'),(954,4,34200,0,'ACST'),(955,0,36728,0,'LMT'),(955,1,39600,1,'AEDT'),(955,2,36000,0,'AEST'),(955,3,39600,1,'AEDT'),(955,4,36000,0,'AEST'),(956,0,32400,0,'ACST'),(956,1,37800,1,'ACDT'),(956,2,34200,0,'ACST'),(956,3,37800,1,'ACDT'),(956,4,34200,0,'ACST'),(957,0,36292,0,'LMT'),(957,1,39600,1,'AEDT'),(957,2,36000,0,'AEST'),(957,3,39600,1,'AEDT'),(957,4,36000,0,'AEST'),(958,0,34528,0,'LMT'),(958,1,36000,0,'AEST'),(958,2,39600,1,'AEDT'),(958,3,39600,1,'AEDT'),(958,4,36000,0,'AEST'),(959,0,32400,0,'ACST'),(959,1,37800,1,'ACDT'),(959,2,34200,0,'ACST'),(960,0,30928,0,'LMT'),(960,1,35100,1,'+0945'),(960,2,31500,0,'+0845'),(960,3,35100,1,'+0945'),(960,4,31500,0,'+0845'),(961,0,35356,0,'LMT'),(961,1,36000,0,'AEST'),(961,2,39600,1,'AEDT'),(961,3,39600,1,'AEDT'),(961,4,36000,0,'AEST'),(962,0,38180,0,'LMT'),(962,1,36000,0,'AEST'),(962,2,41400,1,'+1130'),(962,3,37800,0,'+1030'),(962,4,39600,1,'+11'),(963,0,35756,0,'LMT'),(963,1,39600,1,'AEDT'),(963,2,36000,0,'AEST'),(963,3,39600,1,'AEDT'),(963,4,36000,0,'AEST'),(964,0,38180,0,'LMT'),(964,1,36000,0,'AEST'),(964,2,41400,1,'+1130'),(964,3,37800,0,'+1030'),(964,4,39600,1,'+11'),(965,0,34792,0,'LMT'),(965,1,39600,1,'AEDT'),(965,2,36000,0,'AEST'),(965,3,39600,1,'AEDT'),(965,4,36000,0,'AEST'),(966,0,36292,0,'LMT'),(966,1,39600,1,'AEDT'),(966,2,36000,0,'AEST'),(966,3,39600,1,'AEDT'),(966,4,36000,0,'AEST'),(967,0,32400,0,'ACST'),(967,1,37800,1,'ACDT'),(967,2,34200,0,'ACST'),(968,0,27804,0,'LMT'),(968,1,32400,1,'AWDT'),(968,2,28800,0,'AWST'),(968,3,32400,1,'AWDT'),(968,4,28800,0,'AWST'),(969,0,36728,0,'LMT'),(969,1,39600,1,'AEDT'),(969,2,36000,0,'AEST'),(969,3,39600,1,'AEDT'),(969,4,36000,0,'AEST'),(970,0,32400,0,'ACST'),(970,1,37800,1,'ACDT'),(970,2,34200,0,'ACST'),(970,3,37800,1,'ACDT'),(970,4,34200,0,'ACST'),(971,0,36292,0,'LMT'),(971,1,39600,1,'AEDT'),(971,2,36000,0,'AEST'),(971,3,39600,1,'AEDT'),(971,4,36000,0,'AEST'),(972,0,35356,0,'LMT'),(972,1,36000,0,'AEST'),(972,2,39600,1,'AEDT'),(972,3,39600,1,'AEDT'),(972,4,36000,0,'AEST'),(973,0,34792,0,'LMT'),(973,1,39600,1,'AEDT'),(973,2,36000,0,'AEST'),(973,3,39600,1,'AEDT'),(973,4,36000,0,'AEST'),(974,0,27804,0,'LMT'),(974,1,32400,1,'AWDT'),(974,2,28800,0,'AWST'),(974,3,32400,1,'AWDT'),(974,4,28800,0,'AWST'),(975,0,32400,0,'ACST'),(975,1,37800,1,'ACDT'),(975,2,34200,0,'ACST'),(975,3,37800,1,'ACDT'),(975,4,34200,0,'ACST'),(976,0,-16272,0,'LMT'),(976,1,-14400,1,'-04'),(976,2,-18000,0,'-05'),(976,3,-14400,0,'-04'),(976,4,-18000,0,'-05'),(977,0,-7780,0,'LMT'),(977,1,-3600,1,'-01'),(977,2,-7200,0,'-02'),(978,0,-11188,0,'LMT'),(978,1,-7200,1,'-02'),(978,2,-10800,0,'-03'),(979,0,-14404,0,'LMT'),(979,1,-10800,1,'-03'),(979,2,-14400,0,'-04'),(980,0,7200,1,'CEST'),(980,1,3600,0,'CET'),(980,2,7200,1,'CEST'),(980,3,3600,0,'CET'),(981,0,-18000,1,'CDT'),(981,1,-21600,0,'CST'),(981,2,-18000,1,'CWT'),(981,3,-18000,1,'CPT'),(982,0,-15264,0,'LMT'),(982,1,-10800,1,'ADT'),(982,2,-14400,0,'AST'),(982,3,-10800,1,'AWT'),(982,4,-10800,1,'APT'),(983,0,-23316,0,'LMT'),(983,1,-18000,1,'CDT'),(983,2,-21600,0,'CST'),(983,3,-18000,1,'CWT'),(983,4,-18000,1,'CPT'),(983,5,-18000,1,'CDT'),(983,6,-21600,0,'CST'),(984,0,-19052,0,'LMT'),(984,1,-14400,1,'EDT'),(984,2,-18000,0,'EST'),(984,3,-14400,1,'EWT'),(984,4,-14400,1,'EPT'),(985,0,-27232,0,'LMT'),(985,1,-21600,1,'MDT'),(985,2,-25200,0,'MST'),(985,3,-21600,1,'MWT'),(985,4,-21600,1,'MPT'),(986,0,-12652,0,'LMT'),(986,1,-9052,1,'NDT'),(986,2,-12652,0,'NST'),(986,3,-9000,1,'NDT'),(986,4,-12600,0,'NST'),(986,5,-9000,1,'NPT'),(986,6,-9000,1,'NWT'),(986,7,-5400,1,'NDDT'),(986,8,-9000,1,'NDT'),(987,0,-29548,0,'LMT'),(987,1,-25200,1,'PDT'),(987,2,-28800,0,'PST'),(987,3,-25200,1,'PWT'),(987,4,-25200,1,'PPT'),(988,0,-25116,0,'LMT'),(988,1,-21600,1,'MDT'),(988,2,-25200,0,'MST'),(988,3,-21600,1,'MWT'),(988,4,-21600,1,'MPT'),(988,5,-21600,0,'CST'),(989,0,-32412,0,'LMT'),(989,1,-28800,1,'YDT'),(989,2,-32400,0,'YST'),(989,3,-28800,1,'YWT'),(989,4,-28800,1,'YPT'),(989,5,-25200,1,'YDDT'),(989,6,-28800,0,'PST'),(989,7,-25200,1,'PDT'),(990,0,-16966,0,'LMT'),(990,1,-16966,0,'SMT'),(990,2,-18000,0,'-05'),(990,3,-14400,0,'-04'),(990,4,-14400,1,'-04'),(990,5,-10800,1,'-03'),(990,6,-10800,1,'-03'),(990,7,-14400,0,'-04'),(991,0,-26248,0,'LMT'),(991,1,-26248,0,'EMT'),(991,2,-21600,1,'-06'),(991,3,-25200,0,'-07'),(991,4,-25200,0,'-07'),(991,5,-21600,0,'-06'),(991,6,-18000,1,'-05'),(992,0,-19768,0,'LMT'),(992,1,-19776,0,'HMT'),(992,2,-14400,1,'CDT'),(992,3,-18000,0,'CST'),(992,4,-18000,0,'CST'),(992,5,-14400,1,'CDT'),(993,0,10800,1,'EEST'),(993,1,7200,0,'EET'),(994,0,-18000,0,'EST'),(995,0,-14400,1,'EDT'),(995,1,-18000,0,'EST'),(995,2,-14400,1,'EWT'),(995,3,-14400,1,'EPT'),(996,0,7509,0,'LMT'),(996,1,10800,1,'EEST'),(996,2,7200,0,'EET'),(996,3,10800,1,'EEST'),(997,0,-1500,0,'LMT'),(997,1,-1521,0,'DMT'),(997,2,2079,1,'IST'),(997,3,3600,1,'BST'),(997,4,0,0,'GMT'),(997,5,3600,1,'IST'),(997,6,0,0,'GMT'),(997,7,0,1,'GMT'),(997,8,3600,0,'IST'),(997,9,3600,0,'IST'),(998,0,0,0,'GMT'),(999,0,0,0,'GMT'),(1000,0,-3600,0,'-01'),(1001,0,-36000,0,'-10'),(1002,0,-39600,0,'-11'),(1003,0,-43200,0,'-12'),(1004,0,-7200,0,'-02'),(1005,0,-10800,0,'-03'),(1006,0,-14400,0,'-04'),(1007,0,-18000,0,'-05'),(1008,0,-21600,0,'-06'),(1009,0,-25200,0,'-07'),(1010,0,-28800,0,'-08'),(1011,0,-32400,0,'-09'),(1012,0,0,0,'GMT'),(1013,0,3600,0,'+01'),(1014,0,36000,0,'+10'),(1015,0,39600,0,'+11'),(1016,0,43200,0,'+12'),(1017,0,46800,0,'+13'),(1018,0,50400,0,'+14'),(1019,0,7200,0,'+02'),(1020,0,10800,0,'+03'),(1021,0,14400,0,'+04'),(1022,0,18000,0,'+05'),(1023,0,21600,0,'+06'),(1024,0,25200,0,'+07'),(1025,0,28800,0,'+08'),(1026,0,32400,0,'+09'),(1027,0,0,0,'GMT'),(1028,0,0,0,'GMT'),(1029,0,0,0,'UTC'),(1030,0,0,0,'UTC'),(1031,0,0,0,'UTC'),(1032,0,0,0,'UTC'),(1033,0,1172,0,'LMT'),(1033,1,4772,1,'NST'),(1033,2,1172,0,'AMT'),(1033,3,4772,1,'NST'),(1033,4,1172,0,'AMT'),(1033,5,1200,0,'+0020'),(1033,6,4800,1,'+0120'),(1033,7,4800,1,'+0120'),(1033,8,3600,0,'CET'),(1033,9,7200,1,'CEST'),(1033,10,7200,1,'CEST'),(1033,11,7200,1,'CEST'),(1033,12,3600,0,'CET'),(1033,13,3600,0,'CET'),(1034,0,364,0,'LMT'),(1034,1,0,0,'WET'),(1034,2,3600,0,'CET'),(1034,3,7200,1,'CEST'),(1034,4,3600,0,'CET'),(1035,0,11532,0,'LMT'),(1035,1,10800,0,'+03'),(1035,2,18000,1,'+05'),(1035,3,14400,0,'+04'),(1035,4,14400,0,'+04'),(1035,5,18000,1,'+05'),(1035,6,14400,1,'+04'),(1035,7,10800,0,'+03'),(1035,8,14400,0,'+04'),(1036,0,5692,0,'LMT'),(1036,1,5692,0,'AMT'),(1036,2,10800,1,'EEST'),(1036,3,7200,0,'EET'),(1036,4,3600,0,'CET'),(1036,5,7200,1,'CEST'),(1036,6,10800,1,'EEST'),(1036,7,7200,0,'EET'),(1036,8,10800,1,'EEST'),(1036,9,7200,0,'EET'),(1037,0,-75,0,'LMT'),(1037,1,3600,1,'BST'),(1037,2,0,0,'GMT'),(1037,3,7200,1,'BDST'),(1037,4,3600,0,'BST'),(1037,5,3600,1,'BST'),(1037,6,0,0,'GMT'),(1037,7,0,0,'GMT'),(1038,0,4920,0,'LMT'),(1038,1,3600,0,'CET'),(1038,2,3600,0,'CET'),(1038,3,7200,1,'CEST'),(1038,4,7200,1,'CEST'),(1038,5,7200,1,'CEST'),(1038,6,3600,0,'CET'),(1039,0,3208,0,'LMT'),(1039,1,7200,1,'CEST'),(1039,2,3600,0,'CET'),(1039,3,7200,1,'CEST'),(1039,4,3600,0,'CET'),(1039,5,10800,1,'CEMT'),(1039,6,10800,1,'CEMT'),(1039,7,7200,1,'CEST'),(1039,8,3600,0,'CET'),(1040,0,3464,0,'PMT'),(1040,1,7200,1,'CEST'),(1040,2,3600,0,'CET'),(1040,3,7200,1,'CEST'),(1040,4,3600,0,'CET'),(1040,5,0,1,'GMT'),(1040,6,7200,1,'CEST'),(1040,7,3600,0,'CET'),(1041,0,1050,0,'BMT'),(1041,1,0,0,'WET'),(1041,2,3600,0,'CET'),(1041,3,7200,1,'CEST'),(1041,4,3600,0,'CET'),(1041,5,7200,1,'CEST'),(1041,6,3600,1,'WEST'),(1041,7,0,0,'WET'),(1041,8,0,0,'WET'),(1041,9,7200,1,'CEST'),(1041,10,3600,0,'CET'),(1042,0,6264,0,'LMT'),(1042,1,6264,0,'BMT'),(1042,2,10800,1,'EEST'),(1042,3,7200,0,'EET'),(1042,4,10800,1,'EEST'),(1042,5,7200,0,'EET'),(1042,6,10800,1,'EEST'),(1042,7,7200,0,'EET'),(1043,0,4580,0,'LMT'),(1043,1,7200,1,'CEST'),(1043,2,3600,0,'CET'),(1043,3,7200,1,'CEST'),(1043,4,3600,0,'CET'),(1043,5,3600,0,'CET'),(1043,6,7200,1,'CEST'),(1044,0,1786,0,'BMT'),(1044,1,7200,1,'CEST'),(1044,2,3600,0,'CET'),(1044,3,7200,1,'CEST'),(1044,4,3600,0,'CET'),(1045,0,6920,0,'LMT'),(1045,1,6900,0,'CMT'),(1045,2,6264,0,'BMT'),(1045,3,10800,1,'EEST'),(1045,4,7200,0,'EET'),(1045,5,7200,0,'EET'),(1045,6,10800,1,'EEST'),(1045,7,3600,0,'CET'),(1045,8,7200,1,'CEST'),(1045,9,7200,1,'CEST'),(1045,10,14400,1,'MSD'),(1045,11,10800,0,'MSK'),(1045,12,10800,0,'MSK'),(1045,13,14400,1,'MSD'),(1045,14,10800,1,'EEST'),(1045,15,7200,0,'EET'),(1046,0,3020,0,'CMT'),(1046,1,7200,1,'CEST'),(1046,2,3600,0,'CET'),(1046,3,3600,0,'CET'),(1046,4,7200,1,'CEST'),(1046,5,7200,1,'CEST'),(1046,6,3600,0,'CET'),(1047,0,-1500,0,'LMT'),(1047,1,-1521,0,'DMT'),(1047,2,2079,1,'IST'),(1047,3,3600,1,'BST'),(1047,4,0,0,'GMT'),(1047,5,3600,1,'IST'),(1047,6,0,0,'GMT'),(1047,7,0,1,'GMT'),(1047,8,3600,0,'IST'),(1047,9,3600,0,'IST'),(1048,0,-1284,0,'LMT'),(1048,1,3600,1,'BST'),(1048,2,0,0,'GMT'),(1048,3,7200,1,'BDST'),(1048,4,3600,0,'CET'),(1048,5,7200,1,'CEST'),(1048,6,3600,0,'CET'),(1049,0,-75,0,'LMT'),(1049,1,3600,1,'BST'),(1049,2,0,0,'GMT'),(1049,3,7200,1,'BDST'),(1049,4,3600,0,'BST'),(1049,5,3600,1,'BST'),(1049,6,0,0,'GMT'),(1049,7,0,0,'GMT'),(1050,0,5989,0,'LMT'),(1050,1,5989,0,'HMT'),(1050,2,10800,1,'EEST'),(1050,3,7200,0,'EET'),(1050,4,10800,1,'EEST'),(1050,5,7200,0,'EET'),(1051,0,-75,0,'LMT'),(1051,1,3600,1,'BST'),(1051,2,0,0,'GMT'),(1051,3,7200,1,'BDST'),(1051,4,3600,0,'BST'),(1051,5,3600,1,'BST'),(1051,6,0,0,'GMT'),(1051,7,0,0,'GMT'),(1052,0,6952,0,'LMT'),(1052,1,7016,0,'IMT'),(1052,2,10800,1,'EEST'),(1052,3,7200,0,'EET'),(1052,4,10800,0,'+03'),(1052,5,14400,1,'+04'),(1052,6,10800,1,'EEST'),(1052,7,7200,0,'EET'),(1052,8,10800,1,'EEST'),(1052,9,7200,0,'EET'),(1052,10,10800,0,'+03'),(1053,0,-75,0,'LMT'),(1053,1,3600,1,'BST'),(1053,2,0,0,'GMT'),(1053,3,7200,1,'BDST'),(1053,4,3600,0,'BST'),(1053,5,3600,1,'BST'),(1053,6,0,0,'GMT'),(1053,7,0,0,'GMT'),(1054,0,4920,0,'LMT'),(1054,1,7200,1,'CEST'),(1054,2,3600,0,'CET'),(1054,3,7200,1,'CEST'),(1054,4,3600,0,'CET'),(1054,5,10800,1,'EEST'),(1054,6,7200,0,'EET'),(1054,7,14400,1,'MSD'),(1054,8,10800,0,'MSK'),(1054,9,10800,0,'MSK'),(1054,10,14400,1,'MSD'),(1054,11,10800,1,'EEST'),(1054,12,7200,0,'EET'),(1054,13,10800,0,'+03'),(1054,14,7200,0,'EET'),(1055,0,7324,0,'LMT'),(1055,1,7324,0,'KMT'),(1055,2,7200,0,'EET'),(1055,3,10800,0,'MSK'),(1055,4,3600,0,'CET'),(1055,5,7200,1,'CEST'),(1055,6,7200,1,'CEST'),(1055,7,14400,1,'MSD'),(1055,8,10800,0,'MSK'),(1055,9,14400,1,'MSD'),(1055,10,10800,1,'EEST'),(1055,11,10800,1,'EEST'),(1055,12,7200,0,'EET'),(1056,0,11928,0,'LMT'),(1056,1,10800,0,'+03'),(1056,2,18000,1,'+05'),(1056,3,14400,0,'+04'),(1056,4,14400,0,'+04'),(1056,5,18000,1,'+05'),(1056,6,14400,1,'+04'),(1056,7,10800,0,'+03'),(1057,0,-2205,0,'LMT'),(1057,1,3600,1,'WEST'),(1057,2,0,0,'WET'),(1057,3,3600,1,'WEST'),(1057,4,0,0,'WET'),(1057,5,7200,1,'WEMT'),(1057,6,0,0,'WET'),(1057,7,3600,0,'CET'),(1057,8,3600,0,'CET'),(1057,9,7200,1,'CEST'),(1057,10,3600,1,'WEST'),(1057,11,0,0,'WET'),(1058,0,4920,0,'LMT'),(1058,1,3600,0,'CET'),(1058,2,3600,0,'CET'),(1058,3,7200,1,'CEST'),(1058,4,7200,1,'CEST'),(1058,5,7200,1,'CEST'),(1058,6,3600,0,'CET'),(1059,0,-75,0,'LMT'),(1059,1,3600,1,'BST'),(1059,2,0,0,'GMT'),(1059,3,7200,1,'BDST'),(1059,4,3600,0,'BST'),(1059,5,3600,1,'BST'),(1059,6,0,0,'GMT'),(1059,7,0,0,'GMT'),(1060,0,1476,0,'LMT'),(1060,1,7200,1,'CEST'),(1060,2,3600,0,'CET'),(1060,3,7200,1,'CEST'),(1060,4,3600,0,'CET'),(1060,5,3600,1,'WEST'),(1060,6,0,0,'WET'),(1060,7,0,0,'WET'),(1060,8,3600,1,'WEST'),(1060,9,3600,0,'WET'),(1060,10,7200,1,'WEST'),(1060,11,7200,1,'WEST'),(1060,12,7200,1,'CEST'),(1060,13,3600,0,'CET'),(1061,0,-884,0,'LMT'),(1061,1,3600,1,'WEST'),(1061,2,0,0,'WET'),(1061,3,7200,1,'WEMT'),(1061,4,0,0,'WET'),(1061,5,7200,1,'CEST'),(1061,6,3600,0,'CET'),(1061,7,7200,1,'CEST'),(1061,8,3600,0,'CET'),(1061,9,7200,1,'CEST'),(1061,10,3600,0,'CET'),(1062,0,3484,0,'LMT'),(1062,1,7200,1,'CEST'),(1062,2,3600,0,'CET'),(1062,3,3600,0,'CET'),(1062,4,7200,1,'CEST'),(1062,5,7200,1,'CEST'),(1062,6,3600,0,'CET'),(1063,0,5989,0,'LMT'),(1063,1,5989,0,'HMT'),(1063,2,10800,1,'EEST'),(1063,3,7200,0,'EET'),(1063,4,10800,1,'EEST'),(1063,5,7200,0,'EET'),(1064,0,6616,0,'LMT'),(1064,1,6600,0,'MMT'),(1064,2,7200,0,'EET'),(1064,3,10800,0,'MSK'),(1064,4,3600,0,'CET'),(1064,5,7200,1,'CEST'),(1064,6,7200,1,'CEST'),(1064,7,14400,1,'MSD'),(1064,8,10800,0,'MSK'),(1064,9,14400,1,'MSD'),(1064,10,10800,1,'EEST'),(1064,11,7200,0,'EET'),(1064,12,10800,0,'+03'),(1065,0,1772,0,'LMT'),(1065,1,561,0,'PMT'),(1065,2,3600,1,'WEST'),(1065,3,0,0,'WET'),(1065,4,3600,1,'WEST'),(1065,5,7200,1,'WEMT'),(1065,6,0,0,'WET'),(1065,7,7200,1,'CEST'),(1065,8,3600,0,'CET'),(1065,9,7200,1,'CEST'),(1065,10,3600,0,'CET'),(1066,0,9017,0,'LMT'),(1066,1,9017,0,'MMT'),(1066,2,12679,1,'MST'),(1066,3,9079,0,'MMT'),(1066,4,16279,1,'MDST'),(1066,5,14400,1,'MSD'),(1066,6,10800,0,'MSK'),(1066,7,14400,1,'MSD'),(1066,8,18000,1,'+05'),(1066,9,7200,0,'EET'),(1066,10,10800,0,'MSK'),(1066,11,14400,1,'MSD'),(1066,12,10800,1,'EEST'),(1066,13,7200,0,'EET'),(1066,14,14400,0,'MSK'),(1066,15,14400,1,'MSD'),(1066,16,10800,0,'MSK'),(1067,0,8008,0,'LMT'),(1067,1,10800,1,'EEST'),(1067,2,7200,0,'EET'),(1067,3,7200,0,'EET'),(1067,4,10800,1,'EEST'),(1068,0,2580,0,'LMT'),(1068,1,7200,1,'CEST'),(1068,2,3600,0,'CET'),(1068,3,3600,0,'CET'),(1068,4,7200,1,'CEST'),(1068,5,7200,1,'CEST'),(1068,6,3600,0,'CET'),(1069,0,561,0,'LMT'),(1069,1,561,0,'PMT'),(1069,2,3600,1,'WEST'),(1069,3,0,0,'WET'),(1069,4,3600,1,'WEST'),(1069,5,0,0,'WET'),(1069,6,3600,0,'CET'),(1069,7,7200,1,'CEST'),(1069,8,7200,1,'CEST'),(1069,9,7200,1,'WEMT'),(1069,10,3600,0,'CET'),(1069,11,7200,1,'CEST'),(1069,12,3600,0,'CET'),(1070,0,4920,0,'LMT'),(1070,1,3600,0,'CET'),(1070,2,3600,0,'CET'),(1070,3,7200,1,'CEST'),(1070,4,7200,1,'CEST'),(1070,5,7200,1,'CEST'),(1070,6,3600,0,'CET'),(1071,0,3464,0,'PMT'),(1071,1,7200,1,'CEST'),(1071,2,3600,0,'CET'),(1071,3,7200,1,'CEST'),(1071,4,3600,0,'CET'),(1071,5,0,1,'GMT'),(1071,6,7200,1,'CEST'),(1071,7,3600,0,'CET'),(1072,0,5794,0,'LMT'),(1072,1,5794,0,'RMT'),(1072,2,9394,1,'LST'),(1072,3,7200,0,'EET'),(1072,4,10800,0,'MSK'),(1072,5,3600,0,'CET'),(1072,6,7200,1,'CEST'),(1072,7,7200,1,'CEST'),(1072,8,14400,1,'MSD'),(1072,9,10800,0,'MSK'),(1072,10,14400,1,'MSD'),(1072,11,10800,1,'EEST'),(1072,12,7200,0,'EET'),(1072,13,10800,1,'EEST'),(1072,14,7200,0,'EET'),(1073,0,2996,0,'RMT'),(1073,1,7200,1,'CEST'),(1073,2,3600,0,'CET'),(1073,3,3600,0,'CET'),(1073,4,7200,1,'CEST'),(1073,5,7200,1,'CEST'),(1073,6,3600,0,'CET'),(1074,0,12020,0,'LMT'),(1074,1,10800,0,'+03'),(1074,2,14400,0,'+04'),(1074,3,18000,1,'+05'),(1074,4,14400,0,'+04'),(1074,5,18000,1,'+05'),(1074,6,14400,1,'+04'),(1074,7,10800,0,'+03'),(1074,8,10800,1,'+03'),(1074,9,7200,0,'+02'),(1074,10,14400,1,'+04'),(1074,11,14400,0,'+04'),(1075,0,2996,0,'RMT'),(1075,1,7200,1,'CEST'),(1075,2,3600,0,'CET'),(1075,3,3600,0,'CET'),(1075,4,7200,1,'CEST'),(1075,5,7200,1,'CEST'),(1075,6,3600,0,'CET'),(1076,0,4920,0,'LMT'),(1076,1,3600,0,'CET'),(1076,2,3600,0,'CET'),(1076,3,7200,1,'CEST'),(1076,4,7200,1,'CEST'),(1076,5,7200,1,'CEST'),(1076,6,3600,0,'CET'),(1077,0,11058,0,'LMT'),(1077,1,10800,0,'+03'),(1077,2,18000,1,'+05'),(1077,3,14400,0,'+04'),(1077,4,14400,0,'+04'),(1077,5,18000,1,'+05'),(1077,6,14400,1,'+04'),(1077,7,10800,0,'+03'),(1077,8,14400,0,'+04'),(1078,0,8184,0,'LMT'),(1078,1,8160,0,'SMT'),(1078,2,7200,0,'EET'),(1078,3,10800,0,'MSK'),(1078,4,3600,0,'CET'),(1078,5,7200,1,'CEST'),(1078,6,7200,1,'CEST'),(1078,7,14400,1,'MSD'),(1078,8,10800,0,'MSK'),(1078,9,14400,1,'MSD'),(1078,10,10800,1,'EEST'),(1078,11,10800,1,'EEST'),(1078,12,7200,0,'EET'),(1078,13,14400,0,'MSK'),(1078,14,10800,0,'MSK'),(1079,0,4920,0,'LMT'),(1079,1,3600,0,'CET'),(1079,2,3600,0,'CET'),(1079,3,7200,1,'CEST'),(1079,4,7200,1,'CEST'),(1079,5,7200,1,'CEST'),(1079,6,3600,0,'CET'),(1080,0,7016,0,'IMT'),(1080,1,7200,0,'EET'),(1080,2,3600,0,'CET'),(1080,3,7200,1,'CEST'),(1080,4,3600,0,'CET'),(1080,5,10800,1,'EEST'),(1080,6,7200,0,'EET'),(1080,7,10800,1,'EEST'),(1080,8,10800,1,'EEST'),(1080,9,7200,0,'EET'),(1081,0,3614,0,'SET'),(1081,1,3600,0,'CET'),(1081,2,7200,1,'CEST'),(1081,3,7200,1,'CEST'),(1081,4,3600,0,'CET'),(1082,0,5940,0,'LMT'),(1082,1,5940,0,'TMT'),(1082,2,7200,1,'CEST'),(1082,3,3600,0,'CET'),(1082,4,3600,0,'CET'),(1082,5,7200,0,'EET'),(1082,6,10800,0,'MSK'),(1082,7,7200,1,'CEST'),(1082,8,14400,1,'MSD'),(1082,9,10800,0,'MSK'),(1082,10,14400,1,'MSD'),(1082,11,10800,1,'EEST'),(1082,12,7200,0,'EET'),(1082,13,7200,0,'EET'),(1082,14,10800,1,'EEST'),(1082,15,10800,1,'EEST'),(1083,0,4760,0,'LMT'),(1083,1,3600,0,'CET'),(1083,2,7200,1,'CEST'),(1083,3,3600,0,'CET'),(1083,4,7200,1,'CEST'),(1084,0,6920,0,'LMT'),(1084,1,6900,0,'CMT'),(1084,2,6264,0,'BMT'),(1084,3,10800,1,'EEST'),(1084,4,7200,0,'EET'),(1084,5,7200,0,'EET'),(1084,6,10800,1,'EEST'),(1084,7,3600,0,'CET'),(1084,8,7200,1,'CEST'),(1084,9,7200,1,'CEST'),(1084,10,14400,1,'MSD'),(1084,11,10800,0,'MSK'),(1084,12,10800,0,'MSK'),(1084,13,14400,1,'MSD'),(1084,14,10800,1,'EEST'),(1084,15,7200,0,'EET'),(1085,0,11616,0,'LMT'),(1085,1,10800,0,'+03'),(1085,2,18000,1,'+05'),(1085,3,14400,0,'+04'),(1085,4,14400,0,'+04'),(1085,5,18000,1,'+05'),(1085,6,14400,1,'+04'),(1085,7,10800,0,'+03'),(1085,8,10800,1,'+03'),(1085,9,7200,0,'+02'),(1085,10,14400,1,'+04'),(1085,11,14400,0,'+04'),(1086,0,5352,0,'LMT'),(1086,1,3600,0,'CET'),(1086,2,7200,1,'CEST'),(1086,3,3600,0,'CET'),(1086,4,7200,1,'CEST'),(1086,5,14400,1,'MSD'),(1086,6,10800,0,'MSK'),(1086,7,10800,0,'MSK'),(1086,8,14400,1,'MSD'),(1086,9,7200,0,'EET'),(1086,10,10800,1,'EEST'),(1086,11,10800,1,'EEST'),(1086,12,7200,0,'EET'),(1087,0,1786,0,'BMT'),(1087,1,7200,1,'CEST'),(1087,2,3600,0,'CET'),(1087,3,7200,1,'CEST'),(1087,4,3600,0,'CET'),(1088,0,2996,0,'RMT'),(1088,1,7200,1,'CEST'),(1088,2,3600,0,'CET'),(1088,3,3600,0,'CET'),(1088,4,7200,1,'CEST'),(1088,5,7200,1,'CEST'),(1088,6,3600,0,'CET'),(1089,0,3921,0,'LMT'),(1089,1,7200,1,'CEST'),(1089,2,3600,0,'CET'),(1089,3,7200,1,'CEST'),(1089,4,3600,0,'CET'),(1089,5,7200,1,'CEST'),(1089,6,3600,0,'CET'),(1090,0,6076,0,'LMT'),(1090,1,5040,0,'WMT'),(1090,2,5736,0,'KMT'),(1090,3,3600,0,'CET'),(1090,4,7200,0,'EET'),(1090,5,10800,0,'MSK'),(1090,6,3600,0,'CET'),(1090,7,7200,1,'CEST'),(1090,8,7200,1,'CEST'),(1090,9,14400,1,'MSD'),(1090,10,10800,0,'MSK'),(1090,11,14400,1,'MSD'),(1090,12,10800,1,'EEST'),(1090,13,7200,0,'EET'),(1090,14,7200,1,'CEST'),(1090,15,3600,0,'CET'),(1090,16,7200,0,'EET'),(1090,17,10800,1,'EEST'),(1091,0,10660,0,'LMT'),(1091,1,10800,0,'+03'),(1091,2,14400,0,'+04'),(1091,3,18000,1,'+05'),(1091,4,14400,0,'+04'),(1091,5,18000,1,'+05'),(1091,6,14400,1,'+04'),(1091,7,10800,0,'+03'),(1091,8,14400,0,'+04'),(1092,0,5040,0,'LMT'),(1092,1,5040,0,'WMT'),(1092,2,7200,1,'CEST'),(1092,3,3600,0,'CET'),(1092,4,7200,1,'CEST'),(1092,5,3600,0,'CET'),(1092,6,10800,1,'EEST'),(1092,7,7200,0,'EET'),(1092,8,7200,0,'EET'),(1092,9,7200,1,'CEST'),(1092,10,3600,0,'CET'),(1093,0,4920,0,'LMT'),(1093,1,3600,0,'CET'),(1093,2,3600,0,'CET'),(1093,3,7200,1,'CEST'),(1093,4,7200,1,'CEST'),(1093,5,7200,1,'CEST'),(1093,6,3600,0,'CET'),(1094,0,8440,0,'LMT'),(1094,1,8400,0,'+0220'),(1094,2,7200,0,'EET'),(1094,3,10800,0,'MSK'),(1094,4,3600,0,'CET'),(1094,5,7200,1,'CEST'),(1094,6,7200,1,'CEST'),(1094,7,14400,1,'MSD'),(1094,8,10800,0,'MSK'),(1094,9,14400,1,'MSD'),(1094,10,10800,1,'EEST'),(1094,11,10800,1,'EEST'),(1094,12,7200,0,'EET'),(1095,0,1786,0,'BMT'),(1095,1,7200,1,'CEST'),(1095,2,3600,0,'CET'),(1095,3,7200,1,'CEST'),(1095,4,3600,0,'CET'),(1096,0,0,0,'-00'),(1097,0,-75,0,'LMT'),(1097,1,3600,1,'BST'),(1097,2,0,0,'GMT'),(1097,3,7200,1,'BDST'),(1097,4,3600,0,'BST'),(1097,5,3600,1,'BST'),(1097,6,0,0,'GMT'),(1097,7,0,0,'GMT'),(1098,0,-75,0,'LMT'),(1098,1,3600,1,'BST'),(1098,2,0,0,'GMT'),(1098,3,7200,1,'BDST'),(1098,4,3600,0,'BST'),(1098,5,3600,1,'BST'),(1098,6,0,0,'GMT'),(1098,7,0,0,'GMT'),(1099,0,0,0,'GMT'),(1100,0,0,0,'GMT'),(1101,0,0,0,'GMT'),(1102,0,0,0,'GMT'),(1103,0,0,0,'GMT'),(1104,0,-36000,0,'HST'),(1105,0,27402,0,'LMT'),(1105,1,28800,0,'HKT'),(1105,2,32400,1,'HKST'),(1105,3,30600,1,'HKWT'),(1105,4,32400,0,'JST'),(1105,5,28800,0,'HKT'),(1105,6,32400,1,'HKST'),(1106,0,-5280,0,'LMT'),(1106,1,0,1,'+00'),(1106,2,-3600,0,'-01'),(1106,3,-3600,0,'-01'),(1106,4,0,1,'+00'),(1106,5,0,0,'GMT'),(1107,0,8836,0,'LMT'),(1107,1,10800,0,'EAT'),(1107,2,9000,0,'+0230'),(1107,3,9900,0,'+0245'),(1107,4,10800,0,'EAT'),(1108,0,17380,0,'LMT'),(1108,1,18000,0,'+05'),(1108,2,21600,0,'+06'),(1109,0,25200,0,'+07'),(1110,0,23400,0,'+0630'),(1111,0,8836,0,'LMT'),(1111,1,10800,0,'EAT'),(1111,2,9000,0,'+0230'),(1111,3,9900,0,'+0245'),(1111,4,10800,0,'EAT'),(1112,0,0,0,'-00'),(1112,1,18000,0,'+05'),(1113,0,13308,0,'LMT'),(1113,1,14400,0,'+04'),(1114,0,17640,0,'LMT'),(1114,1,17640,0,'MMT'),(1114,2,18000,0,'+05'),(1115,0,13800,0,'LMT'),(1115,1,18000,1,'+05'),(1115,2,14400,0,'+04'),(1116,0,8836,0,'LMT'),(1116,1,10800,0,'EAT'),(1116,2,9000,0,'+0230'),(1116,3,9900,0,'+0245'),(1116,4,10800,0,'EAT'),(1117,0,13312,0,'LMT'),(1117,1,14400,0,'+04'),(1118,0,12344,0,'LMT'),(1118,1,12344,0,'TMT'),(1118,2,12600,0,'+0330'),(1118,3,18000,1,'+05'),(1118,4,14400,0,'+04'),(1118,5,16200,1,'+0430'),(1118,6,12600,0,'+0330'),(1119,0,8454,0,'LMT'),(1119,1,8440,0,'JMT'),(1119,2,10800,1,'IDT'),(1119,3,7200,0,'IST'),(1119,4,14400,1,'IDDT'),(1119,5,10800,1,'IDT'),(1120,0,-18430,0,'LMT'),(1120,1,-18430,0,'KMT'),(1120,2,-18000,0,'EST'),(1120,3,-14400,1,'EDT'),(1121,0,33539,0,'LMT'),(1121,1,36000,1,'JDT'),(1121,2,32400,0,'JST'),(1121,3,32400,0,'JST'),(1122,0,40160,0,'LMT'),(1122,1,39600,0,'+11'),(1122,2,36000,0,'+10'),(1122,3,32400,0,'+09'),(1122,4,-43200,0,'-12'),(1122,5,43200,0,'+12'),(1123,0,3164,0,'LMT'),(1123,1,7200,1,'CEST'),(1123,2,3600,0,'CET'),(1123,3,7200,0,'EET'),(1124,0,7200,1,'MEST'),(1124,1,3600,0,'MET'),(1124,2,7200,1,'MEST'),(1124,3,3600,0,'MET'),(1125,0,-25200,0,'MST'),(1126,0,-21600,1,'MDT'),(1126,1,-25200,0,'MST'),(1126,2,-21600,1,'MWT'),(1126,3,-21600,1,'MPT'),(1127,0,-28084,0,'LMT'),(1127,1,-25200,0,'MST'),(1127,2,-28800,0,'PST'),(1127,3,-25200,1,'PDT'),(1127,4,-25200,1,'PWT'),(1127,5,-25200,1,'PPT'),(1128,0,-25540,0,'LMT'),(1128,1,-25200,0,'MST'),(1128,2,-21600,0,'CST'),(1128,3,-28800,0,'PST'),(1128,4,-21600,1,'MDT'),(1128,5,-25200,0,'MST'),(1129,0,-23796,0,'LMT'),(1129,1,-25200,0,'MST'),(1129,2,-21600,0,'CST'),(1129,3,-18000,1,'CDT'),(1129,4,-18000,1,'CWT'),(1130,0,41944,0,'LMT'),(1130,1,45000,1,'NZST'),(1130,2,41400,0,'NZMT'),(1130,3,43200,1,'NZST'),(1130,4,46800,1,'NZDT'),(1130,5,43200,0,'NZST'),(1130,6,43200,0,'NZST'),(1131,0,44028,0,'LMT'),(1131,1,44100,0,'+1215'),(1131,2,49500,1,'+1345'),(1131,3,45900,0,'+1245'),(1131,4,45900,0,'+1245'),(1132,0,-25196,0,'LMT'),(1132,1,-21600,1,'MDT'),(1132,2,-25200,0,'MST'),(1132,3,-21600,1,'MWT'),(1132,4,-21600,1,'MPT'),(1133,0,29143,0,'LMT'),(1133,1,32400,1,'CDT'),(1133,2,28800,0,'CST'),(1134,0,-25200,1,'PDT'),(1134,1,-28800,0,'PST'),(1134,2,-25200,1,'PWT'),(1134,3,-25200,1,'PPT'),(1135,0,45184,0,'LMT'),(1135,1,-41216,0,'LMT'),(1135,2,-41400,0,'-1130'),(1135,3,-36000,1,'-10'),(1135,4,-39600,0,'-11'),(1135,5,46800,0,'+13'),(1135,6,50400,1,'+14'),(1136,0,41944,0,'LMT'),(1136,1,45000,1,'NZST'),(1136,2,41400,0,'NZMT'),(1136,3,43200,1,'NZST'),(1136,4,46800,1,'NZDT'),(1136,5,43200,0,'NZST'),(1136,6,43200,0,'NZST'),(1137,0,35312,0,'PMMT'),(1137,1,36000,0,'+10'),(1137,2,32400,0,'+09'),(1137,3,39600,0,'+11'),(1138,0,44028,0,'LMT'),(1138,1,44100,0,'+1215'),(1138,2,49500,1,'+1345'),(1138,3,45900,0,'+1245'),(1138,4,45900,0,'+1245'),(1139,0,36428,0,'LMT'),(1139,1,36000,0,'+10'),(1139,2,32400,0,'+09'),(1139,3,36000,0,'+10'),(1140,0,-26248,0,'LMT'),(1140,1,-26248,0,'EMT'),(1140,2,-21600,1,'-06'),(1140,3,-25200,0,'-07'),(1140,4,-25200,0,'-07'),(1140,5,-21600,0,'-06'),(1140,6,-18000,1,'-05'),(1141,0,40396,0,'LMT'),(1141,1,43200,1,'+12'),(1141,2,39600,0,'+11'),(1142,0,-41060,0,'LMT'),(1142,1,-43200,0,'-12'),(1142,2,-39600,0,'-11'),(1142,3,46800,0,'+13'),(1143,0,-41096,0,'LMT'),(1143,1,-39600,0,'-11'),(1143,2,46800,0,'+13'),(1144,0,42944,0,'LMT'),(1144,1,46800,1,'+13'),(1144,2,43200,0,'+12'),(1145,0,43200,0,'+12'),(1146,0,-21504,0,'LMT'),(1146,1,-18000,0,'-05'),(1146,2,-18000,1,'-05'),(1146,3,-21600,0,'-06'),(1147,0,-32388,0,'LMT'),(1147,1,-32400,0,'-09'),(1148,0,38388,0,'LMT'),(1148,1,39600,0,'+11'),(1149,0,34740,0,'LMT'),(1149,1,36000,0,'GST'),(1149,2,32400,0,'+09'),(1149,3,39600,1,'GDT'),(1149,4,36000,0,'ChST'),(1150,0,-37886,0,'LMT'),(1150,1,-37800,0,'HST'),(1150,2,-34200,1,'HDT'),(1150,3,-34200,1,'HWT'),(1150,4,-34200,1,'HPT'),(1150,5,-36000,0,'HST'),(1151,0,-37886,0,'LMT'),(1151,1,-37800,0,'HST'),(1151,2,-34200,1,'HDT'),(1151,3,-34200,1,'HWT'),(1151,4,-34200,1,'HPT'),(1151,5,-36000,0,'HST'),(1152,0,-37760,0,'LMT'),(1152,1,-38400,0,'-1040'),(1152,2,-36000,0,'-10'),(1152,3,50400,0,'+14'),(1153,0,39116,0,'LMT'),(1153,1,39600,0,'+11'),(1153,2,32400,0,'+09'),(1153,3,36000,0,'+10'),(1153,4,43200,0,'+12'),(1153,5,39600,0,'+11'),(1154,0,40160,0,'LMT'),(1154,1,39600,0,'+11'),(1154,2,36000,0,'+10'),(1154,3,32400,0,'+09'),(1154,4,-43200,0,'-12'),(1154,5,43200,0,'+12'),(1155,0,41088,0,'LMT'),(1155,1,39600,0,'+11'),(1155,2,32400,0,'+09'),(1155,3,36000,0,'+10'),(1155,4,43200,0,'+12'),(1156,0,-33480,0,'LMT'),(1156,1,-34200,0,'-0930'),(1157,0,45432,0,'LMT'),(1157,1,-40968,0,'LMT'),(1157,2,-39600,0,'SST'),(1158,0,40060,0,'LMT'),(1158,1,41400,0,'+1130'),(1158,2,32400,0,'+09'),(1158,3,43200,0,'+12'),(1159,0,-40780,0,'LMT'),(1159,1,-40800,0,'-1120'),(1159,2,-41400,0,'-1130'),(1159,3,-39600,0,'-11'),(1160,0,40312,0,'LMT'),(1160,1,40320,0,'+1112'),(1160,2,41400,0,'+1130'),(1160,3,45000,1,'+1230'),(1160,4,41400,0,'+1130'),(1160,5,39600,0,'+11'),(1160,6,43200,1,'+12'),(1160,7,39600,0,'+11'),(1161,0,39948,0,'LMT'),(1161,1,43200,1,'+12'),(1161,2,39600,0,'+11'),(1161,3,43200,1,'+12'),(1161,4,39600,0,'+11'),(1162,0,45432,0,'LMT'),(1162,1,-40968,0,'LMT'),(1162,2,-39600,0,'SST'),(1163,0,32400,0,'+09'),(1164,0,-31220,0,'LMT'),(1164,1,-30600,0,'-0830'),(1164,2,-28800,0,'-08'),(1165,0,37972,0,'LMT'),(1165,1,39600,0,'+11'),(1165,2,32400,0,'+09'),(1165,3,36000,0,'+10'),(1165,4,39600,0,'+11'),(1166,0,37972,0,'LMT'),(1166,1,39600,0,'+11'),(1166,2,32400,0,'+09'),(1166,3,36000,0,'+10'),(1166,4,39600,0,'+11'),(1167,0,36000,0,'+10'),(1168,0,-38344,0,'LMT'),(1168,1,-37800,0,'-1030'),(1168,2,-36000,0,'-10'),(1168,3,-34200,1,'-0930'),(1169,0,34740,0,'LMT'),(1169,1,36000,0,'GST'),(1169,2,32400,0,'+09'),(1169,3,39600,1,'GDT'),(1169,4,36000,0,'ChST'),(1170,0,45432,0,'LMT'),(1170,1,-40968,0,'LMT'),(1170,2,-39600,0,'SST'),(1171,0,-35896,0,'LMT'),(1171,1,-36000,0,'-10'),(1172,0,43200,0,'+12'),(1173,0,44360,0,'LMT'),(1173,1,44400,0,'+1220'),(1173,2,46800,0,'+13'),(1173,3,50400,1,'+14'),(1173,4,46800,0,'+13'),(1173,5,50400,1,'+14'),(1174,0,36428,0,'LMT'),(1174,1,36000,0,'+10'),(1174,2,32400,0,'+09'),(1174,3,36000,0,'+10'),(1175,0,43200,0,'+12'),(1176,0,43200,0,'+12'),(1177,0,36428,0,'LMT'),(1177,1,36000,0,'+10'),(1177,2,32400,0,'+09'),(1177,3,36000,0,'+10'),(1178,0,5040,0,'LMT'),(1178,1,5040,0,'WMT'),(1178,2,7200,1,'CEST'),(1178,3,3600,0,'CET'),(1178,4,7200,1,'CEST'),(1178,5,3600,0,'CET'),(1178,6,10800,1,'EEST'),(1178,7,7200,0,'EET'),(1178,8,7200,0,'EET'),(1178,9,7200,1,'CEST'),(1178,10,3600,0,'CET'),(1179,0,-2205,0,'LMT'),(1179,1,3600,1,'WEST'),(1179,2,0,0,'WET'),(1179,3,3600,1,'WEST'),(1179,4,0,0,'WET'),(1179,5,7200,1,'WEMT'),(1179,6,0,0,'WET'),(1179,7,3600,0,'CET'),(1179,8,3600,0,'CET'),(1179,9,7200,1,'CEST'),(1179,10,3600,1,'WEST'),(1179,11,0,0,'WET'),(1180,0,29160,0,'LMT'),(1180,1,28800,0,'CST'),(1180,2,32400,0,'JST'),(1180,3,32400,1,'CDT'),(1180,4,28800,0,'CST'),(1181,0,30472,0,'LMT'),(1181,1,30600,0,'KST'),(1181,2,32400,0,'JST'),(1181,3,36000,1,'KDT'),(1181,4,32400,0,'KST'),(1181,5,34200,1,'KDT'),(1181,6,36000,1,'KDT'),(1182,0,24925,0,'LMT'),(1182,1,24925,0,'SMT'),(1182,2,25200,0,'+07'),(1182,3,26400,1,'+0720'),(1182,4,26400,0,'+0720'),(1182,5,27000,0,'+0730'),(1182,6,32400,0,'+09'),(1182,7,28800,0,'+08'),(1183,0,-15865,0,'LMT'),(1183,1,-14400,0,'AST'),(1183,2,-10800,1,'APT'),(1183,3,-10800,1,'AWT'),(1184,0,-15264,0,'LMT'),(1184,1,-10800,1,'ADT'),(1184,2,-14400,0,'AST'),(1184,3,-10800,1,'AWT'),(1184,4,-10800,1,'APT'),(1185,0,-25116,0,'LMT'),(1185,1,-21600,1,'MDT'),(1185,2,-25200,0,'MST'),(1185,3,-21600,1,'MWT'),(1185,4,-21600,1,'MPT'),(1185,5,-21600,0,'CST'),(1186,0,-21036,0,'LMT'),(1186,1,-18000,1,'CDT'),(1186,2,-21600,0,'CST'),(1186,3,-18000,0,'EST'),(1186,4,-18000,1,'CWT'),(1186,5,-18000,1,'CPT'),(1186,6,-21600,0,'CST'),(1187,0,-19088,0,'LMT'),(1187,1,-19176,0,'CMT'),(1187,2,-18000,0,'EST'),(1188,0,-17762,0,'LMT'),(1188,1,-14400,1,'EDT'),(1188,2,-18000,0,'EST'),(1188,3,-14400,1,'EWT'),(1188,4,-14400,1,'EPT'),(1189,0,-37886,0,'LMT'),(1189,1,-37800,0,'HST'),(1189,2,-34200,1,'HDT'),(1189,3,-34200,1,'HWT'),(1189,4,-34200,1,'HPT'),(1189,5,-36000,0,'HST'),(1190,0,-26898,0,'LMT'),(1190,1,-21600,1,'MDT'),(1190,2,-25200,0,'MST'),(1190,3,-21600,1,'MWT'),(1191,0,-25196,0,'LMT'),(1191,1,-21600,1,'MDT'),(1191,2,-25200,0,'MST'),(1191,3,-21600,1,'MWT'),(1191,4,-21600,1,'MPT'),(1192,0,-31220,0,'LMT'),(1192,1,-30600,0,'-0830'),(1192,2,-28800,0,'-08'),(1193,0,-28378,0,'LMT'),(1193,1,-25200,1,'PDT'),(1193,2,-28800,0,'PST'),(1193,3,-25200,1,'PWT'),(1193,4,-25200,1,'PPT'),(1194,0,-32388,0,'LMT'),(1194,1,-32400,0,'-09'),(1195,0,-35976,0,'LMT'),(1195,1,-36000,0,'AST'),(1195,2,-32400,1,'AWT'),(1195,3,-32400,1,'APT'),(1195,4,-36000,0,'AHST'),(1195,5,-32400,1,'AHDT'),(1195,6,-32400,0,'YST'),(1195,7,-28800,1,'AKDT'),(1195,8,-32400,0,'AKST'),(1196,0,6952,0,'LMT'),(1196,1,7016,0,'IMT'),(1196,2,10800,1,'EEST'),(1196,3,7200,0,'EET'),(1196,4,10800,0,'+03'),(1196,5,14400,1,'+04'),(1196,6,10800,1,'EEST'),(1196,7,7200,0,'EET'),(1196,8,10800,1,'EEST'),(1196,9,7200,0,'EET'),(1196,10,10800,0,'+03'),(1197,0,0,0,'UTC'),(1198,0,-35976,0,'LMT'),(1198,1,-36000,0,'AST'),(1198,2,-32400,1,'AWT'),(1198,3,-32400,1,'APT'),(1198,4,-36000,0,'AHST'),(1198,5,-32400,1,'AHDT'),(1198,6,-32400,0,'YST'),(1198,7,-28800,1,'AKDT'),(1198,8,-32400,0,'AKST'),(1199,0,-42398,0,'LMT'),(1199,1,-39600,0,'NST'),(1199,2,-36000,1,'NWT'),(1199,3,-36000,1,'NPT'),(1199,4,-39600,0,'BST'),(1199,5,-36000,1,'BDT'),(1199,6,-36000,0,'AHST'),(1199,7,-32400,1,'HDT'),(1199,8,-36000,0,'HST'),(1200,0,-26898,0,'LMT'),(1200,1,-21600,1,'MDT'),(1200,2,-25200,0,'MST'),(1200,3,-21600,1,'MWT'),(1201,0,-21036,0,'LMT'),(1201,1,-18000,1,'CDT'),(1201,2,-21600,0,'CST'),(1201,3,-18000,0,'EST'),(1201,4,-18000,1,'CWT'),(1201,5,-18000,1,'CPT'),(1201,6,-21600,0,'CST'),(1202,0,-20678,0,'LMT'),(1202,1,-18000,1,'CDT'),(1202,2,-21600,0,'CST'),(1202,3,-18000,1,'CWT'),(1202,4,-18000,1,'CPT'),(1202,5,-18000,0,'EST'),(1202,6,-14400,1,'EDT'),(1203,0,-17762,0,'LMT'),(1203,1,-14400,1,'EDT'),(1203,2,-18000,0,'EST'),(1203,3,-14400,1,'EWT'),(1203,4,-14400,1,'EPT'),(1204,0,-37886,0,'LMT'),(1204,1,-37800,0,'HST'),(1204,2,-34200,1,'HDT'),(1204,3,-34200,1,'HWT'),(1204,4,-34200,1,'HPT'),(1204,5,-36000,0,'HST'),(1205,0,-20790,0,'LMT'),(1205,1,-18000,1,'CDT'),(1205,2,-21600,0,'CST'),(1205,3,-18000,1,'CWT'),(1205,4,-18000,1,'CPT'),(1205,5,-18000,0,'EST'),(1205,6,-21600,0,'CST'),(1206,0,-19931,0,'LMT'),(1206,1,-21600,0,'CST'),(1206,2,-18000,0,'EST'),(1206,3,-14400,1,'EWT'),(1206,4,-14400,1,'EPT'),(1206,5,-14400,1,'EDT'),(1207,0,-25196,0,'LMT'),(1207,1,-21600,1,'MDT'),(1207,2,-25200,0,'MST'),(1207,3,-21600,1,'MWT'),(1207,4,-21600,1,'MPT'),(1208,0,-28378,0,'LMT'),(1208,1,-25200,1,'PDT'),(1208,2,-28800,0,'PST'),(1208,3,-25200,1,'PWT'),(1208,4,-25200,1,'PPT'),(1209,0,-28378,0,'LMT'),(1209,1,-25200,1,'PDT'),(1209,2,-28800,0,'PST'),(1209,3,-25200,1,'PWT'),(1209,4,-25200,1,'PPT'),(1210,0,45432,0,'LMT'),(1210,1,-40968,0,'LMT'),(1210,2,-39600,0,'SST'),(1211,0,0,0,'UTC'),(1212,0,0,0,'UTC'),(1213,0,9017,0,'LMT'),(1213,1,9017,0,'MMT'),(1213,2,12679,1,'MST'),(1213,3,9079,0,'MMT'),(1213,4,16279,1,'MDST'),(1213,5,14400,1,'MSD'),(1213,6,10800,0,'MSK'),(1213,7,14400,1,'MSD'),(1213,8,18000,1,'+05'),(1213,9,7200,0,'EET'),(1213,10,10800,0,'MSK'),(1213,11,14400,1,'MSD'),(1213,12,10800,1,'EEST'),(1213,13,7200,0,'EET'),(1213,14,14400,0,'MSK'),(1213,15,14400,1,'MSD'),(1213,16,10800,0,'MSK'),(1214,0,3600,1,'WEST'),(1214,1,0,0,'WET'),(1215,0,0,0,'UTC'),(1216,0,-17762,0,'LMT'),(1216,1,-14400,1,'EDT'),(1216,2,-18000,0,'EST'),(1216,3,-14400,1,'EWT'),(1216,4,-14400,1,'EPT'),(1217,0,-968,0,'LMT'),(1217,1,0,0,'GMT'),(1218,0,-52,0,'LMT'),(1218,1,1200,1,'+0020'),(1218,2,0,0,'GMT'),(1219,0,8836,0,'LMT'),(1219,1,10800,0,'EAT'),(1219,2,9000,0,'+0230'),(1219,3,9900,0,'+0245'),(1219,4,10800,0,'EAT'),(1220,0,732,0,'LMT'),(1220,1,561,0,'PMT'),(1220,2,3600,1,'WEST'),(1220,3,0,0,'WET'),(1220,4,0,0,'WET'),(1220,5,7200,1,'CEST'),(1220,6,3600,0,'CET'),(1220,7,3600,1,'WEST'),(1221,0,8836,0,'LMT'),(1221,1,10800,0,'EAT'),(1221,2,9000,0,'+0230'),(1221,3,9900,0,'+0245'),(1221,4,10800,0,'EAT'),(1222,0,8836,0,'LMT'),(1222,1,10800,0,'EAT'),(1222,2,9000,0,'+0230'),(1222,3,9900,0,'+0245'),(1222,4,10800,0,'EAT'),(1223,0,-968,0,'LMT'),(1223,1,0,0,'GMT'),(1224,0,816,0,'LMT'),(1224,1,3600,0,'WAT'),(1225,0,-968,0,'LMT'),(1225,1,0,0,'GMT'),(1226,0,-3740,0,'LMT'),(1226,1,-3600,0,'-01'),(1226,2,0,0,'GMT'),(1227,0,7820,0,'LMT'),(1227,1,7200,0,'CAT'),(1228,0,816,0,'LMT'),(1228,1,3600,0,'WAT'),(1229,0,7820,0,'LMT'),(1229,1,7200,0,'CAT'),(1230,0,7509,0,'LMT'),(1230,1,10800,1,'EEST'),(1230,2,7200,0,'EET'),(1230,3,10800,1,'EEST'),(1231,0,-1820,0,'LMT'),(1231,1,3600,1,'+01'),(1231,2,0,0,'+00'),(1231,3,3600,0,'+01'),(1231,4,0,1,'+00'),(1232,0,-1276,0,'LMT'),(1232,1,0,0,'WET'),(1232,2,3600,1,'WEST'),(1232,3,0,0,'WET'),(1232,4,3600,0,'CET'),(1232,5,7200,1,'CEST'),(1232,6,3600,0,'CET'),(1233,0,-968,0,'LMT'),(1233,1,0,0,'GMT'),(1234,0,-968,0,'LMT'),(1234,1,0,0,'GMT'),(1235,0,8836,0,'LMT'),(1235,1,10800,0,'EAT'),(1235,2,9000,0,'+0230'),(1235,3,9900,0,'+0245'),(1235,4,10800,0,'EAT'),(1236,0,8836,0,'LMT'),(1236,1,10800,0,'EAT'),(1236,2,9000,0,'+0230'),(1236,3,9900,0,'+0245'),(1236,4,10800,0,'EAT'),(1237,0,816,0,'LMT'),(1237,1,3600,0,'WAT'),(1238,0,-3168,0,'LMT'),(1238,1,-3600,0,'-01'),(1238,2,3600,1,'+01'),(1238,3,0,0,'+00'),(1238,4,0,1,'+00'),(1238,5,3600,0,'+01'),(1239,0,-968,0,'LMT'),(1239,1,0,0,'GMT'),(1240,0,7820,0,'LMT'),(1240,1,7200,0,'CAT'),(1241,0,7820,0,'LMT'),(1241,1,7200,0,'CAT'),(1242,0,6720,0,'LMT'),(1242,1,5400,0,'SAST'),(1242,2,10800,1,'SAST'),(1242,3,7200,0,'SAST'),(1243,0,7588,0,'LMT'),(1243,1,10800,1,'CAST'),(1243,2,7200,0,'CAT'),(1243,3,10800,0,'EAT'),(1244,0,8836,0,'LMT'),(1244,1,10800,0,'EAT'),(1244,2,9000,0,'+0230'),(1244,3,9900,0,'+0245'),(1244,4,10800,0,'EAT'),(1245,0,7808,0,'LMT'),(1245,1,10800,1,'CAST'),(1245,2,7200,0,'CAT'),(1245,3,10800,0,'EAT'),(1245,4,7200,0,'CAT'),(1246,0,7820,0,'LMT'),(1246,1,7200,0,'CAT'),(1247,0,816,0,'LMT'),(1247,1,3600,0,'WAT'),(1248,0,816,0,'LMT'),(1248,1,3600,0,'WAT'),(1249,0,816,0,'LMT'),(1249,1,3600,0,'WAT'),(1250,0,-968,0,'LMT'),(1250,1,0,0,'GMT'),(1251,0,816,0,'LMT'),(1251,1,3600,0,'WAT'),(1252,0,7820,0,'LMT'),(1252,1,7200,0,'CAT'),(1253,0,7820,0,'LMT'),(1253,1,7200,0,'CAT'),(1254,0,816,0,'LMT'),(1254,1,3600,0,'WAT'),(1255,0,7820,0,'LMT'),(1255,1,7200,0,'CAT'),(1256,0,6720,0,'LMT'),(1256,1,5400,0,'SAST'),(1256,2,10800,1,'SAST'),(1256,3,7200,0,'SAST'),(1257,0,6720,0,'LMT'),(1257,1,5400,0,'SAST'),(1257,2,10800,1,'SAST'),(1257,3,7200,0,'SAST'),(1258,0,8836,0,'LMT'),(1258,1,10800,0,'EAT'),(1258,2,9000,0,'+0230'),(1258,3,9900,0,'+0245'),(1258,4,10800,0,'EAT'),(1259,0,-2588,0,'LMT'),(1259,1,-2588,0,'MMT'),(1259,2,-2670,0,'MMT'),(1259,3,0,0,'GMT'),(1260,0,8836,0,'LMT'),(1260,1,10800,0,'EAT'),(1260,2,9000,0,'+0230'),(1260,3,9900,0,'+0245'),(1260,4,10800,0,'EAT'),(1261,0,3612,0,'LMT'),(1261,1,3600,0,'WAT'),(1261,2,7200,1,'WAST'),(1262,0,816,0,'LMT'),(1262,1,3600,0,'WAT'),(1263,0,-968,0,'LMT'),(1263,1,0,0,'GMT'),(1264,0,-968,0,'LMT'),(1264,1,0,0,'GMT'),(1265,0,816,0,'LMT'),(1265,1,3600,0,'WAT'),(1266,0,1616,0,'LMT'),(1266,1,-2205,0,'LMT'),(1266,2,0,0,'GMT'),(1266,3,3600,0,'WAT'),(1266,4,0,0,'GMT'),(1267,0,-968,0,'LMT'),(1267,1,0,0,'GMT'),(1268,0,3164,0,'LMT'),(1268,1,7200,1,'CEST'),(1268,2,3600,0,'CET'),(1268,3,7200,0,'EET'),(1269,0,2444,0,'LMT'),(1269,1,561,0,'PMT'),(1269,2,7200,1,'CEST'),(1269,3,3600,0,'CET'),(1269,4,3600,0,'CET'),(1269,5,7200,1,'CEST'),(1270,0,4104,0,'LMT'),(1270,1,5400,0,'+0130'),(1270,2,7200,0,'SAST'),(1270,3,10800,1,'SAST'),(1270,4,3600,1,'WAT'),(1270,5,7200,0,'CAT'),(1271,0,-42398,0,'LMT'),(1271,1,-39600,0,'NST'),(1271,2,-36000,1,'NWT'),(1271,3,-36000,1,'NPT'),(1271,4,-39600,0,'BST'),(1271,5,-36000,1,'BDT'),(1271,6,-36000,0,'AHST'),(1271,7,-32400,1,'HDT'),(1271,8,-36000,0,'HST'),(1272,0,-35976,0,'LMT'),(1272,1,-36000,0,'AST'),(1272,2,-32400,1,'AWT'),(1272,3,-32400,1,'APT'),(1272,4,-36000,0,'AHST'),(1272,5,-32400,1,'AHDT'),(1272,6,-32400,0,'YST'),(1272,7,-28800,1,'AKDT'),(1272,8,-32400,0,'AKST'),(1273,0,-14764,0,'LMT'),(1273,1,-14400,0,'AST'),(1274,0,-14764,0,'LMT'),(1274,1,-14400,0,'AST'),(1275,0,-11568,0,'LMT'),(1275,1,-7200,1,'-02'),(1275,2,-10800,0,'-03'),(1276,0,-14028,0,'LMT'),(1276,1,-15408,0,'CMT'),(1276,2,-14400,0,'-04'),(1276,3,-10800,1,'-03'),(1276,4,-7200,1,'-02'),(1276,5,-10800,0,'-03'),(1277,0,-15788,0,'LMT'),(1277,1,-15408,0,'CMT'),(1277,2,-14400,0,'-04'),(1277,3,-10800,1,'-03'),(1277,4,-7200,1,'-02'),(1277,5,-10800,0,'-03'),(1278,0,-15788,0,'LMT'),(1278,1,-15408,0,'CMT'),(1278,2,-14400,0,'-04'),(1278,3,-10800,1,'-03'),(1278,4,-7200,1,'-02'),(1278,5,-10800,0,'-03'),(1279,0,-15408,0,'LMT'),(1279,1,-15408,0,'CMT'),(1279,2,-14400,0,'-04'),(1279,3,-10800,1,'-03'),(1279,4,-7200,1,'-02'),(1279,5,-10800,0,'-03'),(1280,0,-15672,0,'LMT'),(1280,1,-15408,0,'CMT'),(1280,2,-14400,0,'-04'),(1280,3,-10800,1,'-03'),(1280,4,-7200,1,'-02'),(1280,5,-10800,0,'-03'),(1281,0,-16044,0,'LMT'),(1281,1,-15408,0,'CMT'),(1281,2,-14400,0,'-04'),(1281,3,-10800,1,'-03'),(1281,4,-7200,1,'-02'),(1281,5,-10800,0,'-03'),(1282,0,-16516,0,'LMT'),(1282,1,-15408,0,'CMT'),(1282,2,-14400,0,'-04'),(1282,3,-10800,1,'-03'),(1282,4,-7200,1,'-02'),(1282,5,-10800,0,'-03'),(1283,0,-16612,0,'LMT'),(1283,1,-15408,0,'CMT'),(1283,2,-14400,0,'-04'),(1283,3,-10800,1,'-03'),(1283,4,-7200,1,'-02'),(1283,5,-10800,0,'-03'),(1284,0,-15700,0,'LMT'),(1284,1,-15408,0,'CMT'),(1284,2,-14400,0,'-04'),(1284,3,-10800,1,'-03'),(1284,4,-7200,1,'-02'),(1284,5,-10800,0,'-03'),(1285,0,-16444,0,'LMT'),(1285,1,-15408,0,'CMT'),(1285,2,-14400,0,'-04'),(1285,3,-10800,1,'-03'),(1285,4,-7200,1,'-02'),(1285,5,-10800,0,'-03'),(1286,0,-15924,0,'LMT'),(1286,1,-15408,0,'CMT'),(1286,2,-14400,0,'-04'),(1286,3,-10800,1,'-03'),(1286,4,-7200,1,'-02'),(1286,5,-10800,0,'-03'),(1286,6,-10800,1,'-03'),(1287,0,-15652,0,'LMT'),(1287,1,-15408,0,'CMT'),(1287,2,-14400,0,'-04'),(1287,3,-10800,1,'-03'),(1287,4,-7200,1,'-02'),(1287,5,-10800,0,'-03'),(1288,0,-16392,0,'LMT'),(1288,1,-15408,0,'CMT'),(1288,2,-14400,0,'-04'),(1288,3,-10800,1,'-03'),(1288,4,-7200,1,'-02'),(1288,5,-10800,0,'-03'),(1289,0,-16547,0,'LMT'),(1289,1,-16200,0,'-0430'),(1289,2,-14400,0,'AST'),(1290,0,-13840,0,'LMT'),(1290,1,-13840,0,'AMT'),(1290,2,-14400,0,'-04'),(1290,3,-10800,0,'-03'),(1290,4,-10800,1,'-03'),(1290,5,-14400,0,'-04'),(1291,0,-21988,0,'LMT'),(1291,1,-18000,1,'CDT'),(1291,2,-21600,0,'CST'),(1291,3,-18000,1,'CWT'),(1291,4,-18000,1,'CPT'),(1291,5,-18000,0,'EST'),(1292,0,-42398,0,'LMT'),(1292,1,-39600,0,'NST'),(1292,2,-36000,1,'NWT'),(1292,3,-36000,1,'NPT'),(1292,4,-39600,0,'BST'),(1292,5,-36000,1,'BDT'),(1292,6,-36000,0,'AHST'),(1292,7,-32400,1,'HDT'),(1292,8,-36000,0,'HST'),(1293,0,-9244,0,'LMT'),(1293,1,-7200,1,'-02'),(1293,2,-10800,0,'-03'),(1294,0,-25260,0,'LMT'),(1294,1,-25200,0,'MST'),(1294,2,-21600,0,'CST'),(1294,3,-28800,0,'PST'),(1294,4,-21600,1,'MDT'),(1294,5,-18000,1,'CDT'),(1294,6,-21600,0,'CST'),(1295,0,-14309,0,'LMT'),(1295,1,-14309,0,'BMT'),(1295,2,-10800,1,'ADT'),(1295,3,-14400,0,'AST'),(1296,0,-11636,0,'LMT'),(1296,1,-7200,1,'-02'),(1296,2,-10800,0,'-03'),(1297,0,-21168,0,'LMT'),(1297,1,-19800,1,'-0530'),(1297,2,-21600,0,'CST'),(1297,3,-18000,1,'CDT'),(1298,0,-13708,0,'LMT'),(1298,1,-10800,1,'ADT'),(1298,2,-14400,0,'AST'),(1298,3,-10800,1,'AWT'),(1298,4,-10800,1,'APT'),(1299,0,-14560,0,'LMT'),(1299,1,-10800,1,'-03'),(1299,2,-14400,0,'-04'),(1300,0,-17776,0,'LMT'),(1300,1,-17776,0,'BMT'),(1300,2,-14400,1,'-04'),(1300,3,-18000,0,'-05'),(1301,0,-27889,0,'LMT'),(1301,1,-25200,1,'PDT'),(1301,2,-28800,0,'PST'),(1301,3,-21600,1,'MWT'),(1301,4,-21600,1,'MPT'),(1301,5,-25200,0,'MST'),(1301,6,-21600,1,'MDT'),(1302,0,-14028,0,'LMT'),(1302,1,-15408,0,'CMT'),(1302,2,-14400,0,'-04'),(1302,3,-10800,1,'-03'),(1302,4,-7200,1,'-02'),(1302,5,-10800,0,'-03'),(1303,0,0,0,'-00'),(1303,1,-21600,1,'MWT'),(1303,2,-21600,1,'MPT'),(1303,3,-25200,0,'MST'),(1303,4,-18000,1,'MDDT'),(1303,5,-21600,1,'MDT'),(1303,6,-18000,1,'CDT'),(1303,7,-21600,0,'CST'),(1303,8,-18000,0,'EST'),(1303,9,-21600,1,'MDT'),(1303,10,-25200,0,'MST'),(1304,0,-13108,0,'LMT'),(1304,1,-10800,1,'-03'),(1304,2,-14400,0,'-04'),(1305,0,-20824,0,'LMT'),(1305,1,-21600,0,'CST'),(1305,2,-14400,1,'EDT'),(1305,3,-18000,0,'EST'),(1305,4,-18000,1,'CDT'),(1306,0,-16064,0,'LMT'),(1306,1,-16060,0,'CMT'),(1306,2,-16200,0,'-0430'),(1306,3,-14400,0,'-04'),(1307,0,-15788,0,'LMT'),(1307,1,-15408,0,'CMT'),(1307,2,-14400,0,'-04'),(1307,3,-10800,1,'-03'),(1307,4,-7200,1,'-02'),(1307,5,-10800,0,'-03'),(1308,0,-12560,0,'LMT'),(1308,1,-14400,0,'-04'),(1308,2,-10800,0,'-03'),(1309,0,-19088,0,'LMT'),(1309,1,-19176,0,'CMT'),(1309,2,-18000,0,'EST'),(1310,0,-21036,0,'LMT'),(1310,1,-18000,1,'CDT'),(1310,2,-21600,0,'CST'),(1310,3,-18000,0,'EST'),(1310,4,-18000,1,'CWT'),(1310,5,-18000,1,'CPT'),(1310,6,-21600,0,'CST'),(1311,0,-25460,0,'LMT'),(1311,1,-25200,0,'MST'),(1311,2,-21600,0,'CST'),(1311,3,-18000,1,'CDT'),(1311,4,-21600,1,'MDT'),(1311,5,-25200,0,'MST'),(1312,0,-21988,0,'LMT'),(1312,1,-18000,1,'CDT'),(1312,2,-21600,0,'CST'),(1312,3,-18000,1,'CWT'),(1312,4,-18000,1,'CPT'),(1312,5,-18000,0,'EST'),(1313,0,-15408,0,'LMT'),(1313,1,-15408,0,'CMT'),(1313,2,-14400,0,'-04'),(1313,3,-10800,1,'-03'),(1313,4,-7200,1,'-02'),(1313,5,-10800,0,'-03'),(1314,0,-20173,0,'LMT'),(1314,1,-20173,0,'SJMT'),(1314,2,-18000,1,'CDT'),(1314,3,-21600,0,'CST'),(1315,0,-27964,0,'LMT'),(1315,1,-25200,0,'MST'),(1315,2,-28800,0,'PST'),(1315,3,-25200,0,'MST'),(1316,0,-13460,0,'LMT'),(1316,1,-10800,1,'-03'),(1316,2,-14400,0,'-04'),(1317,0,-16547,0,'LMT'),(1317,1,-16200,0,'-0430'),(1317,2,-14400,0,'AST'),(1318,0,-4480,0,'LMT'),(1318,1,-10800,0,'-03'),(1318,2,-10800,0,'-03'),(1318,3,-7200,1,'-02'),(1318,4,-7200,1,'-02'),(1318,5,0,0,'GMT'),(1319,0,-33460,0,'LMT'),(1319,1,-28800,1,'YDT'),(1319,2,-32400,0,'YST'),(1319,3,-28800,1,'YWT'),(1319,4,-28800,1,'YPT'),(1319,5,-25200,1,'YDDT'),(1319,6,-28800,0,'PST'),(1319,7,-25200,1,'PDT'),(1320,0,-28856,0,'LMT'),(1320,1,-25200,1,'PDT'),(1320,2,-28800,0,'PST'),(1320,3,-25200,1,'PWT'),(1320,4,-25200,1,'PPT'),(1320,5,-25200,0,'MST'),(1321,0,-25196,0,'LMT'),(1321,1,-21600,1,'MDT'),(1321,2,-25200,0,'MST'),(1321,3,-21600,1,'MWT'),(1321,4,-21600,1,'MPT'),(1322,0,-19931,0,'LMT'),(1322,1,-21600,0,'CST'),(1322,2,-18000,0,'EST'),(1322,3,-14400,1,'EWT'),(1322,4,-14400,1,'EPT'),(1322,5,-14400,1,'EDT'),(1323,0,-14764,0,'LMT'),(1323,1,-14400,0,'AST'),(1324,0,-27232,0,'LMT'),(1324,1,-21600,1,'MDT'),(1324,2,-25200,0,'MST'),(1324,3,-21600,1,'MWT'),(1324,4,-21600,1,'MPT'),(1325,0,-16768,0,'LMT'),(1325,1,-14400,1,'-04'),(1325,2,-18000,0,'-05'),(1325,3,-14400,0,'-04'),(1325,4,-18000,0,'-05'),(1326,0,-21408,0,'LMT'),(1326,1,-18000,1,'CDT'),(1326,2,-21600,0,'CST'),(1327,0,-28084,0,'LMT'),(1327,1,-25200,0,'MST'),(1327,2,-28800,0,'PST'),(1327,3,-25200,1,'PDT'),(1327,4,-25200,1,'PWT'),(1327,5,-25200,1,'PPT'),(1328,0,-29447,0,'LMT'),(1328,1,-25200,1,'PDT'),(1328,2,-28800,0,'PST'),(1328,3,-25200,1,'PWT'),(1328,4,-25200,1,'PPT'),(1328,5,-25200,0,'MST'),(1329,0,-20678,0,'LMT'),(1329,1,-18000,1,'CDT'),(1329,2,-21600,0,'CST'),(1329,3,-18000,1,'CWT'),(1329,4,-18000,1,'CPT'),(1329,5,-18000,0,'EST'),(1329,6,-14400,1,'EDT'),(1330,0,-9240,0,'LMT'),(1330,1,-7200,1,'-02'),(1330,2,-10800,0,'-03'),(1331,0,-14388,0,'LMT'),(1331,1,-10800,1,'ADT'),(1331,2,-14400,0,'AST'),(1331,3,-10800,1,'AWT'),(1331,4,-10800,1,'APT'),(1332,0,-12416,0,'LMT'),(1332,1,-10800,0,'-03'),(1332,2,-10800,0,'-03'),(1332,3,-7200,1,'-02'),(1332,4,-7200,1,'-02'),(1333,0,-14500,0,'LMT'),(1333,1,-12652,0,'NST'),(1333,2,-9052,1,'NDT'),(1333,3,-12600,0,'NST'),(1333,4,-9000,1,'NDT'),(1333,5,-9000,1,'NPT'),(1333,6,-9000,1,'NWT'),(1333,7,-10800,1,'ADT'),(1333,8,-14400,0,'AST'),(1333,9,-7200,1,'ADDT'),(1333,10,-10800,1,'ADT'),(1334,0,-17072,0,'LMT'),(1334,1,-18430,0,'KMT'),(1334,2,-18000,0,'EST'),(1334,3,-14400,1,'EDT'),(1334,4,-14400,0,'AST'),(1334,5,-18000,0,'EST'),(1335,0,-14764,0,'LMT'),(1335,1,-14400,0,'AST'),(1336,0,-14764,0,'LMT'),(1336,1,-14400,0,'AST'),(1337,0,-21724,0,'LMT'),(1337,1,-18000,1,'CDT'),(1337,2,-21600,0,'CST'),(1338,0,-19160,0,'LMT'),(1338,1,-18840,0,'QMT'),(1338,2,-14400,1,'-04'),(1338,3,-18000,0,'-05'),(1339,0,-13960,0,'LMT'),(1339,1,-13500,0,'-0345'),(1339,2,-10800,0,'-03'),(1339,3,-14400,0,'-04'),(1340,0,-15264,0,'LMT'),(1340,1,-10800,1,'ADT'),(1340,2,-14400,0,'AST'),(1340,3,-10800,1,'AWT'),(1340,4,-10800,1,'APT'),(1341,0,-19768,0,'LMT'),(1341,1,-19776,0,'HMT'),(1341,2,-14400,1,'CDT'),(1341,3,-18000,0,'CST'),(1341,4,-18000,0,'CST'),(1341,5,-14400,1,'CDT'),(1342,0,-26632,0,'LMT'),(1342,1,-25200,0,'MST'),(1342,2,-21600,0,'CST'),(1342,3,-28800,0,'PST'),(1342,4,-21600,1,'MDT'),(1342,5,-25200,0,'MST'),(1343,0,-20678,0,'LMT'),(1343,1,-18000,1,'CDT'),(1343,2,-21600,0,'CST'),(1343,3,-18000,1,'CWT'),(1343,4,-18000,1,'CPT'),(1343,5,-18000,0,'EST'),(1343,6,-14400,1,'EDT'),(1344,0,-20790,0,'LMT'),(1344,1,-18000,1,'CDT'),(1344,2,-21600,0,'CST'),(1344,3,-18000,1,'CWT'),(1344,4,-18000,1,'CPT'),(1344,5,-18000,0,'EST'),(1344,6,-21600,0,'CST'),(1345,0,-20723,0,'LMT'),(1345,1,-18000,1,'CDT'),(1345,2,-21600,0,'CST'),(1345,3,-18000,1,'CWT'),(1345,4,-18000,1,'CPT'),(1345,5,-18000,0,'EST'),(1345,6,-14400,1,'EDT'),(1346,0,-20947,0,'LMT'),(1346,1,-18000,1,'CDT'),(1346,2,-21600,0,'CST'),(1346,3,-18000,1,'CWT'),(1346,4,-18000,1,'CPT'),(1346,5,-18000,0,'EST'),(1346,6,-14400,1,'EDT'),(1347,0,-20823,0,'LMT'),(1347,1,-18000,1,'CDT'),(1347,2,-21600,0,'CST'),(1347,3,-18000,1,'CWT'),(1347,4,-18000,1,'CPT'),(1347,5,-18000,0,'EST'),(1347,6,-14400,1,'EDT'),(1347,7,-18000,1,'CDT'),(1347,8,-21600,0,'CST'),(1348,0,-20416,0,'LMT'),(1348,1,-18000,1,'CDT'),(1348,2,-21600,0,'CST'),(1348,3,-18000,1,'CWT'),(1348,4,-18000,1,'CPT'),(1348,5,-18000,0,'EST'),(1348,6,-14400,1,'EDT'),(1349,0,-21007,0,'LMT'),(1349,1,-18000,1,'CDT'),(1349,2,-21600,0,'CST'),(1349,3,-18000,1,'CWT'),(1349,4,-18000,1,'CPT'),(1349,5,-18000,0,'EST'),(1349,6,-14400,1,'EDT'),(1350,0,-20785,0,'LMT'),(1350,1,-18000,1,'CDT'),(1350,2,-21600,0,'CST'),(1350,3,-18000,1,'CWT'),(1350,4,-18000,1,'CPT'),(1350,5,-18000,0,'EST'),(1350,6,-14400,1,'EDT'),(1351,0,-20678,0,'LMT'),(1351,1,-18000,1,'CDT'),(1351,2,-21600,0,'CST'),(1351,3,-18000,1,'CWT'),(1351,4,-18000,1,'CPT'),(1351,5,-18000,0,'EST'),(1351,6,-14400,1,'EDT'),(1352,0,0,0,'-00'),(1352,1,-21600,1,'PDDT'),(1352,2,-28800,0,'PST'),(1352,3,-25200,0,'MST'),(1352,4,-21600,1,'MDT'),(1353,0,0,0,'-00'),(1353,1,-14400,1,'EPT'),(1353,2,-18000,0,'EST'),(1353,3,-10800,1,'EDDT'),(1353,4,-14400,1,'EDT'),(1353,5,-14400,1,'EWT'),(1353,6,-21600,0,'CST'),(1353,7,-18000,1,'CDT'),(1353,8,-14400,1,'EDT'),(1353,9,-18000,0,'EST'),(1354,0,-18430,0,'LMT'),(1354,1,-18430,0,'KMT'),(1354,2,-18000,0,'EST'),(1354,3,-14400,1,'EDT'),(1355,0,-15672,0,'LMT'),(1355,1,-15408,0,'CMT'),(1355,2,-14400,0,'-04'),(1355,3,-10800,1,'-03'),(1355,4,-7200,1,'-02'),(1355,5,-10800,0,'-03'),(1356,0,-32261,0,'LMT'),(1356,1,-28800,0,'PST'),(1356,2,-25200,1,'PWT'),(1356,3,-25200,1,'PPT'),(1356,4,-25200,1,'PDT'),(1356,5,-28800,1,'YDT'),(1356,6,-32400,0,'YST'),(1356,7,-28800,1,'AKDT'),(1356,8,-32400,0,'AKST'),(1357,0,-20582,0,'LMT'),(1357,1,-18000,1,'CDT'),(1357,2,-21600,0,'CST'),(1357,3,-18000,1,'CWT'),(1357,4,-18000,1,'CPT'),(1357,5,-18000,0,'EST'),(1357,6,-14400,1,'EDT'),(1358,0,-20364,0,'LMT'),(1358,1,-18000,1,'CDT'),(1358,2,-21600,0,'CST'),(1358,3,-18000,1,'CWT'),(1358,4,-18000,1,'CPT'),(1358,5,-14400,1,'EDT'),(1358,6,-18000,0,'EST'),(1359,0,-20790,0,'LMT'),(1359,1,-18000,1,'CDT'),(1359,2,-21600,0,'CST'),(1359,3,-18000,1,'CWT'),(1359,4,-18000,1,'CPT'),(1359,5,-18000,0,'EST'),(1359,6,-21600,0,'CST'),(1360,0,-16547,0,'LMT'),(1360,1,-16200,0,'-0430'),(1360,2,-14400,0,'AST'),(1361,0,-16356,0,'LMT'),(1361,1,-16356,0,'CMT'),(1361,2,-12756,1,'BST'),(1361,3,-14400,0,'-04'),(1362,0,-18492,0,'LMT'),(1362,1,-18516,0,'LMT'),(1362,2,-14400,1,'-04'),(1362,3,-18000,0,'-05'),(1363,0,-28378,0,'LMT'),(1363,1,-25200,1,'PDT'),(1363,2,-28800,0,'PST'),(1363,3,-25200,1,'PWT'),(1363,4,-25200,1,'PPT'),(1364,0,-20582,0,'LMT'),(1364,1,-18000,1,'CDT'),(1364,2,-21600,0,'CST'),(1364,3,-18000,1,'CWT'),(1364,4,-18000,1,'CPT'),(1364,5,-18000,0,'EST'),(1364,6,-14400,1,'EDT'),(1365,0,-16547,0,'LMT'),(1365,1,-16200,0,'-0430'),(1365,2,-14400,0,'AST'),(1366,0,-8572,0,'LMT'),(1366,1,-7200,1,'-02'),(1366,2,-10800,0,'-03'),(1367,0,-20708,0,'LMT'),(1367,1,-20712,0,'MMT'),(1367,2,-21600,0,'CST'),(1367,3,-18000,0,'EST'),(1367,4,-18000,1,'CDT'),(1367,5,-21600,0,'CST'),(1368,0,-14404,0,'LMT'),(1368,1,-10800,1,'-03'),(1368,2,-14400,0,'-04'),(1369,0,-14764,0,'LMT'),(1369,1,-14400,0,'AST'),(1370,0,-14660,0,'LMT'),(1370,1,-14660,0,'FFMT'),(1370,2,-14400,0,'AST'),(1370,3,-10800,1,'ADT'),(1371,0,-24000,0,'LMT'),(1371,1,-21600,0,'CST'),(1371,2,-18000,1,'CDT'),(1372,0,-25540,0,'LMT'),(1372,1,-25200,0,'MST'),(1372,2,-21600,0,'CST'),(1372,3,-28800,0,'PST'),(1372,4,-21600,1,'MDT'),(1372,5,-25200,0,'MST'),(1373,0,-16516,0,'LMT'),(1373,1,-15408,0,'CMT'),(1373,2,-14400,0,'-04'),(1373,3,-10800,1,'-03'),(1373,4,-7200,1,'-02'),(1373,5,-10800,0,'-03'),(1374,0,-21027,0,'LMT'),(1374,1,-18000,1,'CDT'),(1374,2,-21600,0,'CST'),(1374,3,-18000,1,'CWT'),(1374,4,-18000,1,'CPT'),(1374,5,-18000,0,'EST'),(1374,6,-21600,0,'CST'),(1375,0,-21508,0,'LMT'),(1375,1,-21600,0,'CST'),(1375,2,-18000,0,'EST'),(1375,3,-18000,1,'CDT'),(1375,4,-21600,0,'CST'),(1376,0,-31578,0,'LMT'),(1376,1,-28800,0,'PST'),(1376,2,-25200,1,'PWT'),(1376,3,-25200,1,'PPT'),(1376,4,-25200,1,'PDT'),(1376,5,-32400,0,'AKST'),(1376,6,-28800,1,'AKDT'),(1377,0,-23796,0,'LMT'),(1377,1,-25200,0,'MST'),(1377,2,-21600,0,'CST'),(1377,3,-18000,1,'CDT'),(1377,4,-18000,1,'CWT'),(1378,0,-13480,0,'LMT'),(1378,1,-14400,0,'AST'),(1378,2,-10800,0,'-03'),(1378,3,-7200,1,'-02'),(1379,0,-15548,0,'LMT'),(1379,1,-18000,0,'EST'),(1379,2,-10800,1,'ADT'),(1379,3,-14400,0,'AST'),(1379,4,-10800,1,'AWT'),(1379,5,-10800,1,'APT'),(1380,0,-24076,0,'LMT'),(1380,1,-21600,0,'CST'),(1380,2,-18000,1,'CDT'),(1381,0,-13491,0,'LMT'),(1381,1,-13491,0,'MMT'),(1381,2,-14400,0,'-04'),(1381,3,-12600,0,'-0330'),(1381,4,-10800,1,'-03'),(1381,5,-10800,0,'-03'),(1381,6,-9000,1,'-0230'),(1381,7,-7200,1,'-02'),(1381,8,-5400,1,'-0130'),(1381,9,-7200,1,'-02'),(1382,0,-19052,0,'LMT'),(1382,1,-14400,1,'EDT'),(1382,2,-18000,0,'EST'),(1382,3,-14400,1,'EWT'),(1382,4,-14400,1,'EPT'),(1383,0,-14764,0,'LMT'),(1383,1,-14400,0,'AST'),(1384,0,-18570,0,'LMT'),(1384,1,-14400,1,'EDT'),(1384,2,-18000,0,'EST'),(1385,0,-17762,0,'LMT'),(1385,1,-14400,1,'EDT'),(1385,2,-18000,0,'EST'),(1385,3,-14400,1,'EWT'),(1385,4,-14400,1,'EPT'),(1386,0,-21184,0,'LMT'),(1386,1,-14400,1,'EDT'),(1386,2,-18000,0,'EST'),(1386,3,-14400,1,'EWT'),(1386,4,-14400,1,'EPT'),(1387,0,-39698,0,'LMT'),(1387,1,-39600,0,'NST'),(1387,2,-36000,1,'NWT'),(1387,3,-36000,1,'NPT'),(1387,4,-39600,0,'BST'),(1387,5,-36000,1,'BDT'),(1387,6,-32400,0,'YST'),(1387,7,-28800,1,'AKDT'),(1387,8,-32400,0,'AKST'),(1388,0,-7780,0,'LMT'),(1388,1,-3600,1,'-01'),(1388,2,-7200,0,'-02'),(1389,0,-24427,0,'LMT'),(1389,1,-21600,1,'MDT'),(1389,2,-25200,0,'MST'),(1389,3,-21600,1,'MWT'),(1389,4,-21600,1,'MPT'),(1389,5,-18000,1,'CDT'),(1389,6,-21600,0,'CST'),(1390,0,-24312,0,'LMT'),(1390,1,-21600,1,'MDT'),(1390,2,-25200,0,'MST'),(1390,3,-21600,1,'MWT'),(1390,4,-21600,1,'MPT'),(1390,5,-18000,1,'CDT'),(1390,6,-21600,0,'CST'),(1391,0,-24339,0,'LMT'),(1391,1,-21600,1,'MDT'),(1391,2,-25200,0,'MST'),(1391,3,-21600,1,'MWT'),(1391,4,-21600,1,'MPT'),(1391,5,-18000,1,'CDT'),(1391,6,-21600,0,'CST'),(1392,0,-25060,0,'LMT'),(1392,1,-25200,0,'MST'),(1392,2,-21600,0,'CST'),(1392,3,-18000,1,'CDT'),(1392,4,-21600,1,'MDT'),(1392,5,-25200,0,'MST'),(1393,0,-19088,0,'LMT'),(1393,1,-19176,0,'CMT'),(1393,2,-18000,0,'EST'),(1394,0,0,0,'-00'),(1394,1,-10800,1,'AWT'),(1394,2,-10800,1,'APT'),(1394,3,-14400,0,'AST'),(1394,4,-7200,1,'ADDT'),(1394,5,-10800,1,'ADT'),(1394,6,-14400,1,'EDT'),(1394,7,-18000,0,'EST'),(1394,8,-21600,0,'CST'),(1394,9,-18000,1,'CDT'),(1394,10,-14400,1,'EDT'),(1394,11,-18000,0,'EST'),(1395,0,-13240,0,'LMT'),(1395,1,-13252,0,'PMT'),(1395,2,-13236,0,'PMT'),(1395,3,-12600,0,'-0330'),(1395,4,-10800,0,'-03'),(1396,0,-26898,0,'LMT'),(1396,1,-21600,1,'MDT'),(1396,2,-25200,0,'MST'),(1396,3,-21600,1,'MWT'),(1397,0,-17360,0,'LMT'),(1397,1,-17340,0,'PPMT'),(1397,2,-14400,1,'EDT'),(1397,3,-18000,0,'EST'),(1397,4,-14400,1,'EDT'),(1397,5,-18000,0,'EST'),(1398,0,-14764,0,'LMT'),(1398,1,-14400,0,'AST'),(1399,0,-16272,0,'LMT'),(1399,1,-14400,1,'-04'),(1399,2,-18000,0,'-05'),(1399,3,-14400,0,'-04'),(1399,4,-18000,0,'-05'),(1400,0,-15336,0,'LMT'),(1400,1,-10800,1,'-03'),(1400,2,-14400,0,'-04'),(1401,0,-15865,0,'LMT'),(1401,1,-14400,0,'AST'),(1401,2,-10800,1,'APT'),(1401,3,-10800,1,'AWT'),(1402,0,-17020,0,'LMT'),(1402,1,-16966,0,'SMT'),(1402,2,-18000,0,'-05'),(1402,3,-14400,0,'-04'),(1402,4,-14400,1,'-04'),(1402,5,-10800,1,'-03'),(1402,6,-14400,0,'-04'),(1402,7,-10800,0,'-03'),(1403,0,-22696,0,'LMT'),(1403,1,-18000,1,'CDT'),(1403,2,-21600,0,'CST'),(1403,3,-18000,1,'CWT'),(1403,4,-18000,1,'CPT'),(1404,0,0,0,'-00'),(1404,1,-14400,1,'CDDT'),(1404,2,-21600,0,'CST'),(1404,3,-18000,1,'CDT'),(1404,4,-18000,0,'EST'),(1404,5,-21600,0,'CST'),(1405,0,-8376,0,'LMT'),(1405,1,-7200,1,'-02'),(1405,2,-10800,0,'-03'),(1406,0,-25116,0,'LMT'),(1406,1,-21600,1,'MDT'),(1406,2,-25200,0,'MST'),(1406,3,-21600,1,'MWT'),(1406,4,-21600,1,'MPT'),(1406,5,-21600,0,'CST'),(1407,0,0,0,'-00'),(1407,1,-14400,1,'CDDT'),(1407,2,-21600,0,'CST'),(1407,3,-18000,1,'CDT'),(1407,4,-18000,0,'EST'),(1407,5,-21600,0,'CST'),(1408,0,-16272,0,'LMT'),(1408,1,-14400,1,'-04'),(1408,2,-18000,0,'-05'),(1408,3,-14400,0,'-04'),(1408,4,-18000,0,'-05'),(1409,0,-15408,0,'LMT'),(1409,1,-15408,0,'CMT'),(1409,2,-14400,0,'-04'),(1409,3,-10800,1,'-03'),(1409,4,-7200,1,'-02'),(1409,5,-10800,0,'-03'),(1410,0,-28084,0,'LMT'),(1410,1,-25200,0,'MST'),(1410,2,-28800,0,'PST'),(1410,3,-25200,1,'PDT'),(1410,4,-25200,1,'PWT'),(1410,5,-25200,1,'PPT'),(1411,0,-13128,0,'LMT'),(1411,1,-10800,1,'-03'),(1411,2,-14400,0,'-04'),(1411,3,-10800,0,'-03'),(1412,0,-16966,0,'LMT'),(1412,1,-16966,0,'SMT'),(1412,2,-18000,0,'-05'),(1412,3,-14400,0,'-04'),(1412,4,-14400,1,'-04'),(1412,5,-10800,1,'-03'),(1412,6,-10800,1,'-03'),(1412,7,-14400,0,'-04'),(1413,0,-16776,0,'LMT'),(1413,1,-16800,0,'SDMT'),(1413,2,-14400,1,'EDT'),(1413,3,-18000,0,'EST'),(1413,4,-16200,1,'-0430'),(1413,5,-14400,0,'AST'),(1414,0,-11188,0,'LMT'),(1414,1,-7200,1,'-02'),(1414,2,-10800,0,'-03'),(1415,0,-5272,0,'LMT'),(1415,1,-7200,0,'-02'),(1415,2,-3600,1,'-01'),(1415,3,-7200,0,'-02'),(1415,4,-3600,0,'-01'),(1415,5,0,1,'+00'),(1415,6,0,1,'+00'),(1416,0,-25196,0,'LMT'),(1416,1,-21600,1,'MDT'),(1416,2,-25200,0,'MST'),(1416,3,-21600,1,'MWT'),(1416,4,-21600,1,'MPT'),(1417,0,-32473,0,'LMT'),(1417,1,-28800,0,'PST'),(1417,2,-25200,1,'PWT'),(1417,3,-25200,1,'PPT'),(1417,4,-25200,1,'PDT'),(1417,5,-32400,0,'YST'),(1417,6,-28800,1,'AKDT'),(1417,7,-32400,0,'AKST'),(1418,0,-14764,0,'LMT'),(1418,1,-14400,0,'AST'),(1419,0,-12652,0,'LMT'),(1419,1,-9052,1,'NDT'),(1419,2,-12652,0,'NST'),(1419,3,-9000,1,'NDT'),(1419,4,-12600,0,'NST'),(1419,5,-9000,1,'NPT'),(1419,6,-9000,1,'NWT'),(1419,7,-5400,1,'NDDT'),(1419,8,-9000,1,'NDT'),(1420,0,-14764,0,'LMT'),(1420,1,-14400,0,'AST'),(1421,0,-14764,0,'LMT'),(1421,1,-14400,0,'AST'),(1422,0,-14764,0,'LMT'),(1422,1,-14400,0,'AST'),(1423,0,-14764,0,'LMT'),(1423,1,-14400,0,'AST'),(1424,0,-25880,0,'LMT'),(1424,1,-21600,1,'MDT'),(1424,2,-25200,0,'MST'),(1424,3,-21600,1,'MWT'),(1424,4,-21600,1,'MPT'),(1424,5,-21600,0,'CST'),(1425,0,-20932,0,'LMT'),(1425,1,-18000,1,'CDT'),(1425,2,-21600,0,'CST'),(1426,0,-16508,0,'LMT'),(1426,1,-10800,1,'ADT'),(1426,2,-14400,0,'AST'),(1427,0,-21420,0,'LMT'),(1427,1,-21600,0,'CST'),(1427,2,-18000,0,'EST'),(1427,3,-14400,1,'EWT'),(1427,4,-14400,1,'EPT'),(1427,5,-14400,1,'EDT'),(1428,0,-28084,0,'LMT'),(1428,1,-25200,0,'MST'),(1428,2,-28800,0,'PST'),(1428,3,-25200,1,'PDT'),(1428,4,-25200,1,'PWT'),(1428,5,-25200,1,'PPT'),(1429,0,-19052,0,'LMT'),(1429,1,-14400,1,'EDT'),(1429,2,-18000,0,'EST'),(1429,3,-14400,1,'EWT'),(1429,4,-14400,1,'EPT'),(1430,0,-14764,0,'LMT'),(1430,1,-14400,0,'AST'),(1431,0,-29548,0,'LMT'),(1431,1,-25200,1,'PDT'),(1431,2,-28800,0,'PST'),(1431,3,-25200,1,'PWT'),(1431,4,-25200,1,'PPT'),(1432,0,-14764,0,'LMT'),(1432,1,-14400,0,'AST'),(1433,0,-32412,0,'LMT'),(1433,1,-28800,1,'YDT'),(1433,2,-32400,0,'YST'),(1433,3,-28800,1,'YWT'),(1433,4,-28800,1,'YPT'),(1433,5,-25200,1,'YDDT'),(1433,6,-28800,0,'PST'),(1433,7,-25200,1,'PDT'),(1434,0,-23316,0,'LMT'),(1434,1,-18000,1,'CDT'),(1434,2,-21600,0,'CST'),(1434,3,-18000,1,'CWT'),(1434,4,-18000,1,'CPT'),(1434,5,-18000,1,'CDT'),(1434,6,-21600,0,'CST'),(1435,0,-33535,0,'LMT'),(1435,1,-32400,0,'YST'),(1435,2,-28800,1,'YWT'),(1435,3,-28800,1,'YPT'),(1435,4,-28800,1,'YDT'),(1435,5,-28800,1,'AKDT'),(1435,6,-32400,0,'AKST'),(1436,0,0,0,'-00'),(1436,1,-21600,1,'MWT'),(1436,2,-21600,1,'MPT'),(1436,3,-25200,0,'MST'),(1436,4,-18000,1,'MDDT'),(1436,5,-21600,1,'MDT'),(1437,0,0,0,'-00'),(1437,1,28800,0,'+08'),(1437,2,39600,0,'+11'),(1437,3,28800,0,'+08'),(1438,0,0,0,'-00'),(1438,1,25200,0,'+07'),(1438,2,18000,0,'+05'),(1438,3,25200,0,'+07'),(1439,0,0,0,'-00'),(1439,1,36000,0,'+10'),(1440,0,0,0,'-00'),(1440,1,36000,0,'AEST'),(1440,2,39600,1,'AEDT'),(1440,3,0,0,'-00'),(1440,4,39600,1,'AEDT'),(1440,5,36000,0,'AEST'),(1440,6,39600,0,'+11'),(1441,0,0,0,'-00'),(1441,1,21600,0,'+06'),(1441,2,18000,0,'+05'),(1442,0,41944,0,'LMT'),(1442,1,45000,1,'NZST'),(1442,2,41400,0,'NZMT'),(1442,3,43200,1,'NZST'),(1442,4,46800,1,'NZDT'),(1442,5,43200,0,'NZST'),(1442,6,43200,0,'NZST'),(1443,0,0,0,'-00'),(1443,1,-14400,0,'-04'),(1443,2,-10800,1,'-03'),(1443,3,-7200,1,'-02'),(1443,4,-10800,0,'-03'),(1443,5,-10800,1,'-03'),(1443,6,-14400,0,'-04'),(1443,7,-10800,0,'-03'),(1444,0,0,0,'-00'),(1444,1,-10800,0,'-03'),(1445,0,41944,0,'LMT'),(1445,1,45000,1,'NZST'),(1445,2,41400,0,'NZMT'),(1445,3,43200,1,'NZST'),(1445,4,46800,1,'NZDT'),(1445,5,43200,0,'NZST'),(1445,6,43200,0,'NZST'),(1446,0,0,0,'-00'),(1446,1,10800,0,'+03'),(1447,0,0,0,'-00'),(1447,1,7200,1,'+02'),(1447,2,0,0,'+00'),(1447,3,0,0,'+00'),(1448,0,0,0,'-00'),(1448,1,21600,0,'+06'),(1449,0,2580,0,'LMT'),(1449,1,7200,1,'CEST'),(1449,2,3600,0,'CET'),(1449,3,3600,0,'CET'),(1449,4,7200,1,'CEST'),(1449,5,7200,1,'CEST'),(1449,6,3600,0,'CET'),(1450,0,11212,0,'LMT'),(1450,1,10800,0,'+03'),(1451,0,18468,0,'LMT'),(1451,1,18000,0,'+05'),(1451,2,25200,1,'+07'),(1451,3,21600,0,'+06'),(1451,4,21600,0,'+06'),(1451,5,25200,1,'+07'),(1451,6,21600,1,'+06'),(1451,7,18000,0,'+05'),(1451,8,25200,1,'+07'),(1451,9,21600,0,'+06'),(1452,0,8624,0,'LMT'),(1452,1,10800,1,'EEST'),(1452,2,7200,0,'EET'),(1452,3,7200,0,'EET'),(1452,4,10800,1,'EEST'),(1453,0,42596,0,'LMT'),(1453,1,43200,0,'+12'),(1453,2,50400,1,'+14'),(1453,3,46800,0,'+13'),(1453,4,46800,1,'+13'),(1453,5,43200,0,'+12'),(1453,6,46800,1,'+13'),(1453,7,43200,1,'+12'),(1453,8,39600,0,'+11'),(1453,9,43200,0,'+12'),(1454,0,12064,0,'LMT'),(1454,1,14400,0,'+04'),(1454,2,18000,0,'+05'),(1454,3,21600,0,'+06'),(1454,4,21600,1,'+06'),(1454,5,18000,0,'+05'),(1454,6,21600,1,'+06'),(1454,7,18000,1,'+05'),(1454,8,14400,0,'+04'),(1454,9,18000,0,'+05'),(1455,0,13720,0,'LMT'),(1455,1,14400,0,'+04'),(1455,2,18000,0,'+05'),(1455,3,21600,1,'+06'),(1455,4,21600,0,'+06'),(1455,5,18000,0,'+05'),(1455,6,21600,1,'+06'),(1455,7,18000,1,'+05'),(1455,8,14400,0,'+04'),(1455,9,21600,1,'+06'),(1455,10,18000,0,'+05'),(1456,0,14012,0,'LMT'),(1456,1,14400,0,'+04'),(1456,2,21600,1,'+06'),(1456,3,18000,0,'+05'),(1456,4,18000,0,'+05'),(1456,5,21600,1,'+06'),(1456,6,18000,1,'+05'),(1456,7,14400,0,'+04'),(1456,8,18000,0,'+05'),(1457,0,14012,0,'LMT'),(1457,1,14400,0,'+04'),(1457,2,21600,1,'+06'),(1457,3,18000,0,'+05'),(1457,4,18000,0,'+05'),(1457,5,21600,1,'+06'),(1457,6,18000,1,'+05'),(1457,7,14400,0,'+04'),(1457,8,18000,0,'+05'),(1458,0,12464,0,'LMT'),(1458,1,10800,0,'+03'),(1458,2,18000,0,'+05'),(1458,3,21600,0,'+06'),(1458,4,21600,1,'+06'),(1458,5,18000,0,'+05'),(1458,6,21600,1,'+06'),(1458,7,18000,1,'+05'),(1458,8,14400,0,'+04'),(1458,9,18000,0,'+05'),(1459,0,10660,0,'LMT'),(1459,1,10656,0,'BMT'),(1459,2,10800,0,'+03'),(1459,3,14400,1,'+04'),(1459,4,10800,0,'+03'),(1459,5,14400,1,'+04'),(1460,0,12368,0,'LMT'),(1460,1,14400,0,'+04'),(1460,2,10800,0,'+03'),(1461,0,11964,0,'LMT'),(1461,1,10800,0,'+03'),(1461,2,18000,1,'+05'),(1461,3,14400,0,'+04'),(1461,4,14400,0,'+04'),(1461,5,18000,1,'+05'),(1461,6,14400,1,'+04'),(1461,7,10800,0,'+03'),(1461,8,18000,1,'+05'),(1461,9,14400,0,'+04'),(1462,0,24124,0,'LMT'),(1462,1,24124,0,'BMT'),(1462,2,25200,0,'+07'),(1463,0,20100,0,'LMT'),(1463,1,21600,0,'+06'),(1463,2,28800,1,'+08'),(1463,3,25200,0,'+07'),(1463,4,25200,0,'+07'),(1463,5,28800,1,'+08'),(1463,6,25200,1,'+07'),(1463,7,21600,0,'+06'),(1463,8,25200,1,'+07'),(1463,9,25200,0,'+07'),(1464,0,8520,0,'LMT'),(1464,1,10800,1,'EEST'),(1464,2,7200,0,'EET'),(1465,0,17904,0,'LMT'),(1465,1,18000,0,'+05'),(1465,2,25200,1,'+07'),(1465,3,21600,0,'+06'),(1465,4,21600,0,'+06'),(1465,5,25200,1,'+07'),(1465,6,21600,1,'+06'),(1465,7,18000,0,'+05'),(1465,8,21600,1,'+06'),(1465,9,21600,0,'+06'),(1466,0,27580,0,'LMT'),(1466,1,27000,0,'+0730'),(1466,2,28800,0,'+08'),(1467,0,21200,0,'HMT'),(1467,1,19270,0,'MMT'),(1467,2,19800,0,'IST'),(1467,3,23400,1,'+0630'),(1468,0,27232,0,'LMT'),(1468,1,28800,0,'+08'),(1468,2,36000,1,'+10'),(1468,3,32400,0,'+09'),(1468,4,32400,0,'+09'),(1468,5,36000,1,'+10'),(1468,6,32400,1,'+09'),(1468,7,28800,0,'+08'),(1468,8,36000,0,'+10'),(1468,9,36000,1,'+10'),(1468,10,32400,0,'+09'),(1469,0,27480,0,'LMT'),(1469,1,25200,0,'+07'),(1469,2,28800,0,'+08'),(1469,3,32400,0,'+09'),(1469,4,36000,1,'+10'),(1469,5,32400,1,'+09'),(1469,6,28800,0,'+08'),(1470,0,29143,0,'LMT'),(1470,1,32400,1,'CDT'),(1470,2,28800,0,'CST'),(1471,0,29143,0,'LMT'),(1471,1,32400,1,'CDT'),(1471,2,28800,0,'CST'),(1472,0,19164,0,'LMT'),(1472,1,19172,0,'MMT'),(1472,2,19800,0,'+0530'),(1472,3,21600,1,'+06'),(1472,4,23400,1,'+0630'),(1472,5,23400,0,'+0630'),(1472,6,21600,0,'+06'),(1472,7,19800,0,'+0530'),(1473,0,21700,0,'LMT'),(1473,1,21200,0,'HMT'),(1473,2,23400,0,'+0630'),(1473,3,19800,0,'+0530'),(1473,4,21600,0,'+06'),(1473,5,25200,1,'+07'),(1474,0,8712,0,'LMT'),(1474,1,10800,1,'EEST'),(1474,2,7200,0,'EET'),(1475,0,21700,0,'LMT'),(1475,1,21200,0,'HMT'),(1475,2,23400,0,'+0630'),(1475,3,19800,0,'+0530'),(1475,4,21600,0,'+06'),(1475,5,25200,1,'+07'),(1476,0,30140,0,'LMT'),(1476,1,28800,0,'+08'),(1476,2,32400,0,'+09'),(1477,0,13272,0,'LMT'),(1477,1,14400,0,'+04'),(1478,0,16512,0,'LMT'),(1478,1,18000,0,'+05'),(1478,2,25200,1,'+07'),(1478,3,21600,0,'+06'),(1478,4,21600,0,'+06'),(1478,5,25200,1,'+07'),(1478,6,21600,1,'+06'),(1478,7,18000,0,'+05'),(1479,0,8148,0,'LMT'),(1479,1,10800,1,'EEST'),(1479,2,7200,0,'EET'),(1479,3,7200,0,'EET'),(1479,4,10800,1,'EEST'),(1479,5,10800,0,'+03'),(1479,6,7200,0,'EET'),(1480,0,8272,0,'LMT'),(1480,1,10800,1,'EEST'),(1480,2,7200,0,'EET'),(1480,3,10800,1,'IDT'),(1480,4,7200,0,'IST'),(1480,5,7200,0,'EET'),(1481,0,29143,0,'LMT'),(1481,1,32400,1,'CDT'),(1481,2,28800,0,'CST'),(1482,0,8423,0,'LMT'),(1482,1,10800,1,'EEST'),(1482,2,7200,0,'EET'),(1482,3,10800,1,'IDT'),(1482,4,7200,0,'IST'),(1482,5,7200,0,'EET'),(1483,0,25600,0,'LMT'),(1483,1,25590,0,'PLMT'),(1483,2,25200,0,'+07'),(1483,3,28800,0,'+08'),(1483,4,32400,0,'+09'),(1483,5,25200,0,'+07'),(1484,0,27402,0,'LMT'),(1484,1,28800,0,'HKT'),(1484,2,32400,1,'HKST'),(1484,3,30600,1,'HKWT'),(1484,4,32400,0,'JST'),(1484,5,28800,0,'HKT'),(1484,6,32400,1,'HKST'),(1485,0,21996,0,'LMT'),(1485,1,21600,0,'+06'),(1485,2,28800,1,'+08'),(1485,3,25200,0,'+07'),(1486,0,25025,0,'LMT'),(1486,1,25025,0,'IMT'),(1486,2,25200,0,'+07'),(1486,3,32400,1,'+09'),(1486,4,28800,0,'+08'),(1486,5,28800,0,'+08'),(1486,6,32400,1,'+09'),(1486,7,28800,1,'+08'),(1486,8,25200,0,'+07'),(1486,9,32400,0,'+09'),(1486,10,32400,1,'+09'),(1486,11,28800,0,'+08'),(1487,0,6952,0,'LMT'),(1487,1,7016,0,'IMT'),(1487,2,10800,1,'EEST'),(1487,3,7200,0,'EET'),(1487,4,10800,0,'+03'),(1487,5,14400,1,'+04'),(1487,6,10800,1,'EEST'),(1487,7,7200,0,'EET'),(1487,8,10800,1,'EEST'),(1487,9,7200,0,'EET'),(1487,10,10800,0,'+03'),(1488,0,25632,0,'LMT'),(1488,1,25632,0,'BMT'),(1488,2,26400,0,'+0720'),(1488,3,27000,0,'+0730'),(1488,4,32400,0,'+09'),(1488,5,28800,0,'+08'),(1488,6,25200,0,'WIB'),(1489,0,33768,0,'LMT'),(1489,1,32400,0,'+09'),(1489,2,34200,0,'+0930'),(1489,3,32400,0,'WIT'),(1490,0,8454,0,'LMT'),(1490,1,8440,0,'JMT'),(1490,2,10800,1,'IDT'),(1490,3,7200,0,'IST'),(1490,4,14400,1,'IDDT'),(1490,5,10800,1,'IDT'),(1491,0,16608,0,'LMT'),(1491,1,14400,0,'+04'),(1491,2,16200,0,'+0430'),(1492,0,38076,0,'LMT'),(1492,1,39600,0,'+11'),(1492,2,46800,1,'+13'),(1492,3,43200,0,'+12'),(1492,4,43200,0,'+12'),(1492,5,46800,1,'+13'),(1492,6,43200,1,'+12'),(1492,7,39600,0,'+11'),(1492,8,43200,0,'+12'),(1493,0,16092,0,'LMT'),(1493,1,19800,0,'+0530'),(1493,2,23400,1,'+0630'),(1493,3,18000,0,'+05'),(1493,4,21600,1,'PKST'),(1493,5,18000,0,'PKT'),(1494,0,21020,0,'LMT'),(1494,1,21600,0,'+06'),(1495,0,20476,0,'LMT'),(1495,1,19800,0,'+0530'),(1495,2,20700,0,'+0545'),(1496,0,20476,0,'LMT'),(1496,1,19800,0,'+0530'),(1496,2,20700,0,'+0545'),(1497,0,32533,0,'LMT'),(1497,1,28800,0,'+08'),(1497,2,36000,1,'+10'),(1497,3,32400,0,'+09'),(1497,4,32400,0,'+09'),(1497,5,36000,1,'+10'),(1497,6,32400,1,'+09'),(1497,7,28800,0,'+08'),(1497,8,39600,1,'+11'),(1497,9,36000,0,'+10'),(1497,10,36000,0,'+10'),(1497,11,39600,0,'+11'),(1497,12,32400,0,'+09'),(1498,0,21200,0,'HMT'),(1498,1,19270,0,'MMT'),(1498,2,19800,0,'IST'),(1498,3,23400,1,'+0630'),(1499,0,22286,0,'LMT'),(1499,1,21600,0,'+06'),(1499,2,28800,1,'+08'),(1499,3,25200,0,'+07'),(1499,4,25200,0,'+07'),(1499,5,28800,1,'+08'),(1499,6,25200,1,'+07'),(1499,7,21600,0,'+06'),(1499,8,28800,0,'+08'),(1499,9,28800,1,'+08'),(1499,10,25200,0,'+07'),(1500,0,24406,0,'LMT'),(1500,1,24925,0,'SMT'),(1500,2,25200,0,'+07'),(1500,3,26400,1,'+0720'),(1500,4,26400,0,'+0720'),(1500,5,27000,0,'+0730'),(1500,6,32400,0,'+09'),(1500,7,28800,0,'+08'),(1501,0,26480,0,'LMT'),(1501,1,27000,0,'+0730'),(1501,2,30000,1,'+0820'),(1501,3,28800,0,'+08'),(1501,4,32400,0,'+09'),(1501,5,28800,0,'+08'),(1502,0,11212,0,'LMT'),(1502,1,10800,0,'+03'),(1503,0,27250,0,'LMT'),(1503,1,28800,0,'CST'),(1503,2,36000,1,'+10'),(1503,3,32400,0,'+09'),(1503,4,32400,1,'CDT'),(1503,5,28800,0,'CST'),(1503,6,32400,1,'CDT'),(1504,0,27250,0,'LMT'),(1504,1,28800,0,'CST'),(1504,2,36000,1,'+10'),(1504,3,32400,0,'+09'),(1504,4,32400,1,'CDT'),(1504,5,28800,0,'CST'),(1504,6,32400,1,'CDT'),(1505,0,36192,0,'LMT'),(1505,1,36000,0,'+10'),(1505,2,43200,1,'+12'),(1505,3,39600,0,'+11'),(1505,4,39600,0,'+11'),(1505,5,43200,1,'+12'),(1505,6,39600,1,'+11'),(1505,7,36000,0,'+10'),(1505,8,43200,0,'+12'),(1505,9,43200,1,'+12'),(1505,10,39600,0,'+11'),(1506,0,28656,0,'LMT'),(1506,1,28656,0,'MMT'),(1506,2,28800,0,'+08'),(1506,3,32400,0,'+09'),(1506,4,28800,0,'WITA'),(1507,0,29040,0,'LMT'),(1507,1,32400,1,'PDT'),(1507,2,28800,0,'PST'),(1507,3,32400,0,'JST'),(1507,4,28800,0,'PST'),(1508,0,13272,0,'LMT'),(1508,1,14400,0,'+04'),(1509,0,8008,0,'LMT'),(1509,1,10800,1,'EEST'),(1509,2,7200,0,'EET'),(1509,3,7200,0,'EET'),(1509,4,10800,1,'EEST'),(1510,0,20928,0,'LMT'),(1510,1,21600,0,'+06'),(1510,2,28800,1,'+08'),(1510,3,25200,0,'+07'),(1510,4,25200,0,'+07'),(1510,5,28800,1,'+08'),(1510,6,25200,1,'+07'),(1510,7,21600,0,'+06'),(1510,8,25200,0,'+07'),(1511,0,19900,0,'LMT'),(1511,1,21600,0,'+06'),(1511,2,28800,1,'+08'),(1511,3,25200,0,'+07'),(1511,4,25200,0,'+07'),(1511,5,28800,1,'+08'),(1511,6,25200,1,'+07'),(1511,7,21600,0,'+06'),(1511,8,25200,1,'+07'),(1511,9,25200,0,'+07'),(1512,0,17610,0,'LMT'),(1512,1,18000,0,'+05'),(1512,2,25200,1,'+07'),(1512,3,21600,0,'+06'),(1512,4,21600,0,'+06'),(1512,5,25200,1,'+07'),(1512,6,21600,1,'+06'),(1512,7,18000,0,'+05'),(1512,8,25200,0,'+07'),(1512,9,25200,1,'+07'),(1512,10,21600,0,'+06'),(1513,0,12324,0,'LMT'),(1513,1,10800,0,'+03'),(1513,2,18000,0,'+05'),(1513,3,21600,1,'+06'),(1513,4,21600,0,'+06'),(1513,5,18000,0,'+05'),(1513,6,21600,1,'+06'),(1513,7,18000,1,'+05'),(1513,8,14400,0,'+04'),(1513,9,18000,0,'+05'),(1514,0,24124,0,'LMT'),(1514,1,24124,0,'BMT'),(1514,2,25200,0,'+07'),(1515,0,26240,0,'LMT'),(1515,1,26240,0,'PMT'),(1515,2,27000,0,'+0730'),(1515,3,32400,0,'+09'),(1515,4,28800,0,'+08'),(1515,5,28800,0,'WITA'),(1515,6,25200,0,'WIB'),(1516,0,30180,0,'LMT'),(1516,1,30600,0,'KST'),(1516,2,32400,0,'JST'),(1516,3,32400,0,'KST'),(1517,0,12368,0,'LMT'),(1517,1,14400,0,'+04'),(1517,2,10800,0,'+03'),(1518,0,15268,0,'LMT'),(1518,1,14400,0,'+04'),(1518,2,18000,0,'+05'),(1518,3,21600,1,'+06'),(1518,4,21600,0,'+06'),(1518,5,18000,0,'+05'),(1518,6,21600,1,'+06'),(1518,7,18000,1,'+05'),(1518,8,14400,0,'+04'),(1518,9,21600,0,'+06'),(1518,10,21600,1,'+06'),(1519,0,15712,0,'LMT'),(1519,1,14400,0,'+04'),(1519,2,18000,0,'+05'),(1519,3,21600,1,'+06'),(1519,4,21600,0,'+06'),(1519,5,18000,0,'+05'),(1519,6,21600,1,'+06'),(1519,7,18000,1,'+05'),(1519,8,14400,0,'+04'),(1519,9,21600,0,'+06'),(1519,10,21600,1,'+06'),(1519,11,18000,0,'+05'),(1520,0,23087,0,'LMT'),(1520,1,23087,0,'RMT'),(1520,2,23400,0,'+0630'),(1520,3,32400,0,'+09'),(1520,4,23400,0,'+0630'),(1521,0,11212,0,'LMT'),(1521,1,10800,0,'+03'),(1522,0,25600,0,'LMT'),(1522,1,25590,0,'PLMT'),(1522,2,25200,0,'+07'),(1522,3,28800,0,'+08'),(1522,4,32400,0,'+09'),(1522,5,25200,0,'+07'),(1523,0,34248,0,'LMT'),(1523,1,32400,0,'+09'),(1523,2,43200,1,'+12'),(1523,3,39600,0,'+11'),(1523,4,39600,0,'+11'),(1523,5,43200,1,'+12'),(1523,6,39600,1,'+11'),(1523,7,36000,0,'+10'),(1523,8,39600,0,'+11'),(1524,0,16073,0,'LMT'),(1524,1,14400,0,'+04'),(1524,2,18000,0,'+05'),(1524,3,21600,1,'+06'),(1524,4,21600,0,'+06'),(1524,5,18000,0,'+05'),(1524,6,21600,1,'+06'),(1525,0,30472,0,'LMT'),(1525,1,30600,0,'KST'),(1525,2,32400,0,'JST'),(1525,3,36000,1,'KDT'),(1525,4,32400,0,'KST'),(1525,5,34200,1,'KDT'),(1525,6,36000,1,'KDT'),(1526,0,29143,0,'LMT'),(1526,1,32400,1,'CDT'),(1526,2,28800,0,'CST'),(1527,0,24925,0,'LMT'),(1527,1,24925,0,'SMT'),(1527,2,25200,0,'+07'),(1527,3,26400,1,'+0720'),(1527,4,26400,0,'+0720'),(1527,5,27000,0,'+0730'),(1527,6,32400,0,'+09'),(1527,7,28800,0,'+08'),(1528,0,36892,0,'LMT'),(1528,1,36000,0,'+10'),(1528,2,43200,1,'+12'),(1528,3,39600,0,'+11'),(1528,4,39600,0,'+11'),(1528,5,43200,1,'+12'),(1528,6,39600,1,'+11'),(1528,7,36000,0,'+10'),(1528,8,43200,0,'+12'),(1528,9,43200,1,'+12'),(1528,10,39600,0,'+11'),(1529,0,29160,0,'LMT'),(1529,1,28800,0,'CST'),(1529,2,32400,0,'JST'),(1529,3,32400,1,'CDT'),(1529,4,28800,0,'CST'),(1530,0,16631,0,'LMT'),(1530,1,18000,0,'+05'),(1530,2,25200,1,'+07'),(1530,3,21600,0,'+06'),(1530,4,21600,0,'+06'),(1530,5,25200,1,'+07'),(1530,6,21600,1,'+06'),(1530,7,18000,0,'+05'),(1531,0,10751,0,'LMT'),(1531,1,10751,0,'TBMT'),(1531,2,10800,0,'+03'),(1531,3,18000,1,'+05'),(1531,4,14400,0,'+04'),(1531,5,14400,0,'+04'),(1531,6,18000,1,'+05'),(1531,7,14400,1,'+04'),(1531,8,10800,0,'+03'),(1531,9,14400,1,'+04'),(1531,10,14400,0,'+04'),(1532,0,12344,0,'LMT'),(1532,1,12344,0,'TMT'),(1532,2,12600,0,'+0330'),(1532,3,18000,1,'+05'),(1532,4,14400,0,'+04'),(1532,5,16200,1,'+0430'),(1532,6,12600,0,'+0330'),(1533,0,8454,0,'LMT'),(1533,1,8440,0,'JMT'),(1533,2,10800,1,'IDT'),(1533,3,7200,0,'IST'),(1533,4,14400,1,'IDDT'),(1533,5,10800,1,'IDT'),(1534,0,21516,0,'LMT'),(1534,1,19800,0,'+0530'),(1534,2,21600,0,'+06'),(1535,0,21516,0,'LMT'),(1535,1,19800,0,'+0530'),(1535,2,21600,0,'+06'),(1536,0,33539,0,'LMT'),(1536,1,36000,1,'JDT'),(1536,2,32400,0,'JST'),(1536,3,32400,0,'JST'),(1537,0,20391,0,'LMT'),(1537,1,21600,0,'+06'),(1537,2,28800,1,'+08'),(1537,3,25200,0,'+07'),(1537,4,25200,0,'+07'),(1537,5,28800,1,'+08'),(1537,6,25200,1,'+07'),(1537,7,21600,0,'+06'),(1537,8,25200,1,'+07'),(1537,9,25200,0,'+07'),(1538,0,28656,0,'LMT'),(1538,1,28656,0,'MMT'),(1538,2,28800,0,'+08'),(1538,3,32400,0,'+09'),(1538,4,28800,0,'WITA'),(1539,0,25652,0,'LMT'),(1539,1,25200,0,'+07'),(1539,2,32400,1,'+09'),(1539,3,28800,0,'+08'),(1540,0,25652,0,'LMT'),(1540,1,25200,0,'+07'),(1540,2,32400,1,'+09'),(1540,3,28800,0,'+08'),(1541,0,21020,0,'LMT'),(1541,1,21600,0,'+06'),(1542,0,34374,0,'LMT'),(1542,1,28800,0,'+08'),(1542,2,32400,0,'+09'),(1542,3,39600,0,'+11'),(1542,4,43200,1,'+12'),(1542,5,39600,0,'+11'),(1542,6,43200,1,'+12'),(1542,7,39600,1,'+11'),(1542,8,36000,0,'+10'),(1542,9,43200,0,'+12'),(1542,10,43200,1,'+12'),(1542,11,36000,0,'+10'),(1543,0,24124,0,'LMT'),(1543,1,24124,0,'BMT'),(1543,2,25200,0,'+07'),(1544,0,31651,0,'LMT'),(1544,1,32400,0,'+09'),(1544,2,39600,1,'+11'),(1544,3,36000,0,'+10'),(1544,4,36000,0,'+10'),(1544,5,39600,1,'+11'),(1544,6,36000,1,'+10'),(1544,7,32400,0,'+09'),(1544,8,39600,0,'+11'),(1544,9,39600,1,'+11'),(1544,10,36000,0,'+10'),(1545,0,31138,0,'LMT'),(1545,1,28800,0,'+08'),(1545,2,36000,1,'+10'),(1545,3,32400,0,'+09'),(1545,4,32400,0,'+09'),(1545,5,36000,1,'+10'),(1545,6,32400,1,'+09'),(1545,7,28800,0,'+08'),(1545,8,36000,0,'+10'),(1545,9,36000,1,'+10'),(1545,10,32400,0,'+09'),(1546,0,23087,0,'LMT'),(1546,1,23087,0,'RMT'),(1546,2,23400,0,'+0630'),(1546,3,32400,0,'+09'),(1546,4,23400,0,'+0630'),(1547,0,14553,0,'LMT'),(1547,1,13505,0,'PMT'),(1547,2,14400,0,'+04'),(1547,3,21600,1,'+06'),(1547,4,18000,0,'+05'),(1547,5,18000,0,'+05'),(1547,6,21600,1,'+06'),(1547,7,18000,1,'+05'),(1547,8,14400,0,'+04'),(1547,9,21600,0,'+06'),(1547,10,21600,1,'+06'),(1547,11,18000,0,'+05'),(1548,0,10680,0,'LMT'),(1548,1,10800,0,'+03'),(1548,2,18000,1,'+05'),(1548,3,14400,0,'+04'),(1548,4,14400,0,'+04'),(1548,5,18000,1,'+05'),(1548,6,14400,1,'+04'),(1548,7,10800,0,'+03'),(1548,8,18000,1,'+05'),(1548,9,14400,0,'+04'),(1549,0,-6160,0,'LMT'),(1549,1,-6872,0,'HMT'),(1549,2,-3600,1,'-01'),(1549,3,-7200,0,'-02'),(1549,4,-3600,1,'-01'),(1549,5,-7200,0,'-02'),(1549,6,-7200,0,'-02'),(1549,7,0,1,'+00'),(1549,8,-3600,0,'-01'),(1549,9,-3600,0,'-01'),(1549,10,0,0,'WET'),(1549,11,0,1,'+00'),(1549,12,-3600,0,'-01'),(1550,0,-15558,0,'LMT'),(1550,1,-14400,0,'AST'),(1550,2,-10800,1,'ADT'),(1551,0,-3696,0,'LMT'),(1551,1,-3600,0,'-01'),(1551,2,0,0,'WET'),(1551,3,3600,1,'WEST'),(1551,4,0,0,'WET'),(1551,5,3600,1,'WEST'),(1552,0,-5644,0,'LMT'),(1552,1,-7200,0,'-02'),(1552,2,-3600,1,'-01'),(1552,3,-7200,0,'-02'),(1552,4,-3600,0,'-01'),(1553,0,-1624,0,'LMT'),(1553,1,0,0,'WET'),(1553,2,3600,1,'WEST'),(1553,3,0,0,'WET'),(1554,0,-1624,0,'LMT'),(1554,1,0,0,'WET'),(1554,2,3600,1,'WEST'),(1554,3,0,0,'WET'),(1555,0,2580,0,'LMT'),(1555,1,7200,1,'CEST'),(1555,2,3600,0,'CET'),(1555,3,3600,0,'CET'),(1555,4,7200,1,'CEST'),(1555,5,7200,1,'CEST'),(1555,6,3600,0,'CET'),(1556,0,-4056,0,'LMT'),(1556,1,-4056,0,'FMT'),(1556,2,0,1,'+00'),(1556,3,-3600,0,'-01'),(1556,4,0,1,'+00'),(1556,5,-3600,0,'-01'),(1556,6,-3600,0,'-01'),(1556,7,3600,1,'+01'),(1556,8,3600,1,'WEST'),(1556,9,0,0,'WET'),(1556,10,0,0,'WET'),(1556,11,0,0,'WET'),(1556,12,3600,1,'WEST'),(1557,0,-5280,0,'LMT'),(1557,1,0,1,'+00'),(1557,2,-3600,0,'-01'),(1557,3,-3600,0,'-01'),(1557,4,0,1,'+00'),(1557,5,0,0,'GMT'),(1558,0,-7200,0,'-02'),(1559,0,-968,0,'LMT'),(1559,1,0,0,'GMT'),(1560,0,-13884,0,'LMT'),(1560,1,-13884,0,'SMT'),(1560,2,-10800,1,'-03'),(1560,3,-14400,0,'-04'),(1560,4,-7200,1,'-02'),(1560,5,-10800,0,'-03'),(1560,6,-10800,1,'-03'),(1561,0,36292,0,'LMT'),(1561,1,39600,1,'AEDT'),(1561,2,36000,0,'AEST'),(1561,3,39600,1,'AEDT'),(1561,4,36000,0,'AEST'),(1562,0,32400,0,'ACST'),(1562,1,37800,1,'ACDT'),(1562,2,34200,0,'ACST'),(1562,3,37800,1,'ACDT'),(1562,4,34200,0,'ACST'),(1563,0,36728,0,'LMT'),(1563,1,39600,1,'AEDT'),(1563,2,36000,0,'AEST'),(1563,3,39600,1,'AEDT'),(1563,4,36000,0,'AEST'),(1564,0,32400,0,'ACST'),(1564,1,37800,1,'ACDT'),(1564,2,34200,0,'ACST'),(1564,3,37800,1,'ACDT'),(1564,4,34200,0,'ACST'),(1565,0,36292,0,'LMT'),(1565,1,39600,1,'AEDT'),(1565,2,36000,0,'AEST'),(1565,3,39600,1,'AEDT'),(1565,4,36000,0,'AEST'),(1566,0,34528,0,'LMT'),(1566,1,36000,0,'AEST'),(1566,2,39600,1,'AEDT'),(1566,3,39600,1,'AEDT'),(1566,4,36000,0,'AEST'),(1567,0,32400,0,'ACST'),(1567,1,37800,1,'ACDT'),(1567,2,34200,0,'ACST'),(1568,0,30928,0,'LMT'),(1568,1,35100,1,'+0945'),(1568,2,31500,0,'+0845'),(1568,3,35100,1,'+0945'),(1568,4,31500,0,'+0845'),(1569,0,35356,0,'LMT'),(1569,1,36000,0,'AEST'),(1569,2,39600,1,'AEDT'),(1569,3,39600,1,'AEDT'),(1569,4,36000,0,'AEST'),(1570,0,38180,0,'LMT'),(1570,1,36000,0,'AEST'),(1570,2,41400,1,'+1130'),(1570,3,37800,0,'+1030'),(1570,4,39600,1,'+11'),(1571,0,35756,0,'LMT'),(1571,1,39600,1,'AEDT'),(1571,2,36000,0,'AEST'),(1571,3,39600,1,'AEDT'),(1571,4,36000,0,'AEST'),(1572,0,38180,0,'LMT'),(1572,1,36000,0,'AEST'),(1572,2,41400,1,'+1130'),(1572,3,37800,0,'+1030'),(1572,4,39600,1,'+11'),(1573,0,34792,0,'LMT'),(1573,1,39600,1,'AEDT'),(1573,2,36000,0,'AEST'),(1573,3,39600,1,'AEDT'),(1573,4,36000,0,'AEST'),(1574,0,36292,0,'LMT'),(1574,1,39600,1,'AEDT'),(1574,2,36000,0,'AEST'),(1574,3,39600,1,'AEDT'),(1574,4,36000,0,'AEST'),(1575,0,32400,0,'ACST'),(1575,1,37800,1,'ACDT'),(1575,2,34200,0,'ACST'),(1576,0,27804,0,'LMT'),(1576,1,32400,1,'AWDT'),(1576,2,28800,0,'AWST'),(1576,3,32400,1,'AWDT'),(1576,4,28800,0,'AWST'),(1577,0,36728,0,'LMT'),(1577,1,39600,1,'AEDT'),(1577,2,36000,0,'AEST'),(1577,3,39600,1,'AEDT'),(1577,4,36000,0,'AEST'),(1578,0,32400,0,'ACST'),(1578,1,37800,1,'ACDT'),(1578,2,34200,0,'ACST'),(1578,3,37800,1,'ACDT'),(1578,4,34200,0,'ACST'),(1579,0,36292,0,'LMT'),(1579,1,39600,1,'AEDT'),(1579,2,36000,0,'AEST'),(1579,3,39600,1,'AEDT'),(1579,4,36000,0,'AEST'),(1580,0,35356,0,'LMT'),(1580,1,36000,0,'AEST'),(1580,2,39600,1,'AEDT'),(1580,3,39600,1,'AEDT'),(1580,4,36000,0,'AEST'),(1581,0,34792,0,'LMT'),(1581,1,39600,1,'AEDT'),(1581,2,36000,0,'AEST'),(1581,3,39600,1,'AEDT'),(1581,4,36000,0,'AEST'),(1582,0,27804,0,'LMT'),(1582,1,32400,1,'AWDT'),(1582,2,28800,0,'AWST'),(1582,3,32400,1,'AWDT'),(1582,4,28800,0,'AWST'),(1583,0,32400,0,'ACST'),(1583,1,37800,1,'ACDT'),(1583,2,34200,0,'ACST'),(1583,3,37800,1,'ACDT'),(1583,4,34200,0,'ACST'),(1584,0,-16272,0,'LMT'),(1584,1,-14400,1,'-04'),(1584,2,-18000,0,'-05'),(1584,3,-14400,0,'-04'),(1584,4,-18000,0,'-05'),(1585,0,-7780,0,'LMT'),(1585,1,-3600,1,'-01'),(1585,2,-7200,0,'-02'),(1586,0,-11188,0,'LMT'),(1586,1,-7200,1,'-02'),(1586,2,-10800,0,'-03'),(1587,0,-14404,0,'LMT'),(1587,1,-10800,1,'-03'),(1587,2,-14400,0,'-04'),(1588,0,7200,1,'CEST'),(1588,1,3600,0,'CET'),(1588,2,7200,1,'CEST'),(1588,3,3600,0,'CET'),(1589,0,-18000,1,'CDT'),(1589,1,-21600,0,'CST'),(1589,2,-18000,1,'CWT'),(1589,3,-18000,1,'CPT'),(1590,0,-15264,0,'LMT'),(1590,1,-10800,1,'ADT'),(1590,2,-14400,0,'AST'),(1590,3,-10800,1,'AWT'),(1590,4,-10800,1,'APT'),(1591,0,-23316,0,'LMT'),(1591,1,-18000,1,'CDT'),(1591,2,-21600,0,'CST'),(1591,3,-18000,1,'CWT'),(1591,4,-18000,1,'CPT'),(1591,5,-18000,1,'CDT'),(1591,6,-21600,0,'CST'),(1592,0,-19052,0,'LMT'),(1592,1,-14400,1,'EDT'),(1592,2,-18000,0,'EST'),(1592,3,-14400,1,'EWT'),(1592,4,-14400,1,'EPT'),(1593,0,-27232,0,'LMT'),(1593,1,-21600,1,'MDT'),(1593,2,-25200,0,'MST'),(1593,3,-21600,1,'MWT'),(1593,4,-21600,1,'MPT'),(1594,0,-12652,0,'LMT'),(1594,1,-9052,1,'NDT'),(1594,2,-12652,0,'NST'),(1594,3,-9000,1,'NDT'),(1594,4,-12600,0,'NST'),(1594,5,-9000,1,'NPT'),(1594,6,-9000,1,'NWT'),(1594,7,-5400,1,'NDDT'),(1594,8,-9000,1,'NDT'),(1595,0,-29548,0,'LMT'),(1595,1,-25200,1,'PDT'),(1595,2,-28800,0,'PST'),(1595,3,-25200,1,'PWT'),(1595,4,-25200,1,'PPT'),(1596,0,-25116,0,'LMT'),(1596,1,-21600,1,'MDT'),(1596,2,-25200,0,'MST'),(1596,3,-21600,1,'MWT'),(1596,4,-21600,1,'MPT'),(1596,5,-21600,0,'CST'),(1597,0,-32412,0,'LMT'),(1597,1,-28800,1,'YDT'),(1597,2,-32400,0,'YST'),(1597,3,-28800,1,'YWT'),(1597,4,-28800,1,'YPT'),(1597,5,-25200,1,'YDDT'),(1597,6,-28800,0,'PST'),(1597,7,-25200,1,'PDT'),(1598,0,-16966,0,'LMT'),(1598,1,-16966,0,'SMT'),(1598,2,-18000,0,'-05'),(1598,3,-14400,0,'-04'),(1598,4,-14400,1,'-04'),(1598,5,-10800,1,'-03'),(1598,6,-10800,1,'-03'),(1598,7,-14400,0,'-04'),(1599,0,-26248,0,'LMT'),(1599,1,-26248,0,'EMT'),(1599,2,-21600,1,'-06'),(1599,3,-25200,0,'-07'),(1599,4,-25200,0,'-07'),(1599,5,-21600,0,'-06'),(1599,6,-18000,1,'-05'),(1600,0,-19768,0,'LMT'),(1600,1,-19776,0,'HMT'),(1600,2,-14400,1,'CDT'),(1600,3,-18000,0,'CST'),(1600,4,-18000,0,'CST'),(1600,5,-14400,1,'CDT'),(1601,0,10800,1,'EEST'),(1601,1,7200,0,'EET'),(1602,0,-18000,0,'EST'),(1603,0,-14400,1,'EDT'),(1603,1,-18000,0,'EST'),(1603,2,-14400,1,'EWT'),(1603,3,-14400,1,'EPT'),(1604,0,7509,0,'LMT'),(1604,1,10800,1,'EEST'),(1604,2,7200,0,'EET'),(1604,3,10800,1,'EEST'),(1605,0,-1500,0,'LMT'),(1605,1,-1521,0,'DMT'),(1605,2,2079,1,'IST'),(1605,3,3600,1,'BST'),(1605,4,0,0,'GMT'),(1605,5,3600,1,'IST'),(1605,6,0,0,'GMT'),(1605,7,0,1,'GMT'),(1605,8,3600,0,'IST'),(1605,9,3600,0,'IST'),(1606,0,0,0,'GMT'),(1607,0,0,0,'GMT'),(1608,0,-3600,0,'-01'),(1609,0,-36000,0,'-10'),(1610,0,-39600,0,'-11'),(1611,0,-43200,0,'-12'),(1612,0,-7200,0,'-02'),(1613,0,-10800,0,'-03'),(1614,0,-14400,0,'-04'),(1615,0,-18000,0,'-05'),(1616,0,-21600,0,'-06'),(1617,0,-25200,0,'-07'),(1618,0,-28800,0,'-08'),(1619,0,-32400,0,'-09'),(1620,0,0,0,'GMT'),(1621,0,3600,0,'+01'),(1622,0,36000,0,'+10'),(1623,0,39600,0,'+11'),(1624,0,43200,0,'+12'),(1625,0,46800,0,'+13'),(1626,0,50400,0,'+14'),(1627,0,7200,0,'+02'),(1628,0,10800,0,'+03'),(1629,0,14400,0,'+04'),(1630,0,18000,0,'+05'),(1631,0,21600,0,'+06'),(1632,0,25200,0,'+07'),(1633,0,28800,0,'+08'),(1634,0,32400,0,'+09'),(1635,0,0,0,'GMT'),(1636,0,0,0,'GMT'),(1637,0,0,0,'UTC'),(1638,0,0,0,'UTC'),(1639,0,0,0,'UTC'),(1640,0,0,0,'UTC'),(1641,0,1172,0,'LMT'),(1641,1,4772,1,'NST'),(1641,2,1172,0,'AMT'),(1641,3,4772,1,'NST'),(1641,4,1172,0,'AMT'),(1641,5,1200,0,'+0020'),(1641,6,4800,1,'+0120'),(1641,7,4800,1,'+0120'),(1641,8,3600,0,'CET'),(1641,9,7200,1,'CEST'),(1641,10,7200,1,'CEST'),(1641,11,7200,1,'CEST'),(1641,12,3600,0,'CET'),(1641,13,3600,0,'CET'),(1642,0,364,0,'LMT'),(1642,1,0,0,'WET'),(1642,2,3600,0,'CET'),(1642,3,7200,1,'CEST'),(1642,4,3600,0,'CET'),(1643,0,11532,0,'LMT'),(1643,1,10800,0,'+03'),(1643,2,18000,1,'+05'),(1643,3,14400,0,'+04'),(1643,4,14400,0,'+04'),(1643,5,18000,1,'+05'),(1643,6,14400,1,'+04'),(1643,7,10800,0,'+03'),(1643,8,14400,0,'+04'),(1644,0,5692,0,'LMT'),(1644,1,5692,0,'AMT'),(1644,2,10800,1,'EEST'),(1644,3,7200,0,'EET'),(1644,4,3600,0,'CET'),(1644,5,7200,1,'CEST'),(1644,6,10800,1,'EEST'),(1644,7,7200,0,'EET'),(1644,8,10800,1,'EEST'),(1644,9,7200,0,'EET'),(1645,0,-75,0,'LMT'),(1645,1,3600,1,'BST'),(1645,2,0,0,'GMT'),(1645,3,7200,1,'BDST'),(1645,4,3600,0,'BST'),(1645,5,3600,1,'BST'),(1645,6,0,0,'GMT'),(1645,7,0,0,'GMT'),(1646,0,4920,0,'LMT'),(1646,1,3600,0,'CET'),(1646,2,3600,0,'CET'),(1646,3,7200,1,'CEST'),(1646,4,7200,1,'CEST'),(1646,5,7200,1,'CEST'),(1646,6,3600,0,'CET'),(1647,0,3208,0,'LMT'),(1647,1,7200,1,'CEST'),(1647,2,3600,0,'CET'),(1647,3,7200,1,'CEST'),(1647,4,3600,0,'CET'),(1647,5,10800,1,'CEMT'),(1647,6,10800,1,'CEMT'),(1647,7,7200,1,'CEST'),(1647,8,3600,0,'CET'),(1648,0,3464,0,'PMT'),(1648,1,7200,1,'CEST'),(1648,2,3600,0,'CET'),(1648,3,7200,1,'CEST'),(1648,4,3600,0,'CET'),(1648,5,0,1,'GMT'),(1648,6,7200,1,'CEST'),(1648,7,3600,0,'CET'),(1649,0,1050,0,'BMT'),(1649,1,0,0,'WET'),(1649,2,3600,0,'CET'),(1649,3,7200,1,'CEST'),(1649,4,3600,0,'CET'),(1649,5,7200,1,'CEST'),(1649,6,3600,1,'WEST'),(1649,7,0,0,'WET'),(1649,8,0,0,'WET'),(1649,9,7200,1,'CEST'),(1649,10,3600,0,'CET'),(1650,0,6264,0,'LMT'),(1650,1,6264,0,'BMT'),(1650,2,10800,1,'EEST'),(1650,3,7200,0,'EET'),(1650,4,10800,1,'EEST'),(1650,5,7200,0,'EET'),(1650,6,10800,1,'EEST'),(1650,7,7200,0,'EET'),(1651,0,4580,0,'LMT'),(1651,1,7200,1,'CEST'),(1651,2,3600,0,'CET'),(1651,3,7200,1,'CEST'),(1651,4,3600,0,'CET'),(1651,5,3600,0,'CET'),(1651,6,7200,1,'CEST'),(1652,0,1786,0,'BMT'),(1652,1,7200,1,'CEST'),(1652,2,3600,0,'CET'),(1652,3,7200,1,'CEST'),(1652,4,3600,0,'CET'),(1653,0,6920,0,'LMT'),(1653,1,6900,0,'CMT'),(1653,2,6264,0,'BMT'),(1653,3,10800,1,'EEST'),(1653,4,7200,0,'EET'),(1653,5,7200,0,'EET'),(1653,6,10800,1,'EEST'),(1653,7,3600,0,'CET'),(1653,8,7200,1,'CEST'),(1653,9,7200,1,'CEST'),(1653,10,14400,1,'MSD'),(1653,11,10800,0,'MSK'),(1653,12,10800,0,'MSK'),(1653,13,14400,1,'MSD'),(1653,14,10800,1,'EEST'),(1653,15,7200,0,'EET'),(1654,0,3020,0,'CMT'),(1654,1,7200,1,'CEST'),(1654,2,3600,0,'CET'),(1654,3,3600,0,'CET'),(1654,4,7200,1,'CEST'),(1654,5,7200,1,'CEST'),(1654,6,3600,0,'CET'),(1655,0,-1500,0,'LMT'),(1655,1,-1521,0,'DMT'),(1655,2,2079,1,'IST'),(1655,3,3600,1,'BST'),(1655,4,0,0,'GMT'),(1655,5,3600,1,'IST'),(1655,6,0,0,'GMT'),(1655,7,0,1,'GMT'),(1655,8,3600,0,'IST'),(1655,9,3600,0,'IST'),(1656,0,-1284,0,'LMT'),(1656,1,3600,1,'BST'),(1656,2,0,0,'GMT'),(1656,3,7200,1,'BDST'),(1656,4,3600,0,'CET'),(1656,5,7200,1,'CEST'),(1656,6,3600,0,'CET'),(1657,0,-75,0,'LMT'),(1657,1,3600,1,'BST'),(1657,2,0,0,'GMT'),(1657,3,7200,1,'BDST'),(1657,4,3600,0,'BST'),(1657,5,3600,1,'BST'),(1657,6,0,0,'GMT'),(1657,7,0,0,'GMT'),(1658,0,5989,0,'LMT'),(1658,1,5989,0,'HMT'),(1658,2,10800,1,'EEST'),(1658,3,7200,0,'EET'),(1658,4,10800,1,'EEST'),(1658,5,7200,0,'EET'),(1659,0,-75,0,'LMT'),(1659,1,3600,1,'BST'),(1659,2,0,0,'GMT'),(1659,3,7200,1,'BDST'),(1659,4,3600,0,'BST'),(1659,5,3600,1,'BST'),(1659,6,0,0,'GMT'),(1659,7,0,0,'GMT'),(1660,0,6952,0,'LMT'),(1660,1,7016,0,'IMT'),(1660,2,10800,1,'EEST'),(1660,3,7200,0,'EET'),(1660,4,10800,0,'+03'),(1660,5,14400,1,'+04'),(1660,6,10800,1,'EEST'),(1660,7,7200,0,'EET'),(1660,8,10800,1,'EEST'),(1660,9,7200,0,'EET'),(1660,10,10800,0,'+03'),(1661,0,-75,0,'LMT'),(1661,1,3600,1,'BST'),(1661,2,0,0,'GMT'),(1661,3,7200,1,'BDST'),(1661,4,3600,0,'BST'),(1661,5,3600,1,'BST'),(1661,6,0,0,'GMT'),(1661,7,0,0,'GMT'),(1662,0,4920,0,'LMT'),(1662,1,7200,1,'CEST'),(1662,2,3600,0,'CET'),(1662,3,7200,1,'CEST'),(1662,4,3600,0,'CET'),(1662,5,10800,1,'EEST'),(1662,6,7200,0,'EET'),(1662,7,14400,1,'MSD'),(1662,8,10800,0,'MSK'),(1662,9,10800,0,'MSK'),(1662,10,14400,1,'MSD'),(1662,11,10800,1,'EEST'),(1662,12,7200,0,'EET'),(1662,13,10800,0,'+03'),(1662,14,7200,0,'EET'),(1663,0,7324,0,'LMT'),(1663,1,7324,0,'KMT'),(1663,2,7200,0,'EET'),(1663,3,10800,0,'MSK'),(1663,4,3600,0,'CET'),(1663,5,7200,1,'CEST'),(1663,6,7200,1,'CEST'),(1663,7,14400,1,'MSD'),(1663,8,10800,0,'MSK'),(1663,9,14400,1,'MSD'),(1663,10,10800,1,'EEST'),(1663,11,10800,1,'EEST'),(1663,12,7200,0,'EET'),(1664,0,11928,0,'LMT'),(1664,1,10800,0,'+03'),(1664,2,18000,1,'+05'),(1664,3,14400,0,'+04'),(1664,4,14400,0,'+04'),(1664,5,18000,1,'+05'),(1664,6,14400,1,'+04'),(1664,7,10800,0,'+03'),(1665,0,-2205,0,'LMT'),(1665,1,3600,1,'WEST'),(1665,2,0,0,'WET'),(1665,3,3600,1,'WEST'),(1665,4,0,0,'WET'),(1665,5,7200,1,'WEMT'),(1665,6,0,0,'WET'),(1665,7,3600,0,'CET'),(1665,8,3600,0,'CET'),(1665,9,7200,1,'CEST'),(1665,10,3600,1,'WEST'),(1665,11,0,0,'WET'),(1666,0,4920,0,'LMT'),(1666,1,3600,0,'CET'),(1666,2,3600,0,'CET'),(1666,3,7200,1,'CEST'),(1666,4,7200,1,'CEST'),(1666,5,7200,1,'CEST'),(1666,6,3600,0,'CET'),(1667,0,-75,0,'LMT'),(1667,1,3600,1,'BST'),(1667,2,0,0,'GMT'),(1667,3,7200,1,'BDST'),(1667,4,3600,0,'BST'),(1667,5,3600,1,'BST'),(1667,6,0,0,'GMT'),(1667,7,0,0,'GMT'),(1668,0,1476,0,'LMT'),(1668,1,7200,1,'CEST'),(1668,2,3600,0,'CET'),(1668,3,7200,1,'CEST'),(1668,4,3600,0,'CET'),(1668,5,3600,1,'WEST'),(1668,6,0,0,'WET'),(1668,7,0,0,'WET'),(1668,8,3600,1,'WEST'),(1668,9,3600,0,'WET'),(1668,10,7200,1,'WEST'),(1668,11,7200,1,'WEST'),(1668,12,7200,1,'CEST'),(1668,13,3600,0,'CET'),(1669,0,-884,0,'LMT'),(1669,1,3600,1,'WEST'),(1669,2,0,0,'WET'),(1669,3,7200,1,'WEMT'),(1669,4,0,0,'WET'),(1669,5,7200,1,'CEST'),(1669,6,3600,0,'CET'),(1669,7,7200,1,'CEST'),(1669,8,3600,0,'CET'),(1669,9,7200,1,'CEST'),(1669,10,3600,0,'CET'),(1670,0,3484,0,'LMT'),(1670,1,7200,1,'CEST'),(1670,2,3600,0,'CET'),(1670,3,3600,0,'CET'),(1670,4,7200,1,'CEST'),(1670,5,7200,1,'CEST'),(1670,6,3600,0,'CET'),(1671,0,5989,0,'LMT'),(1671,1,5989,0,'HMT'),(1671,2,10800,1,'EEST'),(1671,3,7200,0,'EET'),(1671,4,10800,1,'EEST'),(1671,5,7200,0,'EET'),(1672,0,6616,0,'LMT'),(1672,1,6600,0,'MMT'),(1672,2,7200,0,'EET'),(1672,3,10800,0,'MSK'),(1672,4,3600,0,'CET'),(1672,5,7200,1,'CEST'),(1672,6,7200,1,'CEST'),(1672,7,14400,1,'MSD'),(1672,8,10800,0,'MSK'),(1672,9,14400,1,'MSD'),(1672,10,10800,1,'EEST'),(1672,11,7200,0,'EET'),(1672,12,10800,0,'+03'),(1673,0,1772,0,'LMT'),(1673,1,561,0,'PMT'),(1673,2,3600,1,'WEST'),(1673,3,0,0,'WET'),(1673,4,3600,1,'WEST'),(1673,5,7200,1,'WEMT'),(1673,6,0,0,'WET'),(1673,7,7200,1,'CEST'),(1673,8,3600,0,'CET'),(1673,9,7200,1,'CEST'),(1673,10,3600,0,'CET'),(1674,0,9017,0,'LMT'),(1674,1,9017,0,'MMT'),(1674,2,12679,1,'MST'),(1674,3,9079,0,'MMT'),(1674,4,16279,1,'MDST'),(1674,5,14400,1,'MSD'),(1674,6,10800,0,'MSK'),(1674,7,14400,1,'MSD'),(1674,8,18000,1,'+05'),(1674,9,7200,0,'EET'),(1674,10,10800,0,'MSK'),(1674,11,14400,1,'MSD'),(1674,12,10800,1,'EEST'),(1674,13,7200,0,'EET'),(1674,14,14400,0,'MSK'),(1674,15,14400,1,'MSD'),(1674,16,10800,0,'MSK'),(1675,0,8008,0,'LMT'),(1675,1,10800,1,'EEST'),(1675,2,7200,0,'EET'),(1675,3,7200,0,'EET'),(1675,4,10800,1,'EEST'),(1676,0,2580,0,'LMT'),(1676,1,7200,1,'CEST'),(1676,2,3600,0,'CET'),(1676,3,3600,0,'CET'),(1676,4,7200,1,'CEST'),(1676,5,7200,1,'CEST'),(1676,6,3600,0,'CET'),(1677,0,561,0,'LMT'),(1677,1,561,0,'PMT'),(1677,2,3600,1,'WEST'),(1677,3,0,0,'WET'),(1677,4,3600,1,'WEST'),(1677,5,0,0,'WET'),(1677,6,3600,0,'CET'),(1677,7,7200,1,'CEST'),(1677,8,7200,1,'CEST'),(1677,9,7200,1,'WEMT'),(1677,10,3600,0,'CET'),(1677,11,7200,1,'CEST'),(1677,12,3600,0,'CET'),(1678,0,4920,0,'LMT'),(1678,1,3600,0,'CET'),(1678,2,3600,0,'CET'),(1678,3,7200,1,'CEST'),(1678,4,7200,1,'CEST'),(1678,5,7200,1,'CEST'),(1678,6,3600,0,'CET'),(1679,0,3464,0,'PMT'),(1679,1,7200,1,'CEST'),(1679,2,3600,0,'CET'),(1679,3,7200,1,'CEST'),(1679,4,3600,0,'CET'),(1679,5,0,1,'GMT'),(1679,6,7200,1,'CEST'),(1679,7,3600,0,'CET'),(1680,0,5794,0,'LMT'),(1680,1,5794,0,'RMT'),(1680,2,9394,1,'LST'),(1680,3,7200,0,'EET'),(1680,4,10800,0,'MSK'),(1680,5,3600,0,'CET'),(1680,6,7200,1,'CEST'),(1680,7,7200,1,'CEST'),(1680,8,14400,1,'MSD'),(1680,9,10800,0,'MSK'),(1680,10,14400,1,'MSD'),(1680,11,10800,1,'EEST'),(1680,12,7200,0,'EET'),(1680,13,10800,1,'EEST'),(1680,14,7200,0,'EET'),(1681,0,2996,0,'RMT'),(1681,1,7200,1,'CEST'),(1681,2,3600,0,'CET'),(1681,3,3600,0,'CET'),(1681,4,7200,1,'CEST'),(1681,5,7200,1,'CEST'),(1681,6,3600,0,'CET'),(1682,0,12020,0,'LMT'),(1682,1,10800,0,'+03'),(1682,2,14400,0,'+04'),(1682,3,18000,1,'+05'),(1682,4,14400,0,'+04'),(1682,5,18000,1,'+05'),(1682,6,14400,1,'+04'),(1682,7,10800,0,'+03'),(1682,8,10800,1,'+03'),(1682,9,7200,0,'+02'),(1682,10,14400,1,'+04'),(1682,11,14400,0,'+04'),(1683,0,2996,0,'RMT'),(1683,1,7200,1,'CEST'),(1683,2,3600,0,'CET'),(1683,3,3600,0,'CET'),(1683,4,7200,1,'CEST'),(1683,5,7200,1,'CEST'),(1683,6,3600,0,'CET'),(1684,0,4920,0,'LMT'),(1684,1,3600,0,'CET'),(1684,2,3600,0,'CET'),(1684,3,7200,1,'CEST'),(1684,4,7200,1,'CEST'),(1684,5,7200,1,'CEST'),(1684,6,3600,0,'CET'),(1685,0,11058,0,'LMT'),(1685,1,10800,0,'+03'),(1685,2,18000,1,'+05'),(1685,3,14400,0,'+04'),(1685,4,14400,0,'+04'),(1685,5,18000,1,'+05'),(1685,6,14400,1,'+04'),(1685,7,10800,0,'+03'),(1685,8,14400,0,'+04'),(1686,0,8184,0,'LMT'),(1686,1,8160,0,'SMT'),(1686,2,7200,0,'EET'),(1686,3,10800,0,'MSK'),(1686,4,3600,0,'CET'),(1686,5,7200,1,'CEST'),(1686,6,7200,1,'CEST'),(1686,7,14400,1,'MSD'),(1686,8,10800,0,'MSK'),(1686,9,14400,1,'MSD'),(1686,10,10800,1,'EEST'),(1686,11,10800,1,'EEST'),(1686,12,7200,0,'EET'),(1686,13,14400,0,'MSK'),(1686,14,10800,0,'MSK'),(1687,0,4920,0,'LMT'),(1687,1,3600,0,'CET'),(1687,2,3600,0,'CET'),(1687,3,7200,1,'CEST'),(1687,4,7200,1,'CEST'),(1687,5,7200,1,'CEST'),(1687,6,3600,0,'CET'),(1688,0,7016,0,'IMT'),(1688,1,7200,0,'EET'),(1688,2,3600,0,'CET'),(1688,3,7200,1,'CEST'),(1688,4,3600,0,'CET'),(1688,5,10800,1,'EEST'),(1688,6,7200,0,'EET'),(1688,7,10800,1,'EEST'),(1688,8,10800,1,'EEST'),(1688,9,7200,0,'EET'),(1689,0,3614,0,'SET'),(1689,1,3600,0,'CET'),(1689,2,7200,1,'CEST'),(1689,3,7200,1,'CEST'),(1689,4,3600,0,'CET'),(1690,0,5940,0,'LMT'),(1690,1,5940,0,'TMT'),(1690,2,7200,1,'CEST'),(1690,3,3600,0,'CET'),(1690,4,3600,0,'CET'),(1690,5,7200,0,'EET'),(1690,6,10800,0,'MSK'),(1690,7,7200,1,'CEST'),(1690,8,14400,1,'MSD'),(1690,9,10800,0,'MSK'),(1690,10,14400,1,'MSD'),(1690,11,10800,1,'EEST'),(1690,12,7200,0,'EET'),(1690,13,7200,0,'EET'),(1690,14,10800,1,'EEST'),(1690,15,10800,1,'EEST'),(1691,0,4760,0,'LMT'),(1691,1,3600,0,'CET'),(1691,2,7200,1,'CEST'),(1691,3,3600,0,'CET'),(1691,4,7200,1,'CEST'),(1692,0,6920,0,'LMT'),(1692,1,6900,0,'CMT'),(1692,2,6264,0,'BMT'),(1692,3,10800,1,'EEST'),(1692,4,7200,0,'EET'),(1692,5,7200,0,'EET'),(1692,6,10800,1,'EEST'),(1692,7,3600,0,'CET'),(1692,8,7200,1,'CEST'),(1692,9,7200,1,'CEST'),(1692,10,14400,1,'MSD'),(1692,11,10800,0,'MSK'),(1692,12,10800,0,'MSK'),(1692,13,14400,1,'MSD'),(1692,14,10800,1,'EEST'),(1692,15,7200,0,'EET'),(1693,0,11616,0,'LMT'),(1693,1,10800,0,'+03'),(1693,2,18000,1,'+05'),(1693,3,14400,0,'+04'),(1693,4,14400,0,'+04'),(1693,5,18000,1,'+05'),(1693,6,14400,1,'+04'),(1693,7,10800,0,'+03'),(1693,8,10800,1,'+03'),(1693,9,7200,0,'+02'),(1693,10,14400,1,'+04'),(1693,11,14400,0,'+04'),(1694,0,5352,0,'LMT'),(1694,1,3600,0,'CET'),(1694,2,7200,1,'CEST'),(1694,3,3600,0,'CET'),(1694,4,7200,1,'CEST'),(1694,5,14400,1,'MSD'),(1694,6,10800,0,'MSK'),(1694,7,10800,0,'MSK'),(1694,8,14400,1,'MSD'),(1694,9,7200,0,'EET'),(1694,10,10800,1,'EEST'),(1694,11,10800,1,'EEST'),(1694,12,7200,0,'EET'),(1695,0,1786,0,'BMT'),(1695,1,7200,1,'CEST'),(1695,2,3600,0,'CET'),(1695,3,7200,1,'CEST'),(1695,4,3600,0,'CET'),(1696,0,2996,0,'RMT'),(1696,1,7200,1,'CEST'),(1696,2,3600,0,'CET'),(1696,3,3600,0,'CET'),(1696,4,7200,1,'CEST'),(1696,5,7200,1,'CEST'),(1696,6,3600,0,'CET'),(1697,0,3921,0,'LMT'),(1697,1,7200,1,'CEST'),(1697,2,3600,0,'CET'),(1697,3,7200,1,'CEST'),(1697,4,3600,0,'CET'),(1697,5,7200,1,'CEST'),(1697,6,3600,0,'CET'),(1698,0,6076,0,'LMT'),(1698,1,5040,0,'WMT'),(1698,2,5736,0,'KMT'),(1698,3,3600,0,'CET'),(1698,4,7200,0,'EET'),(1698,5,10800,0,'MSK'),(1698,6,3600,0,'CET'),(1698,7,7200,1,'CEST'),(1698,8,7200,1,'CEST'),(1698,9,14400,1,'MSD'),(1698,10,10800,0,'MSK'),(1698,11,14400,1,'MSD'),(1698,12,10800,1,'EEST'),(1698,13,7200,0,'EET'),(1698,14,7200,1,'CEST'),(1698,15,3600,0,'CET'),(1698,16,7200,0,'EET'),(1698,17,10800,1,'EEST'),(1699,0,10660,0,'LMT'),(1699,1,10800,0,'+03'),(1699,2,14400,0,'+04'),(1699,3,18000,1,'+05'),(1699,4,14400,0,'+04'),(1699,5,18000,1,'+05'),(1699,6,14400,1,'+04'),(1699,7,10800,0,'+03'),(1699,8,14400,0,'+04'),(1700,0,5040,0,'LMT'),(1700,1,5040,0,'WMT'),(1700,2,7200,1,'CEST'),(1700,3,3600,0,'CET'),(1700,4,7200,1,'CEST'),(1700,5,3600,0,'CET'),(1700,6,10800,1,'EEST'),(1700,7,7200,0,'EET'),(1700,8,7200,0,'EET'),(1700,9,7200,1,'CEST'),(1700,10,3600,0,'CET'),(1701,0,4920,0,'LMT'),(1701,1,3600,0,'CET'),(1701,2,3600,0,'CET'),(1701,3,7200,1,'CEST'),(1701,4,7200,1,'CEST'),(1701,5,7200,1,'CEST'),(1701,6,3600,0,'CET'),(1702,0,8440,0,'LMT'),(1702,1,8400,0,'+0220'),(1702,2,7200,0,'EET'),(1702,3,10800,0,'MSK'),(1702,4,3600,0,'CET'),(1702,5,7200,1,'CEST'),(1702,6,7200,1,'CEST'),(1702,7,14400,1,'MSD'),(1702,8,10800,0,'MSK'),(1702,9,14400,1,'MSD'),(1702,10,10800,1,'EEST'),(1702,11,10800,1,'EEST'),(1702,12,7200,0,'EET'),(1703,0,1786,0,'BMT'),(1703,1,7200,1,'CEST'),(1703,2,3600,0,'CET'),(1703,3,7200,1,'CEST'),(1703,4,3600,0,'CET'),(1704,0,0,0,'-00'),(1705,0,-75,0,'LMT'),(1705,1,3600,1,'BST'),(1705,2,0,0,'GMT'),(1705,3,7200,1,'BDST'),(1705,4,3600,0,'BST'),(1705,5,3600,1,'BST'),(1705,6,0,0,'GMT'),(1705,7,0,0,'GMT'),(1706,0,-75,0,'LMT'),(1706,1,3600,1,'BST'),(1706,2,0,0,'GMT'),(1706,3,7200,1,'BDST'),(1706,4,3600,0,'BST'),(1706,5,3600,1,'BST'),(1706,6,0,0,'GMT'),(1706,7,0,0,'GMT'),(1707,0,0,0,'GMT'),(1708,0,0,0,'GMT'),(1709,0,0,0,'GMT'),(1710,0,0,0,'GMT'),(1711,0,0,0,'GMT'),(1712,0,-36000,0,'HST'),(1713,0,27402,0,'LMT'),(1713,1,28800,0,'HKT'),(1713,2,32400,1,'HKST'),(1713,3,30600,1,'HKWT'),(1713,4,32400,0,'JST'),(1713,5,28800,0,'HKT'),(1713,6,32400,1,'HKST'),(1714,0,-5280,0,'LMT'),(1714,1,0,1,'+00'),(1714,2,-3600,0,'-01'),(1714,3,-3600,0,'-01'),(1714,4,0,1,'+00'),(1714,5,0,0,'GMT'),(1715,0,8836,0,'LMT'),(1715,1,10800,0,'EAT'),(1715,2,9000,0,'+0230'),(1715,3,9900,0,'+0245'),(1715,4,10800,0,'EAT'),(1716,0,17380,0,'LMT'),(1716,1,18000,0,'+05'),(1716,2,21600,0,'+06'),(1717,0,25200,0,'+07'),(1718,0,23400,0,'+0630'),(1719,0,8836,0,'LMT'),(1719,1,10800,0,'EAT'),(1719,2,9000,0,'+0230'),(1719,3,9900,0,'+0245'),(1719,4,10800,0,'EAT'),(1720,0,0,0,'-00'),(1720,1,18000,0,'+05'),(1721,0,13308,0,'LMT'),(1721,1,14400,0,'+04'),(1722,0,17640,0,'LMT'),(1722,1,17640,0,'MMT'),(1722,2,18000,0,'+05'),(1723,0,13800,0,'LMT'),(1723,1,18000,1,'+05'),(1723,2,14400,0,'+04'),(1724,0,8836,0,'LMT'),(1724,1,10800,0,'EAT'),(1724,2,9000,0,'+0230'),(1724,3,9900,0,'+0245'),(1724,4,10800,0,'EAT'),(1725,0,13312,0,'LMT'),(1725,1,14400,0,'+04'),(1726,0,12344,0,'LMT'),(1726,1,12344,0,'TMT'),(1726,2,12600,0,'+0330'),(1726,3,18000,1,'+05'),(1726,4,14400,0,'+04'),(1726,5,16200,1,'+0430'),(1726,6,12600,0,'+0330'),(1727,0,8454,0,'LMT'),(1727,1,8440,0,'JMT'),(1727,2,10800,1,'IDT'),(1727,3,7200,0,'IST'),(1727,4,14400,1,'IDDT'),(1727,5,10800,1,'IDT'),(1728,0,-18430,0,'LMT'),(1728,1,-18430,0,'KMT'),(1728,2,-18000,0,'EST'),(1728,3,-14400,1,'EDT'),(1729,0,33539,0,'LMT'),(1729,1,36000,1,'JDT'),(1729,2,32400,0,'JST'),(1729,3,32400,0,'JST'),(1730,0,40160,0,'LMT'),(1730,1,39600,0,'+11'),(1730,2,36000,0,'+10'),(1730,3,32400,0,'+09'),(1730,4,-43200,0,'-12'),(1730,5,43200,0,'+12'),(1731,0,3164,0,'LMT'),(1731,1,7200,1,'CEST'),(1731,2,3600,0,'CET'),(1731,3,7200,0,'EET'),(1732,0,7200,1,'MEST'),(1732,1,3600,0,'MET'),(1732,2,7200,1,'MEST'),(1732,3,3600,0,'MET'),(1733,0,-25200,0,'MST'),(1734,0,-21600,1,'MDT'),(1734,1,-25200,0,'MST'),(1734,2,-21600,1,'MWT'),(1734,3,-21600,1,'MPT'),(1735,0,-28084,0,'LMT'),(1735,1,-25200,0,'MST'),(1735,2,-28800,0,'PST'),(1735,3,-25200,1,'PDT'),(1735,4,-25200,1,'PWT'),(1735,5,-25200,1,'PPT'),(1736,0,-25540,0,'LMT'),(1736,1,-25200,0,'MST'),(1736,2,-21600,0,'CST'),(1736,3,-28800,0,'PST'),(1736,4,-21600,1,'MDT'),(1736,5,-25200,0,'MST'),(1737,0,-23796,0,'LMT'),(1737,1,-25200,0,'MST'),(1737,2,-21600,0,'CST'),(1737,3,-18000,1,'CDT'),(1737,4,-18000,1,'CWT'),(1738,0,41944,0,'LMT'),(1738,1,45000,1,'NZST'),(1738,2,41400,0,'NZMT'),(1738,3,43200,1,'NZST'),(1738,4,46800,1,'NZDT'),(1738,5,43200,0,'NZST'),(1738,6,43200,0,'NZST'),(1739,0,44028,0,'LMT'),(1739,1,44100,0,'+1215'),(1739,2,49500,1,'+1345'),(1739,3,45900,0,'+1245'),(1739,4,45900,0,'+1245'),(1740,0,-25196,0,'LMT'),(1740,1,-21600,1,'MDT'),(1740,2,-25200,0,'MST'),(1740,3,-21600,1,'MWT'),(1740,4,-21600,1,'MPT'),(1741,0,29143,0,'LMT'),(1741,1,32400,1,'CDT'),(1741,2,28800,0,'CST'),(1742,0,-25200,1,'PDT'),(1742,1,-28800,0,'PST'),(1742,2,-25200,1,'PWT'),(1742,3,-25200,1,'PPT'),(1743,0,45184,0,'LMT'),(1743,1,-41216,0,'LMT'),(1743,2,-41400,0,'-1130'),(1743,3,-36000,1,'-10'),(1743,4,-39600,0,'-11'),(1743,5,46800,0,'+13'),(1743,6,50400,1,'+14'),(1744,0,41944,0,'LMT'),(1744,1,45000,1,'NZST'),(1744,2,41400,0,'NZMT'),(1744,3,43200,1,'NZST'),(1744,4,46800,1,'NZDT'),(1744,5,43200,0,'NZST'),(1744,6,43200,0,'NZST'),(1745,0,35312,0,'PMMT'),(1745,1,36000,0,'+10'),(1745,2,32400,0,'+09'),(1745,3,39600,0,'+11'),(1746,0,44028,0,'LMT'),(1746,1,44100,0,'+1215'),(1746,2,49500,1,'+1345'),(1746,3,45900,0,'+1245'),(1746,4,45900,0,'+1245'),(1747,0,36428,0,'LMT'),(1747,1,36000,0,'+10'),(1747,2,32400,0,'+09'),(1747,3,36000,0,'+10'),(1748,0,-26248,0,'LMT'),(1748,1,-26248,0,'EMT'),(1748,2,-21600,1,'-06'),(1748,3,-25200,0,'-07'),(1748,4,-25200,0,'-07'),(1748,5,-21600,0,'-06'),(1748,6,-18000,1,'-05'),(1749,0,40396,0,'LMT'),(1749,1,43200,1,'+12'),(1749,2,39600,0,'+11'),(1750,0,-41060,0,'LMT'),(1750,1,-43200,0,'-12'),(1750,2,-39600,0,'-11'),(1750,3,46800,0,'+13'),(1751,0,-41096,0,'LMT'),(1751,1,-39600,0,'-11'),(1751,2,46800,0,'+13'),(1752,0,42944,0,'LMT'),(1752,1,46800,1,'+13'),(1752,2,43200,0,'+12'),(1753,0,43200,0,'+12'),(1754,0,-21504,0,'LMT'),(1754,1,-18000,0,'-05'),(1754,2,-18000,1,'-05'),(1754,3,-21600,0,'-06'),(1755,0,-32388,0,'LMT'),(1755,1,-32400,0,'-09'),(1756,0,38388,0,'LMT'),(1756,1,39600,0,'+11'),(1757,0,34740,0,'LMT'),(1757,1,36000,0,'GST'),(1757,2,32400,0,'+09'),(1757,3,39600,1,'GDT'),(1757,4,36000,0,'ChST'),(1758,0,-37886,0,'LMT'),(1758,1,-37800,0,'HST'),(1758,2,-34200,1,'HDT'),(1758,3,-34200,1,'HWT'),(1758,4,-34200,1,'HPT'),(1758,5,-36000,0,'HST'),(1759,0,-37886,0,'LMT'),(1759,1,-37800,0,'HST'),(1759,2,-34200,1,'HDT'),(1759,3,-34200,1,'HWT'),(1759,4,-34200,1,'HPT'),(1759,5,-36000,0,'HST'),(1760,0,-37760,0,'LMT'),(1760,1,-38400,0,'-1040'),(1760,2,-36000,0,'-10'),(1760,3,50400,0,'+14'),(1761,0,39116,0,'LMT'),(1761,1,39600,0,'+11'),(1761,2,32400,0,'+09'),(1761,3,36000,0,'+10'),(1761,4,43200,0,'+12'),(1761,5,39600,0,'+11'),(1762,0,40160,0,'LMT'),(1762,1,39600,0,'+11'),(1762,2,36000,0,'+10'),(1762,3,32400,0,'+09'),(1762,4,-43200,0,'-12'),(1762,5,43200,0,'+12'),(1763,0,41088,0,'LMT'),(1763,1,39600,0,'+11'),(1763,2,32400,0,'+09'),(1763,3,36000,0,'+10'),(1763,4,43200,0,'+12'),(1764,0,-33480,0,'LMT'),(1764,1,-34200,0,'-0930'),(1765,0,45432,0,'LMT'),(1765,1,-40968,0,'LMT'),(1765,2,-39600,0,'SST'),(1766,0,40060,0,'LMT'),(1766,1,41400,0,'+1130'),(1766,2,32400,0,'+09'),(1766,3,43200,0,'+12'),(1767,0,-40780,0,'LMT'),(1767,1,-40800,0,'-1120'),(1767,2,-41400,0,'-1130'),(1767,3,-39600,0,'-11'),(1768,0,40312,0,'LMT'),(1768,1,40320,0,'+1112'),(1768,2,41400,0,'+1130'),(1768,3,45000,1,'+1230'),(1768,4,41400,0,'+1130'),(1768,5,39600,0,'+11'),(1768,6,43200,1,'+12'),(1768,7,39600,0,'+11'),(1769,0,39948,0,'LMT'),(1769,1,43200,1,'+12'),(1769,2,39600,0,'+11'),(1769,3,43200,1,'+12'),(1769,4,39600,0,'+11'),(1770,0,45432,0,'LMT'),(1770,1,-40968,0,'LMT'),(1770,2,-39600,0,'SST'),(1771,0,32400,0,'+09'),(1772,0,-31220,0,'LMT'),(1772,1,-30600,0,'-0830'),(1772,2,-28800,0,'-08'),(1773,0,37972,0,'LMT'),(1773,1,39600,0,'+11'),(1773,2,32400,0,'+09'),(1773,3,36000,0,'+10'),(1773,4,39600,0,'+11'),(1774,0,37972,0,'LMT'),(1774,1,39600,0,'+11'),(1774,2,32400,0,'+09'),(1774,3,36000,0,'+10'),(1774,4,39600,0,'+11'),(1775,0,36000,0,'+10'),(1776,0,-38344,0,'LMT'),(1776,1,-37800,0,'-1030'),(1776,2,-36000,0,'-10'),(1776,3,-34200,1,'-0930'),(1777,0,34740,0,'LMT'),(1777,1,36000,0,'GST'),(1777,2,32400,0,'+09'),(1777,3,39600,1,'GDT'),(1777,4,36000,0,'ChST'),(1778,0,45432,0,'LMT'),(1778,1,-40968,0,'LMT'),(1778,2,-39600,0,'SST'),(1779,0,-35896,0,'LMT'),(1779,1,-36000,0,'-10'),(1780,0,43200,0,'+12'),(1781,0,44360,0,'LMT'),(1781,1,44400,0,'+1220'),(1781,2,46800,0,'+13'),(1781,3,50400,1,'+14'),(1781,4,46800,0,'+13'),(1781,5,50400,1,'+14'),(1782,0,36428,0,'LMT'),(1782,1,36000,0,'+10'),(1782,2,32400,0,'+09'),(1782,3,36000,0,'+10'),(1783,0,43200,0,'+12'),(1784,0,43200,0,'+12'),(1785,0,36428,0,'LMT'),(1785,1,36000,0,'+10'),(1785,2,32400,0,'+09'),(1785,3,36000,0,'+10'),(1786,0,5040,0,'LMT'),(1786,1,5040,0,'WMT'),(1786,2,7200,1,'CEST'),(1786,3,3600,0,'CET'),(1786,4,7200,1,'CEST'),(1786,5,3600,0,'CET'),(1786,6,10800,1,'EEST'),(1786,7,7200,0,'EET'),(1786,8,7200,0,'EET'),(1786,9,7200,1,'CEST'),(1786,10,3600,0,'CET'),(1787,0,-2205,0,'LMT'),(1787,1,3600,1,'WEST'),(1787,2,0,0,'WET'),(1787,3,3600,1,'WEST'),(1787,4,0,0,'WET'),(1787,5,7200,1,'WEMT'),(1787,6,0,0,'WET'),(1787,7,3600,0,'CET'),(1787,8,3600,0,'CET'),(1787,9,7200,1,'CEST'),(1787,10,3600,1,'WEST'),(1787,11,0,0,'WET'),(1788,0,29160,0,'LMT'),(1788,1,28800,0,'CST'),(1788,2,32400,0,'JST'),(1788,3,32400,1,'CDT'),(1788,4,28800,0,'CST'),(1789,0,30472,0,'LMT'),(1789,1,30600,0,'KST'),(1789,2,32400,0,'JST'),(1789,3,36000,1,'KDT'),(1789,4,32400,0,'KST'),(1789,5,34200,1,'KDT'),(1789,6,36000,1,'KDT'),(1790,0,24925,0,'LMT'),(1790,1,24925,0,'SMT'),(1790,2,25200,0,'+07'),(1790,3,26400,1,'+0720'),(1790,4,26400,0,'+0720'),(1790,5,27000,0,'+0730'),(1790,6,32400,0,'+09'),(1790,7,28800,0,'+08'),(1791,0,-15865,0,'LMT'),(1791,1,-14400,0,'AST'),(1791,2,-10800,1,'APT'),(1791,3,-10800,1,'AWT'),(1792,0,-15264,0,'LMT'),(1792,1,-10800,1,'ADT'),(1792,2,-14400,0,'AST'),(1792,3,-10800,1,'AWT'),(1792,4,-10800,1,'APT'),(1793,0,-25116,0,'LMT'),(1793,1,-21600,1,'MDT'),(1793,2,-25200,0,'MST'),(1793,3,-21600,1,'MWT'),(1793,4,-21600,1,'MPT'),(1793,5,-21600,0,'CST'),(1794,0,-21036,0,'LMT'),(1794,1,-18000,1,'CDT'),(1794,2,-21600,0,'CST'),(1794,3,-18000,0,'EST'),(1794,4,-18000,1,'CWT'),(1794,5,-18000,1,'CPT'),(1794,6,-21600,0,'CST'),(1795,0,-19088,0,'LMT'),(1795,1,-19176,0,'CMT'),(1795,2,-18000,0,'EST'),(1796,0,-17762,0,'LMT'),(1796,1,-14400,1,'EDT'),(1796,2,-18000,0,'EST'),(1796,3,-14400,1,'EWT'),(1796,4,-14400,1,'EPT'),(1797,0,-37886,0,'LMT'),(1797,1,-37800,0,'HST'),(1797,2,-34200,1,'HDT'),(1797,3,-34200,1,'HWT'),(1797,4,-34200,1,'HPT'),(1797,5,-36000,0,'HST'),(1798,0,-26898,0,'LMT'),(1798,1,-21600,1,'MDT'),(1798,2,-25200,0,'MST'),(1798,3,-21600,1,'MWT'),(1799,0,-25196,0,'LMT'),(1799,1,-21600,1,'MDT'),(1799,2,-25200,0,'MST'),(1799,3,-21600,1,'MWT'),(1799,4,-21600,1,'MPT'),(1800,0,-31220,0,'LMT'),(1800,1,-30600,0,'-0830'),(1800,2,-28800,0,'-08'),(1801,0,-28378,0,'LMT'),(1801,1,-25200,1,'PDT'),(1801,2,-28800,0,'PST'),(1801,3,-25200,1,'PWT'),(1801,4,-25200,1,'PPT'),(1802,0,-32388,0,'LMT'),(1802,1,-32400,0,'-09'),(1803,0,-35976,0,'LMT'),(1803,1,-36000,0,'AST'),(1803,2,-32400,1,'AWT'),(1803,3,-32400,1,'APT'),(1803,4,-36000,0,'AHST'),(1803,5,-32400,1,'AHDT'),(1803,6,-32400,0,'YST'),(1803,7,-28800,1,'AKDT'),(1803,8,-32400,0,'AKST'),(1804,0,6952,0,'LMT'),(1804,1,7016,0,'IMT'),(1804,2,10800,1,'EEST'),(1804,3,7200,0,'EET'),(1804,4,10800,0,'+03'),(1804,5,14400,1,'+04'),(1804,6,10800,1,'EEST'),(1804,7,7200,0,'EET'),(1804,8,10800,1,'EEST'),(1804,9,7200,0,'EET'),(1804,10,10800,0,'+03'),(1805,0,0,0,'UTC'),(1806,0,-35976,0,'LMT'),(1806,1,-36000,0,'AST'),(1806,2,-32400,1,'AWT'),(1806,3,-32400,1,'APT'),(1806,4,-36000,0,'AHST'),(1806,5,-32400,1,'AHDT'),(1806,6,-32400,0,'YST'),(1806,7,-28800,1,'AKDT'),(1806,8,-32400,0,'AKST'),(1807,0,-42398,0,'LMT'),(1807,1,-39600,0,'NST'),(1807,2,-36000,1,'NWT'),(1807,3,-36000,1,'NPT'),(1807,4,-39600,0,'BST'),(1807,5,-36000,1,'BDT'),(1807,6,-36000,0,'AHST'),(1807,7,-32400,1,'HDT'),(1807,8,-36000,0,'HST'),(1808,0,-26898,0,'LMT'),(1808,1,-21600,1,'MDT'),(1808,2,-25200,0,'MST'),(1808,3,-21600,1,'MWT'),(1809,0,-21036,0,'LMT'),(1809,1,-18000,1,'CDT'),(1809,2,-21600,0,'CST'),(1809,3,-18000,0,'EST'),(1809,4,-18000,1,'CWT'),(1809,5,-18000,1,'CPT'),(1809,6,-21600,0,'CST'),(1810,0,-20678,0,'LMT'),(1810,1,-18000,1,'CDT'),(1810,2,-21600,0,'CST'),(1810,3,-18000,1,'CWT'),(1810,4,-18000,1,'CPT'),(1810,5,-18000,0,'EST'),(1810,6,-14400,1,'EDT'),(1811,0,-17762,0,'LMT'),(1811,1,-14400,1,'EDT'),(1811,2,-18000,0,'EST'),(1811,3,-14400,1,'EWT'),(1811,4,-14400,1,'EPT'),(1812,0,-37886,0,'LMT'),(1812,1,-37800,0,'HST'),(1812,2,-34200,1,'HDT'),(1812,3,-34200,1,'HWT'),(1812,4,-34200,1,'HPT'),(1812,5,-36000,0,'HST'),(1813,0,-20790,0,'LMT'),(1813,1,-18000,1,'CDT'),(1813,2,-21600,0,'CST'),(1813,3,-18000,1,'CWT'),(1813,4,-18000,1,'CPT'),(1813,5,-18000,0,'EST'),(1813,6,-21600,0,'CST'),(1814,0,-19931,0,'LMT'),(1814,1,-21600,0,'CST'),(1814,2,-18000,0,'EST'),(1814,3,-14400,1,'EWT'),(1814,4,-14400,1,'EPT'),(1814,5,-14400,1,'EDT'),(1815,0,-25196,0,'LMT'),(1815,1,-21600,1,'MDT'),(1815,2,-25200,0,'MST'),(1815,3,-21600,1,'MWT'),(1815,4,-21600,1,'MPT'),(1816,0,-28378,0,'LMT'),(1816,1,-25200,1,'PDT'),(1816,2,-28800,0,'PST'),(1816,3,-25200,1,'PWT'),(1816,4,-25200,1,'PPT'),(1817,0,-28378,0,'LMT'),(1817,1,-25200,1,'PDT'),(1817,2,-28800,0,'PST'),(1817,3,-25200,1,'PWT'),(1817,4,-25200,1,'PPT'),(1818,0,45432,0,'LMT'),(1818,1,-40968,0,'LMT'),(1818,2,-39600,0,'SST'),(1819,0,0,0,'UTC'),(1820,0,0,0,'UTC'),(1821,0,9017,0,'LMT'),(1821,1,9017,0,'MMT'),(1821,2,12679,1,'MST'),(1821,3,9079,0,'MMT'),(1821,4,16279,1,'MDST'),(1821,5,14400,1,'MSD'),(1821,6,10800,0,'MSK'),(1821,7,14400,1,'MSD'),(1821,8,18000,1,'+05'),(1821,9,7200,0,'EET'),(1821,10,10800,0,'MSK'),(1821,11,14400,1,'MSD'),(1821,12,10800,1,'EEST'),(1821,13,7200,0,'EET'),(1821,14,14400,0,'MSK'),(1821,15,14400,1,'MSD'),(1821,16,10800,0,'MSK'),(1822,0,3600,1,'WEST'),(1822,1,0,0,'WET'),(1823,0,0,0,'UTC'); +/*!40000 ALTER TABLE `time_zone_transition_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user` +-- + +DROP TABLE IF EXISTS `user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(16) COLLATE utf8_bin NOT NULL DEFAULT '', + `Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', + `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_tablespace_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '', + `ssl_cipher` blob NOT NULL, + `x509_issuer` blob NOT NULL, + `x509_subject` blob NOT NULL, + `max_questions` int(11) unsigned NOT NULL DEFAULT '0', + `max_updates` int(11) unsigned NOT NULL DEFAULT '0', + `max_connections` int(11) unsigned NOT NULL DEFAULT '0', + `max_user_connections` int(11) unsigned NOT NULL DEFAULT '0', + `plugin` char(64) COLLATE utf8_bin DEFAULT 'mysql_native_password', + `authentication_string` text COLLATE utf8_bin, + `password_expired` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + PRIMARY KEY (`Host`,`User`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user` +-- + +LOCK TABLES `user` WRITE; +/*!40000 ALTER TABLE `user` DISABLE KEYS */; +INSERT INTO `user` VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'mysql_native_password','','N'),('%','discov001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','credentials001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'mysql_native_password','','N'),('%','ecomm001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','edxmktg001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','notes001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','registrar001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','xqueue001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'),('%','edxapp001','*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','','N'); +/*!40000 ALTER TABLE `user` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `general_log` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `general_log` ( + `event_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `user_host` mediumtext NOT NULL, + `thread_id` bigint(21) unsigned NOT NULL, + `server_id` int(10) unsigned NOT NULL, + `command_type` varchar(64) NOT NULL, + `argument` mediumtext NOT NULL +) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='General log'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `slow_log` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `slow_log` ( + `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `user_host` mediumtext NOT NULL, + `query_time` time NOT NULL, + `lock_time` time NOT NULL, + `rows_sent` int(11) NOT NULL, + `rows_examined` int(11) NOT NULL, + `db` varchar(512) NOT NULL, + `last_insert_id` int(11) NOT NULL, + `insert_id` int(11) NOT NULL, + `server_id` int(10) unsigned NOT NULL, + `sql_text` mediumtext NOT NULL, + `thread_id` bigint(21) unsigned NOT NULL +) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='Slow log'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Current Database: `notes` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `notes` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `notes`; + +-- +-- Current Database: `registrar` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `registrar` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `registrar`; + +-- +-- Current Database: `xqueue` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `xqueue` /*!40100 DEFAULT CHARACTER SET utf8 */; + +USE `xqueue`; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2020-07-23 18:49:34 diff --git a/provision-mysql-lms.sql b/provision-mysql-lms.sql new file mode 100644 index 00000000..99942ef0 --- /dev/null +++ b/provision-mysql-lms.sql @@ -0,0 +1,8 @@ +FLUSH PRIVILEGES; + +CREATE DATABASE IF NOT EXISTS edxapp; +CREATE DATABASE IF NOT EXISTS edxapp_csmh; +GRANT ALL ON edxapp.* TO 'edxapp001'@'%' IDENTIFIED BY 'password'; +GRANT ALL ON edxapp_csmh.* TO 'edxapp001'@'%'; + +FLUSH PRIVILEGES; diff --git a/provision.sh b/provision.sh new file mode 100755 index 00000000..708ca5b7 --- /dev/null +++ b/provision.sh @@ -0,0 +1,64 @@ +#!/usr/bin/env bash + +# Include utilities. +source provisioning-utils.sh + +log_step "Starting provisioning process..." + +log_step "Bringing down any existing containers..." +docker-compose down --volumes + +log_step "Pulling latest images..." +docker-compose pull --include-deps app + +log_step "Bringing up database containers..." +docker-compose up --detach mysql mongo elasticsearch + +is_mysql_ready(){ + docker-compose exec \ + -T mysql mysql \ + -u root \ + -se "SELECT EXISTS(SELECT 1 FROM mysql.user WHERE user = 'root')" \ + &> /dev/null +} + +log_step "Waiting until we can run a MySQL query..." +until is_mysql_ready +do + printf "." + sleep 1 +done + +# A fresh MySQL container with no databases may die and need to be restarted. +# So, we wait 5 seconds, and if MySQL has died, restart it and wait 5 more seconds. +# See https://github.com/docker-library/mysql/issues/245 for why this is necessary. +log_step "Waiting a few seconds to make sure MySQL is ready..." +sleep 5 +if ! is_mysql_ready; then + log_step "Restarting MySQL because it died." + docker-compose restart mysql + sleep 5 +fi + +# Run provisioning scripts for dependencies. +# We call provision-lms.sh, provision-discovery.sh, etc., and log an error +# if they fail. +# 'source' tells bash to run in the same shell. This makes the timestamps +# in the log messages work correctly. +for dependency in lms discovery ; do + log_message "Provisioning dependency: ${dependency}..." + # shellcheck source=provision-lms.sh + # shellcheck source=provision-discovery.sh + if ! source ./provision-"$dependency".sh ; then + log_error "Error occured while provisioning ${dependency}; stopping." + exit 1 + fi +done + +log_message "Provisioning app..." +source ./provision-app.sh + +log_step "Restarting all containers..." +docker-compose restart + +log_step "Provision complete!" diff --git a/provisioning-utils.sh b/provisioning-utils.sh new file mode 100644 index 00000000..de6bc2b6 --- /dev/null +++ b/provisioning-utils.sh @@ -0,0 +1,128 @@ +#!/usr/bin/env bash +# Utilities to be included into provisioning scripts. + +# Echo all commands being run back to console. +set -x + +# Strictness: fail on errors and undefined variables. +set -e +set -o pipefail +set -u + +# Colored text. +BOLD_GREEN='\033[1;32m' +BOLD_YELLOW='\033[1;33m' +BOLD_RED='\033[1;31m' +NC='\033[0m' # No Color + +LAST_MAJOR_LOG_SECONDS="${LAST_MAJOR_LOG_SECONDS:-}" + +# TODO document +log_step(){ + if [[ -n "$LAST_MAJOR_LOG_SECONDS" ]]; then + elapsed=$(($SECONDS - $LAST_MAJOR_LOG_SECONDS)) + else + elapsed=0 + fi + LAST_MAJOR_LOG_SECONDS="$SECONDS" + total="total=$(printf "%03d" "$SECONDS")s" + prevstep="prevstep=$(printf "%03d" "$elapsed")s" + echo -e "${BOLD_GREEN}[$(date +%T)][${prevstep}][${total}] $*${NC}" +} + +# TODO document +log_message(){ + echo -e "${BOLD_GREEN}[$(date +%T)] $*${NC}" +} + +# TODO document +log_warning(){ + echo -e "${BOLD_YELLOW}[$(date +%T)] $*${NC}" +} + +# TODO document +log_error(){ + echo -e "${BOLD_RED}[$(date +%T)] $*${NC}" +} + +# Execute a shell command in a service's container. +# Usage: +# service_exec SERVICE COMMAND [ARGS...] +# Examples: +# service_exec discovery make migrate +service_exec(){ + service="$1" + shift + command_and_args="$*" + docker-compose exec -T "$service" bash -c "$command_and_args" +} + +# Execute a Django management command in a service's container. +# Usage: +# service_exec_management SERVICE MANAGEMENT_COMMAND [ARGS..] +# Examples: +# service_exec_management discovery createsuperuser +service_exec_management(){ + service="$1" + shift + management_command_and_args="$*" + # If LMS/Studio, handle weird manage.py that expects lms/cms argument. + if [[ "$service" == lms ]]; then + edxapp_service_variant=lms + elif [[ "$service" == studio ]]; then + edxapp_service_variant=cms + else + edxapp_service_variant="" + fi + service_exec "$service" "python ./manage.py ${edxapp_service_variant} ${management_command_and_args}" +} + +# Execute Python code through the Django shell of a service's container. +# Usage: +# service_exec_python SERVICE PYTHON_CODE +# Examples: +# service_exec_python discovery "from django.conf import settings; print(settings.API_ROOT)" +service_exec_python(){ + service="$1" + python_code="$2" + # If LMS/Studio, handle weird manage.py that expects lms/cms argument. + if [[ "$service" == lms ]]; then + edxapp_service_variant=lms + elif [[ "$service" == studio ]]; then + edxapp_service_variant=cms + else + edxapp_service_variant="" + fi + service_exec "$service" "echo '${python_code}' | python ./manage.py ${edxapp_service_variant} shell" +} + +# TODO document +service_create_edx_user(){ + service="$1" + service_exec_python "$service" "\ +from django.contrib.auth import get_user_model; \ +User = get_user_model(); \ +User.objects.create_superuser(\"edx\", \"edx@example.com\", \"edx\") if not User.objects.filter(username=\"edx\").exists() else None \ +" +} + +# TODO document +create_lms_integration_for_service(){ + service_name="$1" + service_port="$2" + service_exec_management lms manage_user \ + "$service_name"_worker "$service_name"_worker@example.com \ + --staff --superuser + service_exec_management lms create_dot_application \ + --grant-type authorization-code \ + --skip-authorization \ + --redirect-uris "http://localhost:${service_port}/complete/edx-oauth2/" \ + --client-id "$service_name"-sso-key \ + --client-secret "$service_name"-sso-secret \ + --scopes 'user_id' "$service_name"-sso "$service_name"_worker + service_exec_management lms create_dot_application \ + --grant-type client-credentials \ + --client-id "$service_name"-backend-service-key \ + --client-secret "$service_name"-backend-service-secret \ + "$service_name"-backend-service "$service_name"_worker +} diff --git a/registrar/docker_gunicorn_configuration.py b/registrar/docker_gunicorn_configuration.py new file mode 100644 index 00000000..776a6d75 --- /dev/null +++ b/registrar/docker_gunicorn_configuration.py @@ -0,0 +1,75 @@ +""" +gunicorn configuration file: http://docs.gunicorn.org/en/develop/configure.html +""" +import multiprocessing # pylint: disable=unused-import + + +preload_app = True +timeout = 300 +bind = "0.0.0.0:18734" +workers = 2 + + +def pre_request(worker, req): + """ + Called just before a worker processes the request. + Logs a request to the worker. + + Args: + worker (Worker): The worker to process the request + req (Request): The request to be processed + + Returns: + None + """ + worker.log.info("%s %s" % (req.method, req.path)) + + +def close_all_caches(): + """ + Closes the cache so that newly forked workers cannot accidentally + share the socket with the processes they were forked from. + Prevents a race condition in which one worker could get a cache response + intended for another worker. + + Safe for 1.4 and 1.8. + + Args: + None + + Returns: + None + """ + from django.conf import settings # pylint: disable=import-outside-toplevel + from django.core import cache as django_cache # pylint: disable=import-outside-toplevel + if hasattr(django_cache, 'caches'): + get_cache = django_cache.caches.__getitem__ + else: + get_cache = django_cache.get_cache # pylint: disable=no-member + for cache_name in settings.CACHES: + cache = get_cache(cache_name) + if hasattr(cache, 'close'): + cache.close() + + # The 1.4 global default cache object needs to be closed also: 1.4 + # doesn't ensure you get the same object when requesting the same + # cache. The global default is a separate Python object from the cache + # you get with get_cache("default"), so it will have its own connection + # that needs to be closed. + cache = django_cache.cache + if hasattr(cache, 'close'): + cache.close() + + +def post_fork(server, worker): # pylint: disable=unused-argument + """ + Called just after a worker has been forked. + + Args: + server (Arbiter): The arbiter that maintains worker's processes + worker (Worker): The worker that was forked + + Returns: + None + """ + close_all_caches()