diff --git a/environments/custom/configuration.yml b/environments/custom/configuration.yml index 601cb4d16..b892c2c20 100644 --- a/environments/custom/configuration.yml +++ b/environments/custom/configuration.yml @@ -1,4 +1,7 @@ --- # Dummy variable to avoid error because ansible does not recognize the # file as a good configuration file when no variable in it. -dummy: +# +# ========== MariaDB Backup ============ +restic_backup_s3_bucket: backup-testbed +restic_backup_docker_tag: "0.18.1@sha256:c1958a2a1c8614f5c317347c2aaddd9f426076f0521430b55509eba43d7516ee" diff --git a/environments/custom/secrets.yml b/environments/custom/secrets.yml index 2fed4d945..f920b93f1 100644 --- a/environments/custom/secrets.yml +++ b/environments/custom/secrets.yml @@ -1,14 +1,6 @@ $ANSIBLE_VAULT;1.1;AES256 -34653334613432613331383063306531376339613139313231363330396664343063303036666330 -3361336266313038663133396135373430306662396261340a623634343533383930663963636466 -65313662656461393031323230626135376533656130353765373035333230323037373630636233 -3139356434663061350a333865333232623238316262366562383361653065666266323035666162 -61353032636637373961653265356132303264633136373433323832366337366135343566626435 -30643962343965656435323736373538623663646363343739613735626634653336626336313937 -33656539623730646264376339333237366630376335333764376538363331363635623664333561 -39386364326332633135343037353663636135346334323234313366303532303738613039363437 -37363963353230643763643433633036643565393437323139346134396164643561373230643138 -64303632363461393463613365633434646433633562303336666363386666316264376431316331 -31616431633166363134373333396536343933383436626566326264663633623462336438313836 -38623535353561386531386464313631303362366534626361663438373561653836333933383237 -37646134613163383863373430366137646332666639336639643062373831316263 +65636135663137643465613334633666306139386363306562626133383330343566646434346164 +6237353632626231323464336435623263376237393638640a386461613230363637303864386335 +62313765623437393535383239643632366363633038386661623734613031633439346662623861 +6238343739343337620a326162383563363332393062666238366336633764336361616566663839 +3339 diff --git a/environments/custom/templates/restic-backup.service.j2 b/environments/custom/templates/restic-backup.service.j2 new file mode 100644 index 000000000..a48e9b592 --- /dev/null +++ b/environments/custom/templates/restic-backup.service.j2 @@ -0,0 +1,27 @@ +[Unit] +Description=Trigger backup of MariaDB to S3 +Documentation=https://restic.readthedocs.io/ +After=docker.service network-online.target +Requires=docker.service + +[Service] +Type=oneshot + +User=dragon +Group=dragon + +# Determine full vs incremental based on the current hour +ExecStart=/usr/local/bin/restic-backup.sh +TimeoutStartSec=14400 + +StandardOutput=journal +StandardError=journal +SyslogIdentifier=restic-db-backup + +# Security hardening +PrivateTmp=true +NoNewPrivileges=true +ProtectSystem=strict + +[Install] +WantedBy=multi-user.target diff --git a/environments/custom/templates/restic-backup.sh.j2 b/environments/custom/templates/restic-backup.sh.j2 new file mode 100644 index 000000000..da979fa79 --- /dev/null +++ b/environments/custom/templates/restic-backup.sh.j2 @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# restic-backup.sh – managed by Ansible. Do NOT edit manually. +# +# Usage: +# restic-backup.sh +set -euo pipefail + +# ── Determine backup type ───────────────────────────────────────────────────── +# When called by the systemd timer, BACKUP_TYPE is evaluated automatically: +# - "full" every {{ restic_backup_full_interval_hours }} hours +# - "incremental" all other hourly runs +HOUR=$(date +%-H) +if (( HOUR % {{ restic_backup_full_interval_hours }} == 0 )); then + BACKUP_TYPE=full +else + BACKUP_TYPE=incremental +fi + +echo "Backup type: ${BACKUP_TYPE}" + + +# --- Backup Maria DB ----------------------------------------------------------- +/usr/local/bin/osism apply mariadb_backup -e mariadb_backup_type=$BACKUP_TYPE + +# --- Upload -------------------------------------------------------------------- +# /usr/local/bin/osism apply upload-backup diff --git a/environments/custom/templates/restic-backup.timer.j2 b/environments/custom/templates/restic-backup.timer.j2 new file mode 100644 index 000000000..8fb01a56c --- /dev/null +++ b/environments/custom/templates/restic-backup.timer.j2 @@ -0,0 +1,16 @@ +# restic-backup.timer – managed by OSISM. Do NOT edit manually. +[Unit] +Description=Hourly restic backup timer +Documentation=https://restic.readthedocs.io/ +Requires=restic-backup.service + +[Timer] +# Fire at the top of every hour, randomized within the first 5 minutes +# to avoid thundering-herd problems on multiple hosts. +OnCalendar={{ restic_backup_oncalendar }} +RandomizedDelaySec=300 +# catch up on a missed run after reboot/downtime +Persistent=true + +[Install] +WantedBy=timers.target diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 08b78eaa2..b39e70868 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -119,3 +119,17 @@ prometheus_instance_label: "{{ ansible_facts.hostname }}" om_enable_rabbitmq_high_availability: false om_enable_rabbitmq_quorum_queues: false + +########################################################## +# mariadb backup + +mariadb_backup_gpg_recipient: backup@testbed.osism.xyz +mariadb_backup_node: "testbed-node-0" +mariadb_backup_s3_endpoint: "https://api.bfe2.teutostack.de:6780" +mariadb_backup_s3_bucket: "backup-testbed-bfe2" +mariadb_backup_retention_hourly: 3 +mariadb_backup_retention_daily: 7 +mariadb_backup_retention_weekly: 28 +mariadb_backup_retention_monthly: 365 +mariadb_backup_s3_region: "" +mariadb_backup_s3_virtual_hosted_style_bucket: false diff --git a/environments/kolla/files/overlays/prometheus/backup.rules b/environments/kolla/files/overlays/prometheus/backup.rules new file mode 100644 index 000000000..fdd2f75ec --- /dev/null +++ b/environments/kolla/files/overlays/prometheus/backup.rules @@ -0,0 +1,59 @@ +groups: +- name: BackupSystemdExporter + rules: + - alert: BackupProbeFailed + expr: 'up{job="backup-systemd-exporter"} == 0' + for: 1m + labels: + severity: critical + annotations: + summary: Backup probe failed (service {{ $labels.name }}) + description: "Probe failed\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: BackupTimerInactive + expr: 'systemd_unit_state{job="backup-systemd-exporter", state="active", type="timer"} == 0' + for: 1m + labels: + severity: critical + annotations: + summary: Backup timer is inative (service {{ $labels.name }}) + description: "Timer inactive\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: BackupFailed + expr: 'systemd_unit_state{job="backup-systemd-exporter", state="failed"} == 1' + for: 1m + labels: + severity: critical + annotations: + summary: MariaDB Backup job failed (service {{ $labels.name }}) + description: "Backup failed\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: HourlyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-hourly.timer"}) / 60 > 60' + for: 1m + labels: + severity: critical + annotations: + summary: Hourly backup job is {{ $value }}m overdue + description: "Hourly backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: DailyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-daily.timer"}) / 60 > 60*60*24' + for: 1m + labels: + severity: critical + annotations: + summary: Daily backup job is {{ $value }}m overdue + description: "Daily backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: WeeklyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-weekly.timer"}) / 60 > 60*60*24*7' + for: 1m + labels: + severity: critical + annotations: + summary: Weekly backup job is {{ $value }}m overdue + description: "Weekly backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" + - alert: MonthlyBackupMissed + expr: '(time() - systemd_timer_last_trigger_seconds{job="backup-systemd-exporter", name="mariadb-backup-monthly.timer"}) / 60 > 60*60*24*31' + for: 1m + labels: + severity: critical + annotations: + summary: Monthly backup job is {{ $value }}m overdue + description: "Monthly backup overdue\n VALUE = {{ $value }}\n LABELS = {{ $labels }}" diff --git a/environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml b/environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml new file mode 100644 index 000000000..aa2992ebf --- /dev/null +++ b/environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml @@ -0,0 +1,12 @@ +scrape_configs: + - job_name: backup-systemd-exporter + scrape_interval: 60s + static_configs: +{% for host in groups['manager'] %} + - targets: + - "{{ hostvars[host]['ansible_facts'][hostvars[host]['network_interface']]['ipv4']['address'] }}:{{ systemd_exporter_port | default('9558') }}" +{% if hostvars[host].prometheus_instance_label | default(false, true) %} + labels: + instance: "{{ hostvars[host].prometheus_instance_label }}" +{% endif %} +{% endfor %} diff --git a/environments/kolla/playbook-deploy-mariadb-backup.yml b/environments/kolla/playbook-deploy-mariadb-backup.yml new file mode 100644 index 000000000..5ed308f0c --- /dev/null +++ b/environments/kolla/playbook-deploy-mariadb-backup.yml @@ -0,0 +1,16 @@ +--- +- name: MariaDB backup — control node + hosts: "{{ mariadb_backup_node }}" + become: true + roles: + - role: mariadb_backup + vars: + mariadb_backup_component: mariadb + +- name: MariaDB backup — manager + hosts: "manager" + become: true + roles: + - role: mariadb_backup + vars: + mariadb_backup_component: manager diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml new file mode 100644 index 000000000..ceceedf4a --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -0,0 +1,109 @@ +--- +# ============================================================================= +# roles/mariadb_backup/defaults/main.yml +# Lowest precedence — override anything via group_vars / host_vars / -e. +# ============================================================================= + +# --- Manager -> mariadb remote execution ------------------------------------ +# On which mariadb node should the backup be triggered +mariadb_backup_node: "{{ groups['mariadb'][0] }}" +# Location of the SSH key to access the mariadb node +mariadb_backup_ssh_key: "/opt/ansible/secrets/id_rsa.operator" +# IP address of the mariadb node +mariadb_backup_node_address: "{{ hostvars[mariadb_backup_node]['internal_address'] }}" +# ssh command to access mariadb node +mariadb_backup_remote_exec: >- + ssh {% if mariadb_backup_ssh_key %}-i {{ mariadb_backup_ssh_key }} {% endif %}-o BatchMode=yes + -o StrictHostKeyChecking=no dragon@{{ mariadb_backup_node_address }} + +# --- Paths ------------------------------------------------------------------ +# Path where to save the config for the backup script +mariadb_backup_config_dir: "/etc/kolla/mariadb-backup" +# Path where to save the backups on local disk +mariadb_backup_destination_dir: "/srv/mariadb-backup" +# Path to overwriute the location of backups on the manager +mariadb_backup_destination_dir_manager: "{{ mariadb_backup_destination_dir }}" +# Path to overwriute the location of backups on the mariadb nmode +mariadb_backup_destination_dir_mariadb: "{{ mariadb_backup_destination_dir }}" +# Location of the extract script on the mariadb node +mariadb_backup_extract_script: "/usr/local/bin/mariadb-extract.sh" +# Location of the backup script on the manager ndoe +mariadb_backup_orchestrate_script: "/usr/local/bin/mariadb-backup.sh" +# Name of the docker volume that holds the mariadb backups created by kolla +mariadb_backup_volume: "mariadb_backup" +# Path to the docker volumes +mariadb_backup_docker_volume_dir: "/var/lib/docker/volumes" +# Full path to the backups in the docker volume +mariadb_backup_backup_volume_dir: "{{ mariadb_backup_docker_volume_dir }}/{{ mariadb_backup_volume }}/_data" + +# --- GPG (asymmetric; control node holds the PUBLIC key only) --------------- +# Email address of the gpg public key +mariadb_backup_gpg_recipient: "" +# Full public gpg key which is used for backup encryption +mariadb_backup_gpg_public_key: "" + +# --- rclone (runs as a container; config + disk are bind mounts) ------------ +# Docker registry of rclone image +mariadb_backup_rclone_docker_registry: "ghcr.io" +# Name of rclone image +mariadb_backup_rclone_docker_image: "rclone/rclone" +# Tag of rclone image +mariadb_backup_rclone_docker_tag: "1.74.4" +# Full name of rclone docker image +mariadb_backup_rclone_image_full: "{{ mariadb_backup_rclone_docker_registry }}/{{ mariadb_backup_rclone_docker_image }}:{{ mariadb_backup_rclone_docker_tag }}" +# Path to save the rclone config +mariadb_backup_rclone_config_file: "{{ mariadb_backup_config_dir }}/rclone.conf" + +# --- rclone remotes --------------------------------------------------------- +# Name of the mariadb remote in rclone config +mariadb_backup_sftp_remote: "sftp-mariadb" +# Name of S3 remote in rclone config +mariadb_backup_s3_remote: "s3offsite" + +# Off-site S3 remote +# Hostname of S3 enpoint +mariadb_backup_s3_hostname: "" +# Port of S3 endpoint +mariadb_backup_s3_port: 443 +# Full HTTPS s3 endpoint +mariadb_backup_s3_endpoint: "https://{{ mariadb_backup_s3_hostname }}:{{ mariadb_backup_s3_port }}" +# S3 compatible rclone provider https://rclone.org/s3/ +mariadb_backup_s3_rclone_provider: "Ceph" +# S3 backups for backups +mariadb_backup_s3_bucket: "mariadb-backups" +# Flag whether to use the virtual hosted style to address buckets +mariadb_backup_s3_virtual_hosted_style_bucket: false +# S3 region for bucket, not necessary for ceph +mariadb_backup_s3_region: "" +# S3 access key id +mariadb_backup_s3_access_key_id: "" +# S3 secret access key +mariadb_backup_s3_secret_access_key: "" + +# --- Object Lock / WORM (off-site S3) --------------------------------------- +# S3 Object lock mode: GOVERNANCE | COMPLIANCE | "" (disable) +mariadb_backup_object_lock_mode: "GOVERNANCE" +# S3 lock rentention time in days for hourly backups +mariadb_backup_retention_hourly: 3 +# S3 lock rentention time in days for daily backups +mariadb_backup_retention_daily: 7 +# S3 lock rentention time in days for weekly backups +mariadb_backup_retention_weekly: 28 +# S3 lock rentention time in days for monthly backups +mariadb_backup_retention_monthly: 365 + +# --- Schedules (systemd OnCalendar) ----------------------------------------- +# systemd timer schedule for daily backups +mariadb_backup_schedule_daily: "*-*-* 00:00:00" +# systemd timer schedule for hourly backups +mariadb_backup_schedule_hourly: "*-*-* 01..23:00:00" +# systemd timer schedule for weekly backups +mariadb_backup_schedule_weekly: "Mon *-*-* 01:00:00" +# systemd timer schedule for monthly backups +mariadb_backup_schedule_monthly: "*-*-01 02:00:00" + +mariadb_backup_jobs: + - { type: "daily", schedule: "{{ mariadb_backup_schedule_daily }}" } + - { type: "hourly", schedule: "{{ mariadb_backup_schedule_hourly }}" } + - { type: "weekly", schedule: "{{ mariadb_backup_schedule_weekly }}" } + - { type: "monthly", schedule: "{{ mariadb_backup_schedule_monthly }}" } diff --git a/environments/kolla/roles/mariadb_backup/handlers/main.yml b/environments/kolla/roles/mariadb_backup/handlers/main.yml new file mode 100644 index 000000000..c28484f73 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/handlers/main.yml @@ -0,0 +1,4 @@ +--- +- name: Reload systemd + ansible.builtin.systemd: + daemon_reload: true diff --git a/environments/kolla/roles/mariadb_backup/tasks/main.yml b/environments/kolla/roles/mariadb_backup/tasks/main.yml new file mode 100644 index 000000000..ab69ea36d --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/main.yml @@ -0,0 +1,8 @@ +--- +- name: Configure mariadb-node backup tasks + ansible.builtin.include_tasks: mariadb.yml + when: mariadb_backup_component == 'mariadb' + +- name: Configure manager orchestration tasks + ansible.builtin.include_tasks: manager.yml + when: mariadb_backup_component == 'manager' diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml new file mode 100644 index 000000000..ee6962248 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -0,0 +1,82 @@ +--- +- name: Pull the rclone container image + community.docker.docker_image_pull: + name: "{{ mariadb_backup_rclone_image_full }}" + +- name: Create directories on manager + ansible.builtin.file: + path: "{{ item }}" + state: directory + owner: "root" + group: "root" + mode: "0750" + loop: + - "{{ mariadb_backup_destination_dir_manager }}" + - "{{ mariadb_backup_config_dir }}" + +- name: Render rclone.conf + ansible.builtin.template: + src: rclone.conf.j2 + dest: "{{ mariadb_backup_rclone_config_file }}" + owner: "root" + group: "root" + mode: "0600" + +- name: Deploy manager orchestrator script + ansible.builtin.template: + src: mariadb-backup.sh.j2 + dest: "{{ mariadb_backup_orchestrate_script }}" + owner: root + group: root + mode: "0755" + +- name: Deploy systemd service units + ansible.builtin.template: + src: systemd-service.j2 + dest: "/etc/systemd/system/mariadb-backup-{{ item.type }}.service" + owner: root + group: root + mode: "0644" + loop: "{{ mariadb_backup_jobs }}" + notify: Reload systemd + +- name: Deploy systemd timer units + ansible.builtin.template: + src: systemd-timer.j2 + dest: "/etc/systemd/system/mariadb-backup-{{ item.type }}.timer" + owner: root + group: root + mode: "0644" + loop: "{{ mariadb_backup_jobs }}" + notify: Reload systemd + +- name: Reload systemd before toggling timers + ansible.builtin.meta: flush_handlers + +- name: Enable and start active timers + ansible.builtin.systemd: + name: "mariadb-backup-{{ item.type }}.timer" + enabled: true + state: started + loop: "{{ mariadb_backup_jobs }}" + +- name: Deploy systemd-exporter + community.docker.docker_container: + log_driver: "json-file" + log_options: + max-size: "10m" + max-file: "3" + name: backup_systemd_exporter + image: docker.io/prometheuscommunity/systemd-exporter:v0.7.0 + network_mode: host + privileged: true + user: root + restart_policy: unless-stopped + pull: "{{ pull_image | default('missing') }}" + mounts: + - read_only: true + source: /var/run/dbus + target: /var/run/dbus + type: bind + command: + - "--systemd.collector.unit-include=mariadb-backup-.*" diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml new file mode 100644 index 000000000..3f6689322 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -0,0 +1,32 @@ +--- +- name: Create directories on mariadb node + ansible.builtin.file: + path: "{{ mariadb_backup_destination_dir_mariadb }}" + state: directory + owner: "dragon" + group: "dragon" + mode: "0750" + +- name: Deploy GPG public key (from controller file) + ansible.builtin.copy: + content: "{{ mariadb_backup_gpg_public_key }}" + dest: "/home/dragon/backup-pub.asc" + owner: root + group: root + mode: "0644" + +- name: Import GPG public key + become: false + ansible.builtin.command: + cmd: "gpg --import /home/dragon/backup-pub.asc" + register: _gpg_import + changed_when: "'imported' in _gpg_import.stderr" + failed_when: _gpg_import.rc != 0 and not ('unchanged' in _gpg_import.stderr or 'imported' in _gpg_import.stderr) + +- name: Deploy control-node extract/encrypt/promote script + ansible.builtin.template: + src: mariadb-extract.sh.j2 + dest: "{{ mariadb_backup_extract_script }}" + owner: root + group: root + mode: "0755" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 new file mode 100644 index 000000000..5e95b7ce9 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -0,0 +1,79 @@ +#!/usr/bin/env bash +# Managed by Ansible (role: mariadb_backup). +set -euo pipefail + +TYPE="${1:?usage: $(basename "$0") hourly|daily|weekly|monthly}" + +[ -d "{{ mariadb_backup_destination_dir_manager }}" ] || mkdir -p "{{ mariadb_backup_destination_dir_manager }}" + +# --- containerized rclone helper --------------------------------------------- +rclone_run() { # usage: rclone_run + docker run --rm \ + --name mariadb_backup_rclone \ + --network host \ + -e RCLONE_CONFIG=/config/rclone.conf \ + -v {{ mariadb_backup_rclone_config_file }}:/config/rclone.conf:ro \ + -v {{ mariadb_backup_ssh_key }}:{{ mariadb_backup_ssh_key }}:ro \ + -v ~/.ssh/known_hosts:/root/.ssh/known_hosts:ro \ + -v "{{ mariadb_backup_destination_dir_manager }}:{{ mariadb_backup_destination_dir_manager }}" \ + {{ mariadb_backup_rclone_image_full }} $* +} + +case "$TYPE" in + daily) + sudo -u dragon osism apply facts # gather facts, use daily schedules because facts have a 24h TTL + sudo -u dragon osism apply mariadb_backup -e mariadb_backup_type=full -e mariadb_backup_host={{ mariadb_backup_node }} + ret="{{ mariadb_backup_retention_daily }}" ;; + hourly) + sudo -u dragon osism apply mariadb_backup -e mariadb_backup_type=incremental -e mariadb_backup_host={{ mariadb_backup_node }} + ret="{{ mariadb_backup_retention_hourly }}" ;; + weekly) + # promote last full backup to weekly backup + ret="{{ mariadb_backup_retention_weekly }}" ;; + monthly) + # promote last full backup to weekly backup + ret="{{ mariadb_backup_retention_monthly }}" ;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +# extract/encrypt (full/incr) or promote (weekly/monthly) on mariadb node +{{ mariadb_backup_remote_exec }} {{ mariadb_backup_extract_script }} "$TYPE" + +# pull encrypted subtree from control node to manager disk (Copy 1) +rclone_run copy \ + "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${TYPE}" \ + "{{ mariadb_backup_destination_dir_manager }}/${TYPE}" + +# upload encrypted subtree from manager disk to offsite S3 (Copy 2) +rclone_run copy \ + "{{ mariadb_backup_destination_dir_manager }}/${TYPE}" \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}/${TYPE}" \ +{% if mariadb_backup_object_lock_mode +%} --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ + --s3-object-lock-retain-until-date "${ret}d" +{% endif %} + +echo "mariadb-backup: ${TYPE} complete" + +# GC the disk copies (non-WORM); S3 is governed by Object Lock + lifecycle +{% set gc_common_filter="-type f -name '*.mbs.gz.gpg'" %} +case "$TYPE" in + daily) + find "{{ mariadb_backup_destination_dir_manager }}/daily" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_daily }} -delete || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/daily" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_daily }} -delete || true;; + hourly) + find "{{ mariadb_backup_destination_dir_manager }}/hourly" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_hourly }} -delete || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/hourly" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_hourly }} -delete|| true;; + weekly) + find "{{ mariadb_backup_destination_dir_manager }}/weekly" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_weekly }} -delete || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/weekly" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_weekly }} -delete || true;; + monthly) + find "{{ mariadb_backup_destination_dir_manager }}/monthly" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_monthly }} -delete || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/monthly" {{ gc_common_filter }} -mtime +{{ mariadb_backup_retention_monthly }} -delete || true;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +# Delete empty folders +find "{{ mariadb_backup_destination_dir_manager }}" -type d -empty -delete || true +{{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}" -type d -empty -delete || true + +echo "mariadb-backup: GC complete" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 new file mode 100644 index 000000000..1f5bac438 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -0,0 +1,99 @@ +#!/usr/bin/env bash +# Managed by Ansible (role: mariadb_backup). +# Extract the current full / latest incremental from the kolla backup volume +# (or promote the current full into the weekly/monthly tier), encrypt with GPG, +# and place it into the structured staging tree. All config is rendered from +# Ansible variables at deploy time. +set -euo pipefail + +TYPE="${1:?usage: $(basename "$0") hourly|daily|weekly|monthly}" +read -r NOW_Y NOW_m NOW_d ISOY ISOW NOW_H <<<"$(date -u +'%Y %m %d %G %V %H')" + +# --- locate the source backup directory in the volume ------------------------ +current_full_dir() { + # Prefer the kolla 'last_full_file' marker; fall back to newest full-* dir. + local marker="{{ mariadb_backup_backup_volume_dir }}/last_full_file" rel + if [[ -r "$marker" ]]; then + rel=$(sudo cat "$marker" | sed -E 's#^/backup/+##; s#/[^/]+$##') # strip /backup/ prefix and trailing filename + printf '%s\n' "{{ mariadb_backup_backup_volume_dir }}/${rel}"; return 0 + fi + sudo find {{ mariadb_backup_backup_volume_dir }} -mindepth 1 -maxdepth 1 -type d -name 'full-*' \ + -printf '%T@\t%p\n' | sort -rn | head -1 | cut -f2- +} + +latest_incr_dir() { + # Print the incremental backup directory whose *name* encodes the most recent + # timestamp. Name format: incr----
---since-... + # Sorting is on the name, not the filesystem mtime. + local path name h mi s d mo y key best_key="" best_dir="" + + while IFS= read -r path; do + name=${path##*/} # basename + IFS='-' read -r h mi s d mo y _ <<<"${name#incr-}" + # skip anything that doesn't parse as a numeric timestamp + [[ "$y" =~ ^[0-9]{4}$ && "$mo$d$h$mi$s" =~ ^[0-9]{10}$ ]] || continue + key="${y}${mo}${d}${h}${mi}${s}" # YYYYMMDDHHMMSS — fixed width, sorts correctly + if [[ "$key" > "$best_key" ]]; then + best_key=$key + best_dir=$path + fi + done < <(sudo find {{ mariadb_backup_backup_volume_dir }} -mindepth 1 -maxdepth 1 -type d -name 'incr-*') + + [[ -n "$best_dir" ]] && printf '%s\n' "$best_dir" +} + +# Build the relative path from the source directory name, so the +# partition reflects the backup's own timestamp (not when this script runs). +# full-DD-MM-YYYY- -> daily/YYYY/MM/DD +# incr-HH-MM-SS-DD-MM-YYYY-since-DD-MM-YYYY- -> hourly/YYYY/MM/DD/HH +parse_daily_rel() { + local name="$1" base k f1 f2 f3 f4 f5 f6 rest + IFS='-' read -r base k f1 f2 f3 f4 f5 rest <<<"$name" + f6=$(cut -d"." -f1 <<<"$rest") + if [[ "$k" == "full" && "$f3" =~ ^[0-9]{4}$ ]]; then + printf 'daily/%s/%s/%s' "$f3" "$f2" "$f1" + elif [[ "$base" == "incr" && "$f5" =~ ^[0-9]{4}$ ]]; then + printf 'hourly/%s/%s/%s/%s' "$f5" "$f4" "$f3" "$k" + else + # fall back to current UTC date/hour if the name is unexpected + if [[ "$k" == "incremental" ]]; then printf 'hourly/%s/%s/%s' "$NOW_Y" "$NOW_m" "$NOW_d" + else printf 'daily/%s/%s/%s' "$NOW_Y" "$NOW_m" "$NOW_d"; fi + fi +} + +case "$TYPE" in + daily) srcdir=$(current_full_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + hourly) srcdir=$(latest_incr_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + weekly) srcdir=$(current_full_dir); rel="weekly/${ISOY}/${ISOW}" ;; + monthly) srcdir=$(current_full_dir); rel="monthly/${NOW_Y}/${NOW_m}" ;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +if [[ -z "${srcdir:-}" ]]; then + echo "srcdir var empty. Couldn't determine source directory for backup" >&2; exit 1 +fi + +sudo ls $srcdir + +srcfile=$(sudo find "$srcdir" -maxdepth 1 -type f -name '*.mbs.gz' | head -1) +if [[ -z "${srcfile:-}" ]]; then + echo "no .mbs.gz file found in ${srcdir}" >&2; exit 1 +fi + +# Output is named after the source directory: it encodes the timestamp and, +# for incrementals, the 'since-' linkage needed to restore the chain. +name=$(basename "$srcdir") +dst="{{ mariadb_backup_destination_dir_mariadb }}/${rel}" +[ -d "$dst" ] || mkdir -p "$dst" + +sudo cat $srcfile | gpg --batch --yes --encrypt \ + --recipient "{{ mariadb_backup_gpg_recipient }}" --trust-model always \ + --compress-algo none \ + --output "${dst}/${name}.mbs.gz.gpg" +echo "mariadb-extract: ${TYPE} ${name} -> ${rel}" + +# --- garbage collection over the staging tree ------------------------------ +# Delete files older than 2 days in docker volume +sudo find "{{ mariadb_backup_backup_volume_dir }}" -mindepth 1 -name "*.mbs.gz" -type f -mtime 2 -delete || true +# Delete empty directories +sudo find "{{ mariadb_backup_backup_volume_dir }}" -type d -empty -delete || true diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 new file mode 100644 index 000000000..b26e25154 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -0,0 +1,26 @@ +# Managed by Ansible (role: mariadb_backup). +[{{ mariadb_backup_sftp_remote }}] +type = sftp +host = {{ mariadb_backup_node_address }} +user = dragon +{% if mariadb_backup_ssh_key %} +key_file = {{ mariadb_backup_ssh_key }} +{% endif %} +shell_type = unix +md5sum_command = md5sum +sha1sum_command = sha1sum +known_hosts_file = /root/.ssh/known_hosts + +[{{ mariadb_backup_s3_remote }}] +type = s3 +provider = {{ mariadb_backup_s3_rclone_provider }} +access_key_id = {{ mariadb_backup_s3_access_key_id }} +secret_access_key = {{ mariadb_backup_s3_secret_access_key }} +region = {{ mariadb_backup_s3_region }} +endpoint = {{ mariadb_backup_s3_endpoint }} +# Force list_objects_v2 +list_version = 2 +# Force path style to address bucket +force_path_style = {{ (not mariadb_backup_s3_virtual_hosted_style_bucket | bool) | lower }} +# Don't try to create a bucket +no_check_bucket = true diff --git a/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 new file mode 100644 index 000000000..23684d781 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 @@ -0,0 +1,9 @@ +[Unit] +Description=MariaDB backup ({{ item.type }}) +After=network-online.target docker.service +Wants=network-online.target +Requires=docker.service + +[Service] +Type=oneshot +ExecStart={{ mariadb_backup_orchestrate_script }} {{ item.type }} diff --git a/environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 b/environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 new file mode 100644 index 000000000..4d7b4fcf8 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 @@ -0,0 +1,9 @@ +[Unit] +Description=Timer for MariaDB backup ({{ item.type }}) + +[Timer] +OnCalendar={{ item.schedule }} +Persistent=false + +[Install] +WantedBy=timers.target diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index 7afc2cf9c..bd58b3813 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1537 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -36363564313033376264366133626636343737613834386564396234303231316666663265633134 -3332366132323839353163366130373366346631623137610a376364643365323537663464303233 -37663239363633663562666462313431363037646539383532623964623233663538636563643737 -3837323363393833610a623239306562396433643734656236323930653162396661393033343465 -39386630323233653562313437653538616432633130633133316338623234373832313266303731 -38333731353166366234393139363432616238666133363530363635343431303664373061386132 -33646565326364343934623166663430613832313866353566366366396161313831353361343766 -64333334346164326264343064633930346236663032326239363065326265336234363230653537 -39623939316664323866363231316531616430636532373738653161613261336637643531653264 -65396632616533663964643937393066303635353236326130376532666532653539306664343061 -62633235343735616138333437303932393765646663653538393439666665333034313433633939 -61373632306531666466306164303262633739656534653962396533303864373662313335313837 -66653935386461666235313165636433323563306363316661316666653365343639323630333662 -66383139353361633666356339306661306333386161353463383765616264616262323434306561 -39376363643765663266616238623730393530666130306431303761623934313631366639376235 -31396236663338313331393033346636626536353630613936346430316236353462663531366138 -34386238303130373033333261343931386432336530323062343466343036396563613936623965 -65366563663237343437636465653530343132663561323934633031643730323030383035336363 -34386330653532613438343764666236356136363832613963376266623864653965303736646563 -37303965376330396634303636656161626239616164323537343539353836616631653333643966 -33663937643732316130666238343565383637653933336134346365343233643866633232303736 -61653564356334663565323565336565333137366238393834303766633362383264356539656362 -65333739363863396533346634323139396461333062376662623432626266643262643534653439 -31303162613466303862626636383562663561303861386339636632366235616139656337623930 -66336639636465363163393761323331333330326533366430396162366565396361636533366235 -35626637656536623363376136626535343334666333366237353736303232656636356631366662 -36376130643030373033633764343239643736633038663065316362313334636532613761663036 -32373832656130663233633164626330373536363230373437633531636531383961663738383365 -35343463336336303361343235313031623966656365323236333365633364653664373032623934 -35393339336636623437633762623261376162623538373532393239636638386532383734663338 -30633436306666386463386631373438323536663537666561663635313565666631323539656232 -37323337386264326531333930383839613735613266333232306665346561663439643130636562 -61313936343735643436346339383439366162336436356233663061663066393266326164636363 -64643531656237333234313732343161333736613039633835303465353063336365333536336439 -35316365613965393435376265643230613736316536636633623964323239363330663636646362 -65373132313965356135656131316230373631616339363433666632636234623734643834653065 -35653436343031396136353862643830303933653537323731353637656637343133313265646661 -63356136373566373032396638323033656265616234323434363734313335393032656432333166 -36363563623131393165633165363232383964313563363636343339323534303236376665316361 -30643662373534613434336261663235616339346564393366383232336665333265396132316339 -30653663326237643237393865653139316666366430373137303161373563366136386264643633 -63656336663239623630623331636638343933656136643836333433653364616362653434363130 -31373262633365313538343731633362343439366463623339656164356461393831343539393965 -30383539656633306133353336666666373961376135386132373032333232663161316230373265 -61666532373136376635303461626534343134623734633639313631356536353564376464373364 -65383330373364623966366134613335646232386565333635623131313463386465643433383731 -39643664616261616264393263663863396234653733633062363566363063623961316339376465 -33663235616436313936383532653338626562306439666630616437333839353337333232333134 -38613732336361643862333434353532376563623037343336323730346162623430396662653839 -32313964366537306633376462363137343939343435333537326562636436373936636639386663 -31333862396534346539653933663539616538343864616230343766353436333261613764303935 -35643936363863356161643832393264633133366331633061633730343163356262376264666237 -61306234623236383735643135656434333832366566393134646164363631663866313037363739 -64353463646236316239386335343864373832356661396261393731613934373230333837346432 -61363362343738376666353137313537663433366130326461353930366662656636323365656537 -37373638373435656232313462373036366563646433386137663832623037633865353031623737 -38636639313231323835323131633261303663323961366263363539343162366465653363666362 -64333434386337613136653132616166393437303235326662363863313264393333396431363832 -64376533316638393637336236623936316130333362333938623566383639623733613965643763 -30386565393636356231363762306234613438303136373932663763316666626239323765373138 -38393063383636303261373966333537313461373131633834316564316661666538613165363036 -39343935323563313265316661356634323735613137383563393237383966653662623665613636 -62646362313165363834663063396430636538303030313838333364366435376332613535306634 -39383831386663356339393165666564653765396430393539623430343064373265656461336335 -61316334343061646466346137666133663061633134316330373039643932336534356435653566 -65636635623431633530343265363031623262613030643836646161313739366533343738303765 -33373431383138373732336538663539353332316562353266346165393838313134353234393761 -34373565353163376565383532623166623631363334383661386635393238386663313066356234 -37393238366133346335633135336634633432306463393137663536363834623931303363306534 -36373962376237333162613732363734326562656532666133363133373239666462376565333563 -64346230353538663434306165313535353336643635313863623033373761333933396462623762 -31636561363736323566646136363735666535633230656665333139626163663164663634643636 -62346564373464373961656561626433613465386331393933306236623261393963373938653036 -64616664623034376266616431613337333961346431363965316435373863323735393132383333 -30623236333939316433396238633933346537356239383139396462376132363138616638303830 -66613463346537316361316139346365623261623230616332663333326232633831653165386263 -39366333366461383437316533616536343736666633393534663965663534303439313234326663 -35306237346533663633346335643134333133323532383034326638363439306135373132626264 -62303339313933616261353130646438653336376230623161313930366337323138656362393134 -39313935666662346439653865653634633261366133616164386137653537666634363963353235 -31636131663266613532653163363336666331336434346230343830623033646264646435663434 -31663731626335633935353734386465303030626333663639323031306434383033636164343461 -36316136396662663436646530343032666261336330626439386535333035616639353261626634 -30393033633237316639376133373564663061323863323636393835396539363762373834323630 -38313361323030653134653766373335623266363434633330303631613232383964383830303763 -31313232343538616531303162313135396430373337306530393732313833616266373934623936 -61366662386565303237303461623735646235613032303365393731646332363265623966376637 -63623331663639303231383530333039303835326462373166646434363866646261303936333539 -39393736653165373038396132666433373132353761616632373737343962343437326130623534 -37353333616661343435303234336333393036376461333739316164376161356236613232333364 -34663464666335306337313762663065656161653062326166383536333364366463313930373138 -62626361626234306261343234623736663338306362336333363066323830656265653133663461 -65363766376632303664376331306534373061636539643837303039323963373832383330616433 -62653632666466653337396130663432343062333134623034343538323634633063633935616139 -63353064393031393261663738316436333530306238346235316134306262386631313165313762 -34323464626337366633313839373165613234333765636136356365623464343166303834363564 -38333838373030323632363533306462313362373931656161643138616539313835353065303762 -33626331613933376132663239393566663262333365623562626338363831613934336535386139 -61653365366238396332363030313766363161663763343062333337383932333234323964363961 -36333965633031363430386232313238653666333835613130376536616135646636656332346537 -39373135646630316536666338343734363836376531346561316235343464363663373138663365 -62303566363763663561323838393334313232336462663363323061323433656666393034626636 -64386237326430323465386336333035383066383435303139393462616132653736356631383265 -32356162666631316538353132646236636362326363343335353664333331303534376164386537 -30333930656631653165643039633333653035343439663833326530396366633538653139396366 -62326336613564393634396636333334646334373137616338643238646562653436386433656465 -61343066356236303735633938363265376665306163323534376537613230393637336462646563 -33383661363934343834306233656562306234613034376335396332313336386231396332626633 -35393334333234326633663862666265333066373235653139363761346563383262383439633830 -63336562626463623036303062623031343236613065376632386662613833666364636134333466 -62666331336237333665653837336432376161373230396139363561313763666365383931353936 -31366435343439656464616135393962313164303237613932373333663561343934336532656330 -62316238623537373434393461653263383538383033356332326236626537373161656339313933 -36626462653833326263343330333133393934343566383532626131356637386631383139636538 -38363436646464353963656561373136383865646561646231626432373161653632646233636163 -33376461323665393963366364383632656362646431616661386166663364646266636234623433 -36623630356364356437643864356137303734326333306337356136326339343235326165346364 -65383532366363613132666430346163643738396237666637373161626336316135353031616536 -63666566343731663862646539326538636535366339386134613134633434363064373561313830 -34313230343630643831613763366663313064666266346637663266356265376437303035376566 -33626339366438323662666433363264333932653432313131343338613335663436396664613835 -32663430333332636231663463393966353466313766363731336337306566623963313938303837 -33643634306135336662323663663633363265393838333163653838656365346438333630353031 -39366138313732366630623365333466366561666639323137326133383261366539633239633332 -63633333393262346332616566636337383365366437363261613561303435636365623432383561 -64666139326661303338613736623438303262653464383837356332626335393639356534636339 -35656332616264643966653262633464363137373561323663323734313431393632333534303031 -61303738626330383464646632343939646138383430366365376533356337313231363630626631 -39363839623637666634663836666633656462663239343230313738666465633933346337373633 -36636138383163313364653066623164363732316438633264393038626137333930643865653430 -37633932373061303031343762643032656431653965333433643531383066343036356637613735 -32653835663465343533366461303338363833623961633130333765316236643537663930383037 -65373037333362623566303864646634626165393430633861343366623031393038616231636336 -64333737663938363161333637663963623566656132353965383363383665373130356432666434 -65653664653131396637616432626639623038383635633536623435623932653939326230303535 -62373739643733383735623238663264613337393064356564633361663064616436353532616562 -61363565373831663434626138333961306134303930366364373335316365393238303432626266 -33613037363231386634386136356538373430653831393539613866343231363139303938663463 -62373065303335363263373063376238343537653931373563353937613436643330383339393566 -33643665346137353530663537613938323934386232366132303734643036346263616564313865 -64356537623939313532663932383166373731643232656430633764663466623764363933383665 -37353166633331616365383534643266666336323032326666636332303935336433663235386164 -66313130643265313130666139353439633365306432636239383061326562366463356464616461 -61316638663430316563323139343766353634336132346330666637323530653939663438313832 -39666234636238633431653634396466333166373735616332616139363939623037363638303162 -36393438313063303765373739373062663937633833646431636236313966623663363538336531 -34323233656166666135396532646263636165353363363064313463323635363638383734633237 -38376439366465636435613163303466646237666238316661626434626331643664353834663734 -30396236323235343761646461386432646432323133613235316162646138653265663337376562 -66366262373961626265313935323730643566373662666437373737343639306362303834353432 -39396163333566656530656534353134386233643639636233376637376634636634313862313331 -33356638613531376234356138643830663166333233393934356135383635326666646235623562 -37323237666464313735303365386238353138376137316333383863616532343830633234376465 -63346336366334643033303431653337343335633731653333383265366233333034613933363336 -38633237363633666437326433653866623131393133323238313361323062333631663031316539 -32343466303635306537383261623736303830323138356435333238316337323039636165393235 -38356237663430663335376561316464343761663766343432616631383939656132633163636630 -36623430313664326461323231383734333238623534363836626631633439666136363132313634 -64613834376365623962636463643265353763383966633039303763613363666362636338383834 -61663331313936363439646630313162346235643235353935663366393739623665303330316261 -30356239336561386431393266326238326562643633303031373834326266613735393062393435 -62646630396161663732306238326337373065343938343038383865383239613762653430333834 -33393461653566636630383336363039393735316535336236306536356661356231393062353164 -31326265383166656563356564336334333537336132363336353466613830616163326433303132 -36613635386237643466666562343636363230363961663836386363353631396138663161326630 -30646536356335343937313830386337626365616538396165343939613038616237323466623362 -31393466346532633661363233646465316535643432376132396537633263633230313932633663 -63616635383338323038363861353734306663613531343230343035326130636666393662323739 -62303261393762376636386266646436333562376531643537653039643062656530363232653532 -38336463356161623637666334396663326563616663313066633365666561356361633332643233 -35633566623437353361366437366162653565653730303231366561306537383864363661376636 -31306663366435313066373566386230316636666530396161303839646263666236623031616230 -35663932323938303531646130663964306564306661366130353635313431346136646237656130 -38646530656166376634653362323134303131626561303862303237323834326332396363383734 -65353838323363373437633766373461356261356437393862343866653165346636343566353336 -38653364616331623866363436643937633730303234646230613664623836396262373633323431 -36653030613931333666323066626161623131316561346533323035666632306438373766643239 -64346233616365386635396464626364353266633730636365643635303666356232646235643038 -31643136343036336633383763393666633964303330313039316665336637613932656633376166 -32313736323138396466383734343862646538376532646161373439373238313763323233613366 -32336164366463393565396135306437616330366631653661633435653466383036666637343230 -62306639323039323630303837336636383566643138653065343338636137643063303662623463 -36643734646463373533613465363935653066353231633965656533656363386133333136313830 -30366231396466333564623336663961376630353036303339363563396666666435363534396365 -37626466613636383334393836333938376232343138666564396665346562373833386437343530 -39326161643766323131366166326139613433313964323238363833626564663661613333393233 -37626666373635333833366265396561323638333535383562313262303638623866616637396233 -35633139363366366262333639656433393361383633393661656137643631656665623430376537 -62366533303366353165633835313130356431656565336532316430383132643664623065323862 -35313062326462303465323830373632393035626432626664633466613263383135613864376334 -66616437366236303864623331356639366365363033656536653062636563353634373765376433 -36643030343232393766386164623862366662353237326264376233333436353432646632343461 -34613564633430623734366361333966633065333139366233663364353563343536646235323065 -62396365306233303833363039653432306339313732393465333632333262383437356462336461 -37623131646166333963643265313330316561643232643539653162616639333837626633616133 -61333061616261353561326433336362646464373065623436383339636561613734393734326335 -63393135353139396539323632623265373731333833666265303939343737653663336333653561 -35613235353465373536663633353162663538663466326230336634373665333637303866396463 -62363930363738643931393661333633653734663961323737333261613438303830666533353035 -31633334653066353237303466356333343164623164616561393366383838626563363464313930 -65656630623162656137623331393166386666326365306430613832633336333835343834373031 -62666466623230356438336462616366333836616230656362316530623162353965653865373863 -38653633633437333832316665306566616634306165366261613636323763613465316662316262 -38656536356164623562613037343533613231326233366533383333646132306332663238313565 -34396363393633646330323837393236393034363338366432363264356235303936303365666531 -62343335326239383033346235343366326665393937613636653634666662623766373761343763 -64306263616332336639613735633734373333646332346234663762386262323638373837653931 -30663932653737656635323331643438636266663538616537646338353538393739663866346262 -61613131646634373831363437323965363637623238316163346230353161653032383061333663 -65393431636366336662396132383836653462636334303561666330656237616233383862626634 -38303566636337393264386131623239613230393338393132646365653532376666363061656537 -39653435613837656663633763363866366535663963633135373031303836333861323835373030 -31633737303132653235666133636330316337313634393565633130333465326333633166383163 -31303132343861393935386139303562316334356237363633376131333461366637383233623437 -37633336313436336332323935316231333338633233306632643133626438366232653232666133 -62653030663839356138643534323131666266663535313537653664396436333064343037623263 -34666361623630346130303233396535333536366438656233663761346261336362383238386365 -31616161376162386435636236383463616166336264353930663134653263323037363866383465 -39393839396165393239383662393764666237323034333434656566646662633965313733303830 -33663663343537386361613630346265333364613562336666353630356533356134386165623532 -61386138313633643531303336366263393635343362363966303265376663626363376432366533 -37313537633366636637383534366438643536313132663134663763653366643131353764623534 -33633336663266343035323465373938643236323035333436356434613139636136656363316261 -62303762386232336265326531623061646130363831616363363136333135343832623632396138 -33653963643637323661343734626434313364646365363231313233343835663765646137386361 -30356439326261356561646136316532353533396536376466636336326165356164306261646166 -35623265336464303733306364303936336365616631383034376335393234646561333964346462 -33356363656161643532353064373865623835393764383331386437613162393139346338386562 -35376339653962366262653962623239633162393964626263636536646566333236393637633961 -66633664666234326433633031313331666231616539646133396238663765323836316430663364 -32356364653864383565316638323832653163313362646430306666363832333765306234393962 -61613036303637343466303362313365663938303835616331396535663736383063653538633130 -36626435343639386431336465663566646362653731336334323438336138653539363464636133 -34373739653633396264306161353930313930333534306265656439313531386461366134643531 -30613035313235656462616439613363306232313835633734363563653562636437323464373163 -64316332346235333366663166316166613366376232636538313233363361343538333066323034 -38646638353938633437623363343236663335353732626533346363393263613561383531373033 -38333732353237303031363630636136333932393938323561373336633366633635646662343437 -34343838653230373530633661363038663662383733626234323639306465343939353935653833 -34643034353536653630333935643537653566363462353038383336363364623563356664393633 -33653765613262666262306661386537633261643066623831663437656538346466636265653330 -66363362396366326566346439343033653565326136663233633130336663643836373139633533 -61393234306236333736363664613165323466373130386331323063356266363163316331333462 -62303161323633333964353763316239376538383533636437376530313534303034653837373635 -39316330336635303963353330303564376237333233376261613437613234613639396235636431 -33663165616135626464633335666537643438663831333735333638616337323131613064633131 -66616565383366323132613365663130653765383161333563376531363763653661623462353537 -61396563363161616336613435336432343963316532306232636530376631353033323466333762 -33643134393534653561326237643532623534616465663063633166633266643033326438626539 -30613235656232353037306538633736616163613137363466616564306139336264626533346337 -31373163383434333361666466643263666234353266313237616633366465306265626266633330 -30386539613839646635353937393639343637643337313235626366363661306337383866363033 -63333932636461666337323932333036333935343739373662316661613139613461663961333230 -30353362633064653037313265383166343734356562613866643762666135636466396166633463 -33376635323263623235396162313461613431616264333536323934323964306263316265613437 -36333238646136646338363432626161623232353665393130323734316162643731663430383230 -38663930316166356232303635366639643730353261643334323664306236373335656636323734 -61376239633161386534353832613131613934303535303761373934343039616664336564376537 -38396438313338376435396633616232666338393862643862643338626231653063636266393038 -66343233303535353130333066613865656132313165623764356532346536663563636239653835 -38646162376166613133613939303566336533343333653962646563666533636164623465336263 -39643931613538663930316462626633643038346165333665623332633663663237636665336364 -39663361346363633135346534663732393837613364306333646661643263646134343230353131 -33346166333437393634616631333939336237346336396364643265336534666336643263383137 -63656336326631666637656138323430376338613563626361376163643034323634663736386261 -33303839313165373930393062653464303934313263316262363231666561656436636232386461 -36326532313464316566636362303032663762386333613336346538623763366366366439326565 -63323661346137626461636331643537353431666435306337356538633864616237386466633763 -35393066343033656561396130386638393062323266346566653666373230306665383564306239 -61356266616232333439623864376632383861653362313566656565326565656664633963323431 -38336265396439643631306361623531343164313431336132333634303031333933353530323338 -63653731663338306166633162656662313762666362383061663362313633613634303866666434 -38346535643636326535386131656466353565336334626230646432303638336234393737656233 -66613035346231323039663561363739623665393430623065643334396566663265663532656364 -62363437326466393966373365383439363666633863346566353230353362383638636439633931 -36393964633439373933623135323335346362396436633061303338386263336263306535613332 -66653134306431656335356465333830396662656663636532623364396533396638613965663336 -32323939336335323438383439326436646535353239326366626637353862333530353763343534 -39356261353233323665656238643736343939363163663430303036326266613963303131333632 -63366563346365356336353062663564363331316461656333666530333563353866633062306438 -39323538393637633331613236393234376632376639653364313563386632343764653233303461 -66636637383561353132666639626231356466656264373736313264653565623236323638653165 -64396661646465306362653430363361343433663565363364393033303232356662666536353932 -30313833393265653434343431373162333863366666383735303061376538636637616664666563 -63313964616132613534666638356534376639333766643262393834343435636137346362656266 -61313963663965646539646364353564343637666239336334646663366331386661316638646239 -32643562653636336463636531663637393133343236333362633835643864313738373432393466 -62376233616463376463633833363334363132636231396333333363373765393736396331633735 -39323032323938393562396362613332353330666134616239353566356336363162316139653037 -61373763386366653462343131626338376336626137616663333332613237613635623634626365 -62373366396535633438323332366131386166636265336439396338346233363331626638626535 -31353139363131636330666164616537313032353936653132373230373762393763363039623036 -62643033663731616638633639623863376565333561303835633539356462666632356364313262 -31333333343837303066626238316661396135336262303336616564316461363434326538396666 -63643137613833643663653362646263396634383739306638386633653164363836613936363265 -39663734613564316132646339646336653730306637643738613934306363613932623935643137 -37323462626463323037353138643439393130616166613139633561343534656665306634666139 -35653337373662376665323339613161666563626533333438643763653931366663343762396163 -30306264616638353137326463623764326638363538633937373064336631643637343663616235 -39353266643063343135383962633934656163366461353839373362636666313463363931343566 -61626332373231333333623538366330313032376539623862303736666661303032303764376361 -66306136653930313930323936366562383636633535346431373730383433613634333439393637 -66363734343035663232616462373436346361303835373832356133653764643530343166376234 -36333135623765306436363030393466343430373937656662356431656634376137643430313866 -62643863316336313865313532316637373636376463333166643038306465343862396565653466 -36316265323731303634613666623631343537373435653138633735343238613564373466383562 -36386237653336366261366436623664373463663135663532353737386136623039353632666536 -65353234333737646132303432653234393964653064663063366364653634336539616564666562 -39306635336561373263666663623266663037363761623234626164613737656631653237393065 -37343664306136653862613133316337366433363432373335376438613834323164326631393765 -61666230313831303837326661396364343066323934376435366334656638376365303933376436 -35623565363631326262633863613331383563356430346264393639653732303436613639353234 -62343566326139316237653066646161346434396464343938663061613834313438303561323730 -30326139343861326237653134323937386336306261616631613231636439376431636535366561 -61333536623032616163383637326161316261306161643064623261346531646633353962386232 -36313664326639363033316335336437346331313664636463653134626265386431663261623336 -33313532643361393339373965316433643735323236326331613133383262336638323665373132 -61333139313635623863636562363538396262623439633861356264653566346233336562643562 -63353034323065343563366538383831346233356335343561366262623230333335383366343335 -38333030373636303761643534626165346365613661626261643565656431386139346236626236 -31353938313630656664373632616163646662643432326533323362356364343039366165616632 -32326661653366346662313930396635633939653066363531356663633635333439643762373738 -39303432663335303533623538326163636265316231356666323630656532616263623365653939 -35353737623063663434316361316466633264623664386363613663656236303330633337313564 -30303463386163653033363564346437383432366332656536343532303034356633303363336462 -61396365356462306531366533356366376465363134383730383535373337643531346664313835 -64646561636561613139396261373439393265663633343233646562333365626335386130336139 -38633535666138613566653337323164653436306363323138306335343762333133626130626639 -33623262393037366239376235623332333536306134623163353064303465326564393735663166 -39343636643862346533613038396530363063643165653834356662656665316631353462303131 -33306234656634386236326338303964636464356137343337386436646336656663663834373730 -66663664623033366562373530663736643765643862363136333863633236616636663838376264 -64316264383234383231353036303434396239343536626263633763336535626363343139613766 -30336439386436643965396331633331666361616130313938303265663936383135396639306237 -30316131353438313666353866366331393037663136376130613731613935616265643737633732 -38653662616232343035363963323431313566613232663039363232346362373032343231633566 -39326635613732303363353539623134343838353666336237613038323064373762336536663036 -32383539613733656162353563623962663662303931333339623236363838346365333466656531 -64373630613731633137623633353239653837306337303565353962303462323961396563373463 -37633233366135623031386664393833386265613265626664306162616230353933626536306432 -35623031396166396131396339323864373637393838346465343262303335623064396333333061 -39663231346432623936376130353334643438366437653732326263336139616161326438656633 -32353835373564343637623335666465636439653334346631343239636230313030643962656433 -32633665633437393065336437383462393331356334363764376339636634386663313266323133 -38643134303431656133386237643163316132323163323934383131393234313537386433303530 -33356531636431616632363634616334343530363735393334333133336335326330313539666334 -32613637623431313566346535333434356164373666393335633032653065303235353266633664 -33323566373365666530393337636265633965376232653735343634306662323964653330653536 -64663365313530323935636238386339363135396337313562666532363662616534613637663161 -66653439333439383664343664306136306265613766663964663533343036323663323130633930 -62303465626139376465353031646435393263356164323832653537633561643836646164356561 -31653739393461316366663437656234643865396266646532623766623963326664643137653738 -39613939323737316334323765646161356138366631326662626666363135626136313633663365 -61313639316632663537326530613261366632376135643766333539313639656431643161353232 -65383235643365393230626532663935623834313832636530653639333937336136383933613135 -36613134373234383236333966636263633035356366376432313266356561323830623830663335 -30393064383961376561313865333533313133346265636334363962623361646265643936396434 -34396338333135656363353663313830616466393562326264336638373264646566336464396339 -35393934613336666263386365363666326465336661663030396134663063373863666437316638 -33333936373763363939336339313135666634383965373038383466303039356238383963643063 -66313063653562313238313034386166363738373532616237313961633735326532333966323934 -34633432343136613237356165356334396234666637653538646666313166663933366132353966 -66643633333136643562646263383039303038356163633030623534653565313066663837336533 -39666539396335613733323334613737623935313432313366666637363262376530646634303364 -38616531323635356561643764386136306539623934323338356137363633643235343562353733 -65363037336463376132363764663832636365306437393631346566373638316466393738633231 -33333764386236393734636635643962613464383031333166396434393739323035323164313166 -36323838343131303133346333656261396565343531343636313133353632323565313663616466 -37313166366461393939383363353533303533383961383061396561353965383036336432666236 -63623737666166343064623931656436333361653463666463346166393762303066313561353466 -65326666323431323262353837663264303037323938616138356365343933646133316135353231 -38333336626138376236353366376166393937666434653932666630323566626539656636653538 -30323136363066343035313264343165636235383930343665303566613837666439363736623630 -38636562353935616531303133666666653037313533333932306239396239643832383730653036 -65646433383465353933653038643537653339323930653732313435393433313137653733663633 -65643130663864323930663634396338633033633161386437316531346132326364646665363565 -65666633643239336662356631633461633737633735303930313436623464663463313834363763 -30666561343761336230313761373934323761303538323864653636623639623961666439326531 -64383538616331633437326630353164626163376532346639323634616461346638306531616234 -30343234643938613261656136383063363531636162313864386466326137623964303530636532 -36306439646530643132343930386163653836316332306663376139666633653837653030373239 -62636366356166373439663331633234306663613065393566653538333938356533623738663731 -30643736383266343662316131653562303035383939353830613966333433616162623632316461 -66306666663762353462623433356265366362653839663562643636383034623262396632393431 -31663536633532643965623934336631613931363866336663323061386537313665306666396637 -34316634643432353338303639623239396164363462643738376533356230663337396161626431 -63653438646132636130346464306231663738363262663663663932363834363166303664396362 -61316435336132336331623936306531386233663939643438373334643531653337613639643637 -65353066653932393965346333636438663732343230623131663065653363353431633630336632 -30396438653061663834336638323561313461613863613066393061613631356364313465326536 -35633533616563346564343335653831363965333061363436383434623261636464366432383530 -37613366316435313238326564663833303663633863356562336264346238323865393362353333 -32383834646663393835303233303139383437363734323732313232393033383132316532326230 -30376336306431633164643837623865383436373061313965343839353232623663343332616134 -66663533333766613139303365396166626664376261356633383737623431303464336534363934 -64383164383334333135613764663163313331353862323937393634376363323731643833663863 -34626164386134313466383330396437613631393464383536623265613033663032316663383930 -30373366666432373530613635636337653564343830316138666335653530356537306637333238 -31313762323637323833363632643137303063353262326162656665336236343461326532656633 -65656432356437623935393538303839313134363030333131623764666133626661356430663937 -64333161393533363136613130376233373766363730346638656466366239346239623233613866 -39376461613966343333633962303637373464336130626366376565376536386164353834363536 -30343036636432636235386239393161313962303230643633363965653830303066366565343337 -32376164613833656461383664346239356135346265656331366431666461323266613561666331 -62373463373139386237346331663534643731373161633661313230343030353562303133333036 -61656637313639313863343364333133366163383862306565333937336132323764333835396132 -65616635663932383031316636383562633863393863393666653038383965643563373365613334 -32393732356132323164653030613839616237663831396261333332643031316464353666386338 -33653864373966636562383163336565333531363838353365613735653534666263303164333132 -34313062653361363335346239313764623830376366643439333061326134343230666130313539 -36393735626138623737633932613765373231376132393537343337333963646532373138343833 -37353736336332353562396434373831333263633835353337633663323437663764663736363231 -37626230356238346263623738663063333933303362653332363931363139383637643064633733 -61313639303264353662386661316534346336396236323031613237363137323235646537633636 -35363131386663653066646563383630616566353338373133653433366661366430326261343061 -31646537373338373461356236356665616338353361376634333935383337633635323766303565 -62623261343065353831646331393434386362323963333930623130396533346264613363393635 -31366439666463663239366639313034353831326561393133313438633232366363643962346662 -30393738323162333432666164623334353763313431306130363238313437643561323733373737 -31343031373730303466613830636236313166303033393961376163363663386637336163616536 -36343939326537366464373035376133643262346536393066633734653131356461353636633366 -64653832313332656239663361353232383037613562353035326331666534356435623437393033 -38333463356530316461313831343937313033323934656564623535383433636536323064656631 -35356365646431643766326263336333333563653361346135343662636562306330336630316463 -32613166323462346161323635356132303431393163393933653964636634383966336565383334 -32373836323432363535333732343863396137313932336633333532666366373632373063643865 -37333638643534653139373431323738333362393261303031623830356435363862613638323131 -38636333313261623032663236666536313065646535626437613634316330653836343364363231 -65306330643633333838366166663239653131366230313261316238626166353637646439643439 -30633335336165383131303735353863393162393064323763376630366137353164643933323531 -31623031363233346532643037646463333363616435366434376533396331386438346562366366 -32656439383061666237656163376535313664656664623661616532383565343138636263353162 -36653433626139623134643833646236666263353730383165353039646563623661396361653233 -65353632626363623065386236653934313662633965393936613738323236633134373930333464 -30363239613931333339616663326565623635353733303939333038386232616633313639306466 -30333062316533643562313435363764323937666265376439633639363562333164663132633761 -39633339356232356633346130356137366362323335343231616430363931656136396232663262 -36663536316232623865393438636238623437653236663165616662373735663164396330343334 -39663462373335396239353663346263353237303335343863393866323434376636396334313064 -38616532323237623335376532363534636430376330383266393331643936626431666431656434 -39623233353135636266303938383631396563383134633632613036393837633266353866363265 -30323335376133626135383837653164306633386138356563656238323035613165323166643464 -63643232336230306661623162383433356138393563623963306239353561333636656136306662 -37303239326535656665393533646135383736643631383339623264333232613937636465303732 -35313930356134616465303635663830356434316236343164303136663830643864333363363961 -63353066373631333130303732663564346564613866636331666437333834666534393365643761 -39376430306561323033626464646439633638326538626262353439303061616236393432306330 -32353063346431363166616432633537326534653237636537633837643163313934353530373062 -37653733363634656438316138376366613162313164313935363437336136646133303963656537 -38323133363630316233653563363837306664386462393063656564303436616332643531363262 -34616637313466396434323662346634366137396361306532616364623533393135613838613563 -63323761643635313565626532316561383563383861333030323564373465336261653263623332 -32353263316635353766666339393531653535353239373139313064663830376466633437353664 -63323061303337353430346634313166643563313361383135326435653035343536626566646434 -65643730313664663035336432363664303663356635613134373562363637383666626662343564 -61393634326363666535316131306134353233623138643165396232663665356439393732663237 -31623134393937326662613434666230613630643937313736646536626461386331386563313364 -38646365633431613437663438333432393434323634626330373961663433333534326366396436 -66363238383434323365303564316366623637363936363536613332626137306562373537633838 -62616630366164326530663439373464396263373666376135643238343166363433303936386437 -63643231623433313430366636396335656264306234313232646363366566386233326438663430 -64636534333563363839653034323436656636386437346234386264633965303666383837336262 -39353336396137343034613966643834373034386161316263626364663866376534333632313438 -66323633613230616539313263393634313537366633633336333730633630356637373034343061 -37393135363636646361616263616636653837363963366266666237396665653130663263313135 -63633837363463616438393961303962643535623835356239643761633263353330333733356561 -35313332633135343464383662303264353837626664343731333934633230646637303235383030 -33623263656339616536633039643830303366343935666532616361303332316633333164353130 -30613161346666373934653933383965316534396162633433336361393066303163656365646339 -34343764666338356462633261393530356461386363643638393134363062393966386531633662 -30623537333664393539396436636438363032626131623438666366316136663462313538346134 -64393962353162323237393766303737356533656363363137636431333261656239353936353131 -37326361376538616135333131626432633638663539383335666336376466313065663165383938 -66613535343162316634343634623035356439313165396235636562666433343537306135323061 -64383538373930633433386530346366626536616137663264346630663833326533626163366630 -64306131366463363232303664326537366366333034343931393130376164646532666461386462 -32373436383332636362323531653534613362346638353739333530383837633665333466353033 -66646265376138636531306435336466386565383436343039373334613565636238393763653766 -65623263326565383661333837633933623135633363396464313034343439376236376536633934 -37383464353132663362663366373961353930356234613131336236376466616164313037346239 -63633333633836356461636566303263396161623337393737336637353837663663326231356436 -33303932313137653434636338363131393132316461633437396266343166656361636662666666 -38363562613762633863633537323334313832643530646131633338363434643833303166613335 -31653966623765323161646335646566636261653764616561363038393136373532353462636638 -37636331643765616231616538366238663136343031396131616663656237313238393237343565 -36393231636134643964383563636563333965363535363233346638646534626533633563653561 -30393635323737323064373437643963363331346235666435353533383662386466396237303431 -38373333303262303761323062343763653865623832313138353639356631626630663436333062 -36633261303637623565613030656234366337626662636535353336333939373631643033376263 -61313230663465653565663563303538383765393865303632613861353639323030636432613139 -32356165643433366466633639396336346234393137393133303331636332343235336430393562 -64383837386664333330373237396135383532363065353539353731303632323137613431353763 -65343136343138663765636465306530346434613365623733633930386236623233316230653066 -33386634326139643062343164623337643930373965653430396638313739386230646536363736 -36633562316635643236636431336662363262346335353937386335333763633565313331343936 -33393536336464366162393635356263363637323765343733393663306336306461326535366362 -65326231373864383163616162366264343761616339623039333265663262333335323333656665 -65323764623061666136646438376436626337303664363364633337323162323133363532303165 -30356565633838626533316535343531373564343832326432653331313532633963643363396538 -64336666313466313732636236623366303230383331396131646366666466393031363935393339 -39656465373962346538616639353139393762656439363032323431373436316536653934303234 -39393861386536343934303064393339313139363734386136653239356634303562663234653237 -61383464303432396639376630633538326437356434643765616166383863646332656630343664 -64336361316264656165623236393437336130363934306130633264363362313463373764383364 -35616462613637386231363366643465323436376634386265656138656539313137363466396466 -32303963393331363737313666396531366266383864633863353165663032303639633035663066 -64333034616464386362653536633932343861366337396239666136356530623339346539366537 -30336566316232316363386538653561383131636134336265373066636464613866333333386439 -64303130616436363236633439393836303137396436633163663636336432366165636338333766 -39336161623834656530623334363633373937636334383166333138626631373238323436646638 -36363130323564346639626130376366626164373033326430636162383438666166656533663334 -36373431356264353332653733373766383138353761633161306162633638363663376265386466 -66653537396233666131633730326338643834616233613436393130316331623365356531636135 -32316161376435353763343561396366353437663563303330393432396362316236393333326136 -38643133333135653130616635393230613433386238333932396335613365383161613766643239 -37336139336432646361616431366131346533663632373233613061313339363230393339313466 -39336437623336396235653765653933643662626465343038313034376132663739363831383736 -62386338346433376235646536646663343133303134336132326432303034383534383333313761 -62656366373962363234343564303737623636366535363735306230373063323035366633313031 -37373265613039316465383937343766656338346365323563656532306363363038326366336366 -36393637303764366334643239613131313136613035323664333934356461396639333638663733 -31636138616164663032306162343137373532653334386463383531383365393861613665396661 -62383661393433316462316663656536653638356331623037336161313634363931656361656463 -63396263373934346563333137363339613831653838623863316261656439313132333365373364 -62653962393831386631333236616166363964333339633534613434366438343263653863636663 -63616238623432353731653132346139303365653034353834383361323738303964623239303564 -30376531316439316532306334353566303333383761303733663365313763333234633737396564 -37633236623431656330376330333230633238303562376230663036353930633730346634303362 -61346439656137383762316239366362383338333937353934313363613933333664363537623665 -39663036313134653137313466373433393563343133636230383839633336656237333461656232 -63326537646562663533306433313438656335303632373566393233373534346131393632313064 -30616533313430396235376466633836646137323965623566346638323461343161376363316563 -65333162626433326233333461396630623332383932393562363130313632393537366532633233 -65666230623434633164353134316134353135306262376638636366306635643466396236343332 -61356237373930383231363862666533333638333437376164363838373939653165626538656566 -63356231306334383131323833633130646237376566303831343966393265613264666534353966 -37346165626531383830323232343661633139643530353731323832316637353165376631346461 -63396463306434386637636230313262316564656366663131643939616534313164313861353933 -31303333653631633934653635646437343930386134353865656461396530313232653638393832 -32356131366338393535623231343333646161336138326461643633343038356136343932616631 -37343933646136393262666166633462336232643634326636333738636666303239303962366432 -34356636623661633162626265393961303965353630393032323861626135646539396639646266 -34613831636435343138373139363035383262303739386333646531343530316432386262303761 -31373061613836653961393762366535663730376263633632363361613539336538346263313035 -63343331303466383362323338623832346238643735303436636534333836303739316162323865 -39323661633737616563633966303762333535323762373434373336326261636231633235363965 -34643532633431383834663530623039303137393966643564636464316435356662343961633064 -35313862323137353637346431633331663230656466356362353835393639333561343439613236 -64376162633334333130356562333831643337386331663838386266376332313465363164633133 -35316265623331393762633733653961646133653737383635663838626335326366356132353730 -63636333623061623563383265616363373030623537653230353762323263303761343339636335 -65626535366438383132666532623165373230653835373037303534333133376237633765383532 -34616264643561626562316233623565396437663364376331363933613762626430396534323733 -61633933383433366138336538663734343636326439646562356665356134303038653930663239 -39636266623161663133366132656635616639376363343239633461366331373965366433636163 -38326339313630653536336166623664316331633536326139623461356633386630333039303061 -32633865663063653830383936313534616538343631653663363430376664646661373730376537 -65353331306230663238636334333330333933636632316564656138373161316532323635333234 -32356561613066303038653534386637363135626562353135663230313766626463353565643631 -36623765643139323831353565306432306566663164316166656433353634316232393834643662 -35326631313666336236323136386237613466636439316563393036613531623938353132393430 -37383339636166653461303739646332623164383934663164343038353565376433306334363763 -61393036343532383438383237643930363733656230666435323731663065363239353466666638 -38326536316233386236363334306566366232323139303466343635336637303635633037626136 -66623037313631353936383834396564343462316265623864613733363930366430366235376238 -38626232346363316435633034356561313930386665333765393965643634316133613932636663 -37393361303539313333313366643439633061633136373631336266326366353861643062366230 -32343061386336653161616366303665346535613739616166653439316234616161353036306535 -61613831376537346137373161663864323831653763306466303966653862313635363362626236 -66373964623836353532383338376435363765346666353831353663383463333935333664383834 -38363731356361326564613738643366383830313037306563303538343934613265393963376163 -33323762373538343563303361396330386466666133623535393362373331636335363765336530 -65653331663766363566623030656530656135343738633764376264373430313565323763323766 -64636665333736316161343966343934353237613134643561316636316630643064363635626132 -39643032646564633666343761313462346135363366353765323436343734633066663030616636 -31646364333935336633373864653763386138323238663738383134313562353132353833633932 -62303263666430363138313939663666613731336531646462323232386562366533656165623832 -34363836393066326138373734346434383533613966643362633966653334653363323335643838 -39623038653636613164653762376532303863373038346437363765393335333731383431646665 -63333165376361343932376630306365346237656366303536303061383864633133373763353437 -65643962396430613761616336656337616465616635306566666665393964313736623034353933 -64383238613836333261656539383232633765333464343763386636376635303630346634613436 -31666536386633636439613263313533613061383362323533656262353534333934656637333463 -34386438373033363732613334633637333333306364303436626633393935356233646338626630 -62333236383662633762333932336637656261376431353839326563363664386264653931633434 -34666235323636333262393761623864326630613832653637323338373838303365353938633766 -65383033643535303961613738353538316530373162363331383639656561383430666334343932 -30323564643234313035656536626338303365373038303263626238343065336338333365363334 -65323831383339616564333132623862306238306137336435366431376166306437326232613632 -65333937666136623565323432353335303434323731663337396364386165656233323335343866 -35663730323065323931306639666537396638333533363430326432323837323363643266303239 -63373532336263353130346565316162383332646630663864613763633038643439363961626531 -34616430343661613638343639326631623430313639663139633333383336353462663035313632 -64393530633133633835643331346461303732343264646232663265303531643864366565636634 -30316365356263343232373636383166643138373565313264353633356461346237313837323138 -31346539313332393337353465323736396633343162323535316634366165366263643230313735 -65383532303733383665643438643230643365616139633861613637366235656331653837383964 -30653961393464323661363231646639326662353735383438346633396535633230663161363538 -33363065366463393034643636666533653962313930366265663338643434366335353762663364 -30323237343732306463613634626537643931306665333435616233393734383031626364383037 -39323536303864613364636163333234343363663134306139316162373261353334306661333161 -34393337316436396534303131306630306637623539303435346363643731323637626532313634 -39343363303666616262636663313735326238323039343736333135333834333030313866373166 -32376361393764373533323638303161316133623732326430663364396163653033323439356366 -63363032316665386261316136373534383230383465666166323163353336326531323465336463 -64373838356662323338393664656532626431666334663631613037626433383239316638346364 -64303564343234633734363162373263363232346662613137653735353435333636353463363832 -38373363356533343639366364313762323365336132636336376337313632343534323537343463 -64303435623936343932333064353738386338323965613562316265653237323264343463316564 -35336631306461333031336332376130616438343132396639383762656565656163663566386333 -36346664663830666463396636633834373665346161643063663430373134663532633564353962 -63633433663430323738326137396135386366356439643865373262356466306663353532396433 -66663966333135303463343163653065623634336532343261396533396139656265636162303164 -39643765356562383665653837336632303135363633343031343730653133663164396463663861 -36316266353338303134396133356432353435373130313831633135636631313432346438336366 -37663939616535373330343764623536386133393861613538383133356362626534616435613634 -30663932616337653831653339376436333962613635306165313365643431383339383038343135 -35353735616239653466343735643336613031376130366464356361366431626339623638323365 -36356161613037663638393863393963383235643531346532633434356635663863656132383866 -33356366623234333230353264376236616630376437393535366233316237613136346633323436 -63333536336539353962663839646163383362616638346261613234343462333166643832323339 -31303339613430393266643365313836316432623634653634326534363863616630366632633336 -38373339643466666662383861323263343663636230333536376133336139316635626435653933 -61363932653230336164333332346461373735393430323861313630313233393432386532396536 -64383733356266653835643439613334303435333762653333323136373533326162383130666531 -37643139376235326632343737373364333935326536393339636231646533626331333530333738 -31363132316439303964323239663865303734306161356637393264353965653663353763653961 -37323063623562633463626664353235396665306631343234636230363865643635633038656134 -38633139313430373334653435636631306362343230383761636434393862353839616466303262 -39373536323436353566306130643162623166616438383439386461343165303436383535336332 -37323130336362303334626634386635343135653038646330326133343266663533383231363139 -30646462353033666461386232356239633833306431623239666637353430323862616133636366 -64616363316639613065663238663163623735316239623536626532346466653131376462323932 -38386666313565306438646565336539666161663163616538663630313435313262356233313233 -39353333376636363835666638373030653630316566373264333366636163663531386166393262 -31336433613465393935663338323436663536376138363161653164306538353836303866616166 -31643364326532333765363235646436343230363533303831373137303662363862656463326265 -65333838393630643161613036306339623566303830343264366265373133356132313935613064 -38323963393038663435306566326236376134643033663139373036373030353837313966613865 -32663637366434643131656639636333656363643638646531616137333861336631656662343635 -63386533663662343462363762653332643435353332396265366234376466653331616139383539 -35383735666137613230333638376133636532356264353365376465313139306336613334623365 -38623235623862356130653839356563646537346633633636393936646233343164663036613934 -33633138306562373364353163316662326231366463363162646236313835643961396163366431 -63386566333930336136623765616661373061383664396432656464666436363235383364346563 -38643462313537613163653962333535383535363266396563323164333465646466373830356362 -61303439656230383461613035646562336662366366343763666163386261306337613166363462 -66663436366633356531313331616438663435303765373533383939666264303532336362613335 -65333535626130643962353966636538396534636662346362303538353438616365343239346137 -64353934393661353130366635646565653265323064303930353066616165656333636530613538 -66393539316432636264336332363632373333373964393062326438373430393633633762303031 -39386135633464376265663765643865396132343464356635656566303232346332373434613662 -61353437376335333265363466623665373761656461613166316334623266643836393263613265 -63313830373238653065656538613436303639373336363636663364373965323938323436343166 -30363935383733303166306130303230393566313138343434633038396464333034326332343365 -32316166306634393737343630363435356565383036353531343962653037363061363237616466 -39386464363065353661323438623764633937353963303731323836633365623938316461323563 -36333263366365346134313732376166653164393565366337333733613132346631316338646331 -64663937633731303335653838353531646238663162363635346433353562373762626638643634 -33376465633833653066623332623866636338646233636432356532303830633763643464323331 -31333333313065326131343063326161313363326537343030613766616164316666653964666536 -37333535313732376539636266333466313438303961303431383562626237393431396561376332 -30626530626662623166326630393332633434343064613165353462313863633137396339323465 -35366331613361323966646361393139326532393734386131653066323364346331303362326563 -64326261356235346164356532333766316134393636333562643164393034346438386433326436 -30353438353533343630626266316464326539373437313130303161343038373336343334666231 -31393137656139326564386631326562613035316261383265653236373730386234346564303661 -65386333383330363862346264363830623839333039653231663634666430653462343963616238 -32323732343631353036353963303638623661353965636464313866363963323166633131616130 -38313966376463663036633538643839316632336235343837393138383665346534623837393134 -34633361306637366432346262323431646666626139626230356431643164313562306165656563 -64313438313634376334663862306339326665353865343261393565383162396362663234346332 -61656537323662666539633438313666643862316539336663376361646130623932353235396235 -33356164636665306134373065303231376466393331653438663838316136613536323134663663 -31646139616530313437346334626635616134633061333263396430636337393065343935303965 -31353832303639383961373261373038333737356664626261333031353966373436643834373333 -39363735353662386366306239353431636335393162663736376633626430633136656462663638 -35356134323861373063333236303864626439653835633962313439363762336132353336343364 -39303037363138393534643338393534303539346166323238643536393464643732323834393539 -32376438393239633832353330646330626236303830336532313838326238333832633666623062 -32303531353365323864663461656466356630353434393162336165386363663537623561643933 -34393332393661633339366234653061636361343533633063333561343530346462323237343531 -31623433643064623932316236643433663763626130366630376433633431346433366539663935 -33643136353430363638356361363331623034613031363836663765633336643630306565343035 -65653936636366623731303535646133363066393632303766353666333066643032343066633064 -35666433333631353661653665373236333163643630386638393631653031613034653337386165 -30663837636532663939356138653735326637643532643436333165376336313735373162353263 -66303366666539343031396533623136633662306432386565393638633434653038656137313337 -33313862313131316361343661613463653432326432366132376661653366363634386464633665 -35393663353764303465643430366638363632396461663533376338653732326433353665633132 -38653032633234346139313031653534663939616635333835376662386439636463356432323633 -31613065663564636436376132663165396266613035363333303563393637333161643638303465 -30613632623538613337613161376235333432643732326636303738393330363135336138633965 -33336433356234343362366630383938613534333230653864333334633439646136616632626566 -39363031356664346263343830393633323834373835613134353831633533396338373238633266 -66353031316262356434383737393839323535373435376538643263383861666162373462613433 -33303831373433373932353333313134356136623266326438343565646365613937363563356663 -66333233353261376236373331313136353935346133336163616131613065663932363966316336 -32323665616430343232323965316534303330363863333138383734663363363931356536646561 -34623166393362386633356633383238663162333334363565636335313033313031383338333931 -34396163353930306666303534633436643031613137316135393930373465613366393064373363 -31303032353130623732346666313235376531343730626664613336336239633737626364663262 -39663364626334633162386136663266613463633437303034353966393565636366373862633136 -61323066336630626437393361376239663364393734353339303736633665623366616265646664 -66616438663736306164376437313136396266646163356237343837353463336230383061633836 -62356461393431343166313430633633363861633237383866373730333561396634303732653833 -31653961616531636562653837663232613238613566386636356336663138346163623836343334 -31336133626263336439666632613038356331313937316235323432333135376632653732663066 -38303339316337323464353231323230623436326264383464383630313065633032373031666430 -66366164623666316662623833343239363265396166613264316332613638313962333436653162 -63353530333132323061666139666137653564663535666530346331636635656635353662366264 -32333637363035356166656237656461666563646239353439626437363765396363623161663933 -61383634393965646331306530633366356233336236376437326636313936333230643636376466 -39353030303136303462386335623965363435323435646533373038353430363366313738303830 -66613763303037353830363638653135633737663563643038646337346433333939303666323538 -36353337623338326132376462613564376133626461356536333235366631663739646335333266 -35333434386439333861333135623464633135386235393633353432333337623036643033613063 -34323333353638306530386136303237313663613138306266386630663037306438393834656637 -64613437646636306230313738346463616532376131623764643339616137626336383139613339 -38653862306163323733646435313531333230353763643336353138643333326463306335386432 -66616266306664646337633866633931666661663063366265646561366135333438326364666535 -38643263356532653237383764363735326633316538373832303139306462383031643433616237 -63353566336238333434646364613537346237623338373564643064333262303437396666336331 -36363137303835393536613139613534613665643863376439306465353130323130313937343232 -38663462663130656164363536396463633466653133613238393532616462343135383934643063 -36626662303166626666343662376336636236663064373131333966623763316162386539353463 -31343835336330343235363033333731353866323338623234323135666266366365613236353938 -33343461656530636361393261633765643437626339336636353062386338663965613266316166 -66326331643334323564313535386361316330303038303235653438303936353731316435656661 -37333036323362653232353237353236313664343561386132376431326433646138333364396561 -37633731663336653964323230666535653164636338626432383335386235383334663563666162 -66613130356466626164613337366135343861343461636339353865383638366261373734643831 -38353063363639326134343533373234313631316163636337353839386235333666643938653236 -30353464303763373434393166343036333536626138323437663632303635376233353038316230 -32366666383537623935326561663634333237343234386565666636303961663136653031383265 -32306235636539313339666162363337633166633731656334616239336362636463323030633334 -61323139313963363933653533366538313762353338383832613564373532633261323263363330 -64363031356161396562626535663462343130376436666266316563346333643436663366326462 -64373465353437356238383266333465356332343562306334646666336437613534316639656234 -32373765653535343933613834386661656130656132653864326165383865393065353930376330 -37333435353963346661616134383236353835326230663335626234313439306432323035663039 -34643633663232333531383561633437623764383435363634353430316335653635373462613163 -30333266386534353462656364643562643236356136393762396335663733383532663061383837 -63613834643162356261316261666664366632356562396533653537376532633635663064303163 -38313139663638616634356638356164623432646632323762306431353134623066386563353531 -30633538323064383139373537656165396162633334386337646432653061646433663564323266 -66643163613031316537663831333632373435396334636632636434303761656363653263356666 -31336663316434666334303761613934326236323739643064643639363439343163643761303536 -63633565363864343839373338323566306437383033303165383565643035313764613663643836 -66393232383031353065616130626333636130653831326438326661653263626636643136383861 -30306262333337663766313439666161336335393932623337343531616131303066323333656439 -32396538373134313338623438626334306266393266343831383739373763313535633639663466 -63323965313532333863366334633962326564323839343836613638613234663337636434643065 -66323865626630633165333335616630613965346330643166356262396564633932383062303233 -63376632343764363238363735363763396235356630363962363130343538626264363061303763 -32666562626331343331386137636462613864356339353562313135336535303438306261376438 -33643361663964393138646638376330626136303335313135633765613762373739623730626166 -34396531616664323330376239623239356334316632663536326664636433346464363235316564 -61646262636166336632633563383839303335646565346331313464393763626130346666326634 -62643737626165653338303437666663393435343137383232616436666433313437323934613134 -65393864346636303065653234633332373334623935383164636561656161663737616664386133 -35313162333734363138626465343864333566333135636166356166303261303038616339396138 -34626533373161653862303762393662663434613731396235306630326365633631626536303739 -32646336336637303664666135343563323032393935633765326533313666616535313935613336 -61353939363037633339396632393261643837326637633934343135343061633161303138373736 -30333662626634363835653934633632616138376133353031363565613532626639323064386235 -32373937356661323435643231386362623530336530386665656563353139633333333763333964 -63333130303465313064396461313265656337363536613065393232356138653666353338623465 -30333636656438633936353630343436313531313037366665353334323766303337313637373863 -35316332333234626566313261613037343764393837373562376161363338313464343033376138 -64376164353936653165633664386233333865393266613464353534323164316430366565333666 -62316363386332303732653865636166356631663436613335316130393534353265313666386162 -63633065386461613830636137313238653965386139353633623132646336326166323031393036 -36303939396534343866663230393734633533643766323934353436613365616234653165363666 -38636138636639663964396139633932633662663035373664636134336536323934353761313931 -36373636316438343362663939663436393162313731303064316133313633346431333734653635 -66336261633233653866653236313864336365306539643164373839653538346232393362363262 -37396130653862666335376633336539343366313933623637363034613261313932323538393235 -30336562373435323735343863303730633664356261356265363934326335336631303865613032 -64353263666631343762363033333663353230646466353261353738623035343530386138333238 -61396331646639393834643261343938666335393334333037336163336564323730636164383863 -65386330313062353266386339346331663532376432366362383263613031303632393837343261 -63393833643834393136653165613937383561383564326235383162346336393165616363343334 -31626264303963373863376163623235343832633532313238643932653734646634646565643961 -33646566363366343864636366616662303935386234313464313465343139633265376134373865 -64613463633737393931646632393130353336396232643230323638643232396634623035313839 -65343565303633626435306633303731353166633639313166303534393339363135323530373432 -35333635343233656562326233633039633862386130363930346236323133343235323433633137 -34646439663661613861356335643562373161643135613863623866306230386435323866303331 -35356635343532633266616633373835376363366666326437623139313464343630376237353166 -35313561316638663166326663343630396535373633363934316535613863373539663364313765 -66363230636332313139393938363836353237323737363432393861643233633833353232623035 -34313666326338343735333638366230333639306465396134313766366434303231363039653837 -32623365393835356139626634376336383933323130343064623932343235613531333364356263 -61346534316236626239633665613561353830376466636438636131346262376664646134636538 -31383066323234646162613832303334353763323133333836303336333035393439616638346433 -33643539346339326230653064373033643433303466333534363161333264326437373135393335 -38363530336134366437323331383961666231353539663361303234376532363366353461626232 -62393165666636306565393462663266626365373266333864333533636535356465663164393366 -61646135356162633733653862343732396561343365323366326638636532386364333063623937 -65363661386139663833336361623033323033636130353566613166636163656537366634353462 -32653466623237316436303262656264626430323566616362623965633362393835343435396262 -61633235333165336263623166626238343262386334623764303339363830383963386166626464 -63343763316163666362323531386465666337363335363933333062616439326665616331386430 -63313330323264366566393037306136386132633061663562623561613233616232343433343735 -32383266646137326632613364356230643262313835333862316366353838386238343835353334 -35386130386366346562393137396232653335363230373131653864366631653166663462323764 -32363430616561646634636465346631363831356165353132343133333862643939666335326638 -33373466666361623564663438303530383532363134626636653636386435316533616631356233 -64613365316261326432366631333534313931623538363333313737373831313265653335356333 -30333630393538323336386634666539336632393133323336323966383866626165656163643237 -30386339666437373465353034353932333433333938633761363730383035366538376361383663 -31663937643538393632623134643362383831626330303635623932653135383562363435306663 -35643630313539363832663065326538393230333036373433313764333263303539376330656235 -36666536613739613138626231633465363632306234626332666132383636393230393732666664 -65363438643164386436303035396166373363653163623366303564613737643165326664666536 -34366363366338303265656639646231336133616437666337653432393865613637623163616665 -36333436303139653563313138623763656333623230623433656465333862363863383664373463 -37626361363665653562316434386238356431626539653362663065363138626333393361623034 -33353434323434313536313230663962636238306631613932626139313233636638303332356337 -65643534353161303462366335393062356332363564313237633263363963633636336137643932 -31383738383439303065396135386463323236376238383831333266313331336461306462343766 -33333034636135626663643934353562363532343966383939356661666166366265396463653136 -34333563643863616264666531376565613339643562333366643537333735363731636535613234 -32383431623166643635643334663132643265643333363930363939643166313639643463383661 -65666137613039613134356433333562363565386339633437366261386662633636386561303964 -37323366623732313731653631333038303336343632653039393939343361343066393132313562 -64643630343362633437623365623062646634396564353964386439316435323037636331386138 -35363232356332643436666638383266303932636564613666366565616336376564366466633062 -62656434633333636534353835336637623664356539633331316462343136626236643636656430 -31663566373739326133393537333134616663653161346434653133336661343139633962343566 -34663039633561623463643238393161633134616439383331303733356531666431666137326130 -61643261336339363633313366336662666337643032643365396439646133343436646639643335 -64366166626232376336636632346662393136313862666137353161393931356132626632383732 -31323263353737366430393330613535383830366131376662383537353735323439666331636138 -34316238326439303865393639383330353231393231363639626138643734373639333432646335 -31353138323664633363383235313134356562653036346330326465646463363633353635653763 -62613565333131623234366635316263353233306135633337316332616633633338316434623332 -31616639313633663363663130306630613238303334363438313039383161616631353165393533 -66366632316361343030616263616437333532303132613034656332303038636438663663353538 -35383139333862396236336435363637623331313739643865336164386631663439626538356362 -34396636386137643536616630343731303733353666643534323865656130653861633537366565 -35373030306232626236393131306335366466653230363638326163636366323039313966643637 -39386534633537323136653862346431643534333635333661623764353235636630646538653762 -31316261363532313433376333373731356233663036336536303961386464333036663738656432 -65356334646162646332663665393732613564626532356437386461653263353961313738323237 -34653562633035646639636230643937313138636639336134386263356461663933396638363531 -61656262316664313961373630373031383130376662353765373539343138666439363362376162 -34353333626439313632396439653031623438323935333032383132643338396538643937613134 -32613163366434346463656335623531356637333766303435643165303931636365646431653664 -31396231376165333864363932633662646232383462363834613063303135653132383564616236 -64346262343339393664363733366362633538326237653832376630306336313061643335636138 -66366433653265616330636165306665386561313661363533383136643763313931343833353365 -61353064376133333537383431326366636237326232396332663837366366326130306663656634 -36396238313137613237333664343330383664653639316436643264616136656261353163666630 -34343064316363303034346234306535616533333637393963326233333030646366666638613334 -64376635373561343034636130393664626132656462613862323433663737343039613364303533 -30643063336333663064633962663033623638356362333830356637343739303764343231353735 -33356432616337643563323963316132373566633939613639393061323832656164613264623966 -62376234396430363164643630313439336438363161313530346265306635363663643238356364 -62323663346562373630363365633437636662613631313132316165386166393933623433316435 -62346565303366303732643430636163626161383466363334333934373737343831356639643935 -65663739663638653638343366613763323932303130316363303161643064623266663864333836 -65383234633861373932616632313166656365666466383465633966346361366231383532376166 -36393231373566626233316161646231356232643731373066626537383966616134373838616537 -62353230653561366539653134393438656264636464333836393934383765386534653132326435 -33646665663762633830386631343030623234623538306530393338353739373032333234613363 -30313736313063393237663038363032323135653334396632303763323038316663373334306531 -61316434323138663163623461313662626366356535643664326330623836633233383030373764 -37386266343566623030643539363534646533613563656331353161343236326561353033376564 -39393765313239366337316663323833373935353635646236613162393566363839376633326134 -36646139616130316363373532326364353265656432613737316234353933666666306536616134 -36306338373336313733643035376436343763386266383937386163666234306631363939373332 -39643362313937633335663461626631383235643866323961303964656536303865363864666237 -38363833613039643763303864613639333762643938353037623337396531303162623365323230 -34636563396237386634663461366161386139633232666430633764343232623438303562303136 -38376561636365643364373737323539376139313161663066333866363035633935303830323831 -62353464323036306331323734396439303064643435373262333233313764636666363333326533 -38386331383434613736346439666438393134393532306530643162376535376637646338333131 -34303563353562373830303862653534333363626235366333363031626331363564346465363233 -34363039383838303531636164633834663263343366353166633034323363383230336637313866 -38353432303262333532336662643734373835323566626531386538383831626131373266366132 -35303063616135623738663135343738646361666365326365333335363937636536663561353930 -33346231303537363136316535366339353738643634313834653864303064626235356531613464 -35616564623036613635633635356231363835633239353862663263313364383335663835626466 -62613530636566346464633963323038656538643964666434663766633337666163353265386138 -37373932666637656666353936356533306632616635396438633066363435356539333332353031 -36636534313265353132363236383033333764653461633736333137363937643537383661613034 -38613835316465393430313465623138346366633765323430333830376538633431353439646439 -37306430616662333965643462363863356463656231643733386131353337316562306232616134 -30633939646535313465303764383738386236386234376465653334643635653330623833306538 -61646338336131303761383466363866373531346531643131653762303136363366653865373835 -61666333616566376264343265356132613534313537333666393639663061633835373336666261 -63633061373461636239333266643465626530303734333833363262623433646661666438326533 -32343330396335646465363430663866646338386539373832626432626332353965343631343838 -38343165386537633835393632333964376136333231376166386666373436616664663633326461 -66303266303939653032653330366330353263336265613738653936353830623432396665326163 -33323837333665326163326436613266313034393662333636323534613761653764393563306233 -64623762386264363134663330353730616131333433376534326432393662666631623263636634 -37653263653534366164616365393161393235613833386665636138656365326634373761636531 -37633866386565346263376564623234643439643663306633646361393531363730636461653336 -66306461386531333538393463653462636263313636663138666332353634373966336432633231 -38666234616165633464383234313038393432626639663764323038646630643438323664663237 -34323930313465333934346366663530363261653931663033386364323563353936323931343539 -35663966306435386462653864613031626630356531316132623034663039316664356463646232 -34356231356537353036653964363538396631346631363230656233336339633634626262653733 -30393061373162623838653363366134353736383061316536396139343066656365373132613361 -61376161656263623834323133306230663864356161643666373435623139346265386438393335 -39623064393463653064356239363738356130303966333534353033613065396265646331356130 -39656130383531363334326666373735643238303937623065303539636436303465653134633332 -35366562323439343865326161616336643037313632383337393664333266636464376566316239 -33396134343136326466393564343738333330316534333066626564666366646264396133363362 -30343166633539366334316333666466363438343137373530303137316334323731333464333038 -31653239386336336331383738363038326361356333393138646539383234356562333339393837 -33313537303061633231363333333230373161313864623335393739363035653432626533643937 -35393665666562336236346239336432303662336532326237336339363364643536346462643264 -38316337626639623538663266323539373564626434313231636364353465316532306533353034 -63326531316362386261306532633230313233666566356139306231633432313236393565633934 -35336332323936633231333232623564363738346533323232396566386535636666396637323662 -63393236326335386530323634303731363164363036646436326637633762643062383134366364 -34353231386264363031643633616534336339646133656337316664663561363962326637393736 -63663931383039663930313564376561303665313535396531643733356465646136633237643035 -39633764626432653838633938653231653664353162353965333461386130306630343163343331 -62396638326336316132326164636564333964343466353766333037386530326335356462323235 -35343934366365396339663937383733313030326362636262663637333630393662306132363434 -32303436373435643238346261346639613132353666616537636533656664623638303261616236 -33306532343465663564306361656433633933333038373032346462313061343761393366303638 -38396532373831323561336530653836396463643732393433376662363330663830306331663432 -63396564643366323032396261303937663462306266313963623862326231393434636339313261 -30333663313533346330343561643332363439623732393039313563323030316530643664656662 -64316635396331666564643062323464353733623336383332306262353066373234636536623138 -66393963363430666437333066303037313462643834313637343237323732346261306561353562 -62646266316261663438376437386361373866353537356365323030346336616265643261616339 -65323763373331373231633337626565613931393161663764616332616139313531646238396565 -36353565356239623438663136656535316431616364646165373530306637303535396164373238 -36383737333631666262303739363935333238306166343662383430353234636534613530363266 -32313436303338383162663065643936663338613063313163393736666666303661363433653864 -62633433646362656439393963393561373264346131656131356434616461373631333936666265 -31353065386431346136633264623431363261346535396136343761303863663937646138646238 -31396137376239343431343032613939623239326364343166643139353763393731623333396234 -66353233663735306563313532613433646462333434303965353462396636393437356137313965 -35663664303563333234623537643934616134363661313663396135306265663133333538646631 -65643164333938616139626262326661333331656538393166633232333631306239376236316265 -34643062313937313139663334316635356535626432636135323664333539313664383262396437 -37396263633736306438373962366235656335626439363666393333646364663030386266303933 -64666431653834316566663964373165373136613033366166613363626230353139376530656336 -65333661323836363765623962663364666437316632653762643562376561356233643961343839 -37343030386536393764316266333161383333393536626237626639616236373438373037343238 -35333837356266393337643962646630633862393332343832383131393438633038643664633039 -61646333343765643337363462326561343864663430616332306331393536313638393631376536 -65643165333039623036383463386532333262336234633936653864313431366232666236336365 -39373631613335653237633430346435393636623632643038363930303465653639613539616636 -66616366626564626435353634306163313037626538363632633465363336363639303235663633 -33646538323165643461363038616561393834636534646634303733366566363930353161663231 -37656432633834363766613139323834396666383233336135326333333933333935376632366364 -35393363643938393036383765626662363430383234333538373561323663316435376330613537 -31633261313838633339303566653563346666373533306465323764353562666437313762626333 -64613435666664663938613532336632313333663664656561623735366433643131313738316261 -62626262626364633738303563353765303036633666373631333465333930393162363464333165 -65613132386638623338366537343736346233316133313835386561616366356233383465383330 -66393766346166653533616663623236343166303938366361313133663932366338613132333631 -63376534656561656434303634653036336138343833626661323236633438643462376563316135 -37393561356233633930656535363065393631646265306634373361613136656634313831663665 -39363735336338363662303037646662336532373632313133333165393937643436373537623164 -66646131626364306362623162366535363732316431323961373737353364313863383734653934 -34393938353530643136633438663734323764383161656138373036363135363137316164636537 -31396461613136313533646261316362303463663261393138343230626535646261353535366463 -61316531333131643636616634356139653762303337343735653838656239323439323261653937 -65323835643238363062303265316134363365323330356231343537323765356332633263656332 -62323939303365383430353038313631663134313863653765336631653962663532323736353339 -65363234326137326438656135366333306636646361353131363764383965623836313932623537 -36656235666231313637656164343832343331313337613138613332653263366237663761623536 -66303665383362316463626635363861393130383562613031326532376139653032626433376332 -62326533613030313030323535376339383466623735363335623863393863323065306333336561 -66356565366232666335303035323630313036646264636134343532366437353439343636383162 -63643663376665366566366534636435663163343830373730363162646238313738653532343866 -39313836396466393066383533336230613366653734663933306338633437626236326264656234 -61613763336335346538636638343464343638373338613937613732363734663435663238643430 -63323739316565336632643566383830346465373262666631356133373830343566646130306439 -33383533663161303137376663303335366439396432613333656331636636313665666530303533 -38373138663661346132383538356236323637643863373135343135663462323836326631323465 -64623066373237363732366332626563633335643330343535636430656166363861613862363161 -64336661643864636639376138653932636434323334656330353865653965396432623865363134 -37633662303634336232653936303238303539393932646534663437646238356234353565343430 -63373666626131643461323033383030353866333261346363326162366339643438646138313130 -63363262353130333635653437623535666238363534386530323464343634646630356663616635 -34663035303239396233336535336535376263343133383834336166363036646562383236353335 -34623937306636633431643262613331326231393965316333313338376438663431363937663036 -37373762356331313464613437613363383864303730303739666437636434323963356432646435 -38633731363839333431333537373135623037353263363630383864616437383035343062373164 -36346432346338646365303635616534363938643763653033316639643636363966626536336332 -33323331636562376564383739326433336634346466373238386663316634353735383530383535 -64316133663935623135616163633464643764366639386661633663366361663665313533396364 -35343561663963646262326162343131313633373333643361316565373738383462323066313233 -33653564346630633535353138666162636436303332633032356435386435303234636562356363 -65666537613766356264663235663237346164323461333439656237396136373538396631636431 -63303466313962306632363464313564383565363764326238663364373665643631333239376465 -61376262643637316438626137343132343866353539393164393632633831333831336631366264 -33613734303534346263666631386235653930643631656532363063353665633631353138613437 -32306161343433613432396134646562353063383334326162623832333834376538326264613933 -32303835326165343064636635643530353738643334343831386265643634366366323262363164 -36643637353961383964313732396662663563383764646563346539393535353431356437366361 -38326536646361363931646633623736346666323163326165326665383433363832373535353732 -34376366373033303133643636393733336437386462313163393264333135343230623664643533 -61626131303566373535303238396431346235383032656435386166366365653439653766313265 -35343665366639663338353634333934616134646466353139393533326431363735643531316464 -34323661306666643330346137656635626133646265343163613639643661313365363738393737 -36636638623561633031313833313134626334653865643334623038383334303930613163356365 -35346262396164356330633066386663393731646566643730333632313964356239653163633238 -38303936336634666336633339633331666663383530393161383331616465623661383265333239 -61336430336132346264616233356636363731336339643932333438313832363365633332636132 -64366361373234326433326435626132653134663239653338376564376164666237643865616265 -37376138363230373134636564653931643030643537313533666435393037393136376433343361 -39643336646331323736356631316230333365323462656633626538653437663436303731356263 -36333762333664303332366232386332343435363065343033383239386137636333383736653030 -34663464363562663439333235376539393435636162356438623837313533393362373562306333 -34363562353430653663666433656237383765663461316364633062316362393565333461396163 -34626336636136303863356362396337346431366332373763346361326632653532613735393934 -38383235346135616337396535353238303365326663373763643963396631353533356461333436 -32623034383039353564653665313833383139343461613163643961373230646132626438636263 -37303935636538333265326163356337616666363862643232393532313634663137653630336465 -38316666663534343037653365326132333865386436633334343738393663613030646334386264 -39343739346535633065366165353835376433353533623533653434303332656138383432303664 -64303739306430376462643037313063623763323438636434366665383961306137313435343833 -39393536336430646265386537383938656533633930343535393530626135356262643730373661 -39353962643832303931613963306163316539303666356133313861353362393563643134623833 -33656336646638343838396139333364313062356537336339616564333533656465643039353262 -65616165373639613533323566383739326565313032336663303937373033373938636263376162 -66306239343039333436666563316263613266383439663939336539356635303531303933636436 -37636464656433333731343339336231313265336165643731623835616637616461363630326333 -35643661633863633433656432353136363161336163653835626330363636386135323735376565 -38303962386431646332653138393435643938663536653233333731343463343330353233636263 -37323133343064356236313963383731626537323434343738373137306662323265316165333030 -66373266333665653635653831613237306334396263663262643331383330353936306238373065 -65643833623263303762633034333630623630393632393435316532313361653333353735623630 -38333935303436616161636565343966666431643136313765613636353366393633653635356566 -39663134386638636161336435656334353731636263303938623937393737303531343133346232 -30313034336661333766383162303362653131303938613262393366376232626631653030313036 -30336232643332666431663864663335653835386666386337336132306131343732666136656130 -64313835393964303065353637313530393938383836323231633539316431303964343439653165 -38366433653063666630306666616633386265323464346635646234663462353063333265633339 -30653065633566336566343630316537323738626161663565383363666438343333616661306138 -39613538313264643262373733636566633135633534646437336431313333646134653533396434 -62393261393962316236366534373331396362326237633465343363333564356662386235373835 -61356637383631343436623830643466383563366337653764613930663531343937373435653132 -61653662366462343366626338383634313934633335363634636232313932616432653064303363 -34393738656635663962336332353435396237616462313639633432363161643036666338313235 -33356538336439626532636438366461643365633765353364343233346166373039336239333930 -32396334366661613562336664613263373031393866333630636137643862313963616336616364 -36666630303731386463636237323561646231363732326239393864353634646337343132323831 -63636233383561373564346132323038303133373161303338636163316535646337326164633931 -62323366376664646639666261326330613031633533393637363139613765656437376439353162 -38343163636263386331623761383530363432346332386537303634353738373338373630313061 -36613835623638323234343561656232366264396136383338386330643234303037316462646134 -38323931376331333264656635663033313632613666663462353636323336323038353565343839 -38333738643266356136636266313737646561663164323464333732663735633631636461326162 -64396163303334336332316133363832653363623864633330373437343638303738306534376233 -38613461666566633035666262623936623361653164336238306236323662363461336663393232 -36633162623937633037343532616337396333336235663831333632663230663037323637633539 -61346631643564616633313766333536323137616566623362333964366235333333326532333761 -31663236316634373730383336336639353032303832376264396234633939306437643135373962 -66393965353330306133306466363832373833323430336437663866333965343637313962343037 -38663162333665333965633532346533376565613365343936626665326665626535336161633632 -31613233313037386437323231386662653063323333323735313138366638353031306131323934 -39666234663335383433316564636637303333343731366334303964323531306434376163383565 -61666633356161333136373032633135333636326530326231343965333662613066653232366133 -33343265663261653231346563663333636331633437616536333666393764643735386335613931 -63326162363362383931323334633564643063353135373733306664653931323530653965336133 -31613031363466333638383437303330636433333930663937666233613035303230333538346266 -61666234346434393831396133643139316264323438313138663232643736313366653530636565 -66623435666235643938316164356162353036386535303662616462623266666632333465653330 -31626563366230356636396230386136393239396137663538646432393138636261663234353465 -62666636356334613932336237386462633062316137363562653033373061323439373032376532 -66656137616339366530646335343461343162393035333336316564386534343061336139643334 -33616234373933636365386563373632653931316366636437366366386438633863353063646133 -37363433653834636630646436313637393039653735383463376639343939306466326637653665 -63383963373935323464346334343664613363663330333864313361376366653133333666646539 -36623136663761363666626632333233636236313738373835383564313738343430353036353763 -64353362373131396530373933363839313433653330326635626234363432623731393135363162 -37376337393934336131663035386335323562336131663863373565373331633131353935313933 -35386366636466353433313163613365633262323533386366376432356638343361366461353766 -37373532303334343133316361643932386561376233613863376639663162366665336561343137 -62303563646464396664643730653566363439633837383066316561646463656530336164396537 -34643030333663636366376665613130346165356261313064623435613831643061393662363835 -33306138663633376364303133376239323230613938663466613737613636383835626430313332 -64626537376637383531386462306161356537396231353438393135306163356435666130626530 -36316633393062623934363735356230376230663232623833353735646231643535343939333066 -64616661313935613937633464323935333935356561663164323064306432616131313863653539 -34613630363738353733366639366633383432376366663862653531653865623335326330393735 -31343235623362613064316639333463306339633838306265346633303166643832633131313130 -62613635363966666666623333303564373562653065363234323061343333323939626563366161 -37306138646237393561653665373061633361336231323431326536666463323531613963656431 -35366166393764383634326332393339623036613032656532386365636564633436636536383966 -39646332376366363337656134616464366133363464356164353164663638373237386637663935 -38323436343964346636663664303361656337383933633334663630303961306639646562626437 -64383634376265643336643431366130653061643238643339313765663437636630653333313732 -32313332646464653064333030353832613961346338393130646536333431343836343262343238 -32366635353534396234353430336164303131646561653465316462336562356337653139643362 -33643431373066313031386234343666313362323433653333633238343839653535613266663466 -39306263343263316138346266373231616637343838316335336635643566636431303930633433 -39303133616463353439653535383934366133636135636239633866326139353266633937373761 -36643563663630346135666265303231636431633230363233393736353231356335646431373331 -62396138666431653061363134646636646539376166313561353339643962363961396335383836 -61636537643539643765666537333034373335613334313232366233353838663338313431353966 -62663961356635383231633863316361363366653630373835303637633738383439353164373561 -66393135323233373032613939663731326336386533656166633530376361633938353664616562 -36356564386166656433313539316138326232616632316430653764636330623437643738653037 -36306664613839656663343339653865383664316466313433623261353361653462376362646532 -33333762323266626164313436326435313838623130343062633431396534346163393937346137 -61636361656263353865626439373133393837313764343062306261306361343364346333353839 -39363862643236343462633239626661326366656231376431653763333634356633373938373735 -34393132643662336338386432613064333337376562323364626134393565343534626630346266 -32333236613464653636643030376637353733386537383334366336303031303364646634666533 -30306233333562396266653030656138353130303530396466323063656536346164633631643536 -64356462663431633364613231303562653930626437633461323138353333346238363135643538 -65626664343366346631643263643961396532393236633132616565393234373032616462373137 -37643034656432303739343263333965656432366237653264306336323738656539636563616537 -35636264356332613033333231386262663066393030393930323764356461333839313862313264 -35356261396531633565646163306435623462303633356230386361393131396564323066623134 -32626365376634323662636133613062316162366438393933653963326530386262653861616436 -32386166316361363537383430323164636133393535646662636665363539393634343638376366 -62313233613662626239323235356663336639383432373833626232663533323437326534663430 -64333530623762366233333935636332303334373832623163366163323762376337363239616238 -37326165313032346431326333653537616236373364373538663534323337616165323338333961 -66363065626633653261323765613761343632383866633436623738393733613236383633373030 -61626563336430373330376230303637313965343266653536626565343834656239356635343536 -62633030353234393563356431663866333830396363613461333161366536393961613739333866 -36303363653831396437633437343338666561336665653237323137393838343264356263633965 -34373135636334333239633738616130636437613330376331613631306435643436393365376533 -35663939666330663934633033346633373333643036313136656232326535623765316165393537 -37643131333731623634316633626264323165303734333135633364653839346435616336623536 -61383438336163343965353930313062366435376536626463393235653062313563333062363163 -32316633313239306133653064316161313432653266646635303962316661323364646134616463 -30656130306564616138626539336662643461336262326162396634326633313236316439663934 -36393134396132353438376461353663396132393065313638333961396665646266363061353432 -66303638663933373061653639306230393565343761346135363432353739313330643636346634 -62306235323736663131316431333239623636383939326136383634343666353939663134393833 -32333961306639633566663033346433313765356331376138333863336661653533303061623162 -32346461613432303739393062346163333135303939653766333331373934393161643063333131 -37396564633334633862383439356661306438653931353439623031333131303165653862316237 -38363135326662333133616535306330663735623338336664333436393963666132376236396364 -31326135613161383164356233316136646234653131363836366266353434353461356462633334 -63313634613566363730316366353039306436643439333539656636316238386362316632333035 -32646663373263373635316630643131633738656333386434303031653737373466393335653032 -64396466313238666662306538383861333632646632666438656361666538326135393861333639 -36343138613563316361623565386432386365393732336235383662373131326364656237393031 -30626432336662343935616630643066663965636264376232316664353836646139333661623263 -31323833626664336362656563363739326432323435303235666164323964613361303733343463 -66383336313662346634376336376430633065623665386134306366386134333861613161636562 -31313665633361373637653837386131613633353536343539623938633434663864313261653035 -33336166373264346235396162616339326632326637373035663235306537653064373430343237 -37656164303963376638666235343933613561323434383161383739323338343731306666646566 -62663332646531386161376461653466373034303433383539383463306338636234346238396463 -37623066393339643036376365623231333933303562373564313738333137336561376330346637 -61313435366439616334636434646463343531663163343534383166366339626539623166393665 -62626237396137636638323237313334653936663638313538313436346431303532343362336536 -61613138323033666161623564633634663366313433333439346234313764363432626531396663 -65343762666262666630363938323538656665353533373965643566376530633136643964376330 -65356134656635643231656630623932313763396364656630623062663839346237666132613738 -36383266666435373936353632646466616234313566653662646662616333623762383961313136 -66306531613436396631356465643966393531346138666632613632303964336431363931303564 -38303961666436343038333564316261316331323761393939663234366262646536363337643663 -31643837626437383533623863643261303033653730643432353638393365363963613234343463 -35363236316338306632336234396333616266393236373132653235326233366638613434666435 -30643862343835613438313533623430303431323330616536316335643334323863643036353435 -37666632663961356232663763633665316534636665396336353137326133323530353338653831 -32333864383833326135626461313566393439373232346536323532343537613862313662386366 -30376163663137303631613066363936373030343865633033663635656533643533373766663531 -34613263303165343566313336336238353634613137656465336131313336613363313861373130 -37356265373062366364373931343463663838643533633662653633306566366639666636623338 -65623264333533313736386664313265386535356539323864626665643263356539356461343062 -65623731356332313330373263353465313562633633356332383630323464333633316434393732 -30363366656638306561303731376633353762613065396439626332663932306531343562613633 -34633966373234613834353763396363316432373036376461656466363363303533323530633239 -37643231313532333936313139306661636137616130613433643639653164316134383066623434 -61363636666130323062616665626239663935653364346535333439666661343139383234376534 -31313235386137353762343735663963646563653465353934363136373233383130623333383634 -64666561656638323230643266313538303035636338626231633030343132373537396535653664 -64323832346636633133383433353063643036303838343933326163653132623031376232383536 -32373531383833343365623438316238303130633463333164383639316237336331613135396363 -30643766366561623461336337393264323861626335393831386466333535613738613965663137 -34636264636639306438636132356366383035323564383738313065383430336663663732616537 -65633038336364653835333439633662313636313330623363306637626135333763616230643033 -66306239623937396162316130316139353734643662623266353931323936633031333737363536 -38653539663465633336653333343736303539653039626635396630353861613161616262346431 -64643430373538663166636264333138656231613138333535396231393665663262643133633966 -61613163653134323865643532383031303566393832336566306332326265663164393962333239 -36396366376262333832363061633634393439356661343934396536353733613630313266613031 -32336636323061313935356237316537363464633737653838366266383863633066303361623232 -32613434636635383430313939313737323133363333376666636433626631313336306665323166 -34383139346130383933343663396563366634343964366362303330623863316365363563326337 -31306466663535353834656339636262373436613931623736653462313466393466333862346430 -64623239633665323765383532363233383966363633643965373638323033396539366135366266 -34393433616665336135636331313132363037613333366265623138313633653230373835313630 -38656633396161633461663837666164353362356133353363316338306236346231316634653935 -33383930643932326435313634663961303831623262373434613762363965386665373063613237 -64363162353561343864343266323738303462636434376364663833303938623263623966353965 -36343030333638373062333537393533326134373438616337646262643838346434383939363831 -35326231623830653031313066383262623632656333663238313137656364323130373732643038 -33373539666530383930393931333161616461306239376666663233363565646661663138633139 -38626266666366643235633835346630373131396165323065386638313339623264613365376138 -63663666373834626165326363376431336439316261313562323964373634663337366265623330 -63363632343965336164623066376337636134386138303833653631613062313364376235626262 -66643335373234663537376561353562353534336639623130613966333863323338393030363737 -33343138333334393032366666346137336164313239656565323739353935643663613732306337 -65643539333236383765613836336130336436353433356331316163656135656234656435653635 -30633035343836323532386262396333303939333561333638613237396165303763343134313361 -34613932363363336666653431636139646134666237343064666366333838623332613263383635 -36633138336438613434323835636130393731333836363164373964623732613738616438343861 -39393538376532616234623437303965616564313039326565616562343136623966353462333137 -65353464363631326632636461323963323363303265393039343862313030656533346162663335 -33653839393538333735346464633133613966633162383337363530343763303836646239366334 -39313032303832363966333636633863643333366364336462653434363036313339316537396534 -38326239663462393864666237303136323162393662623962326431346365373534613763663839 -34323337366538313661643663336432353239393535656231636436613865383763626166623734 -37356563373461626333363331396433383334363536396536653063323335373365303663356264 -63333434386266313065656533666133363862376136326533336130316435613730393662366534 -37656632613137373535623435643438613738353938306661393539323630376665346564663239 -32366266323562343062663036356332623038326634336232386566633661343362613832636266 -39636139643764383162353233636336363631393565373763323031616234636465323833663066 -37396365333033313766353939303037346662333238363461626236626133363432653866363637 -35383336626262613537396465363238376262333063616663346534623935613366383033323630 -34646136383037353666646639653132343964383066326466383238376636643239383063386561 -37626638316131303132623764393961323539356563653565356336643865383032313961303135 -34656439613565643530343931333133333031656165333865313261393535653336303330633362 -34623130646236353130626635366435613233313766656539386239303831323833633037353233 -64666637333835316238396439633737393065646430613231376635343733376365623635646538 -30656236663037303366333133383839323966636633626235336237613266636231663164353662 -35653237326334316332363564353633323134653639653234633736313833396663323861613939 -30336461643666636434373966353566373631386130633663636231333132643161383264646537 -30343638366163333730666539343065353366383039316362373133386366353537653661333862 -33393931633730323330613638646532376462613161636162326235633762323335663864386238 -62373235666333346565336361633533323663353065663230306566333137343337636533653065 -32366466386236376339666538373865363033393066303335303232616539346433363138636639 -32313339636264363666666534356563373465366139373537346261353934383364336363313039 -34626163613533396266363832376362373866663365393331366465653532623334376638326535 -63376366653330363232316334666563386665626432396234663634613266343561363732363035 -63366666386562643562336165613631393766393762613266313537643737633965303366383262 -30376566663531656565373530633939646536386563616437336135343134633535313861616465 -36363264653037363864633338623865643436326361363338383266363237356631636433383165 -34373037636266313765646363623236666634613033396438363637326166396334363831383236 -33393164386236623363313532363537313630663137353762376237383362353034656536626165 -61326562363936366438353130313633633438613864316162336132653730646635653632356433 -35353139616136306538613066393638323561656266356361333263346632353233633366366139 -32666138356431353335383530666362343030353863386164623333333365323430356232323263 -37636533373163383133663334656366653038303633376463633532663739396332346637376435 -35346437353261623464383535626233396534333935663637333337343438333031333838336334 -31333566633132653038616464363239626564643637363266613162323532363536353561643833 -63373239643462626231323863363365396537363462383262326161356564636338623637326134 -62346535363735326535653662616636656531306537316536626331323766636466306337656164 -30656665663563383834643662373233656364626535613131333235303763663935333264356135 -66623564613431333539313138386263666334326131383738313265303361376633646365373665 -34363737343362303834633864663863323530313464343836323739373534363965366163353731 -63313262633961383935323865366339616562363064613034353930376534313837386137346665 -32653564396232313662356636613739656262613764623665303230353939306433663830366264 -39636161386430393031373166313839316239613562323463626335373637373338366465353864 -31336366653534633838356236353031353731646361663564306538313336653430343966386238 -32376563303931353537356264383632356637646334396231333737393331636634616661643534 -30393832303737663233326234393337613933626431636331613637336563396331356537333936 -34383034326162663563336363383961613032666363613239663533316164313237623965613862 -31306635626566303436623364656332326361383434343164346633353062393434363932396262 -38616666386566323163663436363837643039656666353763623966393132303538326632633963 -32333062313138646438656434343732626231616162326432643532313663383339336334636532 -30353766393666303466313632346161663731313733383435363535383832636238633361646365 -35353339333033373166396465323238313137663737366331373035353737353033333563656430 -36313434666239653134366462616235616533303134663635646433633761646438333237393032 -39623035613566633930343430343634343765383361306362343536646664333236613264363731 -30396430323038333963663061363865326238376361346530306430393935333163616661646266 -66303336373338313433656165616363653061373465373831383337306435306137326339303731 -39386132653334633063383933313865323139303661343435343430346432663333616461373864 -33353863323137363339363565343164326631376335613665653033333464656532376531303336 -38656237306331656132366138386261313766383934623732316638326435333365643066613266 -66313532633937643935393838623535636131316266303038643031386432633339383461393931 -61343738616338383039383261643730373433653933303566623738393635363331653631343737 -30376234316639636365616231346139623134363330333864386338356362383664373930626365 -62656264303031333937333564306565663634306330376566666438343162623939323438646361 -36353061316632643536633533363036336335323339303666396131623236386663366131356563 -36633965656464643634383563323530646632366333396164356535633364303738313533633763 -66306163636265323538393862653562623964623165306233653434306665393532643462646337 -39626231396563346163333332336562396536376461663732306363663936653530663233313663 -61666532353064663666303139356663343337623232333166396637623337326335373166633834 -62323135373638383131616139363166626236613561653265636530383830633038383462376132 -34333865326131613462336636353166633734313232363033656561376536363030386333396639 -64663430303337393564383166613363663833383635353761346137316666356265326632633763 -61303735306661663839313366643135303735623333376538613135336563376535303634326266 -63306433643231383031386139616139366231376263633430623661633633613238636532653131 -36633734646539616538613632383635653137346532376538393262613162656266303238656161 -61356239393234373832383762643665643561363866643636613231323638353633383761393438 -37643233646535333634663137346461393130656563616364623130663932643364623839386537 -32323632306361643436623863316565336663623536356436366565633539303463646136373134 -66323764373531653538363338356537336432303134383235363038633765363166346637356261 -64653563393362633430383166613831326166316139366133626564623665353531653965373963 -39626530323237343739346561376236336234333164383034313339383862376335353630643333 -62366465363662353537313435636434313764373036366434323263343832336362663166363137 -34643964336265633438326437393133323534663861396664653361356262653562663830313036 -31373664336135613163663536653562363230616539633232623039666162393036646463333430 -39336332336630383266616533353937353632343063643837336261633933623532633832333834 -36383831386636373265383631633663636265363763306131346463303064633365313562393266 -33626136616366353964336234393833663736303133633933646133333466643464316364626639 -36353961313865316235373139326534336664363132653234386131353264313330343038346434 -66386266653961623730336562616535663666333833303535316632303436623330386231653234 -33373231633661616533363939303966366535376430666534616666646263313637363665376132 -32396531356631376139313736383930353238626536393034626261323534356431323933666130 -39643434666464313138356639313837656531363438353735306465333164643764353765343037 -30373835363932666362653163653566643434613839373337383038336165343731663837353632 -39316232356330633663396462356261356561316462643430633162333561363837363761383138 -34633730613938353133396263636237663936376562626266633431366631346539626531396464 -62366361643830373135613331643734333638616662643536353035623264346337353538643534 -64356335356263376634396239393239366265646330363133636165396535343633393365656438 -65643962346165373863633166373632303261303565323862646635363566643736373530643664 -61373665613261303536646162623231623461303666353138393664383362616261623462636235 -33636332373935663165623333386237643332343265633539626366366633663761663139653033 -61663337636638626533643836316165633938373436366661353237313366336430303936333631 -65326530656233663738653964646237616339333038333731643963623035646339323033353833 -62613138343466393734393362346630636661363530613631633366396333373664643263626535 -65613863343536643032653730303430323763633333376465323330643362313132656163313430 -30346564313333353161653961613230656361626432663436326639666265346266643436653462 -32386432303466363061336564663961343133643131316232623439316232643064376465323763 -31656138396239396464656234383363363630633336336562366665363335633766393033323430 -37363835613762386630653138353037386362646465643638643866313931613036316133616239 -66373339653137336665396236313437393365303939333333363766363734353733353030643861 -61626437333039616331356461303032306164656534626330366638666162643663626438363438 -65313066326436313933666364306434346532373266663036616361393065396363373637623233 -37633539626461663734636363336631323039386161386430363730366364393532366632366261 -35643462663966666335303863386632643663313636633066303938383064346462363033643932 -66396564616534666464633936633765363838373665616637393335313865643361376262663938 -37333333653433343738646133396134353665653235373563313533306263366237386265623232 -36653438376534663333666564316131323534393033653631353835313466376562356363363862 -38326466643034323236336330633165323231623734383639376439343961636535623932623430 -62333637326330333861663066373030383062366161383732363031313739313230323230613162 -64666635643032313035613231616362376231396663333732623135613264366362646632353337 -32356666653332363436363938316239383738626461356165303739393834326666643135333338 -34643436656362623438633330343837353230663931663137303633303464303761306466356331 -32666634613733613938643038343730353465323561623530303035656333326338396438353539 -30633838623434336365613564616535316635333433376534363034613566373965623135316535 -66316634393233343866386339653362616631656266306262303665326632316138306266626638 -65346135366233323032623430303334613433656561373664323063616634626637383036313133 -66326436646262326437663432323236303961336432323236376662303666313235323038613838 -37653834636434633764653361366332306636333365376639383062336539323461636264363931 -36303436613735336463396632396132663138636564666134653931346566363531386665623435 -66626137356461373530396130386266373935613539333437623132373034366537633539343439 -30626162363138346466316233613636646466633938303563356533616365643062393636313239 -36633465373232336635623361633662343462356436656234616439636332343836336533616262 -33643237373065653865386230663263333734323337383764363664356631313465623033663066 -64623134666662633362333864623537623735373434663837666431666663643835666635316538 -64303364626564346634666534643839623831316337333766663365363937666565353365383933 -64633263323663663638663130393538636164356133643830353362353033383636356432626165 -38633933323935653537653033373835663036643532623632663662653231383466616138333631 -61393334346533653764653163653831393139333064396463646466313166633634656133643131 -61656432353862313631336462633564636632613563343234646233613565326634356136323933 -62323462373137656262393966373332333037363035643333646361623438633933336564346664 -65383934363839373934353436383735626132336434313834643830383537376662373838373163 -30663634363663356134643332633461323833623238336165366135363336323334623532336666 -34646462346262363163343434643266633139623338323738373934623466353537383962303135 -35333730373630366635366339303837616336623833613538633839623164336531366463633338 -61636163316365613036646632393131616233323736346337346437363330626666366336336465 -38616437313637663237313539373931336563353534366433373762333063353666393765613163 -39346437356335613335353130363064616136323964376134356266636435373463363537663633 -38373535636564383865323635316565636239376263353562313831643763616364333865633163 -64666566623436343731613536616662626565353035383763363331633536373237633230346338 -64333961353034346631346230326133613231613561396562623661636335326664336430623537 -63643336656437373638353832616333616339383732643435343636343935386634376530323163 -64653961306537396562363130626438636235663537373532346230636530653038313938636238 -30343166613132323966346662663838363962353866396431613532313461393635316138306639 -36396236373137653533306666343162383539333961633564373762313035636633373534323939 -34623835663032333138343764613238306237356336613334303330306361353635373035633839 -64326634613963636364656161616266646533386538623166316234346532623431646133623035 -62386537363833623632326633336430326635316333353963613266323231323733373965323331 -32643464653134396462316337653735386361333663633866356532333064313364303839666563 -30656634323637306131376163623936613938623235306538383739663462646563353931663665 -32393361373133613231343461663565366533633433386165303534613964663735663633653138 -34626463393339313331343937633764333130383233323332323962656536643266653834643161 -34666332383435333538653133343232643330353734393765616234663861336464366139306537 -61643766343138653663346337316332623461326462353631373861616562303662323035643534 -61386162663766383164396362646361663861306334316431656433633038646535346465393534 -39376362393732663138633837613536356335363634306464616137636638326633313438376366 -36643639643233643666313230313538663037343838333435353531663762613632366235663361 -37303961623163623633323938323762353462613133366161363063663437666639383130356638 -37336130386666643262383061373661613166646565333634623465396537626635663431376231 -66353739373765656264393236353234303339623862386633363861363561633131373238653664 -35303730633236663737303762343364373437663434326331356564653535326566306438366366 -38613131623336653634326538626166626135383934616237643136643237353663306237643063 -39616536353138323636323439666534386430663864623038333165323564333439323237336134 -34303365356334336562666438653936666662643737346162396462306461336538636463353361 -66316631656631346534366166363838366164353039613836646335343364396366373531653538 -63366665303336373863616563646431323634613234343365323530633135636437306636306263 -34666666623738633034356534613834353861613635363365653636333235633738313939633664 -37326438633630306563663165356236383765376138663435623730336334323163323261313437 -31363966356264343834393166643230353236623935346565386137366431616662326231386532 -62376231666563376361343863333335386637336562303238313364353732643462386134373466 -65373637353035396533643936633164303262396666623933376333396266383461613462326238 -35383661323863383830353638333937613764653832643834613831353237386164643466636236 -31613865646331663436633565666635666234316338306437363066316666313965396164613931 -37366234663964666230643932303236353935393038373964366236613139643961653634336465 -61353962373738626538636165616535393931643930343431623064616538366461396630346466 -33363265643862376463656235663330663661323330366165313437306632353833356636623162 -33343965316337616139656663363331386265366630383733316335396630386561613538313232 -36343763303631343239313537343561656663333364636234373837323263393835663561303739 -38343436643236336136613462656665306337383131643862636162626361376336333166663461 -36376437343836356236356165356638303665363437623738613530353733376666343134323333 -34336136646565386233343231303662366237366137306631386362396266386165383863613037 -31633130306565633332613564303566353066333964666332343634323962616164613930646564 -65643461373437373663343933656535633665313034346166383861643037396465663763376165 -32396135323233393934326534653165316263643134623961343031313636613536623362393531 -33313530366237633030343139333030666132636230316138303565626536353136393733326535 -66303539383764656534663936613035623266663862343131386632356566303635636330366666 -30376363316364353732663466646562333934383131626131373364663663646133623639343839 -32663331633162333033646239653135323535323866386330316565306662613466356463363161 -34643838353935643730323738363362636439666536623166643031383736386135323334383531 -65626164623435373764333232346261633663386637336536396434356666393264333438323330 -66623865663935326565363336643133643534396661623930343535353562393638656364356263 -61653765323562663866323236633133663439653932306633376463666634396162613366633964 -34363137626130313130613361636438323136376332613263393765363030656431353534366161 -31396465373434393638303831616131663537653766626363363166346364666331326335666130 -39333339316364313465623933636561323861333833326535633531396363306334646635363931 -64386435646364666563303963363031336439373563613537323639303763643136343462626234 -64646331396535383864663335343730393065313764633564663263636631353137663962623339 -61646565623434363238666465393738323335623165666337646530663430343962313830646665 -61666431356362366139663639393331366237613235313336626132343965386339613165333835 -35333262633130653534666135366137636533316530343861613139303936393438636665633863 -63356330373532393737356230626465386134396337306661656261336432336535333333623531 -31306661383764613532313965313631643661636565626230316530366133636235306635303462 -63373932333939623930373136383264663434353366393530616234643265653463313933373134 -31346434623436343635313730653961366361373437663834613062333964383638353962376331 -37646532633064366631306138383935646331373736643239326531653039636466333032316236 -31643834656161623261646237393166376232323933303761323161646561363439353235363933 -30626165643638386364313061616636383232343539346137373537613564636338343163656339 -30623764303232653962356363616232383364623039356666633339656262373539373332363437 -39396339656538343030303037363764343633656437626561656366366665663334303838373162 -34333565626536313937663762376239383238373939353333643864336633333561616432326463 -63303730303330386262313335313332373063373764373631383530333266353939636563393135 -30656366623365633833343264616333663962616236633633646463626164313230393933623966 -30323637653866313932653363376566643265643361623363393764656364326366653663326661 -34313163636363353563353961646366333136313539356563333639353839323261666430363235 -66373131626165376663626661383131393436353866353339343435373031643139623464363132 -62623431393133323338643832316364366636663934613231396165333664373762316263653836 -39323466653936396566653036366562333762613431663436663138616534383362323837646137 -65616138623638313462623963623034353561646264373838636639663337663766373836373331 -65666563333439323262303363623537313166643934366431373363386366383131336334653032 -38346364303638633961633537373534373734373765663931383737373134373632343563383765 -66366666376237303964653730343064613738306163336264663461653161396166396162323832 -63376166636539646461666331316439636439316335663362336338653530303134343863333334 -32653633356634633336313639343763376430353538353639373039383333633532336566663232 -62633063333932316665653930316331613735623864343764663062336564303336313033643233 -31663065626236313833376630393836626134623533643264396165663530346165323737323235 -36653964666635326634653735663436366234366631356461306530613434343438623061636265 -39303661643637333539626562386161663265363734633734633134366461626634346663363466 -62343762636432366332633337633035306365326638373065633336626361643161326566333764 -33323661643234666462366130666636633265623764383836373438643263343261333931663865 -30383266643234383761313433343034613439333866326132613330646663643130376162666439 -64613963663762306133363133383134353331613334396531303262323438636234313639383161 -61666662373061346236633432363239656131643364326262643266366664663238643435623236 -63343831646130323630636365303534393263623161646665396635363961633663313831386238 -63313136346361616538323735356632656432306262306238323863623539303630383634353862 -64633466353766323739306637383438663133303130373237303234323861666163313336363034 -61643234636531333937333937633538613830316436363936656661666663616262346239663862 -35363966333966643439363933626533383061306661303263346237383365373136313736643634 -62373730376566663764363862323435343535646437353261653334633339396163353735623534 -35643532356563376235326530616330666339633136333163643230376530343139366261353863 -63376538323031613539353535336236386333343735383333386137663561393064323736616161 -39666632623432303936316633363137656530306565636663363238393361333566646165313032 -37383064366165383730396264306332383039386365306538353364616436386265336338383438 -38303235303466303564613931653830306537313535373761666132623539633764626566666331 -32626465396565333230333137396639343566626230356164633864643831383633613739333865 -30386431303935376162353164326139643137626630626339393839616639623039353239343065 -65663866316336336332343931346536626164363864666532376537643633623466353032373262 -66663538393861316531393337303035666536616266646664396539366339626235626163356566 -64623634373133303830356266393261316430633164343732666363383830666636666130646564 -38383530393235313839653166336138386666393863623037383130373238353634656134613930 -66646263333235633239353462343965636462316630646330316335363039613562356332393361 -39643866386430393831323934616230386439333864386364346331323537643831353330646464 -30303033646438373766623736623532333436643332303266373133346638346562316664303337 -39326166633139623033333931323030646339373134396234343530613662373935306137616239 -39663533616533306634326164663264333338653063373865363435303630323136313862303938 -36633737343061363263643937643565613035323739653834333261353536316235303939393731 -39393636373131646439333566613239393239396565663438363732316638326265633635326234 -63333262613662613939666363306663306132356265303536306232336334656634356438383131 -35346634383437653430386661383637653536656566353537356632656663646332386435326561 -32336139333336633664623434636265613130633436623631646235373739643232656337636666 -36643234613331376634646230376638366233336561353136353261653535306362636163623733 -38373039346538303731663532663863306130623965336438396432643934356634633638373737 -65663831663832326365386131373932636566356236326630356562636239613830313935356538 -65666235666336373862656463626135643866643961383139633939323763353936316564613939 -66663139313134616538323538356334353063353738343466613130316663303133333164313835 -39396262653865633038616137656362303465316365613139323839353133643433363932363033 -64643231306232356131633464623161336266356363343062643734616232636139616233366664 -35336130353165386337366563333634633337326231386166353665653939376332646336363061 -39346266313638323934346265306263373431323732313834633035633163336535643438353964 -36353037303966633363333332343430643534303966323434383264663964643766326266303666 -64653539373961366635363163613237373734653630366265656137616439343630323631353933 -37613830373333333261346564613838393761356337316332346564613366393734386237656664 -39646366643538333135383633636566316330633739346430373765626133383338336166356537 -39653664636261333938633561353335373732333163303934313233666134653531336562303631 -61316338383332346634323635633239623766313430663536343237393731643638333166343063 -64636530306439643361356363323633313862383434303035323238366434366630643261343432 -61333464396663636263353262356335326437386162336639643830386635383066613332353235 -66383934393432383139646538326663646463313336616631313337653461316131633434383038 -64366632363061316431613730313165656563666433653866346436306362306466313762373132 -31356332636131386636353330353465663134343336376361313863623936333538383737613837 -39383061393837383035656435633236613463623534616138313362626338323766323533353535 -64643764393330623261646562613734663131353633303839313338356534323339363163306437 -31353130333666373935333035623038333631313566316336373130336462623436313265376239 -36653735396431383533383135373462636366616334323833373965376235616535306239356539 -37636438626536393832623737616137393962376535353637653338383638366634623562303239 -63363339386132333334313862363165366462376261336532303433666634323665626639646266 -65656464356134356166626262383165656438613738656563643062333436366165613334373033 -30646434663161383036336164376332366239393936396233366636663361333861643933663131 -38396333646539353636653565373737316461343261663634633837316533616464376265393865 -62343765636433323066343961643031386363336562383061353232656264373064346165643432 -64366232643062306139646530613766343563616333396661613235306637623466353730313631 -61626231326536636561353935336331393733623764383839613363383136346336626333303438 -31366532363264643062643738353265313535323364613466353565386134666337383738343665 -64363131343034613639343335643333396434366162306266636136613764333734323261343135 -30313739376465396566323438333962323032623934353931333064303061386166393633396537 -38366438333037613930393034613437666238653338323630366333383133616330646437663965 -64376631656266393565316233363962623065343136363435346131336163306664346336613033 -63393866303630323435363632363834653234623438613535363933646336393265323337643566 -39393961656430376139326331343664366566623335383066336235656130653932343336353761 -39333761653037663537346566396461643264656438643830613139333533616165333730653463 -64326432376164373333376263343734626564323062373733353864666361633731333139633433 -66333030626431306232383430643163383437316239616265653136346264653464333864343034 -33373961313763363233346335383937383735336561363937386466636334616364366431363264 -64373163616537623462386638383934633966376237383936353166353638656462383734613461 -37633664323133333938316533336437383863383562633162386165633061613761623838383330 -37336361656365373531623639363337383164646262383066643166633064643461336266633333 -64396564376137376430646165323830663363313164313932346530636136323562636435393564 -64646533636330333737313131346234356361303263396264313838343834633864613636663630 -35613034366536653030653436653463383162633134643838393666356164613734386333393563 -63336337643531663364333261336366386463653363366230623266656565343738663931336430 -38353636316162313864656664343863306434366336633766303062643630626339343862633038 -39643164343664313137616236353536663165346238383438363465663837303835383435636636 -64303135636261633561393532303762346630303965303536316461363430366165626230343838 -34303135363165653237333065396130613836303061333636613637633233613839636562393334 -35356461396438363865383662373330303036663830306131323737373739653934616435613661 -32396638646339666231323230323361636531323537333264623038626137363339376461613838 -65366139396137376364 +66383565633634323739373134373635316138386138626233323332626530316339636131336562 +3731646664663963343562626462643665373866383937320a613035616235363964643133376432 +62383833363538323935666261643463373165663561346635313638333538646630616162653865 +3639633164316165330a626437646638316331663964626137346634643461353762303666646531 +65343362643330656536373138313032323735623861393865396564346262373834363938333261 +62383865343730333466663634303461366638376539396333623833343935346366386135303339 +31363165376463313739383738396331343437363732633030666634666434313938306566633237 +38656136373434336231353030373731366231386662303538396263333638313332333339303335 +31343333306261633662653665366366323535363465343734643837393332643938353639376265 +66333938353234323036363530353134373034373065643630666430373161623334666133356263 +39646635363131363632663335386365613065343162396536393135613437303831643538336565 +36383935623037363834343330396335376434366461366230346665616235643739396662313238 +64363763353364656237393564633034383165386361626236366462316335356563666462343433 +34356266316266623236366539393961313130616163313363613966343330623265653837613564 +37643231643065383764323037303837383632396565336233646266386664626339666436633766 +33306664646536383736363331363030336666663366633534346339396233333637633664656532 +34303266366535393365356533346661663965626637633633616666333662303135353863633031 +38383537623866346366363562356231396539353236366663636666323130646630383364373437 +62653034636532636464373434386535326331626333353963303762386137653539636437626137 +65396364303364616635646462333030306633363635336539313938643335626165343734383564 +37633661373334633736663431316163636666366531666238313132366261653836663066373964 +32646134636330333832356230643466396462376235356363353439316161633737653836663964 +30353034386365623439396364663664363939643137346163316339626336353962653564373939 +66363138373732383665373131326661393938653366643538396636616337303166336533653330 +33366430613138356465343733383731386235643132346362316430633031303462633762636165 +39383066333933666362343135303464373062336161613764633539376237346433663930363761 +61613037346462333365386638353265343163346438353031366635366635633261373366626165 +35643131643434333737643764363965633865346433356436646562653938386263373839633333 +64336435633234336165356433336339393865616632626331366536373439633033383539613837 +39613465616264316665643536643638633639323139306131643865653239353461326339383231 +31393761383330643733396664633730653836613662656333373863383864306637646461383935 +66363135366165666234663439306534343662613466313461613737366436393764656463346462 +39333839313031356261326537343031353430656365613734356132326133323961383231353366 +32373937373734353330353166313065376334303935356536393934663562666135393331643132 +34633731336437393162373035373066633361636636616632303038616535343131613333623365 +66386434386463383730303034306462333064346237663935653434613033316363643135303662 +31626636303338656430353733326337376433303839613239363066663434636465373338636336 +64323064323238303035336465373638326634346132643837316137626361613764636166353835 +63316666613038383633393731663738376432626530393361323537633563346163393837653735 +36343266656366613831373133653935623964613339343562613963326538303139386436663634 +37666262653132353036333337636262613833643133353532363964393837653333666465626636 +64656162643135646634643230613862626431386532613432306637323362326535306237383731 +30613363643065393735353336623733616239613332656161643561363030666336333833636565 +30316531383439323831346637323731383732303230396662653730363561346135653938666437 +38613735653966623764386530336665356133613331313130313030316335343836623761336535 +35656635623366393765323462633635353934313361623861633435323136383539303063383863 +39636537383330613831646137653764643133343262346533626564343837656137393163343138 +33663563643139393061646538623363396632306663636431326433323438376234663765383637 +33616436646164366663626639633531646339303964336337343465343163383536303164366462 +31353739353533393939613866643434633636613937663937623335646433323765366531353739 +34353439636562346261363231303938656163653230333135376433626662633537353635616464 +37613234353332306361333532383130336538376361333266363037626533306235336133306137 +66393938306239636461336131326335613038623561646337323433373233393936626231383336 +37326664353432323230313735623534376338393266396132323731393431333131356630393032 +63653932363562396466393531316430393734376464393731646233663362313035326535666333 +36646233393933303634386635323132343736656261366166613761663732396364313732313863 +61626362633362613737336562326233393134356635643563383461663362666137353739303335 +62336466626433663365303330323338633566663034623936376534643064356136373634353138 +66353535636539356333383962656366396562343462393463316661633131366530333064303334 +34313765383032313265383139323932626235343036356633376435353639303066646633663330 +38663564326361313430386339306163313661646631383166373136383337653962383632376230 +66313666626664636262326339393039663261363533353532616637653766386534633165303737 +33333237646430313736376664346263653334623766663065363833613236393233633730636563 +66653361643662376166336433393434366530376565616332303965333663343765313534666137 +61623966336261396434616365363336663962643034306131323666623964303433653430313562 +62363164333364653465303066393034653962306135316663623738656136336564343764343763 +39393839666562356561663039333430343030383232306234333530643539373861656263646139 +31343762343133623361323566353266306232376137366662653262396535356264646566363863 +66356637646531346637343766383739636431343862643162626332666131343934396562333338 +36623965373938346563653538303065373338336139316164323739363335316434373032333430 +31643838306333663862323030316432326135383863346466336465303266663134386662616336 +63326261393738306462626631663465393332623735303334363231313164353238343862333633 +61333063323364623130383831636539623961373937623435646638623231663235333032306166 +61386530333439386436346566376237636237343734336139646138326333343163653532333434 +35303266353736333631313130653962386434643964666132316362663436373761653139373530 +37313162643861633166383037626462313433633534383064646531303462613065643664363561 +35626431396634613734306334363863306566663638396363306264663037643966366639366162 +65356439663736333937343538373135633964323638643635323262383562613461363930633537 +64343839613163366234663437633733393761646237643338363734653130383362363165636161 +39643366313937653065623637643839306564363665306266323465306233383030663461363761 +63643732323532656161646336613431643865633737373362623662613763633639633837313964 +33313337356362623763393235343962633630643135303731626664656265623430353737366265 +66326539343536646531386439663534333563613031623238396434383530646230363532386136 +61653164646563333038373335393534623132646336363938646562376135666632333033396232 +34353365623038633834646534323136363062356134636237363132393834656530613562343964 +64373734323032636533663664613431636162623833303761653963363133656639633962616234 +35363636646330376363366361643532646463336566313136643438356532343032353131363264 +62323939636535356535333161613434633465623934656462663936636633366463393135616237 +62333162393865313135383432376233633663643638343764303339343061396539626533306237 +31616539363436326462326363353530613763333736666631656561383930616137373237343036 +65666630633034326164376138633064623231346138336562373963393037313933386135623539 +37393030613731303239623362626635363536313836666338383237336363633136633265376334 +38363065613534376466333039626437383939363766633138366265393932356530613064323266 +30356439336431643263393862623261373061383033306636356433303161613862393361656139 +37396336633737623037343061316266363134656236653161343132396261303539323262323262 +63653564326136613263613861393535643061306235653732666362386632383663333438303133 +37373733303463666565393633336666336337343130343333646637306462383731313437346237 +33353964313061386335386536343166666661383633353931323536643530343137363337356438 +39316565623863613061653338306263663261303739346263623164643035323263623966653735 +62306431316136383933653834363033623233633866653962373036303164663830643462343230 +61653633353562326562633432653532656430326664353439623564666666636132303438656563 +64353564386334366264383163626232313534343335373232653735653536373462646537366133 +33323532373436623463653439616539326532623164343230323638626137353663353662623838 +66333633353763323139643132623562313439623635613838353363666464366462343036373235 +63646465393135366539663936666635633732396132303130643261356335393665303561363462 +36636339366530383737356330323432623135393739353334666133633661613065306630313237 +64323634366162623432356637666461626530373432356636303663623765343832306331653334 +66656163303037313765646166643036376232303631373236343862306131303430623132303332 +61633333623731646564366264643963386635353632326335656531333231303335656364633939 +30643262376361326237343231616163643731616264653037316137356663383234353563366332 +63313761663865383837396534303237656634373638663766386535633137653331373032393639 +33373434363332636164386262643830396630326639306235356166623333613037333064666130 +32653566356362653530623165653830643333346134653063393731363461646366303033643437 +34386361616164333234323862626137333838636138633963376134383861373064386238356462 +32343664313062323030643632323434653766333830643137666632383436303031306136643636 +66663262376261333862383033323037353034316330656234626662303632373334653966376138 +64333833653763316264633532366364353435366239366166386466383962346666363965616662 +35346136666333626236396232333931653734323466313137616633623365303232626133363030 +31356230356330363433323935326532633734396334616632343062353333306461373961333639 +66663934666663653038313661356530343366393339633136373332353837326638303735343866 +65626361373865393633373832343035313939373461373766393331303065643539646339646461 +38636238393937636339333930613036626165666133386236633065616339636130376331313363 +36383965353566623364353233663263313466373533646463613238383839323739613535383435 +31656661383062643564663134336261626135303730326638396262616162356233616534393735 +65653365393163653962643666643533643066346634643863376261666363303736633462616634 +38313064323334343531323562616461373461333639626537333135366262333239353963333036 +32373631633330623164653937376339353164303039323834336138643532306332646466366237 +64326562623536396433366335366462336363306435623035373363353237663136356262633237 +39666132373736376362343664303438306534653435316230376530336232343634663639383339 +38366363626539356263663463336461306164333461383964376465313136663536626365336366 +62653334613337623330303734653839623438386635353839303630646166643539376235313539 +31643736393066626663323636616534323662643530366338626439326435653166663132346162 +66396433643830333063313432356637663565353538633237383530346361663562343862313030 +39313133306337363138333863656639343062613365616265353033306532623534666335326532 +35343933653462316133616461313832346465373766626632353738323734363231363933626132 +32633038383065373733616261353566623235326364346337623535376365646635343039333064 +61326431366636363830666165303465333963613261343066653730343937333065393039356238 +38303438333138316136313632323462303165343333343838383739363165643539626461666561 +63323731646561313735626235653461643532346234626562383566616336393437643139373938 +66313464626337323865306434633166323161353935393338396461353234383938326563363837 +32643166346361653436376236663162306561313861323939663438356663396635376565626636 +65366163633639313533346234333361613834363030356563393031623435343461633834656134 +32356436326637313765653861333463636464666465313332383934323031373666656333663935 +35656261366366643435393631346164306637393139326435383831623965653966616332313232 +66343665663432613964323939316235346361393536363935346261653634316366623665363863 +33663235313434366138393965313533616437643461303638643063316135643133643233653366 +66656339393462376235653362303231616333623132326165303934346661343765363664626230 +65333864633765373638343766373665663061393633373630636138633233353735356166646165 +31383333653239373333653031616162386666383434343163343239383033613236303734366664 +34333261326531613666326533656233323830356264613565666634653635616630396534346432 +33616238373465643261333537353363323465623832666664663366396663653139326636393737 +63396534323035323732656365363832666231393265303534373363663366346630613633376533 +35356436373462363266336239633139313665333162323231316536333931666334636438313334 +66306239643831343035323862653839653232393761333165313835636133326430353164326339 +38636135316563663263653966643734306566346139393261323337343932373637303231356630 +62303631363661363865633936356130623034636136313932653564663065633361666337336130 +64363162646133316264663336663930333664333866353239336635393063653435666662306561 +66653663336337306531343831656332646536356137343034643637313532393862333633303832 +62363430303931353461386263646233626531346630326330333937646137316339386563356635 +61656332643464613137393532643335636336396361346134613236663236323139393966346631 +65613135316238623837613331653932633337376536633165663039383933363534316631303236 +36373835643262373633393632653864396239323139333061663739333037666637393965323033 +63303363643330393633343662333039333130356462653766393735306262393363623463646663 +33646331623633343839316663353366636365313138653766303435636163336234326263343235 +30363234346365653334386265313965666566313631353138363534643839313262663863323866 +34343231383466303139333138653563323663393839303936636333646666613238623836653063 +66343566306636323732666438376636623634313264393835306634306432643165363762306666 +32633133346265636332616362656461643231306531323735313562306530386563343463323734 +31383531316637323038353766613632636662666263656533393635373136333362363537313232 +37613232393035346134643131613631363334313039646239303265343032343435343561393965 +34363233313538313765653931316565353837396563623739353532396365653836653935336132 +66653338333066373034323238343538663131363566356537373166643261393466343334313535 +39653961656263336234313564393137303731376166373165663735343165363933636531616461 +39323966333731353035356265396437626462343162326333386538643234613737303063326162 +37356664393134343566666137643639333962356464306634303165636237353663653738323239 +64613666383363373537636235323433346132636332393365643437613131643662386139313762 +30326265333936306366346163663235663563613362376630346361333463313164326361646634 +31306564393330336565636261376533356563386161393964343739613731393437373436396638 +36366138376539303030643066613633623735353065376635393737366433396330656437626532 +36333231623033663539623066313838663664306235313630363661313536663636393461666532 +39313466396637636662393265396230376234333238623566353432636561663133336139363664 +64616361653633306461663832343035616237336130366331386531363962623863333039333731 +33386231363837643930316137333836383733323264636238393939356239313361343630346234 +38323039333030643737333535376363613036616435306563386562613232333336643463623836 +65633435666463346661653632343531326230303738333136343836356134666533323161376135 +36313062316262396537653334386531316638396231626261633565633866306632386335663064 +62393361653666323037343761343930646236613033383931316336303162313239386135306334 +33386663653135366434343935343530653633323665616563313838623464643437353639396661 +31323966626338393566376637616262633636383466366632316232376239313439646630653032 +36313766306337323231356232646338323731646563623161343866623762653037656666636161 +37646664333838303530643131653963656632646539653761323635363964663565303563323334 +34353066383631613332313765363963363131303137613336363064303031656236336262393133 +66663066366138306266333738383730313138333439613233366561333337663435343334653466 +35663265653039663937336562363131613536396131333134343264356162373036393037643762 +34323864386564653237616333303930656233343064316263366439653336353765376266316463 +66343062333961633031313565346465306561376439653436363534613330396337623837663133 +34383164653464663539636461333439313632303230303830336136633238306333323933366538 +36646336613265363038346235373738646265646538616235343461303066656364353430636465 +63663433643962373439346561373366343736633464666466363163346437393665666565626132 +32663731353931396337316662613134336630393562393266653564353338383830623362616438 +34643935353236316634393138666638663265633834393161313531333638393730366565636164 +34376636656531316536326461393165353239633336323462626435303166636338653433373065 +62663462336136383364373135323330643132363839303661333539633832393834326666643565 +36343933376163663539373531316334393638333038363438303163396333336166386562323162 +33313765346661653636366262643330376339356361313265373465643262333161353230613931 +64373463336361326431303664613465626333623934633065333633633130326262613531373036 +62373965303861396464623436333033346365363763306433626464303264346239363163356266 +66626131383536356165623065316264663265666664633665303238616165326162393031643533 +31313262633265396238313862643431626666363166663664313133643462363230343733373137 +62646130666137333336653135343232306166313466306330666138396463343933323863386162 +66396565343035316262306537616639303061303635333734633437383536613831373463616531 +32333664643234653864623530303436356433376330313830623134353633356133313137343165 +65623263646630383361343239366530316633313630656137303234653334623466623032333663 +66623439656135326263393833323266303338356132373766336437666631376361643063353966 +64316561373032363865373231626436663730623031343866393436303231323336666162306362 +37336562343462613139663762336531633536376134346439666231663764396336646135663630 +66666337616661663736326539616230623762383762613234646232636532306132336261643763 +36643239613531376534323938656335616366373763323761656431326431323035396466343436 +39633631386261366437373139656530326462306439313065663362386234353662616265613462 +63316366623338383836396462326135333630393165616435366633336665356364363330653638 +61393865643837653334376534303939646433356330363338343737383436656131323035323263 +38663965306339663463363965383732633031616537336464613834636639646161633230383132 +66633038646139653063323231386334323365653431316665623439326165343039323538336663 +30376134376533363563626161316638383732376161363831666130393134366361373834636563 +61326536616137373632336433303336383963353130313934326364316361366466313831636539 +38663033353865363935646238643636613633633163633736313664353738383830643538313930 +61376338316230363366643333336630616265376337343564333735656239626562633164336338 +62626336336237393661353965386463383534333265393764653261626262346632656638653564 +35343331346561633230333231373065626663333232366335636437373434343536653538333038 +38376431646431386432386263656134323866656565663537363335336637346265306237373266 +39636261633065343866646362646530636434346138653766313338616631393466623836633330 +30373330356534303632363936333932623232363231623865333034613962383531353163636332 +61323062343363356337333838323964313934303966333033316665663066373265623262373266 +37666631353261623765306635306666376533633732306137326233633461316264353837626638 +62643161343664363133333935363634333634626237373961616430346637663932393531633239 +37303639613638666635393333306436376265623530363662323733346437303362646238326333 +64643435353139663462646130613236636536646263313438356262333262656261306239643564 +64343636316364343466363535353430633138363831343931396230396535663963613762313331 +64623737343137356232303264323464373835656565323961616231333339353462343962373066 +37666630663434356565636238653136383335633037633939646136653964353535626634643237 +34653364616562336632366431613630656130376333393138393366616333633562626564623966 +39656233363135643839386165323538353163383636653562636330356131353336656561633337 +36663534643763616464366462383636386662313439633231363763663631666539643965393736 +63653133353064616335333966626533616234336233393633393563303066333839636665356630 +66326537623930623039323261346137393663353832623262333062666466396634613563356337 +64363736613030306133663930313836316436343166616562623732346130626466346535666435 +63623962646463376237396162316262393630306562303530353236386337336162616561346264 +31386130346437333635303462666639653661653432356535666465383037643038376333333461 +34363662653961616665373363313536353565633236353938633865303064356461316238366330 +32623165663536383935393839613364666236366233343131386131346431356465323536373139 +39303261363962653536356236666565636238366136353435313638386233633135383039623130 +39636162646564313637376135356263313766663635353962613231616335303833396664353538 +33333361346230663038633536626363393066303833323166313430346431653138316437356132 +61303136623633303430346363393534343037313262303637633964356166343230383130373936 +31313637633030623765643236643738313461333063333137323637613736386563306365303234 +63626632643032326161643334316265643462323737363264343635366461656435333335393930 +62333062373261316334663338323561623935323133623938636230616631366532306438323462 +36356635323035663831386164313439643863313439393834313237653564363935336462643363 +38366161353662623738323433383363353830626365313538386639333437393133306637356434 +36393436326437343233613230303162653562393936373361373031626431383237626438366330 +30646466303563373661636435623837663236323062623436336133383032343233333836343437 +64623837353966636562326231633337323733623336646166363235303635353232313632623238 +62316464353037363931303861343263636461333034656366336461653165643537343265383164 +34666637613164306137346163663935656134383664353366663238653365393639303466363831 +66363434643834323731316563376236393930383034306633386434613739363530336265633666 +33306633663634383264366363613762633538653264306165393532656139326562363535633937 +33366231306136323530666238376161396338326163613762633933363137373230346265333131 +35343366616634666266383839363934373034353437653462643937613537643731383831393734 +35633033333661383736386232643334623435316661623762653466303434643733363761616264 +36333232333834303531613561616639306539306665353733306562313037326566393032316536 +62663464626235623466623563313833633362666439646237666339663561663131353065343433 +64616234353132306465643763303835333334396236383163626637326337393065346132343766 +66356463313466646463613463393338356363386634396664663861666662303333613238323666 +35306362363439323862303033313434616333363436343039373834386136396630633538383464 +30623535356562663965393732373062326236336235353230326539393531303063653263346232 +32336431393334343664386161393534363438373136363062353337333230383631343239643863 +37393337383866333732356165346534386233666636666265303566613264626563303664626338 +32383366613666336234336636376231396166383835376562633863353666303239613366373031 +37383337316631646339653434643239643837333339303734383431343236386134376636356163 +64393431633965363332646166623433356362343933613838623234653863333331343936326133 +34663636666166663230663065323065663634326330396537663530646334333862323937666332 +39653062343739316633326461353166343839623734353634616661633161306334656634663764 +33613139356638616431303064326136323266316438343238653962626164386139636363363332 +31383936633934386136663934393733323335376530636266393934316236623932333633313966 +62393966633538353837616165336161623131333832653362616565303065326661313064343963 +35353037373366376433386161303334323230623463393737633561303039626363346131316631 +39336461653161383330623439613238373364636637373137366639656635323137656361396365 +33643862616233303361343235386161666563373536623032656465303261373563396635396539 +62383138313234333937393639633231396339353562663133353763376662323930323534313435 +37653965353863333539653535653737346662336166613866623766613938386330373033333965 +61653035333265376334326539306235373665383562376437326461303064333333623539656666 +36393465313630363237343936646136613933333838383062336663353163666232306365636234 +62616630356130666632633862376562393135313231313439636430313763376435323838393032 +30663966326433326661386265653239623935363236383636396639323762363636313738383132 +63653839363134653131303437613065353032626662343234626531313565363433663236623636 +30666364643536323639656139343136633535336536643534636361363965643634313336653864 +34333432333562303166353535333332366139353939393566613238623236653366646132656461 +61626436323631303664633164646464306237353237306139393134386635336132373163343365 +31663833393061343961303734643834323835326630613936636139373530343037356637396537 +37306238363839633937643732303361366637356462616264653031313735373436623438366633 +39633538613434393338633664326165626664323864316136656132303535316265333366383532 +38303766633531326233303661383833636330343264376131646264383137633564373061346565 +38366462326536326263646163643936383264353630653234353635323135373665326239626530 +64333733663230626161373037336436343365383265316166346335373134633739653839613665 +37323739623063643839643033646261303163393961323634643039363532626665623466383261 +64656163323838616138386234303635656364396166626431353864613334646561623738633666 +64633138633164663635663564646634646232333738623438663834366666316161396535636664 +37386239653234633033356231626263373939326464663362613262333437636534613664636138 +34646632643539666531666433313030613537633765366234363065633162643733343331656535 +32346337363266353366396337366364383530633335653538316330316236656361376434366236 +64393530313162653661616139396539643838366261303461323363656438613632646466356636 +33366662616261366366323466663731653264313764616134393064303835653038363335353263 +33663661636233643639656362623062396361313363346535623866633238623463333030343738 +36643865643438613865656537323464656534326335396636373966373739616137613564306239 +64366163636263366334366232663266363136653938343061656234396263666530356135333439 +66646639393964623266633261356332306639343932343733636335323539613765643233336639 +35616135353533613464313166623638663637326562613434353036653661383237643230633762 +30633933363831663165353630366632653261613035613639656339393139373538383433636238 +34623063396262373032343038363664666332386332623437383261653637306232656633356632 +38316537373935636435383830363637636465303732616531663361633066353539313030393663 +33333130643164336337373732323836626139373563643561306131613965323764626535623136 +36373466646663643766386534626532336130653765396563613739383630303432356432633261 +63376563303065333531653463363066646335626365326533333866646662636261343736336136 +36393938343636313461346336363137333966396132363161613533396462313938356137636466 +35333762613435323461383566356364383634393539326333623131656535323032336134613363 +39333063386230633630373833646566353439653334663965333339363564313165623532323531 +31366337626331626332643437386432383939616236333063363966313237376130336264303633 +30616630666631663262383035656163656531643034343136323131626661643233343230613561 +62646636336136353564653030323361656562373135626637663963316465353864376465373533 +37333066353338393137343633393961363333643436666264303066653166303738393133316361 +35323062306466653062393562336130643063636530303366306164636564356134643039656263 +36373061376662343539663538636465363765336435333934626365386539373836333230623838 +35393366353938393131376265306437616562396338356163333233333466396366343232636233 +35653433353135356366316331633039663931656537663339623066363837333534333337386134 +37303864316331373737313636663832373466613238646336343536633933663137663532616334 +36636466393039366136663266303134353833333161383363343937666131666634356166326336 +32633262386165343364306132366136613532336465393361393263333437386665323339666234 +36386634373261373764306639623063643931636361636539333666386135373736633131353865 +37383639643033333732323430393466346662343936343666666533336639633038316465323562 +64653238666332303364613865643165323737306430643465326366616235303436333131666666 +30666231646333363538633730333436336433356263623938316433613738346361333666383836 +30313138663466633735396336653932656362303433643965373439313465633130343539353132 +36656162613732376463346462623734613236656135663765303734643031623562616636656664 +35313633616535383639373962323164393266653264613135303239396235656433626330626530 +30303739336265653866646538376130306637386538353536383162656534323466633864343765 +37383565333036613566313638336238393332623962383630303966393564333264373264396361 +35363638663030346336363761323064356463353763373231613761386132373632306337363830 +39633131323730393037366139363431316331376664333662396639366335323736613764323734 +35363730393530656531363732343231386162363762336133623330363161383865646233363365 +37623433616239386637383135353939376162306634656236356165636230393865646631313334 +30363533666237303037663035656261666264323461656634643739623031306133663735663738 +36336632666564303062336233373863353565346261633764376464396231346563353236663831 +37333363616166336664313765383562633763313336623937646436636265633161613636623939 +31653236363363616361616165336362363838656334383734346230643731303561326361626634 +34663438383235616237643965356430613665643937623935326439326330306437653032636138 +66306435363038323766393936316165313337623930356566653335366265376666383739646134 +34336237393032346633643036323332633039396161633236303533653837666164653037656632 +38336339653963313933306163396666663030323461353162323436393563343665323538626265 +36333632353462633135616539653461643262316230326537376530663966313333316565393435 +38643335316335343037616638356364333862613335393562666562376637396361383033323637 +31363533663933353936323063373230393732616132343938626230303632616664393733393130 +64626563336662303866626434333830643936373364393633396364373562643635396638373437 +34346531303332353334633439633339353966666134313230353161393432333464346161643664 +32373964646435383139353535323165373865666636323538626333313165346337626633663930 +37653833373931323836383435376231363461376630373832653661653334323164363765623965 +33333539376564333562343137303735666363343139366363393364363333616332373262336437 +64333835393736653532653139643736623032383935323138306636366266323562663530356535 +65643863373133393334633934366566366361633866646433663238663539393263373563376561 +38363064323336646337376231643666366530333931336434333133626336613331653636336464 +36326639376362326564343261636266303636343237613434616366373666306566643530396663 +30346430303732663635376161346230616637626161396137343130623834316566376631353937 +61323935663463353733306561366663616335636239333639626164623533643466646130653630 +36383431366263313038363735626264616165316539633739356230346639323634363832623035 +30623535343238663239336363303264393233626564366366353231653863396531393065313431 +37353165663335623135303736643664343961363637616232396637306563366334316665646364 +64663863356335383633646464386336643432363166316633626532393435646239333834613138 +65303034623464633830306333383130633435376265333337646366643561363934333531333761 +63363831383331636361653135656431343037386565653161383266333439373066303039306332 +31303538333166613535626431613731363737356538363763313166393862333737633461653137 +30613766613838326438356433626662613532386435643236646331626162346135306238313731 +65303166343463356234366666663563383664306566616365313333343936393539633966353466 +63323763363561313134313137323665396238626532383436663638633037336534343462653532 +65616230353837326166663164363765373265343634393231626438326163353062643332376532 +65316235626530666338616335393932613130616537626436333932366439313539613566316536 +34323037653662643139666661653231623336613837373961303963393562656432373333373763 +34316536336130313061383863306132313338656339383737363935643566323932346231376135 +33366432393139346135366630643430316263616335633766356135306563626366343164663833 +37323737353139313634303330633130383934343731623836383730336261313165373636366634 +66353661313233613531656361653036323762396564623833653832346336336362376538353331 +34346362666433343563353465323766303336336338373961643735656462396261663965663661 +64653232623263363639323663616533636665396136623565386161306363393465646635376263 +66393832343231663337636333396238643734316330643730656638623766396332393965623132 +66323139383535373131663139653263306265383061626537363563666132653435336335303236 +37653062356532346137396531393661653466633436633131663963316563636462376562663138 +35316134393835623232363964383931643233366565653562373664623761326162616166323730 +38346162363639613562656331326663303866383733386537626163393832326632633362666431 +34383062376465633962313166646438636133653731623931653631336538353630373934656431 +64353564646332666130653236373166636161343866396533313461343263363839663163303265 +65366437393136623235643030386637363133373737623434326261613261363936336164616263 +35393034636332313062613133383665323731373039386432616366353536633666386132626332 +32613136663839633138363234386234393933663836363534633166383364633262613134376466 +36616565376462666363613362393237333339353433326432643566376438646634363765633266 +61336137663464633632663831633134653839323564353361666564376430373336396235633865 +39663130386163373839356565396335316635386461613966346133613834326230373762323433 +31366662343738383661626434356561333533333431643465666238663566656534343465383661 +33393439383130353436653036646639626261633239653230343131353437306463646631383462 +66313235653861323262376665363465366632336233616338666237643063383235633331323165 +65356432383839666330653161636666373265353265653964626530396638616436346239393038 +30386461613139373664343635376661306565633932386236333435383666393736643366343032 +35356430633138373966363464383033613137373164623961306565386130373162613031363935 +64656238366336663631653334616437653334633130613136663561333262663539663161666536 +38373733393263363130326333343163613335356665396434313961323739383962663763613561 +33396339383561653431633666656439356464393332663530326261316437376263663735303934 +64373233333636343533393166306134613561333632663265613036363237636536613961326639 +32343235393662386462313030333838363166653135396133333935306638366433393665626463 +30353333613063336533613033326233616333643065333935656165373931373132313139346436 +64323533333865613539393130393264623063323333633630636262316532623832336431396137 +61373730383039313365393933666532323738306533653364396438366637383263653532336566 +61303230393865653364353936643434323236666635383866393834396662363866396230363862 +62623138333962353839393930316639363831303964613532333938383135613638373433333835 +31646437363338383233643732636466393363633362616534386665666661656162623462303435 +64373762313038333765396666363562373761626232666361313165353031323531396332353830 +37373133636339303661346139666464393738643035303038376363326135353535393431333465 +65373165616230363964346136636139373263636633336437623961616533386238343632666363 +30343932393930653334626633663031616439366266346632333561393932316561663466643061 +34636530653237363063383034376466323564663631373834373834653764393366303433303034 +33383333363631356531613963323639613839666230326334316139366561636464303639383934 +32303333353563396436393666316533623764323335333436366265366633313832636361326633 +34343333323735373432323438306362646530373738393130346437616130636433653566666262 +39656336333530613532353537616538353733363431663562643465376262633634646335366231 +64323766346164666435623262353839316337363864396635386661346434613934313161633566 +64316638306533323732383933356537393064386536356465306134363235353538333134343130 +30313366356262633035316534616331613364343461353535303731316233306566306430313839 +64366638303432383833383563303631303536653962386562316531653834343636363137326363 +37316364353531396233383532363835366261313366356336643731323565356262306536613536 +65363137653565643234643732396637313361393164323862626136613738393364393265656663 +33356334663639356532373831343132633562396131633064313535313235323832356131303462 +32316533303132333764626333626139643930666538313739303265303363363564313537633562 +39373630346163646361366435336461343361656535643664613733326637333933663230393537 +31353139316163396632653939306631393264383834396132333837306561306464396338353532 +62316536343133376530613564623366633632656536306266383135326136323339393236653034 +33333136653230303132653962623938373833373564316639376431316131653066393136346666 +32313730313363386335363861393966663066346664363062383237316136653434616563356138 +35616564363037626431366233306163353432376333373564376437393332633865323535316238 +33653362663433653231373438373464623234363331303566326161323331353032336535613661 +37613465373336303161613131623635303136393962623230386662336366373763653465323061 +37316130353566393236336131616466396234366434313238636538363132383763653665393563 +31656330616133613865353861626131663166363639363061616138656266313865373739386230 +62656137316363316236653235656636316430343238323233353534323463366432346630653038 +36663964613737643431336536623230363461323462333761383165303134303733393638346235 +33343930363661646564393132306564643839613563633232386561653337313837303566343233 +30646431363635653530393332393763663833303631663130633333366332373133376566636134 +31656433393331353530353062613435363132346534633861333337383662633935356336626362 +61303035666331613764306437623638633863303163393535636465626463393236316365653962 +64313130653066363566396561333264646135353164333131653536346233386636303166653763 +66623832653462646363643033643165303930646535656364346634613566386562613531613831 +64373938653934633031636135646661393162343565616538333333393139623264613631306661 +36343633343833353033663136633366363639383131623866643839643864373865613364663263 +35623161656330313262346239396463636639653261373162363331363062396564323464383632 +34666132643563373266306563393231303534646530373534396135613631613137663734613364 +30336262353739623136363238366537646564303735326530346435323539656330353338663566 +30626465343230383234663365333632376466303264616630313062356661626162346635323833 +63326439666332346332343733313564656432633063323365343230393237363562336332333132 +65613161623661376632616637663734393832346564356366396164633136343531633665656165 +65316136373666613036383561363361643134663763616264646662316339343934646432326463 +65656638343033323931386539636564633836326230326365653736323732303566366430363264 +65393563346565653234376236616662356333353034366135356139333661356534633832613134 +65383136643236393762323430653834386439653434313164396564383933616138356535313266 +31313632313030623634316363346531356665663432666466393832636166633864313031313437 +63333563373261656363393237306636376635626463633032633833626232353865376531386134 +38373730333064373533373138313232663465313861303165303730373632643433663037303061 +30363530326537643862323835373462386234333463626465346333303163393139323232396538 +63346135373835636235363530386532303061343265663164616463613961336231356536643235 +39643766643038393331346131363435643964323962313131666366643134303365303531323436 +37313565323130393161306462643636353061363862306463623335306438316264316662376337 +31663938323831396432396231386130353638383230343331393431326332366165363961646531 +35663637653330343239363832343535643861376139666262623365653138643434653063623334 +64366330313536333134363936636436316639326431366662356163313332663130303336346532 +30653261316334383839646132323836373035623361353664623437373138633962653263316538 +37303131623533653837383861333165663634353464343863386662303861363565666330393131 +31323336643362646665623733376662333531396635353239373861373033356530353466363763 +64376439303464343064346465303633303935353864636462336634336264643863653933346264 +33646430373961636264626364336139383665343937613939323864383261653436326633643139 +37656338313434373931323937363761623363653364616463376363323762326266343561303730 +39626132336134313236646662633731373339626361323035333136666631623636383666393863 +39326234653334396535643435366539626631356366396431306334626537656666336565396438 +62376431633765363561643733643331633834383134303631643836636431356565633739643735 +34396337343766626566366361356261323866323538616162343033316331336662636366326362 +34333366616536343638383062343234316339383965323261633062663837313332346166643139 +36356461313865316635386338333933376632653631653961633832656462313639366433326634 +32306331313363623634343830303738376634386131303935363937383766336262383333646164 +37633834303662366636666634306534386332653836666364343566373331656230343633613933 +64653035633532353237303764376434366531306634306264383366363461656662626139316334 +38383239383433386130303163633638323436316263326538333833303461313036343664333630 +35376361643138356561366136316262326135323934623161393837313731343038393861373934 +33653437623233373464633763386530383966666366363333383631633961633762656334386436 +64633466393738653532636233303264353765616466366137383661613738306133383536373235 +35303732653930646335316134366236343930303963313063363731396361313738646466396362 +37643462303730383334646464646438366134666430303165336435313533343530343238646339 +66346337333038316633316231383630666537363461383831326666343039643863353966633231 +61646432313038383666643863636337303763393836376364653339336166373265323738646263 +30363562633766393363323338316431633937383463356562626334663038353561636664656164 +31663234666636373736646531663532613335313830366132333230303865363034313130623230 +33373130323331646162323763313137353463373631343430376663373239383066636237343332 +34626138326632636466396162623862323062323134656233333930383738623066373162393563 +61303366623631393036303232646565383463623961326630643264326636636438363037663765 +31613365643337623533343664666232656433643663656638636635353633336566353264386332 +65333137643031303766323137333965383139626530383661346639656664623132306135623231 +39333466613463366264616239373937663234363131643434623939653462356364626536373963 +63306435626132376532626636323632306334623936663066646335396366316162623236386634 +65616366333366656231343732643433353437616130363865323666313864363936383830316336 +31346462316563376364346636313331653230326362613637376236393333323034366139313837 +39393865623830333730623861643531626235386165336636396135323739313736636634633661 +63656363643031386336363165396538333935623933346463316334303563616435656234303463 +31346261396564373033323463383135376538643863366237663038393138373062336438346434 +34643536396364323132396666326131613031326336316366346663363165373265366136323439 +61366137333732366537326262326431393934333932343435303465353961333765313833613161 +38636231386163346136366432666465653262656538303933353439336635363461666535616266 +66316364356432376366356465653265373735303839336637626233353962363535666433323863 +30616533393235376638343133396439656139383835663633303133393732333536353163383362 +62306130636334616130616539393233646231383565363033313063303865396632396433333134 +33316534343836663538613837366236353730313939656132313536393235623331366536613933 +64343061376437343161623961373433643033636564616534653831346161616262313963386563 +31313230323166383661326134353533656264353232303139333830346439623532346636303935 +33663637613161356366303834653733396633373830373739626561656539303332613437376433 +65633330663761383235656165356632643335363061666138333438396465393766323838323461 +63663262626530353362396138383730663636343263303539626135656533326266336533353832 +66393134326332393461326238633331386362373362363535653632653432366262363365343534 +33653337383066333932343132383937313562353832323865626166633735386536356266383039 +62303536613461343731623265646434343461326634363837643161636666336131666136336564 +31343765306338316330663832613138303166306332643939623930343664393966613963643263 +32333962353830363532666563316138376130353533663937386461393131383539643236313333 +64323633616634306636393661643339643136386339333336656161653732613531373833393530 +38626565636437363666313965376635643930633266643630316132376335306466316134666465 +65663964633062326532336631616535396332336131366661616633333032393539303635393339 +37353263643533336164373365346230313533303236643439633031343739616165623361366236 +37316261343638633238353433363232346262393164623463633137376262646539396338316365 +31613335643130623837303736383634326662376537323937386335326432323863613539663435 +65363834353262346665393631343864343265353033333662663537346165666239653232663139 +36343964336232353761343765626331373733633866396663613264373932663035323064396466 +61353235613364316233343463356134393665636361323731306365616461613538326261343234 +30646261316162353862643732633338316563373530383532393334643836366165323465303131 +62353631306262393263373464326231343734666336316663393733633430653964636637323635 +34303963653563616330333939313336383066353363396235373062323566363137636139666335 +32376635383463633261346132653632663064646334343033393333633138336631366332643136 +35376561383438623234373130396237666166336536656538363761376333396332333363356632 +63616338326133303130613936366262336565613136343561373538303030396136656135316230 +61623365376262373636373730616132373430386465343434623236376635353031353061353930 +33333366616666303437333637646230323166663265336565636562333863613838643535643461 +36666237313337363963323364303937623032383035616537653263633532373933373330333034 +32613564663037383539616437653736646664356437666132323762373732356537343036633934 +64386461373835363135656135613431353165336464613430613264343661353333343262626464 +61316638636139383861343133326332643330613836363262653332623935633964633662373165 +31313333663334383437373630306265336163653039663938643939656536343165376662313738 +39346132306664353136313434316361333631623030306461373464303333346439643933316535 +37656638643832653563663231316635326635393436633361356462613934636533663466376535 +36346436393564383530353834323965396462633966336161656462316432353566303034373239 +62646363383863353962366232393462643033386635613065613934353639666134366436396563 +34613463383731643635343166356461636161393032643135316261613733653966356137316363 +31333237613164626266353338623062376161323535383364396138666534326639376666666435 +39633263376139653932613431343539633661316338633238643061326239623431623438623966 +63346430363138663861346131373734343936666235346462313838313432326566343430383462 +65383964343132366265633131376561666439653261333532656132653330396234653236326461 +66636365383965623361353666376139333831333565363437393038323566313361666361626231 +62316364323362613933366437626263313863613736653436323430653635636362363936313665 +63666463346139356234383332373663376436386235353066366337373262353862643264643739 +64623139623635353034666539656438383938313436356539346138613232393064323332373663 +30353234316434653433636331386335313336646665623361633565616435393830303938343732 +31393537316436383531326632373866343331633664383033393561663564386462376166363631 +34346166353938646361366136353638666662393961613961323634623262396535353835366232 +62633933316338653035616238353364386261393338663661393236643131363235316434636166 +66646362633961366562353365333064633031646539323838613638353435613833616334613361 +66613435613062323565373163626435326634646262613863326563363064386134623335303461 +32323733636463336331663933303032346464633030326665643732343331353939656134613234 +65643061366465353262326134313936666361653432326565336530343266623761363364356633 +63646365386666313964363863303061616234636365633537386431323638353138616662303536 +38386339343662633337366239356238316462386235383164646566653039353531346639626537 +33363262393739643830643639343963393739396561383231616633363736366166323637386539 +31393637626263643964633863633630313132393063666132303336396238376664666435656431 +66366432396464333235383235366165656465343736343266333436373236316635316337633262 +36323864313163333737353736623564353234343266623235373764653434306135633037613031 +63326430376363343639333563616264343131343531303839303334626230333665303131386139 +34643736623763366130613966323733633835373066326331626561313736343232386532373766 +64363937623766326538383834646161363039656166623637336463376237333562323231626566 +39626236333437666335306531376662363865393264353166386665643937633461376335343163 +34343664393633386261323832313066636635643137313933346362373736656664356136366236 +36323931363364613665313739333836636332373737353138383332313939373237383233616662 +32336239353831326536653662323066363830383765393564386637323064623064323863313166 +64636162646337313631663538643534373134333831383432623834636362383662663931356233 +34343436643164316535623438323239643030643934373137323231316661643235383664346561 +35333435653537323639366261386439633936636466616331396363343763383966646162636530 +31633737633238323237313932373936316230326330393135623664383839316237646437316334 +31393761303866646261343937366334323365656230383633396231646134626165376263393039 +61613039343138626432336437646231376466663763663563666137653437376532653438663663 +32616438333262353034376236636630336265643639333266333233616237653665373731323537 +38356238333062306335313536366366616434353862303666666235333536326538363031326334 +39303634346436353836333963666531326564323064373730373264323634313938346130353837 +61313363636631303264323134386235613839626438633331393263666431613465373464306462 +66346661643436376137356232623133323462366234646439353732306139643539343162313664 +61336665303136623532666337373962326139393936623233666432633534323163373434373630 +32353364333436316261343562386464316339636538653035386631353039353237633433633135 +36303365303736633132613432613066383665346539663536306262366638323131623365306431 +62316233663032656337323039646639343662393232353838666539656164623738396666323239 +36363135383737613966376563633434623263633664623665366663373137653764376561333965 +64323731316335643836336536663362626464393765343834336634653235353037656535346634 +61383232316435373531633934326335633163393134383235666661393533646335326265653930 +30643062373733346131666262343563643234353839373364393731386138653033653432643962 +64303564643332373062623935636237336365366130343166336333663032633466323963613763 +39333661346265356265326466353636646462393665643862306239303762303437353666663134 +33336339306265356166323834326164326237373464636530333064326133323633346134633432 +39363831613363333833623466633736376335316437396337376234343431626639623961373064 +30656530383966346632363339613731373765633863323366396437633232333366396335363564 +63386139326461366231343665646165653932663934393165333236653139653832343834666265 +36353935343532636632316266343139636637646433363730393533623534316564313034663730 +63343638643632316365656463393064623932636634353562373737333461663633396138656264 +61376566656432343836333135353062303436626331643739666266363762383633323662306337 +38393732303238376533363737613936383361643463396232623330666636373135643062356433 +39343963386662393238616563336337643739643537623035353034366139623462663234663864 +65646531616637656435663762343565306664393266376233333036643830326436323334313438 +62393662303861633533623564383964313537616632393234303832373736636134393139353765 +30326662663738373861373637616462346534613234623661303835383966613066613761393535 +34333631396664663535383431343961393063353034633062636631383232393139613232663732 +61306534623663653538363461343966613335626237633537623433643265633465663136363136 +36386239303964623935393930346564353633396466613537613333643339353664396434623866 +30323936393937366162636130356139386638643939346135373639386633643635663831656231 +33383232643864356537653733303764353864616263303966366564353962623661336234333234 +30363037613539376434303431336238343365386561666163393965376130313434326138313562 +31326662333263316163316637636632376239613864653438373931343435636136353661626366 +34323235323566653836316533643439393231646531396238326666373265313731333834363961 +64613636316637336130366636626339656562626564646466353635346364376633326665353466 +61373265323266303833376637363439383362343530303032396463316137616337333036343532 +62613438353435313165303166333334613463636636636634646539623036333933366433353537 +63383031316435613566613861396538343336356262353862376134316337653162373965373565 +64613239306634346161313731303765626561353461326436633337616264363763323032366235 +65623533643334646634646465623633316664656466303034303338663061643461386338666264 +63346665376131356630643134326632336335353363366632393331646263366132316163346464 +33363161303333636663383466393136623362643339303564343839393961356365383466646638 +61353662343364303131623237363964613764353833666465613065313262313265326333316136 +64306531636337313739353538333231643536353339343066393561663564316139353933343638 +38383733653065333332323766613863333632333464636435333333326139623330303261623136 +31346465623463663163613837383661373861633235646436386632623833333165383561626333 +36333537386338326631386262303164326436643833343335303037343665626165616161643035 +66303031633661303935363938356566386638353432353436383133396335653833616364323831 +62663261643236663338313465306361656232346336626134333530666430623762663865313863 +32336230653437306665636538666430643961333563316138653138396361323031623037616139 +37336261316435333035346433336532633336353666643661636163313537376631353461336261 +33393366656238353261366436316434303132626465613632343563306338323630306233336562 +37623035663137333561623565333238316465613566653262633063383736353639396363333262 +34656137633831303262316564613230623061333636613330326662643735326665366237663735 +34303766613336633531383034303934656566316465316161666464623534616565353731353866 +37303736363564643864356564366134333664313732336365386235386332336265333431373933 +32666530616565643234396338346536363861343261373136363032346364306337336566356637 +35623137366236633330316666303737303930346432656663613062303531303531393265616661 +38663061313635653133363137383563393939646631316139353435663432326131353332353566 +35666165666233383639626535656561373635363964326666633431623436653464623734626233 +34633666336461633238376232313430393665643039343561336564353134356163663435396639 +62303739366637363763396331353830633166333266636537366134616133333666616434333134 +30396664323064633837353763643733336536343731336134613865306563656464636631356439 +33636163386435383561373461336134316663396331646261623637303461353837666331376363 +31396230323736303631666337363838623033616339323333383333396135383561303165646439 +36396434343839663332323738396262353633623532656337646530303635303933336337336262 +66653065303134633439643364386262333866356131356135303661616135383362393237613733 +30646632653230343335376439623236656333613461616639636162616531326539626238366433 +62643335316664313564346166613731373232656636623764653833346438663139343566333437 +62316432356339373163646262303631326536613239343137643038343830666563323766366339 +31613139323632353134323866346164326463636461643962336430336131653865343861326230 +64643165346466373532663039663261633165653232393839663335363937653138663934663663 +32643438353237626265396666323565313965393635353363356438386163623464336534346636 +62333366366535346132396238353764376533613634656535633161616665346665646635353430 +64336462343033313061393133323065313835663038396661333962646533356231343137383233 +63646239646263663030383961316364646536316161663665653738623735643037393837336632 +65653333623635346336393038393865393930336135303433343831633739313234626537633164 +39343633316539323538633934313737653235363263376537613836613339386361613431313636 +33353761346665353439656534613630316431373763366636633131373336373937363835636431 +36616234366663376332363632396261626632653330663339343163333365353636343037336237 +64383063326665653064656334383335663065383962636461336262393938363466393563303866 +32313239623465373436643339353466626335636161626638613235353734383132646563626439 +63333930336266623265616161313634666463383434653436343665643339303765383836343333 +66613262363438353532616534393330363961366433363135346665323531653266653065373938 +31613430316465653531363235653261343030373131666236663365633661303961366131303338 +36333735366130373833633762623534633036336131386533646666383136643062653833663032 +64626138623365326363343937356265613863343834366165636334343362366664623266373332 +35363964313261623333333630353537336333363464353464383336626661613030346136623336 +30323766633730373736626364643964653733646538376132666533393731623566316266643866 +66383135306539623039616631353235336365353631633631393966653937646333663934363235 +62366462373539313436376139353438636664636339303730396561303063323163313138376566 +39316533313539346138303137343166633566353961336262353537646431613339343436623335 +66376633373136623936656631393036333061623039356564306432326330363162323634613639 +30313462643963383965643862333838376534383634653535643365643434373939353163323935 +66323661343234343538393836666335653866653437663538343462643966386362316461616261 +36653330633837353730386664376330646662326331616533623738646633396262613531336639 +64313332373133396332663130336437353665663762343737336430336161613632343237336130 +35336434383634323031613531643461333032663334653065383839633863653466646339393734 +64343965343137656138343236626566613831363731366336353636653439633330663632303830 +33326165326366303839646435393761333335323563653038306435326636363232623539666663 +30376538646362303639383763313664366231383333656231376462333739323234313731383135 +31316137616430636532313437666232373565623437373165666165616439333638326632303632 +38666666326234363634626531333433356138303664376663643733646134346365666266333666 +31653034303432643633613266363439643035313531393830316132373363636638373665333031 +30303965633064653737343565316636393766623332363734316539373036326137633436663665 +32613266393239393066653035636363613562373163326430643362663061636338353236366165 +39386464646661343466346136343438363866303031653433636330363534373939613139323363 +37666262343838626631343533623434353864636432393961626637326534323663653134373934 +61303630663036333563363134396334623466343830386632626632623461663233636335633330 +32666533373561323161313538306366323534616536613764666564326436633839313335316532 +34623566656664663662613039343865356664613636313233663365333736303333353434333630 +62356536666331303966356536616637303764333539363764393034633866346663653135653161 +61653937306631393665303462363838646262343433343563616666303363633331323135646166 +36393965343466613366616565623965386434663063653834383132353231346239663633643235 +64396537366137643930396664366337643936623734333837663330353763313733356433373336 +63613566303464323161653638323061646261366464326439316565623962316436336433386438 +34316363623039326336393835386236633561666333656133643666613734343765666666363834 +33303366386365653933333238336439626238623634353334386138636664333663333534343832 +30663236373761383836633231626335383337656635373033373136323861623862366263643963 +31383861376665366662623265656231326631336331336563656565616262303866323135633136 +62323835636134636632373062643937613362663034353464613733633238653639316635323139 +31643237623138373966653434313138353362656266353537353932373262306361383565383930 +66386466353837386165393861343530396439333865306163356363383264643838323737633964 +33643463376562393435303337333361373333396537303330656236623263653061613030633765 +30356239373534666330366434323864623138316564333933383336386237663034303237383138 +61356163613165333835636333363461646136393230316435393765363963363737613530323232 +37353838663839633363636666663838356432663130323666356235313962643836306334366238 +33613863376163616237353538316230636166313832313664346530326132636462333063353762 +39303138316236633065623962343966323766313736316166333135663334633633643337633437 +65613563376462633562323661663265393435623131663131323538653230626365643865653136 +38633733356439656534646532353161316133306636343032336466303862663564373931666563 +30313865383335646661343335376464366365656234383139376563336261623562646463343434 +66663730613839623135653134343738356630326631663836396666663034323030333961356562 +65646338303930353232373063303437383239616538356235636339343436313965646661363562 +61366562393766386139333536373334626364636436616534653034306161333335343561373134 +64383339663733613364613362346630383336393366346533613631396665653939626336336139 +34303731333932306263353230623231373037363139626463386538316666396164353363366664 +66663931653966323265356530343332333437326639663230303330366239393731633862323533 +33323938623266363131316639336432383236333163636134383630303733333634663238643264 +37396666663766356363386333353331386439383337343464373639663037396234353164636464 +66363163646162376230663839653535623939643231313537616334633037626663663338653931 +33663837376361316434613663383433306436653438383366656163653564613965386432333763 +39653262336233356238363236613534646132313266653934333165336638326562343131333037 +30623630333666393163306163356165636630356531636532613637303131613231313630663065 +65363332623536303132323631386635623339306639643037393736343431633334393965333032 +38393537323437613361396331663735313633333161393733343338616138343161633965636566 +62313431323838633035646432316334313739646466663564623632636539356265636235646163 +37393934303562363463643038633139613835356462636233316436653238356666303235333838 +33643036393837356463333539326238373530646135393438303432353262613362616661353433 +38386630333164386238323839393139393166303862623032643161646335343032353061623638 +35643932356266356263346134626161323330306138313030613533303265623763343861653439 +36373331326530303636643330363662336335383661623233343831646230356463356431393834 +36313131616666363062376534613837623932663033393634313835326339653937393739666430 +64333161663531343430313062636337666537383437376432376536353464613932616333636534 +36326434343937303335316433306333663235313734643264303331373961656231313330633236 +64376338303636623166303737313130666463663537623766643266626636663139386435343932 +62343438353336656232623130316333396332356663626236643834376630323938363237393436 +39366634653430396430636330373365303039353135373561323636396538383539626232626563 +63333934663433626561393837363362653662383435333037653230613538306465313634386336 +37643839623430373961383634343037643062366361303831376161373435643261313935663464 +61366564373135316636303362666362363031353365366463323062363832313033363661383535 +61656564666435353361633863376233633733616232313734306634656565366631343635336235 +31613966653631323535363964366261356630303863343133383136336465643764393737333962 +34633966323666663737666437396463316133386237383833333562316430633863346661653233 +37356438323039356338363633343636613937363361626539613561353936306130396336333534 +35336661396462653630653365303262616432323335376661373734373334363265343436656437 +62383838663965373661366137356334343963333231363438393836666235616565373137306535 +38633964356461396135396332656436323239303965656463663637333563306133366265383837 +33333739366637343131323565353835336661326335333430633830343538653238663932616661 +32366661303130613337386531656461663738663333323130313232643964366364623639383163 +35303033353738353633313630323138313461616230383365626138323562356361323164636331 +39636663616638663565303039303331303237656337646635306338386161616130316239643962 +31336565636561333264643261626664663863633234373139653339646536666465653638393638 +65343634366338316366373765323430363832613532323864313537353366326136386133656664 +34393332656439373064333436306364316433613837343764336461373339333331333566643862 +62313031386562653262313161663032326366376163616266643139373834396665653063333132 +31326230323938326231333531363535653435623431373561356462353164343164386536316661 +35353236623765663966343037353734353230366664313435336364323763643635333935376238 +37306537663530363835303566306331343033343534396637386563633731663461353437343862 +36326463613334613031613136346638666563613038333232363964343038343661303165643564 +35303964396333623739323534383134383032383366636535333536393062373866643235616332 +34316431326565663233623235626137633137346466393530323463623864373932386463313431 +33653936386633376139366664623535393739386230366334336664386233373663613865666637 +37613238346661376365636136643635386631396365363830643534643063386334386432636135 +33306262613461373761376235386333646630316563623366383135303461343665306334313661 +34333435643764643435633831333761306361313162306666333764343065383231663238663538 +31363732656566386666636533666336333532346333326337346565323936626335376261333734 +32343164303935383239656332626565376463336334313934396666633534316635303232383432 +66366165656336383366636238346537323564386230663066656135316130373931353534353831 +37333034643230623362353137643363366365646237386566613036653837353836356632393139 +32633237633161333763363663313533313131376262353363323864663635306530386134633537 +32626263636635393734303964626662623038343131373637636166376563643636366539653538 +63666164333831396134643362343262393936353134373866303439633938353461363339363938 +63363931363139336362356663636437613366326233343565303834383861343537353262303332 +66633265666537393465653961343731663366316665343539343734393163303931336639313833 +32373435376534343438333834616564313865643531383465393938396437626438333165346632 +32373533333335343264373132323432646439616336333736356361333234313461363237303265 +61383961363532323634343864336337393664636437636633326235646638393839343031626364 +65396264353834386137343934313461623331616262373266366463316233323835626436323866 +30343337373634386564373538386563386235323436396530626534353563633330366262383562 +36386336613261646261643932326532636566396635333065626633633230356537373934653338 +66373632316431653862336637353137663635646438636364613463613663373137353532386331 +64373362346230393063313831373532643831353331336432643164383461383265666564663239 +30383663313234313365646234323535343463663835626364303338626436393339666338303234 +66316434303636373837336261323631303161333534653965326265373439383966373136303166 +65663864323636366262313663643736313764383963386533663765613732303463656364383066 +61653931326238653234376334386464313333643039323835386564323431333537663335323065 +39646366666164656663623165303761373266353336346435643635363936303365303239643837 +61363164336164313261623764656363653830343937373463656332363236363463616434356133 +35313737643330393930633436643735623161663666613434333837646362313966376633383032 +37643933336361396666313861633165366461366364333634393662343438333231313939373863 +39366361653261333436303138306133336333386436303536333534326434386130653531373934 +32343434643330326331383066353462396237346565633565386536396265623766313131643463 +32663761323732656637616565343262393361633333613063653661366262346233363536626431 +31323238333038343363343636343064323839306162666536656536333761633832613832643336 +39353438613335623939656636303136633762323135333663626165376233333961623032373638 +37316566316137626664366130343139346331653066326331623766636434613637373863623932 +32313863336166316465653538646337663139663463393764663930636366663632623136333065 +30643534613934626462653938343331613631666131333730636337626466343132643964333733 +35386662316135663031613631613066306661633838366137353664383431386262653739623739 +38363438313665393737663462636139336334393633666237616662326266646234663365306635 +34393161393563643264626233323065373463353961393636356234643330353930333237336663 +30343261613538396266646663346138613431663838393938316330613634336132383865633865 +30633464373966306164323839396336333930326130373336623331336338636361633737343163 +34386463336464623866333937653862396232633137326461633738326663656138353164383535 +61343739333163636564643331343362323736303135306430633763666335326365363735386637 +37353639393865393862306436643163613635333763303434326639643931373964633732653865 +33353330303761393434656537383832343066343834646338393335373831393562636235626130 +31366132653435636637363634633333353637303035643762623037646133666438386565613137 +35323164303162383330666361663462323565336564383066313531373532663866393731313830 +66376438333132333562323237306465346263303938643833643932616538333635626566653765 +30353231636632336661653130336130316138313634326436303962346264643838383438666430 +32356130633133366137383038323933373136363064663765313131646138643165613237393862 +30613937653632643265613263303461393638333131333732643534613136323062623065653439 +62663239343230353164316164366535623235396364623137616336333130336533376463613631 +31303631356165616639626566363439613735303931336535633163613439343064373961646439 +35393839663533343731303466323561336531383264656563636238386535616166643432613338 +62643263646236356563653030373566316435306565653939636261646436336633356635363931 +32353431363334366564623130363332326233623333613966386137366234663335643333333538 +31396335323030336262636462316435383139366465623636656130393363636666323638336562 +37626437343135393230623865306365316632323637333834663039653630626239623462323364 +66383561373832663363643465653263656263363366303837363934316632346633336131336466 +39633561393633376530383232356463343932346363376235386564643631623963623131336263 +33396631343065303532663937363362323361316238326534343631623664623739633635373430 +61353130613632306534613535643235343035373838313963383864623434393862346430376138 +33333063636332313139656536303364623939353065663436623064386139393536343437353737 +65306363666539313237653265343232323632386333393562653239376439666637663031353664 +39653363343832656339666365306166643066613730663663346335313531303834633034626636 +36623462643561636465363230373932393439366364383330343132333166356335663062393561 +61373833313537326664313739386666343165313036376265363765653562303336333364626639 +30396339623561366662663463396137636635666630393463306163376434333038386637343163 +66333636366231376431303932313534393763383363386431396430646336373033333134383232 +36653634623032363638386564363133646538306262316334376133343638346132393661653862 +37323865386234626138323362626538316436326138353836383431376361616631326236623330 +66656635656461306566333765336563633435353464616335353964313765353565306632303032 +36363933643563343332326537653863663263303165333562396638393365383265373665373865 +30653633383265373634613837363434663932626237663831653464666431353436313034663734 +63633766646461376263313535333564643966316130393235316231346264363261393536323231 +33636663323433643931623033393066303765373230636638653961356337323565643866663130 +33316330643063656237663833643866316264626631343963666130613234363836326233393664 +61316666363761376438636365313431333061383734386231626466323462333238636366613131 +66623138616366316666366365623761363436383438633338356538396230306430356136336635 +62326263333337313061613265366433663138326637646263383937313265613339393630306634 +65343932376433613334303034393131346361613661323063303664363931323437633332366161 +31316566393731336662663834653537313736336361666538363263623539333331646230616331 +35666466376132616336616664383139653530336531343137656435373966343531363763636231 +32336161376130396136663432363732303530663163373935316635386265323038666336366532 +62373233343237306264393766653665636233366332636233393439616439323237653630316638 +31386530343664366138643662656138303137376436306666383362653566643065343230616339 +34336434316535336665303632356139666539386634333735633163346365343766353931653532 +64616531613965303238346232373536323564353763623130333361363963616666663437356665 +33323336323135313265393361343132623538623837623536616131376232646264653030343436 +30313261663535373864353236653030663637666464303934633166393635373130326138353832 +31626437643530333164366633633161663133653965303433313262373838353363336435643337 +39316164346430313939353035613339623636323663376634366365393532346632623638383465 +63363065383834363438333764353835376361386335636431366638343039336364666664333861 +31343564613931626666643762376134663933333466653233343635393539383664316364343330 +36326138633530616563356334313636323436373833396465383636666634303962643839663466 +34623130633738383161333565616430356163386438646462653861323038336336343766663530 +37646334383730633766633239343262346538383131663833303431396233336637363738666338 +61653533636332343438323161323637636238306633653633383431653563353833373165626165 +35646334383862373935333262663234653830356132303130373230373138363766333866363366 +31316432356436653334623762666239373964313632636339353338353261386336643835396631 +31663438356137366131613838373766613335663233316532643561643036346133383235303335 +30343135333536666564326438613532313338343062613032363265363730316433633164646538 +35613161383933303132326431633933626161306562373862663563616164393433666663333531 +37633366353531303764313939356132366565346333623039396639306137396363663663343864 +35316161316363316161666133333834333161636432373763626134386562656334323464616336 +33313838626630643139363137643563613934636637636130313933303964643139323363336563 +31353962323137663061343964656561363466346139326361616366616338356236303833343636 +65346338313165633234356465393631376332643265316132386133346461646561373865303439 +38613032643434393136303535396361636637333666633064376162653137326130666265633336 +37663233313034653865346366306535373138386632316565626165353866653764343266373561 +35656461393763323732316664626438386639316332616436383233366463336263306237376365 +39623935316535303162656234636133326461613234653734313362643537653562373830326331 +30643363316131363030353231336338616431643130353363353038363733393538373037383538 +62386464306231393238636437323530303638373261353439323236373361356165663962336132 +38323761306134343435353463366264333530376236343138396134663933316131366337343235 +37333733363434666264626666383934366265313963373432623862653038343539333362303839 +36663662313131366330616332303036663161616230636362336566306432663365393465306133 +65353135656634616639303566333337316339636238383334646634666365663964333566343566 +61323865396461363730353963613537363531323436363335386533323936353234303638336166 +35323065633937316437306665313162323432666261633037323962643339333862343239353236 +66346132353033373338316131663566643363373163303734373363326331343031626536343564 +33373939613235306666316435366539656433613235616661336563343734336165303431623963 +38656539356430333039616339623262613334396335326663653535663661313238343830653161 +37316534323263383239323738363838343836643765623666663764366233633033663664663839 +37346634613936643734623063626664633761346163633261353835346234366166643231653962 +36666365373539656135303762306434316239663031646639323932353839336135366464633235 +32666332363233336130306139376537316236396432313766343061396636643631333564303335 +35653763313031336265646231373534363061653764303137656539616537643431303361623062 +37643266313836396565363166363561316233396635666466366636356633396166393735316563 +61363532313737393138383134323463333630343962313733666538303763393136386364383464 +37626264663563386136336263623730323033366239303861363462303462623031383436373536 +64643333666633303432323863643537313831313864346365323633613162363237326637656635 +37373062376133643331636436623831393537343836343066393664346237383363396639366231 +38326534323566353438346535346632333063303961636432343330623634326366343864373338 +39346666333264646438383464373863306136303333313631343835333930343631373332366234 +36366438393062666566396235386532393436616630373737393865666338333330396265623234 +33303936663734646433376232656538613733633339353634353864396135616662656366383462 +63333430623130323036363763646263393561313562653635316630323962626264356564353838 +39303533306332616461323466393533633863346433336562613764643337653430376565343234 +33396530653261643133393164336436313034633430373033356563373838623832646236366263 +30316139393534316338303162316166323939316435333538636263363462636165353761343937 +37343661303035343638383035346262313538376336343331383635313563653666666632383534 +61613866383166373436366134303930366139396437663038366639306166643466633139303239 +65373563316661316439656132376336363062666234366333393932366637353832646139653138 +63383134396265656632613937653232633439333735363032396264386131373838646166386337 +61356638393932663333373764643464336666383233633464386662656534363964383566333762 +38343963303532353537646662643364323930633339666364613664643334363234363134646164 +32336434623130626462353431373339323164376137666562376430336335366536333636313334 +62366435613065353137663135393930306463633966393137653936613639366634303632356232 +32626638643930663166396433336339653533383236356431646533373865393932386663626532 +39303330653436633764623265323139306435666136656535366530663231376166656636613731 +64303734373730353138386534646334386263626263383865626264353161383839663162613131 +66363230623737323766623331623762356664326363373138613039616437313134383462393537 +62623530623163356331643761653539303735643339616638633465626363666234666662373863 +31396238383630323233306265346232313436386361396630633630373639616135336162393036 +30376438363238626164643463303932336364373862656538616438323635306366663838316563 +32643864353562333339303664636530656330646134663639636463626461326661373539646137 +34633236623561353831663637313161376434343139643666343662656566323962313937633761 +66336235613864623666356438623862646333363131656333303939313966613739626133623562 +31653034373564666437663236366239643832623138353535336562316131353535373333366232 +34313130333534383830346461636631343037316365653139306534666664613439656436643534 +38643333373232373361373737663365353638666531336437306133643937643761613835323930 +63353033383862316266323032663032636162326139383938303935643566623862653839326361 +38613032353562363133326237313663313931353561383763363365306339633164363236353637 +32656365643839303934346562613933353865396637376337626539343361633563383461346435 +31333665303363326235343637303562393533646439393464343462663233386532633933363934 +62343139333563633430356532613562613866633064316165313034343466643732396530323036 +65636135333131363430303763616262326538636665366533376662386138616533393635373861 +33353166666266323639636164623234396264383535633033313165323966373331613366323066 +33636234383561346136633565643338363762353365616261333334326531386539626366373361 +38383962613936313330306539656161303765626431363262323832376463656437663138303230 +32306132633463663062316332323166333634373035346538373161346234623764383932323637 +63343236336364333330663334666331333738333833393537656433656631336462333664633734 +35383132323064313139386364313536333461386564376638613533633530623966623034643634 +66313861393263643633663730316163633361383530363531336234643633363831623864646165 +36333332313236633161373035386461633937326539373763363165613661313461653733326339 +30383739393561306232323938666435383431323930383536346339376261313732663439323837 +65646638373864313566363163386535626263643134633930663337633566636433663266323335 +34323938393261656336316334393838383761663439333539373865656462663163666365653631 +63663538386664336164396366383465376135366634656264353133383331643465356139343233 +30663764653234383431356261393338646230666166623436323937656561393366303461623034 +34653733613063373332336437633962663036326437343037613534643834303637383834623830 +66663663306666343463363933306665336132333766356462336466633138613630396364383464 +66373638383262653334666161643038393761653264336564643363366637353863653466653034 +30303834343438363931326332663437623334363435346237646666313733366630353765323762 +34623162306665396461643636373862636539396539633437323231373935343438386261323164 +64636635376438393736316234323439376363663364616564393530363462643664643234383739 +39323863373837656336313965613032303630313434306131303330383863663936343233363866 +66363034313434386463373535613831626565623064666364376264623762396432653335393438 +62376639663939383335373934373634386638303439663538663966353166393235393766343232 +61653266646335353264393337313136383234336636343339636139356133653230646630336662 +30316631356562646135313063323636326661346661323663393735313062306230613262306565 +36303863383263343466633438396639376336656465356165323135343435336234663164646635 +30313733373665326262343163396136353462663763353235626238633339366666663633363239 +35636236656332613438346137623232643961636665356634656561646234613935333765613435 +38303138646565333261636430316334343836653832303665633032633438353732356332373731 +63393835653232626334376535383931663166633337383637613533633063353563656563363964 +63623732656266663366613766653037323736333133343432336535376564626433386564343562 +66663436626666313764653938623633306432653535356432383965313536663362643761613533 +63336234376334613062353535353637336637613830643931643862366134633530303666303638 +63663161373063343439623561343031623232613863323833633039613964663530363835336435 +61663130323331666336383933663636393565363930383032333363363435633765393461366530 +34393933646133633732363834316665663361376336303665393332613531316263663063313333 +36346233303233653861613762313837363530636165373934646362383537333935663835643736 +61646639646236623261353831653337346535613534343434383239363363323336646664303830 +35306634393935363034313666326537653033646564646265336464663133326463626239313231 +38346337313231386334626333323233343739393764376564356361646638356630373162333537 +32663762316133623339653938356630633363623332396136323438616139636430646330343561 +36393139393537323733393831376530646565313362356463393966373366383363376364313963 +37363530363931383366393939656433376537353433386465393632343365666236333361623431 +64666562356361396436323265363935333361653631613931666435653161316561616437323037 +33323432386363323662663163623338633365316638386636613364663237343465336339353237 +62386331373036616331346436613361346131633335383366633563333962643434663834346134 +30313035626564346235386539333331396437303236613862653334316430306131666161336366 +61383166323939383164663833303465376665373261613236313830643536313236653537616663 +32613066303535393535396266646164333262303032613031313339623161343337313664626238 +33613565373364623963623966313163643033653563333764316532356234363631666364616564 +65663963663132613633383832663132313932303533666463373665663661623434656266653136 +36373133363536386134383338613263313664303964616561366265626432316533633062313137 +37633961373234303162343839333461643737333037393865393735653461343962323662373232 +62303036376235343961316366306464373364643639653732303061323335353931326263623638 +31303831636662663435353532636331353535643065303031393333336235616135656265306466 +33343962316237353530393436643837336630626634663230663666666163393964663261646162 +63356131336561316433303264316430656365373130396361393236353863383637323936396562 +38393731333566336332646232383566623534666531303636333539363031373630303332356137 +30636465353962383935393361303061313261623063663264656166623839353335646536633031 +37383233666233323238336366326639623339613164666632373863373335333761613332313866 +63626631663538663639303565373431386331623162306662363335326666323631366130366137 +35353135313132373338353562303333656364346234373761386334306564343231643633666234 +63356264633765633861333932386330336635383831396235363435323939323666616634653037 +31646266306437313664353266313139613034613736656230633836336636663063393866346237 +63336636633035356462333137363438313039626437326234643836376130313961313865623564 +65623131323138386433633334663638636636316232303331386334313234613237333063663263 +65386362376264383165643263313361326130626664346635386438343337323266326166653363 +35313230376161346138633239383465353038333535343231376333333032663962623631396338 +33333038646136626365306538623736323165333534303734623965346538316234366562333261 +32333963336133396463653831616265646534636564303865326137346236356461366163343730 +39356136663937333230333830643265333634643139663361653838653465303636353834636537 +61363830643530373065633662313431356362326139636462626534353537653461313532393836 +36383632626238353230353666353433396433616261386162653739666136616437343666386335 +37353561376437366238656566316637386434386539306534306237393365393235616234303362 +63633033653164643761313636626266383535363536376235333466393464396566373939633531 +30613030316466656430626365643239356135333838663231643661393035633639643934363263 +31363332346539613634613733323366663534383062653738633336343062356436323066326430 +37383238626532393265653462383939653730656432393635393034616461316264346635353936 +34663832353638633932643461643630643137633032376566386639396638643833346563303538 +34373235616435643532333961333632383935643463303066396637343935336431316666396130 +63613365306433323230383435313064653537366330616434616535313038633734376563346438 +66373334646264376434316230666439663933616465653165383030626561363736313065623036 +65323865336230313234643538373338353231393166666638633132363734393466616131333331 +35653466383931333361623439353664353139386335633161326163666237383534336333306435 +34363235316637643938663664656661636663663831343533343062616561323334306236326664 +63626462346139363738363165303063396632356462313336393865366232323165373763356132 +37336336646134666136383230313434396137613166366235313137663563346432663430653039 +64663164316133326238616164306338613036656161636664646634366163343230383437306363 +64326539326666303639303463643363323031633631323734303338613666333665306531353230 +62333765633362366166393561616533616432376665663430386562323531373562363963613435 +36613165386430646536326536656662336361326135363362343766616365656634313635376230 +36653533633335323331633661653336383630373134353732353331633332316561666465393533 +66393339653731386131653263313664323237383337306238303136643361353438383038623430 +62663035333265346161393062376434303538373038636333613062653764333832316237633032 +36376436363539343832386666356638336665393932663835353137613931633864343365303166 +66626362386462643231656266653262343436333761373366626166616336303338646138373265 +30363935346236356665626430373936326663323539353436353664366632303866643438646130 +65333163363831353961383262346633643435336266613466373633353539356162386430656534 +63313764356339353332613964643036623039363738376434346332333164633030396132303333 +35336137383362626235663465353336306365366231363266316133626164663731353065323135 +65396439393235396165333866336233613137643036653235623664376337373137376434646633 +38633961313430666132396562363438303338663333373963306632303738326565653533383061 +66633534313734643134333735313266666337633165303964613861323461656465666434363066 +64653864326165336532633139393939316431356163313361653032306434353862663265653132 +35666233303432666563376337376366663961633663653461336566353562363635346166376639 +65396362383337346562333233313265346365306433626461613562313765643239666536316539 +33353965656335313931326436643336326664666161653739643663333436336266303437373838 +66663631353864653730643866303337653462663838313735626562663432313133613235313934 +30633132386538373865346266663033626261326130343638633539326630613030646335306466 +38393630353437343562613635363531653663633735343030643934306234333863653966623832 +35323132643461326662346664636336383131313630353066336138616163616664353330616137 +36363764386433373439363864626137663230316335353536646464373938326138346464373038 +38313162396530346664393463626363366232653061373639316337646130333634616239316332 +31653964663630396661376534633764643837393530326433353037613333323766363161643465 +63323663343764653962333032623866323361303435643965356135323432653639383632383238 +39356465353161376231616164313166323064343739636632306339633262393261303637353261 +30643466346234383639663363626438643865383031343666653866623637313765366138663063 +63643239633338366132306439376636663939333137656637613539306661316262643562646435 +62306430336330363662613335373765323339306563343765363766373961313835386531303730 +65666662316238636334646538623131326435313437613737393632346138336463313132396138 +37653131383831643264353233343665363237306462306463316330353939616236383132616236 +31373835626132646362326165353337646264626333623361316635616263353135616565623063 +61373965313961636136346462663238616233636132363965323461336531303335333437306634 +39613764366465313130376636303366386165326236633938653632356139666433393762353037 +31623762373036666134386364396538616533383631633830316337666464356630646330643432 +64323534353536343831343139653439343333636132333864356435623031336530653236356464 +39343832623637356666343834303935356238376234633761643538343838366335303864303666 +61396537666465386633346535313562353136613061383963633738383332633863663632656430 +63613265656364393666383661303331386662666363643232343236653361303065346332353364 +35366462626333663033633831396138383435616262393934323137366436326332313766653165 +61343465306339303036633931383735626231363962656336333335663839636133656266303063 +66396466636434376166386265613236323338373231663765313930373634343766383963346330 +30383765646135623463303161346661333530616333636438363361353931343430343466653564 +63376264336437653739636338393336316238353338383431303432303131613066313966383032 +37363363333066393833373632376537383265613535303034366265623066313333323261623362 +66396431363033626465376363353935643538656661663034363032613535623936346263346262 +36333337336439366338613337373330396335366163633964353861626139613862616337643235 +35623939373364396235656638313138386430363237653665363339353233633262616538376535 +31356562353836613433636262396266376233666434323732393337366435363030316163306330 +32343065353035373064366361633965366136313762343165393766666666636564373635363161 +35383161646232653831386134663962663335656138333066666634353862633235336535306430 +34643462356462646333663164616135386638313962303932613138353733343965633566653866 +35326538656232373834303331353738656362386534326230656239333034393663316235333765 +65633236613961646537343539643034326636313030316130616265646538366131336663323435 +31663964323663643435623331343236353634313630346239393030336535646361343863366230 +63656437303963303932313535353835306162656539323237386537643362353363646237623030 +39613561613934663537616261343136623432316165643133313535653333363836346636386665 +30613731333037643635623564636333363737396634373066613164663961653030323662323032 +32363361636266323232626635373231316465393935623238613764643338646333373236353434 +61613866333862346334623134383130306466623936323236343566393461363933326633656563 +63336235333436333838323465333164643862393266366437646235313037663630366238616233 +65376562646131356638653764643932626130373465336162623638393063636131626132646663 +31366339366364616131633736393134363537326362646239613131663639393132653366353262 +39656434656431333162346533313562336261366462633233646630323632333431656166373764 +38653263363632656333356130356462653037363764656463313936333132653831643766653330 +65636165623061626230663766333965353762653130346562636537363461666337396566663964 +61333637346339663031373137333765633730353630633239373733346261666339386566646564 +37303734623837333061636633376533393733316163626537363934323832393135363130653539 +66616331383433663431313930323837646535636263396162343665333235386163383130373339 +65633733356663623262373137613062303236323235316565653038313136666165663735666463 +61323933393665653963323162616237656533316237376332376339336631643234373866653065 +61316666376265363135333436623331383737393966666566343061336165613262313964363835 +65343835333664393430616337336663313163653037663231393763373035636438323666646662 +31303830353531663333343162636433376136616339303263353962373639656236643965623734 +65633936656663383638343634323539636236313363626139623862613237616661313066663637 +35393637626534666135643763643064376634346231383231343232353335303364656137313134 +33636462666466643236353462343265316563666164636436306237356231356430303337303434 +65643835373831626263353638626437306266363135656362646230346537616232663937356232 +36346436373131343237356665643966333631343634383165363263386139303935623736663766 +32326337643635353437343935376564613435616162346334346361316130333662363135636564 +33393737643731656463323738306432373030636630663330393131663961363432316565613764 +31653539306266383436303064633530643634393963363965636630633833363438613939613738 +66303836656634626365643736633234363639663731643065633061376666393365366463623866 +35633233326336363265323366626436326434643532393634326334393031383038303734656336 +39613766353563343665386239396261363931613436346566363035396462646363326665656134 +38386232653332376164373561326436393662613662343661633731363065363733363530623962 +39613135633632393237316432363363343132333764346262303064363434643635643162663966 +32633765363239366431623961346633623731323539653466646339646136316438356537366662 +62623965356531386162656161323032323064643763333933373731376135663264323732653533 +64353861646166626133643836303565383436656135366630613334656234643262653330363936 +30353461383463316436323861333132316132373565386465663338366164396566313439386565 +37616462373330303662336532373835393362323464646464646665373434343865313465613463 +66623234316665386437363034656135613165353466623766376262386335393061616637643734 +63663131336535646630616339636535306562353062643165613161323262663266323436383936 +34383662326566633139306238356234313365633763613263393361363063316561396138303565 +30653634386539363666663261326231663265313836326564313663333334383834633662643839 +61326335633134636135616233333261373665303538383039616238616631636133353437376436 +62653933323037646238303536356134356536613434333130613364333333303762333361616665 +66343239386330386463353064373538396564666362366464373461616134613461356364643030 +33366431376239346265666261363538316137353536393931323230663964376331303961666334 +33383964636530383532306564346466386430356531663132363062616665653031343238393632 +37383165386461316233613966316431323132373662373537633534383038376266336336363433 +32326561323563313039393132306666373334663832386636343963653363326363376132323335 +33616138623631613338393536343637646166323233363839306330613239336561666132626533 +30343361336132663932373332623464353166386131623863643164313366646639346364373033 +34383361666466353366323964643666323733366131633066336134343162316563353162643664 +33313431326430356631313732623263373134396662396437303766303564333137353336303836 +35396339656334313337643865343738643666396664626337316261313461393963373735663465 +33323264323665303037386539626165396238343861363539323662656538323939613039616536 +32323037343135393166353932653933613761313836363165383131306265343665393131343238 +32643635326265623265613162373730373461666362333166633962633961656630633938613036 +64363362326465633436623536616363353637373466343733316336636237666437323630373565 +30323333346637373364343432666534306533306233373466643339303834373865363835323562 +36303261333338363135323634306664363663393833316666666535663036613231663834303732 +35623438646232656537633533386435343636363130303332643135396665636536383037633337 +39633330623463613332316138623730613831663863373734303764613939336331333235613737 +35386361633834313661313130386432353864393936663034656434336163353162633933376439 +35303731313039336534663237346632346664303737663533626338653531626436303462623365 +35343430396236393063346535353636346131636536653033636638656231396361373062633237 +64613763313330616665616535366165653332666364353836323832366232663339396637616336 +62393036323933646530616462646336396530323361626666373964613863346632646566393564 +30323362346434646465656430653936323330343564666139666134653163363664363236376432 +35393934373736326461633838653732363564626533653165316165366164643332633630306165 +66303334656336636665336233653964336663636635396238326135393030613039653533396337 +39353664383564663961386233396631643135396238366331333337646561633738346434663634 +36373165306165323739383133363039623430313134383535666463333030303964383931626165 +33373139643563393362636137393262343338333663613934343937313138383335343363396461 +39623935356136343739303536323736613237666338353064353534303935303739653336636637 +35383061383039653031323234656433313838656435386164343436373636633335323839633430 +39653264613536313333636663633437306133666537616538643161386430366564613137613561 +36306438353761616331396434646566333331393164396430656132636330663831366538663530 +30396632666634653239363334373263343062343338346261643466323935373231386362643738 +35646235356635323231626232383665313735336666323861643165313533646534316365636437 +37316537613563323861363333383563636163346337313034353133623761623434396534626264 +31653537343534303265643162646133303037313465346430613030646636666363383739333230 +31333838303139373937633965376532653339393633356337356364643861666566626232636165 +36623238396331313665323363663535383133646162663762373435303935393930353963306531 +33363334336239303466373834636639386261303565363732303836326330633465383664393264 +66663561306435336534383765363136383636303366656463653135323438666131626533623735 +35616263383630356162373830646434316637343164396661633133613265383761663538343136 +35626462366339333139306165356630643766326439643261623765656266633436616334316533 +38313339373033653639633962383935313865346331396465633333663764356330343462626134 +62356365653565383134613136323666333932373136636164376264383832643765666135343134 +38656461343965346535616233623631326565376664346339303866613138343965653537326664 +66363362353830643663643731653662316365653737666164616139303764353732626563323762 +61306363626139333830616134343137313363666237313930306163356236643530663735653736 +64393438353365633334623839363633383031386635316263613139643436363839306330343739 +36376265633165383064623438353233643764303665393736303931633966643731363637313062 +38343835623262636636316563393561373461663061343263666564623136303662313635363433 +65343739326238643763613234323236633537303962346431653866303339363563353361643036 +39333439313032656462636261626437656361383435653036393038373963643135353765666633 +33383031386131326164323436323937643937623363666364613363653161393366303939363163 +37623531663866656330303562336430343961356366636664353537313362333036636262653865 +37653962383430636465343361643237633564396138333434363936616636616136333562373535 +35643265343134663236306132653431616564616139663638383762373835656461643036343930 +36343339346132356335633530303665383931393961333164303934663633313232316564386462 +61383430323030343763643961323930636139333736333932663632353237343736633263616439 +32363764366261326263363164346639616561366531613837663661613336633534373533663633 +64376537626637366535386266363366363339613832326366383236613533633562333865666431 +63623864623533653864616530633439393831656636656362363336396462333761633866613564 +34373366666665613061656335343162336666356138633736313239366539316362386232386139 +35396331616164373032303139626465333662396632313535636532336235663039626532373331 +31666336616333656239353065666566353961323430306238633030396564353832353463633362 +39666561343330613965663038356534383432383538643936376135323538383039613332616331 +33353861313831663934663331636162373262313662643665656538623230663064383363643030 +31376232626639356434383766383631363061396563323065346636373830646638663465393831 +34313162613233656531613530623432303235396332343332386364613664653937623038323965 +65666433396337663936303737346632353835383064306465363336613961393866376334643066 +63323765646539343862343262323566623064316536383463646663323461663464616631333964 +31633762643938333961363637303837366362393235333938656234363161323962313832653833 +35303532636333323531346166613032313537333662333538383363623530626134333530393065 +33316238393262646133336230616435663366663734383761616439313334636536646134343939 +31623532636262386130653934626562623337323933623535343635333439333733333332396437 +66666239316364363363363937313831663736623362663533303664643961383465336336326137 +62316339396534623333636666636130353038313963663162343235623264376665373664333166 +36613635633739326531613037336261636130666336396334623337336561303531346664643834 +36313066313638343835636435326337313633343535313962313963613430633663353639393534 +63356138626164613330393438326530353033666136313063323164633132396464636664306236 +35303664343265303331346165363063353536336336396466656333646431373964316163643338 +37383066623633383466363162626535373530633064633837633363613266646139633961383733 +37623365333864383161663439656263393931333231393963313763643430633064366233666634 +32653865333664343037366530373761353037303664396234313132306539383365343866643165 +63613034666132353838653737393966343262633462373030326162346137323737313062383633 +33323337373961656637353261313364333336373236656637303438393036666665656266633236 +64373835303935316435626635653965353934313535323734363734306233343062313131313263 +33303434656537313639386134346566323834666432626333333764396266373862303531396531 +37343439373139613366333331643837303361386161613536326535333439616566376365333963 +38353837616465663265373362336238636361643135353137666263353636383232346562366439 +38333038663936383134336638366633643964633939366431653334666565316336346363333133 +63336236313161373232616266393839396630323864303462386361356561323536363238363632 +33316238383838326135396235386233353432613337356134663965393738346532366561623734 +33383964333965313563343836393332386236366265366338646131613066316662626166616137 +62613466636439376530656638333537643137376139363464623561616530313863653666336463 +32633165333934316134616162633264383139666138313464656664653938356235613537616132 +34383036356162306362393938393366653634616135663535353535356433376337373965303131 +61303562376162326166663235353066376330366262613964363030383635643330346566393538 +34616433623166373434366334396232313433623735313032623034343132653736366463653264 +62653461393365303564346266383864373536333837643532616630316630316232326432623963 +35303739633739616666373635326233313339633461313136383439633739383332323233623034 +32303536633764333936656666393037653130643566623530643434316532333734633933316164 +36643734636433326432376261363034333565633964363035613731653366626331383335656534 +33623334653063363961316439343963396330623335333737303438353931646331336536663066 +65363865376336386438666134386434306161643239306265303538333735366262333633336162 +31353661646139643436653664626435336539306236323562393436343264393464653663383134 +33393065336565343765363136393761383033323431643861643533376334633130323962616339 +37616130663163623738376662333636303030353064396434633230633261326461346434326237 +34306535376637336539623666343532346636356434663466343562393434626334643461613462 +64393163383035393266356338653861353364343639366661653731386535336638336265666133 +64346630353731303539363134646237343534356438613461643034646539663833343332643864 +33393133653131393739623634393534343762346464633532326231333962353461663439313536 +33646265376430323435613333633630633862313763633836613063653334383161376634633265 +38333632623837663439636465326462636232666465326133343630623562633262396134623464 +38663765643338613432646434393662353564653865326431633337323563636231336661313836 +34666530643135373630333536353363356430326232313562353431393130636266393433336232 +39636435666134336562633034636661613962653735346566623463336539613339323231373333 +66383435336335366435363530643063646637313363373462376432383937653236383464643039 +66333139666135643262333064633431376233396330333864316437396165653332303339393533 +37636138313733376437633633333738303130323437353739626333346435633161363066666463 +63343766623535333739636539303033663535613832653464343665663830616161393764633633 +61336633373262376437626139343832373237643131333139396135393235363532613362313430 +39373832353965353437363339343036386535623830306464356535646162646338363765353662 +66643536353237346538653439636464643436613938643561633930316132393433316264386464 +66653737333764316638646262623331333333333864356434623235333834323361366462636562 +62613036623331306235663239306131646564393066623033326566306338393566356437393464 +32313337356631383336333265306330663963643835623635396164383965343166343361303131 +37653966356230643438343139356532396539373239333761366364383531306261343438626261 +62383663393338366430343839313439666561333432643330326239383835636366383033306464 +35656437393164366630663039653030356238353930396230363166646135376638326536383235 +61383731303136636233323832353238363163643632326162326334646130613732646334386337 +65643966346439303666643666626565303936376564363461303866393732646330393337323930 +63393064343564373063653564353962333733633138623839393966353162663465346466633033 +35333037303337386135373761623532376633363639393332646635626333383233333066636231 +64356231336265336134353338353961326532313462346665376362383033386462393031636632 +66613531613364623832346262383133303365376564363030303265306663636533313362613365 +64333633636339636335333139653834343437396130663634613436386366613532316361393266 +66316237613164343065333639653863383937363839636662633936383964383030323833393462 +38313465373763636463633732616665623865623136623332353435383839633832636232373038 +63363738346135616430393365633235613039333131326264373333363935666262303036383437 +66313738373234303630616161313339623963663338323633316235366234306264356362303430 +37343335373163326266623031633964346365343033326530633538373163373066356434373362 +39396562613033336334653662636562616639323038333833316630393632613432343930353734 +64646631346165303062393636383063343063393238373539646234363531363164333662326335 +34323865613566616161656264303866643533303431356464666237333462633566653665643937 +62386232356364393264653462653834663666613866636662303565303138383535303431326461 +66306538623534363234626266653366646539336463383930333734303165623662626634333430 +61313163396162656334333833393436376538336538396238386437646161353231653465323637 +30643138623363396433346561623539363834626262333331643631316539393961393661336537 +64313165386639646138323534653731383433656265653133326434323532383937333765656532 +63303330626432353261333636393263653837306664323261333966653039333763383065303230 +64373330363263663932346537623663306236356532303962613563666135333566343563653838 +66383837316635656435323364613033626139396131336665386466386636633163383166386230 +31393136336332643839393133323161643365663061623632383661653963303737613837616665 +35626336346664303862633265633134653034353035616435353261636138303331643463343661 +63336562613564666165316333646538373438336266306563343166376330383263366665336137 +36303762363465383138343536633230646633643035386463343035623964633337633831623334 +32613537366462343263343361623765633136663638646236623966333930383564396161326330 +63346539316333373130643661633731623263663564353939653631343530643631613632303639 +66373663623034613539333636333062393232353330666364306461623963313034346263303263 +62346631666463346438323236376462663439396339623436353562646465303335633161666462 +34336238646266353538363437643039653963366430396638363734376664343039653538656237 +32393762373236613936656430623264386335653161633536386335666362646561633030306433 +32326263616262313231373331393966623663373539383333643362353461643765616262643162 +64623632653431623639383835396234383666663137643434313235636239306232633664616638 +39646332333063633035373234353664343065383865356339633835353863336438363961643838 +34373935316566643238346538356265373432663561353338306236393139633730336132666664 +35376261616364646437366363393830323065306162643433383166333165313936626437343834 +37373061396335643261663061616133383933323231333339313962613164303138643236356639 +32373530373237373966616332303938376164313435303936626339336235653662643666666531 +39376439613039666466313830356230333961383539633238386365353966326661663163333730 +65373432626361363764643161373364323338373630663539653666316536366434656361306137 +39623134353163643431643465633830333166346162663866666132363164306165653465313032 +34383334643739613434316135313561396562636435616562356432346436356334356164383831 +64333730336533663461353037616437396462303566666564616666386131363463653230326164 +61356339383638626164333262383464373133633835346635633438393962316130346130326530 +62653730316332373636323633636433376432383632313330633433386538313534306634623736 +33333633346134336434666635363039383235303166376131663638333230333462356166386234 +37323534333931356163623430643237303336346161363865656366616631353332376232393731 +37386135353164343163386461306262616433323134396536316533643635626131636238656635 +65373730316137623330383763346630346362303231306639646266323037383333636163313661 +31333334663938366466636531656265343034333031303561663239393233303865316264383336 +38396437393730643065373530396436353263623036323036373937626130316333383432313662 +30303465313835323334366433366562373933393736346338636437616264626262366636386133 +33666661393065363263366363386261613935393736356130303730353538653934393466303564 +38326163386332616235636539373066363266363163333166316339643330356433343236656438 +36333761643365663334613062333464323834653434363131343835323930396637366565343839 +64386438653839336631616331613338353266303433646266623739323963653964353133303332 +38663665656366396166643262623333336632623434623831646463653365393938326164663935 +37356634643837366163633034376439353736623161353261346238623630333532393832656263 +39653632323665336635623335313464306466366165346563396535613739343335353464356263 +63383165383732376362393535653964316365646535633635666535343835623633333665326631 +30326533306165623432396663666538653966366437393062376634623139653333623131363235 +39626633373765396335353531396561396133326132303238323166346539663630343835356436 +39316338646132666136646534373064643635346461313130366437323665396265623736333065 +36326631616466653433343663323732323730333339366233393063373461383830623966623164 +33333366393339333565363530393837626161613863386264313862373863656261393566333131 +37383831333462656563646464646638326363613738316334333530383865353831653965366232 +34353234316434396238353837626133393334363330306430363466316538386137343939356335 +63636264303863613438313130396133363962346232373534666364346139363663336133376437 +66356131383461333235386162313561646461343164343536393337346163323432663530613363 +31386135643333383561633935636439663434383332646133373434653833656337386564643934 +33653331396630633534333834636537393166363761333132383639333261646266386330366565 +38356230613566383533343466653462316261323562323864633936613864343831623434633965 +32313462303431623761663236306666336639386333353539336637366238363663306239646234 +38346364313333656436393432636263373361373436656635616136346336383739303962336533 +65653764653264316435386436373133656463656334343237353439626365373438616132346436 +39653364646134353538383139353038363535333232356562386262646266363833323133663136 +36613266376336316330373563313165663636626165393431656336356663313566666531643337 +66343863333230326161623532626135393138316332386231623464313131666536626164343732 +35373736313332336538313037393966663162643762653835346365316332663130393165303630 +32616330376537376266383134356562333964393332383661663733303235633934663464396334 +36396565323738653134323936646439616261363331353031653662363138633733336632336336 +38623634663939373861356361643631633239383439336163333732376261393566353031323532 +65303739623336653430636638666638336530306433646338313239366539363262663566396333 +63363930366237323465666235303437366531356335323162393166356163663835633834326138 +35343765666637353731626239633461346332643266663061323262656536643764313637616138 +63363432376263353238363161343734353236616361643265366361396539666631336163623435 +33626164393739363063626631303364363866643330346262323034646437633336393330656465 +34336666323530353762373735623732366362303633633636666464373832616138366263656537 +65626164613865316333353931636562623463393638346439396230663332323539363733306266 +35333035393237643763346261633330306538386234313564323536303639666664323464396230 +63323338383030303735376438306231356138383737306166316430653036386163646661363266 +33666439666264333137653662656362313237336139663961336631343531363264376131613439 +33616439646435313461393833316637636236333439363436663762366538613563623663666136 +34386165393339353239343431333164343063343061323966313039396233656264663536343133 +31306235623733306532376338373666363535323164316537303666653465373134643434333238 +61643538313463333032663461396635643237353937653536363038616430396337633536383436 +38306636653734343331396137353030346137613137396431386435643631613436323030363861 +32316562613261333463396430343130333863313166393439396363623232353961323038316232 +30306537633563323361363765636438636163363135666232353930626362353366383836393565 +63653839306663646535396362626133313636316562613133373162626137303031316262373739 +39346466303166613639616365653435663061623361663966663235633132306437656131636366 +33656537666663643765393932386165393866623761396531356462663862313738366430333238 +61656138646433303730323939616238303630633962656533333032366362646465653266656538 +39626261346638383139653931663662666266343834633363336563373635333730383666366463 +63626136353266636332333633663130636161393163653665653838653831323434616262663338 +64396365646566333435326465353664333539623030363463303837623465636561303064353838 +31653261306537316337333832303335303366623438616133656164613566666536363733633962 +37386464623162386334343965366264613665316231646135643831373431303134373664363532 +64643061303834663135303238303766383562613932633639353161343334363562613934316335 +30386237393731663533396262313166313437326266336438623463346331616133656362633666 +38633733643561373232666433613863356635366639303932326234336331636537616163303237 +36386535616566306365653832666633636237313233646336393032633064313730393532306238 +65343434383066666233306330666632303061323930353263643632653533303662393762376133 +64383635343561333933646430386464383262663235363363633430356262323762643531373039 +37613235643630633730616666386363333337653130386335343163303437643564306262343937 +32636230623531663264333766373434313937393462663833353261363836616138313465613930 +35346532333865323433616364636538613935663462356136363766643736366364376338323461 +33663666323730303532336134643439333862626232386538373965393733396238613939383566 +64663166303764636639363265376439323464643735616262313136316233346433653365366336 +63646233666633323236303338643933313635646335613566613838663863366165306263393364 +65346665613732363239653863643631373838666537336234376433343765386361336239333236 +35613639646564636434356434373032633930643338303233613131316664636565316338333435 +33663662653435313539353433363431393462343561333334633538653633643935626337313435 +38383538323336313463343061376539353731646538326137356437316464623835643664633638 +61323335653666353930343935666536333238313565326539663231306439643866616530633664 +36396631643163623530613931316466646564393131623633613436663561303864363234303037 +30646336363638666333383466333634633539633733666463326134616436376635303234393036 +34653766333065383164626332306165646565363030393563303738396263383036663438633233 +62393062326331383062646164363266373232643535623437313266653035623335373563363964 +64336662376437336433333566656164643033663138383961373637373431653330323734666361 +66353330666332363234376366653264313961303833363336363530633637636466323439623434 +37643561323330353433346631336237393166656365653239373837643265396163653166323062 +33343739613264303066313461396235643561353138353366656334633939663834353565323530 +38393939396631396131616231313231326263663237663636333636633263646362363664626334 +32363431343339313838653531396232623962646134303166313536316332326362386365343631 +35316539316162623730393330333435666166616364383035396563623639346335316635623735 +30626161306565643037646463656337363533323332613935623763333834323336663434656665 +37303863636232656438643062333263363934383563633030373338356439356364396162666535 +35373531663463373837303732386337326631366434306335653262646431666565376663636334 +35646561373233636465393332663264366261666433326561613933646566363833356332353333 +32616338326232613636366231353930656331313237353338346336336235626431343764373165 +39633137616634613965633433316665386539653435623034306230333565333332363932326437 +65386335343034333437373063623135306335336130386437326163616432396139326562636435 +33373932373938616632313362613163633439616436636338663736313339623336306539383532 +64653134626333343332376531646366643363323837363030643039326363376332663635326462 +38336136636666306238373737353438373130303138633835623862636665633031643461363539 +30623365336531376631303638623464393865633362333435666433613630386238646336303434 +37376135343932376435313434633564396666346263653364613462316366653264633065313662 +32326366336536643131363866323565623166303334646331636135373536386138623639646338 +32333037633061643935613534313364643234383534393364336331653938653830623436353664 +64656466376232663661366464366437383739356132306666366639353563323430383131633731 +36356232363564316130383339313162353034663331343934396163613763313563383331393239 +63633536326264376361333230633731663437653262353263376534353865356434653038336466 +33373438373361366636653639396135373032336435666635313338303766633038613761663434 +61353764366631613231366539313964363536353334316635663136623839313931303532653430 +32636438386235346361366338333831343830333736373464346661643766316535353233396439 +31393561326364393237663262663733353566383939383161356239616335313162396364316237 +31663465376336373862316565353166633934353036346330633963663161623735626231646131 +37366637626535666130316666326164353437383639633666376130353330393339326239353861 +63386236306239356435343734643264373438363535393134383166303938633363646633323131 +39353161643633313563336234343134323261306633646437633230613266383938343063373139 +34343438663830303732633766396238393936623734653934643930646631326632313537326530 +65313230303133623633306535303934663434306163353236616337646139363638616231623265 +39373263306266646437313530633261326137653839306232303136633939303330383962633532 +31623139313935363938623230346262323766656362653563353165333139623537396335346231 +64306539633064656136393764613366646330363534646634613838653861343862363331353938 +32663634386461616463653834636361623263386261343939366632343462353364303830333335 +61393939346439303862303437656661666133343361333735363430343330663639626638363839 +35626532336463363239376166343235363861396663303438343363373737613364353663393337 +66316333363433316538346435626463336266376132633139633134343461623030323031396134 +65663833396538383735656531663738653961623033333439363561633063303530643833653536 +34366535303538343662663231643962346537393162616162316362326362656163333739316336 +38326430663961363266386262383464383838663265636139313931323538316262393234633363 +63336632396166613936373834333832663931653562303636333330646161326266653735363266 +61323764646166656662613965306637346437363266343831373132626233663439613137666238 +33626633623030373066626137376233393638356263373361376135326330323033393533353633 +31353431333535346435663366656631316433303063653532373764316639623564353436333763 +63653935383630303664656264326337666539653337626430353066646565363235616462656466 +62346530383564353735643734376439366464666234653233376363303135623366306661323666 +38363832386466353834636534303366313134653133316635623637376439633239656630633665 +35323536333766373230333039396635313832313361653966636536366530636664393439343337 +30616365333339306439363664326633666664366538393438333137613432343737656439366662 +65386366393038336265366338616337393438333934376663333465653631313233363861386263 +36616636386263623166336330346463323739346434313534396633633739303533393735363738 +65303462313639636661646631626162613035393330373166353162316263646139376233663138 +30393038393461666436333561616365646439383938353238646339363437323232366439393739 +64656537626136653030616333306633356232666264643031333261633839303532323837663635 +33383930313033393730313464326531623161333463393130356435663631663264633266333234 +38383339623639326230616661373631633066353839316561383131626663323464306631646438 +61383530376462383063613666653036366462343133336261326462363931373163643163323839 +32656338633064303136653339376230656632636237643861333261376239346362653238623439 +31626531333138653237386531393764313031383064633932323639373432353763656564336266 +39386262656533393265343238626562376665373864656265336362353635323537386566373537 +64303665393232336633393330313333363034353564383831623331646338353139326262396238 +36373837306639373032313237333361653635643238333865393166326161373033613662363333 +61363935396435623963313165643234383838313963643132636331623033633566383130316439 +34323465316539623766633335653363626662383865373963326633646662656361396334666663 +37393737336565393232643533353462623562343362306235666662303861396335333662636363 +63316164363862633163323830653436386563303632303234323362343834386235376133633531 +33653532343130386664373961343231383630646563613066666662396161656439626664643565 +31643366326535353137336235333065316466633264656264363830353834363134616462356665 +39323137363634353761336564336634313163663366363438383138343835303932343436383432 +62346630396537663761663436313636653231353563643061353862376133323038356430643131 +31613361653933376533306132386335373433636137646431346262356435333662363966373461 +36616565633235623134333566306162366366343238613533613337653338643233386238633530 +39396632656161363935353031373863333234636365333634643133653739373466653166616466 +36623730663635303264396262643566393631643166346165653462653136346264656130383739 +31666435393136326534623433393938623964373163663365343639386338363430666263356234 +31663733646163386361303237346162376335306131323938306365613736373330366537336132 +63386134323337326362656562643737356333343636353235613837623538646335633139303262 +64623732353132666237356632653161376462646664336564653862303466383834333732313335 +32633465663961356438663962353834373564613063663830363530336463353231383264663630 +65363238613738346330363139636439313233663534316165353363646565343439383233373138 +64316234663536333462386339306663666366376233306336353034663039363334663330643565 +63343065626365393361313064343162646361303532313433336263366261363265346235643835 +31643535626239353362346339376632656535323831396139336238366634616263316266636136 +31303130356635383736326461656162346362316337356662316233643961313935613734626163 +33343935343330373361633138393766643130646230616337336663373932363338656337653063 +62353733643332396365353866616166623761313635313563626233643837613338643535386238 +32376165633434396630346236363265616131663136623562313438306662616636616363633163 +62383635386265613334636131383862653438306632353039343637393634656539613666346632 +38336466326239656437306566386538663765646430356639366530663232366333666630616561 +33343431643731386566373833633238643131393733376265616639356631663934633266386535 +30366166346165303565333938626662303866626138616634386435616532663633343036663032 +64313033383036326162633830383032346139353463373162646334366235636362633832373261 +32356665623034643861633130343765613562333531626463333865643261363930376435636461 +64363537643735623135303631356232653439663838393935383930383633643666353863663935 +61303231343466653864363331323462353062303237316630616638326539646666663766323261 +64353062623539303964306362393135373061333761393665383236633637343365383032666265 +36633738653438393365323265656163323562653439303137646433353136656231623262663264 +37333333363737383762393666366239376631393037616532653437636366656436663064363930 +62383765626436623361313238346437326635353537323961323362303966373362316166373034 +36353330643831323863316364376134363366646432303763656531303333326338363830393930 +66613733663337396333366661313466616136383064303434306238376630316336393538303033 +30396538313763613664613766346138663232626639363833653365353863343262343235353531 +32653561333132303963396130316635613039656130363438313863323130393738393833376139 +31656562316363383466316532646336623335313639313031623639323437393533383839646364 +64643563313461323062613364353239356236353833336138323463623733346137643662613033 +63333937623561336464623163303937326531656633333962323063373962626563316639633665 +31373930653063623438626437643435623565383237353335626434336331666639383034303531 +35303336656439316130323766616531653233373265646631386535393530396261363832353131 +65303265346231303333626263313133306562643962363237663664656136306130373439386538 +37393130306139333963643634643462393465306439366438306138336465663865326231383337 +37393137363963613061313336323164353631396432373333613236356162313830383562376138 +37333663643230303834656538636265366430336264373235343031643533383639636638386334 +36636465663564333430613939346562626465633862303635343964383430313962623031383563 +34343937613461643635383136336238373535336266383565376239653930643438376565313663 +33353966386536636336333838336336616263346237636338353233353130313165343462316130 +30356138326330366261303131376464623265333864313136643865356533616334613431353866 +36396266313563333934313731643438333336383137623564363138323737353232386665376336 +65663364656532373061316336646636346135633330656561653539303566633662323633383733 +63633065393338356161666136336133356637663662623135323234343532663164346334343236 +39323965333462653464343532383236343961636237656230363662326437333732376230623638 +31373666643764363738643032396262363039356232323730386530363039646239376265366265 +35646539356433306664316465383562653362356537636337326530646338633263663330343366 +31333232346638346663636561616235383662393164393335393131323130656332663439323362 +36306639376639353665336135333731396430616265376164323037633233643437353361366631 +63623839616639333133613161646166353334363834303332663933323963616564393334313137 +32393663616461623938303330393665353165323563333734643564613863353732633062616536 +63666662663633613931666339623866353365656566643461303766643636623461353764343436 +34306331623165663466613631363066333164623631666633363338323863363233643438613039 +37653731393762373164363730343630653238636362636336313663356130666665333131396135 +38326334326535343233396533356338656466623164336633326436393632386166343937623933 +30366165623664613933383964623565306561646132353136333964316135633138363532386535 +31346637663737653133373638653936373165393563313834303039383162646433333563626331 +66633533373164653261323834356637336438313032333433356333383430366165613432313531 +66656165353230613261653337636262353162386238386663333962326463303265373664356631 +63383463343934303336633130373761396662643234343433643539333662616334316264653737 +61323930356437613665303438306232656532306262666665666638343638623630643462333931 +39663566343166323333353266633864386330643335363264343366333035626431303063396135 +66633433333431313064656634316132623332613135356230623033323833323532623561313333 +65313430653036666665316133346333346664343432343938373830663262316566353934336237 +31303635616264393531656232653931393263646637333133306563633638633063636238366633 +31373334663033343536663266363638336264643930373534663762333965363435366130376533 +61346262613639346131653232356166333038633561633863313434303933636364646465376661 +34313836323862363234356138383964333630303139333138353762623237633133643130643037 +38303666393237363564393862663566646166333932613062366361636632643135663437333464 +38656162326235613536343930643763623262326463383936306637343530613231653564643366 +34373631306465336635303439383832346336303030363964376665363434643432626661663935 +61336231656236393066383631616230313039333465356431386638323161336635356134653165 +62303538343436663531303634393866386266623138613137646663343765393033303661633234 +35343334353133373065366539333131383662326263626139613864666561633234343863316262 +62306437343766336464343261663536653965636637373363346333623533653066363636653034 +61326663386638323736393730366633303066366230663539343465623037383431626166393164 +39396631313265653330386233623731636631326435333366316665613638383461353934393035 +31363936613432333634306662346533383866383862343563306233346563333132646361346132 +37373939633430336664333833633633626465616137663937303366623561336435383138636532 +30666261333132633031353261343131623432313233336438303931393132366162663631613464 +32656161623737623564326232376638313132353031323366346463656530346235663539343939 +61616538323863373830613464343338323037336632633266333131633036643137303933333136 +30616239316138363734363130393861373761356433383865656136383630393834633731313932 +37323338643161363734333239346631623063623035303833383136623165393338613039393866 +66646265633831343066323233363164646664616263353039313436326238333061303934353737 +33353031376664353238393633633563623130346336623161373238623338623537646366636361 +66363933393837643631636635326535623766653364666631313137383762373739666465383561 +39333438356337346462323263303831323037623832383931383535363231623866623661366232 +64353062306339333961373738613439353664303163396261336231396631663634626562303963 +65633934633566313065663938663062626235383133393139316535356333336631643236616663 +31383933356163383432613261663465393034616635663233626437326563316532303238663034 +66396263353634623736353061363961323765643438383730383963363435653336346234663334 +38653936623434343735663437613837626362396666613735363334663362663863633166366666 +37666531383461623862383230316162323835363632393962366539353431373133633138326431 +34653138633232396536643964306535313638343737373931343061616662316631336131666266 +31366361356565656232396666353734376237636563346364616639303237346161623261366365 +30363339373230653565353563376534653639323934376132306632376634353833356464653363 +33353564393539393362323939306535373765346266313734303231613064633136343263376134 +35613935623833376433373863396134386265633830393838653565303164393563363837666666 +64666235373432393437653536356365376435343265613866623932316663656339313633363737 +30373462326666633831316661333561333430363338323266383937353434643636613832616463 +33643839396539663166373538343361633434343134666139323033383937313363336664316534 +31313838383263636234383866396531386338386130633561393638653630616438333262663034 +32353566633938616539633236663466396237353336663439623465306139303338623337353039 +36363639663033323736616232393963653934336235633939343261623330623433656461633663 +356465616236663631396437303837313536 diff --git a/scripts/deploy/200-infrastructure.sh b/scripts/deploy/200-infrastructure.sh index d73f51cfa..6e0819fee 100755 --- a/scripts/deploy/200-infrastructure.sh +++ b/scripts/deploy/200-infrastructure.sh @@ -13,6 +13,7 @@ osism apply opensearch osism apply memcached osism apply redis osism apply mariadb +osism apply -e kolla deploy-mariadb-backup osism apply rabbitmq osism apply openvswitch osism apply ovn